changeset 4379:85b5b0e1bac9 varian

added NEWS about "OrthancExplorerEnabled" option
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Dec 2020 12:48:14 +0100
parents 9e2fc6911ac8
children 91e5cbacb94d df313e410f0c
files NEWS OrthancServer/Resources/Configuration.json OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp
diffstat 3 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Fri Dec 11 14:57:31 2020 -0500
+++ b/NEWS	Thu Dec 17 12:48:14 2020 +0100
@@ -11,6 +11,7 @@
 * New configuration options (contributions by Varian):
   - "DeidentifyLogs" to remove patient identification from the logs (C-GET, C-MOVE, C-FIND)
   - "DeidentifyLogsDicomVersion" to specify the deidentification rules for the logs
+  - "OrthancExplorerEnabled" to enable/disable the Orthanc Explorer Web user interface
 
 REST API
 --------
--- a/OrthancServer/Resources/Configuration.json	Fri Dec 11 14:57:31 2020 -0500
+++ b/OrthancServer/Resources/Configuration.json	Thu Dec 17 12:48:14 2020 +0100
@@ -71,11 +71,10 @@
   // Explorer will not be available.
   "HttpServerEnabled" : true,
 
-  // Enable/Disable the Orthanc Explorer UI.  This option is only
-  // meaningful if the HttpServerEnabled is set to true 
-  /**
+  // Enable/disable the Orthanc Explorer Web user interface. This
+  // option is only meaningful if the "HttpServerEnabled" option is
+  // set to "true" (new in Orthanc 1.8.2).
   "OrthancExplorerEnabled" : true,
-  **/
 
   // HTTP port for the REST services and for the GUI
   "HttpPort" : 8042,
--- a/OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp	Fri Dec 11 14:57:31 2020 -0500
+++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp	Thu Dec 17 12:48:14 2020 +0100
@@ -562,6 +562,7 @@
     {
       Register("/", ServeRoot);
     }
+    
     Register("/system", GetSystemInformation);
     Register("/statistics", GetStatistics);
     Register("/tools/generate-uid", GenerateUid);