Mercurial > hg > orthanc-stone
annotate Applications/StoneWebViewer/WebApplication/configuration.json @ 2088:b98d159c7545 dicom-sr
created branch dicom-sr
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 07 Nov 2023 18:12:35 +0100 |
parents | 317a53d4fdc6 |
children |
rev | line source |
---|---|
1696
572652803929
bootstrapping the Stone Web viewer configuration file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
1 { |
1700
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
2 "StoneWebViewer" : |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
3 { |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
4 /** |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
5 * Defines how dates are displayed in the UI. If this option is not |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
6 * set, the DICOM tags will be displayed as such. "DD" will be |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
7 * replaced by the day, "MM" by the month, and "YYYY" by the year. |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
8 **/ |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
9 // "DateFormat" : "DD/MM/YYYY", |
1699
0598c87e1e88
"WindowingPresets" configuration option
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1698
diff
changeset
|
10 |
1700
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
11 /** |
1859
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
12 * Defines how times are displayed in the UI. If this option is not |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
13 * set, the DICOM tags will be displayed as such. "hh" will be |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
14 * replaced by the hour, "mm" by the minutes, "ss" by the seconds |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
15 * and ".f" by the fractions of seconds. |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
16 **/ |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
17 // "TimeFormat" : "hh:mm:ss.f", |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
18 |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
19 |
58681a5c727b
overlay: display ContentDate/ContentTime instead of StudyDate if available + new 'TimeFormat' option
Alain Mazy <am@osimis.io>
parents:
1844
diff
changeset
|
20 /** |
1700
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
21 * This option allows you to define windowing presets. |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
22 * For each preset, you must provide a name, the window width |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
23 * and window center. |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
24 **/ |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
25 "WindowingPresets" : [ |
1701
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
26 {"Name" : "CT Lung", "WindowCenter" : -400, "WindowWidth" : 1600}, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
27 {"Name" : "CT Abdomen", "WindowCenter" : 60, "WindowWidth" : 400}, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
28 {"Name" : "CT Bone", "WindowCenter" : 300, "WindowWidth" : 1500}, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
29 {"Name" : "CT Brain", "WindowCenter" : 40, "WindowWidth" : 80}, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
30 {"Name" : "CT Chest", "WindowCenter" : 40, "WindowWidth" : 400}, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
31 {"Name" : "CT Angio", "WindowCenter" : 300, "WindowWidth" : 600} |
1700
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
32 ], |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
33 |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
34 /** |
1701
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
35 * Enables/disables the combined tool. This is the default mode |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
36 * for mouse interactions. The combined tool allows to access the |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
37 * windowing, zoom and pan from a single mouse configuration. The |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
38 * behaviour of the combined tool is defined in |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
39 * CombinedToolBehaviour. The available mouse actions are |
1993
317a53d4fdc6
added magnifying glass
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1959
diff
changeset
|
40 * "Crosshair", "Windowing", "Pan", "Rotate", "Zoom" and |
317a53d4fdc6
added magnifying glass
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1959
diff
changeset
|
41 * "MagnifyingGlass". |
1701
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
42 **/ |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
43 "CombinedToolEnabled" : true, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
44 "CombinedToolBehaviour" : { |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
45 "LeftMouseButton" : "Windowing", |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
46 "MiddleMouseButton" : "Pan", |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
47 "RightMouseButton" : "Zoom" |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
48 }, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
49 |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
50 /** |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
51 * Enables/disables the print button. |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
52 **/ |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
53 "PrintEnabled" : true, |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
54 |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
55 /** |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
56 * Enables/disables the button to download a screenshot of the |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
57 * active viewport as a JPEG file. |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
58 **/ |
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
59 "DownloadAsJpegEnabled" : true, |
1709
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
60 |
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
61 /** |
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
62 * Enables/disables the button to download the display study. |
1712 | 63 * Only used if "OrthancApiRoot" is properly set. |
1709
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
64 **/ |
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
65 "DownloadStudyEnabled" : true, |
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
66 |
1701
b5a8bf32d969
new configuration options: "CombinedToolEnabled", "CombinedToolBehaviour" and "DownloadAsJpegEnabled"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1700
diff
changeset
|
67 /** |
1700
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
68 * The allowed origin for messages corresponding to dynamic actions |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
69 * triggered by another Web page using "window.postMessage()". The |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
70 * special value "*" will allow any origin, which is an insecure |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
71 * value to be used only during development. If this option is not |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
72 * set, all the requests for dynamic actions will be rejected. |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
73 * https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage |
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
74 **/ |
1712 | 75 "ExpectedMessageOrigin" : "http://localhost:8042", |
1709
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
76 |
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
77 /** |
1713
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
78 * Root path of the DICOMweb server. This option is automatically |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
79 * set by the Orthanc plugin if missing. |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
80 **/ |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
81 "DicomWebRoot" : "../dicom-web", |
1714
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
82 |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
83 /** |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
84 * Set the size of the cache that stores the DICOM files. This |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
85 * size is expressed in megabytes. The default value of 128MB |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
86 * should work in most setups, except if very large multiframe |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
87 * instances are encountered, which might for instance be the case |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
88 * for mammography. Setting this parameter to zero will disable |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
89 * the cache, which should only be done for testing. |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
90 **/ |
a878e807cd96
configuration option "DicomCacheSize", warning if cache should be larger
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1713
diff
changeset
|
91 "DicomCacheSize" : 128, |
1713
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
92 |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
93 /** |
1709
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
94 * The following parameter can be set if running the Stone Web |
1713
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
95 * viewer from Orthanc, but without using the associated plugin |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
96 * (e.g. using the "Serve Folders" sample plugin). Using the |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
97 * plugin would overwrite this setting. This will enable features |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
98 * that are only available if the Orthanc REST API is accessible |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
99 * (download of studies, and playing videos). This option is |
aec45e0b2528
configuration option "DicomWebRoot"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1712
diff
changeset
|
100 * typically used by the developers of Stone. |
1709
2931f5e15320
download study from Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1701
diff
changeset
|
101 **/ |
1843
251d7f7a6c4e
New configuration option "DownloadDicomDir" in Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1714
diff
changeset
|
102 "OrthancApiRoot" : "..", |
251d7f7a6c4e
New configuration option "DownloadDicomDir" in Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1714
diff
changeset
|
103 |
251d7f7a6c4e
New configuration option "DownloadDicomDir" in Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1714
diff
changeset
|
104 /** |
1844
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
105 * If option "DownloadDicomDir" is set to "true", the Stone Web |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
106 * viewer will create DICOMDIR media archives (as generated by the |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
107 * route "/studies/{id}/media" of Orthanc), instead of archives |
1843
251d7f7a6c4e
New configuration option "DownloadDicomDir" in Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1714
diff
changeset
|
108 * containing a human-readable hierarchy of folders (as generated |
251d7f7a6c4e
New configuration option "DownloadDicomDir" in Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1714
diff
changeset
|
109 * by the route "/studies/{id}/archive"). |
251d7f7a6c4e
New configuration option "DownloadDicomDir" in Stone Web viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1714
diff
changeset
|
110 **/ |
1844
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
111 "DownloadDicomDir" : false, |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
112 |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
113 /** |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
114 * By setting option "InstitutionLogo" to an URL containing an |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
115 * image, this logo will be displayed at the bottom-left of the |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
116 * Stone Web viewer. |
58049bdebdc3
new option "InstitutionLogo" to display the logo of your institution in the viewer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1843
diff
changeset
|
117 **/ |
1862
63587fdeec69
added 'SkipSeriesFromModalities' to ignore series from modality types
Alain Mazy <am@osimis.io>
parents:
1859
diff
changeset
|
118 "InstitutionLogo" : "", |
63587fdeec69
added 'SkipSeriesFromModalities' to ignore series from modality types
Alain Mazy <am@osimis.io>
parents:
1859
diff
changeset
|
119 |
63587fdeec69
added 'SkipSeriesFromModalities' to ignore series from modality types
Alain Mazy <am@osimis.io>
parents:
1859
diff
changeset
|
120 /** |
63587fdeec69
added 'SkipSeriesFromModalities' to ignore series from modality types
Alain Mazy <am@osimis.io>
parents:
1859
diff
changeset
|
121 * Define a list of modality type that the viewer will ignore. |
63587fdeec69
added 'SkipSeriesFromModalities' to ignore series from modality types
Alain Mazy <am@osimis.io>
parents:
1859
diff
changeset
|
122 **/ |
2088
b98d159c7545
created branch dicom-sr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1993
diff
changeset
|
123 "SkipSeriesFromModalities": [ "SEG", "PR" ], |
1958
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
124 |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
125 /** |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
126 * Whether to display the info panel at startup. Allowed values: |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
127 * "Always", "Never", "User". With "User", the user can decide to |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
128 * show or not the info panel in the user preferences panel (this |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
129 * is implemented using a cookie). (New in Stone Web viewer 2.4) |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
130 **/ |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
131 "ShowInfoPanelAtStartup": "User", |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
132 |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
133 /** |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
134 * Whether to give access to the user preferences window. (New in |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
135 * Stone Web viewer 2.4) |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
136 **/ |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
137 "ShowUserPreferencesButton" : true, |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
138 |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
139 /** |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
140 * Display a "not for diagnostic usage" disclaimer above the list |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
141 * of studies/series. (New in Stone Web viewer 2.4) |
142c7ee8fe1f
added configuration options: ShowInfoPanelAtStartup, ShowUserPreferencesButton, and ShowNotForDiagnosticUsageDisclaimer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1862
diff
changeset
|
142 **/ |
1959
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
143 "ShowNotForDiagnosticUsageDisclaimer": true, |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
144 |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
145 /** |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
146 * HTTP headers to be set in each request to the DICOMweb server. |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
147 * Note that the value of the headers can be taken from the |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
148 * environment variables. |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
149 **/ |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
150 "DicomWebHttpHeaders" : { |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
151 /* "Authorization" : "Bearer ${USER}" */ |
889892e51545
Fix handling of "token": The authorization header was not set in QIDO-RS requests
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1958
diff
changeset
|
152 } |
1700
f1bd464dc3e1
the plugin uses the Orthanc configuration instead of the default configuration
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1699
diff
changeset
|
153 } |
1696
572652803929
bootstrapping the Stone Web viewer configuration file
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
154 } |