# HG changeset patch # User Sebastien Jodogne # Date 1700587369 -3600 # Node ID 38403e13c1ca1cde2a9fb1d99b52fdb40db90de0 # Parent 59e3b6f8c5be272587c897eb18e8a949239b3582 cont diff -r 59e3b6f8c5be -r 38403e13c1ca OrthancFramework/Resources/WindowsResources.rc --- a/OrthancFramework/Resources/WindowsResources.rc Tue Nov 21 18:16:31 2023 +0100 +++ b/OrthancFramework/Resources/WindowsResources.rc Tue Nov 21 18:22:49 2023 +0100 @@ -16,7 +16,7 @@ VALUE "FileVersion", "${VERSION_MAJOR}.${VERSION_MINOR}.0.${VERSION_PATCH}" VALUE "InternalName", "${PRODUCT}" VALUE "LegalCopyright", "(c) 2012-${YEAR}, Sebastien Jodogne, University Hospital of Liege, Osimis S.A., and ICTEAM UCLouvain" - VALUE "LegalTrademarks", "Licensing information is available at http://www.orthanc-server.com/" + VALUE "LegalTrademarks", "Licensing information is available at https://orthanc.uclouvain.be/book/faq/licensing.html" VALUE "OriginalFilename", "${FILENAME}" VALUE "ProductName", "${PRODUCT}" VALUE "ProductVersion", "${VERSION_MAJOR}.${VERSION_MINOR}" diff -r 59e3b6f8c5be -r 38403e13c1ca OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp --- a/OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp Tue Nov 21 18:16:31 2023 +0100 +++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp Tue Nov 21 18:22:49 2023 +0100 @@ -318,7 +318,7 @@ .SetTag("System") .SetSummary("Get " + type + " time") .AddAnswerType(MimeType_PlainText, "The " + type + " time") - .SetHttpGetSample("https://demo.orthanc-server.com" + call.FlattenUri(), false); + .SetHttpGetSample("https://orthanc.uclouvain.be/demo" + call.FlattenUri(), false); return; } diff -r 59e3b6f8c5be -r 38403e13c1ca OrthancServer/Sources/main.cpp --- a/OrthancServer/Sources/main.cpp Tue Nov 21 18:16:31 2023 +0100 +++ b/OrthancServer/Sources/main.cpp Tue Nov 21 18:22:49 2023 +0100 @@ -1985,7 +1985,7 @@ MemoryStorageArea inMemoryStorage; ServerContext context(inMemoryDatabase, inMemoryStorage, true /* unit testing */, 0 /* max completed jobs */); OrthancRestApi restApi(context, false /* no Orthanc Explorer */); - restApi.GenerateReStructuredTextCheatSheet(cheatsheet, "https://api.orthanc-server.com/index.html"); + restApi.GenerateReStructuredTextCheatSheet(cheatsheet, "https://orthanc.uclouvain.be/api/index.html"); context.Stop(); }