Mercurial > hg > orthanc
comparison OrthancFramework/Resources/WindowsResources.py @ 4044:d25f4c0fa160 framework
splitting code into OrthancFramework and OrthancServer
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 10 Jun 2020 20:30:34 +0200 |
parents | Resources/WindowsResources.py@94f4a18a79cc |
children | bf7b9edf6b81 |
comparison
equal
deleted
inserted
replaced
4043:6c6239aec462 | 4044:d25f4c0fa160 |
---|---|
1 #!/usr/bin/python | |
2 | |
3 # Orthanc - A Lightweight, RESTful DICOM Store | |
4 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
5 # Department, University Hospital of Liege, Belgium | |
6 # Copyright (C) 2017-2020 Osimis S.A., Belgium | |
7 # | |
8 # This program is free software: you can redistribute it and/or | |
9 # modify it under the terms of the GNU General Public License as | |
10 # published by the Free Software Foundation, either version 3 of the | |
11 # License, or (at your option) any later version. | |
12 # | |
13 # In addition, as a special exception, the copyright holders of this | |
14 # program give permission to link the code of its release with the | |
15 # OpenSSL project's "OpenSSL" library (or with modified versions of it | |
16 # that use the same license as the "OpenSSL" library), and distribute | |
17 # the linked executables. You must obey the GNU General Public License | |
18 # in all respects for all of the code used other than "OpenSSL". If you | |
19 # modify file(s) with this exception, you may extend this exception to | |
20 # your version of the file(s), but you are not obligated to do so. If | |
21 # you do not wish to do so, delete this exception statement from your | |
22 # version. If you delete this exception statement from all source files | |
23 # in the program, then also delete it here. | |
24 # | |
25 # This program is distributed in the hope that it will be useful, but | |
26 # WITHOUT ANY WARRANTY; without even the implied warranty of | |
27 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
28 # General Public License for more details. | |
29 # | |
30 # You should have received a copy of the GNU General Public License | |
31 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
32 | |
33 | |
34 import os | |
35 import sys | |
36 import datetime | |
37 | |
38 if len(sys.argv) != 5: | |
39 sys.stderr.write('Usage: %s <Version> <ProductName> <Filename> <Description>\n\n' % sys.argv[0]) | |
40 sys.stderr.write('Example: %s 0.9.1 Orthanc Orthanc.exe "Lightweight, RESTful DICOM server for medical imaging"\n' % sys.argv[0]) | |
41 sys.exit(-1) | |
42 | |
43 SOURCE = os.path.join(os.path.dirname(__file__), 'WindowsResources.rc') | |
44 | |
45 VERSION = sys.argv[1] | |
46 PRODUCT = sys.argv[2] | |
47 FILENAME = sys.argv[3] | |
48 DESCRIPTION = sys.argv[4] | |
49 | |
50 if VERSION == 'mainline': | |
51 VERSION = '999.999.999' | |
52 RELEASE = 'This is a mainline build, not an official release' | |
53 else: | |
54 RELEASE = 'Release %s' % VERSION | |
55 | |
56 v = VERSION.split('.') | |
57 if len(v) != 2 and len(v) != 3: | |
58 sys.stderr.write('Bad version number: %s\n' % VERSION) | |
59 sys.exit(-1) | |
60 | |
61 if len(v) == 2: | |
62 v.append('0') | |
63 | |
64 extension = os.path.splitext(FILENAME)[1] | |
65 if extension.lower() == '.dll': | |
66 BLOCK = '040904E4' | |
67 TYPE = 'VFT_DLL' | |
68 elif extension.lower() == '.exe': | |
69 #BLOCK = '040904B0' # LANG_ENGLISH/SUBLANG_ENGLISH_US, | |
70 BLOCK = '040904E4' # Lang=US English, CharSet=Windows Multilingual | |
71 TYPE = 'VFT_APP' | |
72 else: | |
73 sys.stderr.write('Unsupported extension (.EXE or .DLL only): %s\n' % extension) | |
74 sys.exit(-1) | |
75 | |
76 | |
77 with open(SOURCE, 'r') as source: | |
78 content = source.read() | |
79 content = content.replace('${VERSION_MAJOR}', v[0]) | |
80 content = content.replace('${VERSION_MINOR}', v[1]) | |
81 content = content.replace('${VERSION_PATCH}', v[2]) | |
82 content = content.replace('${RELEASE}', RELEASE) | |
83 content = content.replace('${DESCRIPTION}', DESCRIPTION) | |
84 content = content.replace('${PRODUCT}', PRODUCT) | |
85 content = content.replace('${FILENAME}', FILENAME) | |
86 content = content.replace('${YEAR}', str(datetime.datetime.now().year)) | |
87 content = content.replace('${BLOCK}', BLOCK) | |
88 content = content.replace('${TYPE}', TYPE) | |
89 | |
90 sys.stdout.write(content) |