Mercurial > hg > orthanc
changeset 5433:38403e13c1ca
cont
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 21 Nov 2023 18:22:49 +0100 |
parents | 59e3b6f8c5be |
children | aa1c09fa6632 |
files | OrthancFramework/Resources/WindowsResources.rc OrthancServer/Sources/OrthancRestApi/OrthancRestSystem.cpp OrthancServer/Sources/main.cpp |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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}"
--- 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; }
--- 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(); }