# HG changeset patch # User Sebastien Jodogne # Date 1608205694 -3600 # Node ID 85b5b0e1bac9945b9bf9d08ac41681a275f57ffd # Parent 9e2fc6911ac88c25c3988930e2c7006bde93c2ee added NEWS about "OrthancExplorerEnabled" option diff -r 9e2fc6911ac8 -r 85b5b0e1bac9 NEWS --- 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 -------- diff -r 9e2fc6911ac8 -r 85b5b0e1bac9 OrthancServer/Resources/Configuration.json --- 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, diff -r 9e2fc6911ac8 -r 85b5b0e1bac9 OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp --- 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);