Mercurial > hg > orthanc-tests
comparison GenerateConfigurationForTests.py @ 88:47a3d6c08413
easier dicomweb setup
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 09 Nov 2016 17:16:35 +0100 |
parents | 4b24faec842b |
children | afbac3eb28a5 |
comparison
equal
deleted
inserted
replaced
87:4b24faec842b | 88:47a3d6c08413 |
---|---|
95 config['DicomPort'] = args.dicom | 95 config['DicomPort'] = args.dicom |
96 config['HttpCompressionEnabled'] = False | 96 config['HttpCompressionEnabled'] = False |
97 config['OrthancPeers'] = { 'peer' : [ 'http://%s:%d/' % (ip, 5000), 'alice', 'orthanctest' ] } | 97 config['OrthancPeers'] = { 'peer' : [ 'http://%s:%d/' % (ip, 5000), 'alice', 'orthanctest' ] } |
98 config['RegisteredUsers'] = { 'alice' : 'orthanctest' } | 98 config['RegisteredUsers'] = { 'alice' : 'orthanctest' } |
99 config['RemoteAccessAllowed'] = True | 99 config['RemoteAccessAllowed'] = True |
100 | |
100 config['Dictionary'] = { | 101 config['Dictionary'] = { |
101 "00e1,10c2" : [ "UI", "PET-CT Multi Modality Name", 1, 1, "ELSCINT1" ], | 102 "00e1,10c2" : [ "UI", "PET-CT Multi Modality Name", 1, 1, "ELSCINT1" ], |
102 "7053,1003" : [ "ST", "Original Image Filename", 1, 1, "Philips PET Private Group" ] | 103 "7053,1003" : [ "ST", "Original Image Filename", 1, 1, "Philips PET Private Group" ] |
103 } | 104 } |
105 | |
106 config['DicomWeb'] = { | |
107 "Servers" : { | |
108 "sample" : [ | |
109 "http://localhost:8042/dicom-web/", | |
110 "alice", | |
111 "orthanctest" | |
112 ] | |
113 } | |
114 } | |
115 | |
104 | 116 |
105 # Enable case-insensitive PN (the default on versions <= 0.8.6) | 117 # Enable case-insensitive PN (the default on versions <= 0.8.6) |
106 config['CaseSensitivePN'] = False | 118 config['CaseSensitivePN'] = False |
107 | 119 |
108 if args.plugins != None: | 120 if args.plugins != None: |