Mercurial > hg > orthanc-python
changeset 232:862ea8494b02
reverted to SDK 1.10.0
line wrap: on
line diff
--- a/CMakeLists.txt Fri Jan 17 14:25:06 2025 +0100 +++ b/CMakeLists.txt Fri Jan 17 15:25:51 2025 +0100 @@ -181,7 +181,7 @@ ) else() include_directories( - ${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-1.12.6 + ${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-1.10.0 ) endif()
--- a/CodeAnalysis/Class.mustache Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/Class.mustache Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/CodeAnalysis/ClassMethods.mustache Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/ClassMethods.mustache Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/CodeAnalysis/Enumeration.mustache Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/Enumeration.mustache Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/CodeAnalysis/GenerateOrthancSDK.py Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/GenerateOrthancSDK.py Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ #!/usr/bin/env python3 -# SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain +# SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain # SPDX-License-Identifier: AGPL-3.0-or-later ## ## Python plugin for Orthanc ## Copyright (C) 2020-2023 Osimis S.A., Belgium -## Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -## Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +## Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +## Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium ## ## This program is free software: you can redistribute it and/or ## modify it under the terms of the GNU Affero General Public License @@ -40,11 +40,11 @@ parser = argparse.ArgumentParser(description = 'Generate Python code to wrap the Orthanc SDK.') parser.add_argument('--model', default = os.path.join(os.path.dirname(__file__), - '../Resources/Orthanc/Sdk-1.12.6/CodeModel.json'), + '../Resources/Orthanc/Sdk-1.10.0/CodeModel.json'), help = 'Input code model, as generated by the orthanc-java project') parser.add_argument('--classes', default = os.path.join(os.path.dirname(__file__), - '../Resources/Orthanc/Sdk-1.12.6/ClassDocumentation.json'), + '../Resources/Orthanc/Sdk-1.10.0/ClassDocumentation.json'), help = 'Input description of classes, as defined in the orthanc-java project') parser.add_argument('--target', default = os.path.join(os.path.dirname(__file__),
--- a/CodeAnalysis/GlobalFunctions.mustache Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/GlobalFunctions.mustache Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/CodeAnalysis/PythonDocumentation.mustache Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/PythonDocumentation.mustache Fri Jan 17 15:25:51 2025 +0100 @@ -1,11 +1,11 @@ -# SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain +# SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain # SPDX-License-Identifier: AGPL-3.0-or-later ## ## Python plugin for Orthanc ## Copyright (C) 2020-2023 Osimis S.A., Belgium -## Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -## Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +## Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +## Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium ## ## This program is free software: you can redistribute it and/or ## modify it under the terms of the GNU Affero General Public License
--- a/CodeAnalysis/sdk.cpp.mustache Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/sdk.cpp.mustache Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/CodeAnalysis/sdk.h.mustache Fri Jan 17 14:25:06 2025 +0100 +++ b/CodeAnalysis/sdk.h.mustache Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/NEWS Fri Jan 17 14:25:06 2025 +0100 +++ b/NEWS Fri Jan 17 15:25:51 2025 +0100 @@ -1,9 +1,6 @@ Pending changes in the mainline =============================== -=> Minimum SDK version: 1.12.6 <= - -* Added "orthanc.RestOutput.StartStreamAnswer()" and "orthanc.RestOutput.SendStreamChunk()" * In "orthanc.pyi", enumerations are not tagged as deriving from "enum.Enum" anymore: https://github.com/orthanc-server/orthanc-builder/issues/21 * Docker-based builder scripts for Debian 12 (bookworm)
--- a/Resources/Orthanc/CMake/AutoGeneratedCode.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/CMake/AutoGeneratedCode.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/CMake/Compiler.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/CMake/Compiler.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/CMake/DownloadOrthancFramework.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/CMake/DownloadOrthancFramework.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/CMake/DownloadPackage.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/CMake/DownloadPackage.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/CMake/EmbedResources.py Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/CMake/EmbedResources.py Fri Jan 17 15:25:51 2025 +0100 @@ -4,8 +4,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/CMake/GoogleTestConfiguration.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/CMake/GoogleTestConfiguration.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/Plugins/OrthancPluginCppWrapper.cpp Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Plugins/OrthancPluginCppWrapper.cpp Fri Jan 17 15:25:51 2025 +0100 @@ -3,8 +3,8 @@ * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as
--- a/Resources/Orthanc/Plugins/OrthancPluginCppWrapper.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Plugins/OrthancPluginCppWrapper.h Fri Jan 17 15:25:51 2025 +0100 @@ -3,8 +3,8 @@ * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as
--- a/Resources/Orthanc/Plugins/OrthancPluginException.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Plugins/OrthancPluginException.h Fri Jan 17 15:25:51 2025 +0100 @@ -3,8 +3,8 @@ * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as
--- a/Resources/Orthanc/Plugins/OrthancPluginsExports.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Plugins/OrthancPluginsExports.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU General Public License as
--- a/Resources/Orthanc/Sdk-1.10.0/ClassDocumentation.json.license Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Sdk-1.10.0/ClassDocumentation.json.license Fri Jan 17 15:25:51 2025 +0100 @@ -1,2 +1,2 @@ -# SPDX-FileCopyrightText: 2023-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# SPDX-FileCopyrightText: 2023-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # SPDX-License-Identifier: GPL-3.0-or-later
--- a/Resources/Orthanc/Sdk-1.10.0/CodeModel.json.license Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Sdk-1.10.0/CodeModel.json.license Fri Jan 17 15:25:51 2025 +0100 @@ -1,2 +1,2 @@ -# SPDX-FileCopyrightText: 2023-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# SPDX-FileCopyrightText: 2023-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # SPDX-License-Identifier: GPL-3.0-or-later
--- a/Resources/Orthanc/Toolchains/LinuxStandardBaseToolchain.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Toolchains/LinuxStandardBaseToolchain.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/Toolchains/MinGW-W64-Toolchain32.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Toolchains/MinGW-W64-Toolchain32.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/Toolchains/MinGW-W64-Toolchain64.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Toolchains/MinGW-W64-Toolchain64.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/Orthanc/Toolchains/MinGWToolchain.cmake Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/Orthanc/Toolchains/MinGWToolchain.cmake Fri Jan 17 15:25:51 2025 +0100 @@ -2,8 +2,8 @@ # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2023 Osimis S.A., Belgium -# Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -# Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +# Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +# Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License
--- a/Resources/SyncOrthancFolder.py Fri Jan 17 14:25:06 2025 +0100 +++ b/Resources/SyncOrthancFolder.py Fri Jan 17 15:25:51 2025 +0100 @@ -37,7 +37,7 @@ TARGET = os.path.join(os.path.dirname(__file__), 'Orthanc') ORTHANC_JAVA_VERSION = 'default' -PLUGIN_SDK_VERSION = '1.12.6' +PLUGIN_SDK_VERSION = '1.10.0' ORTHANC_CORE_REPOSITORY = 'https://orthanc.uclouvain.be/hg/orthanc/raw-file' ORTHANC_JAVA_REPOSITORY = 'https://orthanc.uclouvain.be/hg/orthanc-java/raw-file'
--- a/Sources/Autogenerated/orthanc.pyi Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/orthanc.pyi Fri Jan 17 15:25:51 2025 +0100 @@ -1,11 +1,11 @@ -# SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain +# SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain # SPDX-License-Identifier: AGPL-3.0-or-later ## ## Python plugin for Orthanc ## Copyright (C) 2020-2023 Osimis S.A., Belgium -## Copyright (C) 2024-2024 Orthanc Team SRL, Belgium -## Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium +## Copyright (C) 2024-2025 Orthanc Team SRL, Belgium +## Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium ## ## This program is free software: you can redistribute it and/or ## modify it under the terms of the GNU Affero General Public License @@ -31,7 +31,7 @@ class ChangeType(): """ - The supported types of changes that can be signaled to the change callback. Note: this enum is not used to store changes in the DB ! + The supported types of changes that can be signaled to the change callback. """ """ @@ -211,7 +211,7 @@ class CreateDicomFlags(): """ - Flags for the creation of a DICOM file. + Flags to the creation of a DICOM file. """ """ @@ -550,26 +550,6 @@ REVISION: int = 43, """ - A main DICOM Tag has been defined multiple times for the same resource level - """ - MAIN_DICOM_TAGS_MULTIPLY_DEFINED: int = 44, - - """ - Access to a resource is forbidden - """ - FORBIDDEN_ACCESS: int = 45, - - """ - Duplicate resource - """ - DUPLICATE_RESOURCE: int = 46, - - """ - Your configuration file contains configuration that are mutually incompatible - """ - INCOMPATIBLE_CONFIGURATIONS: int = 47, - - """ SQLite: The database is not opened """ SQLITE_NOT_OPENED: int = 1000, @@ -625,7 +605,7 @@ SQLITE_CANNOT_STEP: int = 1010, """ - SQLite: Bind a value while out of range (serious error) + SQLite: Bing a value while out of range (serious error) """ SQLITE_BIND_OUT_OF_RANGE: int = 1011, @@ -1029,91 +1009,6 @@ """ CANCELED: int = 4, -class LoadDicomInstanceMode(): - """ - Mode specifying how to load a DICOM instance. - """ - - """ - Load the whole DICOM file, including pixel data - """ - WHOLE_DICOM: int = 1, - - """ - Load the whole DICOM file until pixel data, which speeds up the loading - """ - UNTIL_PIXEL_DATA: int = 2, - - """ - Load the whole DICOM file until pixel data, and replace pixel data by an empty tag whose VR (value representation) is the same as those of the original DICOM file - """ - EMPTY_PIXEL_DATA: int = 3, - -class LogCategory(): - """ - The log categories supported by Orthanc. These values must match those of enumeration "LogCategory" in the Orthanc Core. - """ - - """ - Generic (default) category - """ - GENERIC: int = 1, - - """ - Plugin engine related logs (shall not be used by plugins) - """ - PLUGINS: int = 2, - - """ - HTTP related logs - """ - HTTP: int = 4, - - """ - SQLite related logs (shall not be used by plugins) - """ - SQLITE: int = 8, - - """ - DICOM related logs - """ - DICOM: int = 16, - - """ - jobs related logs - """ - JOBS: int = 32, - - """ - Lua related logs (shall not be used by plugins) - """ - LUA: int = 64, - -class LogLevel(): - """ - The log levels supported by Orthanc. These values must match those of enumeration "LogLevel" in the Orthanc Core. - """ - - """ - Error log level - """ - ERROR: int = 0, - - """ - Warning log level - """ - WARNING: int = 1, - - """ - Info log level - """ - INFO: int = 2, - - """ - Trace log level - """ - TRACE: int = 3, - class MetricsType(): """ The available types of metrics. @@ -1665,17 +1560,6 @@ """ ... -# Add JavaScript code to customize the default behavior of Orthanc Explorer -def ExtendOrthancExplorer2(plugin: str, javascript: str) -> None: - """ - Add JavaScript code to customize the default behavior of Orthanc Explorer. This can for instance be used to add new buttons. - - Args: - plugin (str): Identifier of your plugin (it must match "OrthancPluginGetName()"). - javascript (str): The custom JavaScript code. - """ - ... - # This function generates a token that can be set in the HTTP header "Authorization" so as to grant full access to the REST API of Orthanc using an external HTTP client def GenerateRestApiAuthorizationToken() -> str: """ @@ -1741,14 +1625,6 @@ """ ... -def GetDatabaseServerIdentifier() -> str: - """ - - Returns: - str: the database server identifier. This is a statically-allocated string, do not free it. - """ - ... - # Retrieve a DICOM instance using its Orthanc identifier def GetDicomForInstance(instance_id: str) -> bytes: """ @@ -1939,20 +1815,6 @@ """ ... -# This function loads a DICOM instance from the content of the Orthanc database -def LoadDicomInstance(instance_id: str, mode: LoadDicomInstanceMode) -> DicomInstance: - """ - This function loads a DICOM instance from the content of the Orthanc database. The function returns a new pointer to a data structure that is managed by the Orthanc core. - - Args: - instance_id (str): The Orthanc identifier of the DICOM instance of interest. - mode (LoadDicomInstanceMode): Flag specifying how to deal with pixel data. - - Returns: - DicomInstance: The newly allocated DICOM instance. It must be freed with OrthancPluginFreeDicomInstance(). - """ - ... - # Log an error message using the Orthanc logging system def LogError(message: str) -> None: """ @@ -1973,21 +1835,6 @@ """ ... -# Log a message using the Orthanc logging system -def LogMessage(message: str, plugin: str, file: str, line: int, category: LogCategory, level: LogLevel) -> None: - """ - Log a message using the Orthanc logging system. - - Args: - message (str): The message to be logged. - plugin (str): The plugin name. - file (str): The filename in the plugin code. - line (int): The file line in the plugin code. - category (LogCategory): The category. - level (LogLevel): The level of the message. - """ - ... - # Log a warning message using the Orthanc logging system def LogWarning(message: str) -> None: """ @@ -2229,16 +2076,6 @@ """ ... -# This function gives a name to the thread that is calling this function -def SetCurrentThreadName(thread_name: str) -> None: - """ - This function gives a name to the thread that is calling this function. This name is used in the Orthanc logs. This function must only be called from threads that the plugin has created itself. - - Args: - thread_name (str): The name of the current thread. A thread name cannot be longer than 16 characters. - """ - ... - # Set a description for this plugin def SetDescription(description: str) -> None: """ @@ -2249,17 +2086,6 @@ """ ... -# Set a description for this plugin -def SetDescription2(plugin: str, description: str) -> None: - """ - Set a description for this plugin. It is displayed in the "Plugins" page of Orthanc Explorer. - - Args: - plugin (str): Identifier of your plugin (it must match "OrthancPluginGetName()"). - description (str): The description. - """ - ... - # Set the value of a global property into the Orthanc database def SetGlobalProperty(property: int, value: str) -> None: """ @@ -2271,10 +2097,10 @@ """ ... -# This function sets the value of a floating-point metrics to monitor the behavior of the plugin through tools such as Prometheus +# This function sets the value of a metrics to monitor the behavior of the plugin through tools such as Prometheus def SetMetricsValue(name: str, value: float, type: MetricsType) -> None: """ - This function sets the value of a floating-point metrics to monitor the behavior of the plugin through tools such as Prometheus. The values of all the metrics are stored within the Orthanc context. + This function sets the value of a metrics to monitor the behavior of the plugin through tools such as Prometheus. The values of all the metrics are stored within the Orthanc context. Args: name (str): The name of the metrics to be set. @@ -2293,17 +2119,6 @@ """ ... -# For plugins that come with a Web interface, this function declares the entry path where to find this interface -def SetRootUri2(plugin: str, uri: str) -> None: - """ - For plugins that come with a Web interface, this function declares the entry path where to find this interface. This information is notably used in the "Plugins" page of Orthanc Explorer. - - Args: - plugin (str): Identifier of your plugin (it must match "OrthancPluginGetName()"). - uri (str): The root URI for this plugin. - """ - ... - # This function parses a memory buffer that contains a DICOM file, then transcodes it to the given transfer syntax def TranscodeDicomInstance(buffer: bytes, transfer_syntax: str) -> DicomInstance: """ @@ -3186,26 +3001,6 @@ log (int): Whether to also write the detailed error to the Orthanc logs. """ ... - - # Initiates an HTTP stream answer, as the result of a REST request - def StartStreamAnswer(self, content_type: str) -> None: - """ - Initiates an HTTP stream answer, as the result of a REST request. - - Args: - content_type (str): The MIME type of the items in the stream answer. - """ - ... - - # This function sends a chunk as part of some HTTP stream answer that was initiated by OrthancPluginStartStreamAnswer() - def SendStreamChunk(self, answer: bytes) -> None: - """ - This function sends a chunk as part of some HTTP stream answer that was initiated by OrthancPluginStartStreamAnswer(). - - Args: - answer (bytes): Pointer to the memory buffer containing the item. - """ - ... class ServerChunkedRequestReader: """ @@ -3269,13 +3064,6 @@ """ ... -class WebDavCollection: - """ - WebDAV collection - """ - ... - - class WorklistAnswers: """ Answers to a DICOM C-FIND worklist query
--- a/Sources/Autogenerated/sdk.cpp Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk.cpp Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License @@ -49,9 +49,6 @@ #include "./sdk_OrthancPluginInstanceOrigin.impl.h" #include "./sdk_OrthancPluginJobStepStatus.impl.h" #include "./sdk_OrthancPluginJobStopReason.impl.h" -#include "./sdk_OrthancPluginLoadDicomInstanceMode.impl.h" -#include "./sdk_OrthancPluginLogCategory.impl.h" -#include "./sdk_OrthancPluginLogLevel.impl.h" #include "./sdk_OrthancPluginMetricsType.impl.h" #include "./sdk_OrthancPluginPixelFormat.impl.h" #include "./sdk_OrthancPluginReceivedInstanceAction.impl.h" @@ -70,7 +67,6 @@ #include "./sdk_OrthancPluginRestOutput.impl.h" #include "./sdk_OrthancPluginServerChunkedRequestReader.impl.h" #include "./sdk_OrthancPluginStorageArea.impl.h" -#include "./sdk_OrthancPluginWebDavCollection.impl.h" #include "./sdk_OrthancPluginWorklistAnswers.impl.h" #include "./sdk_OrthancPluginWorklistQuery.impl.h" @@ -87,7 +83,6 @@ #include "./sdk_OrthancPluginRestOutput.methods.h" #include "./sdk_OrthancPluginServerChunkedRequestReader.methods.h" #include "./sdk_OrthancPluginStorageArea.methods.h" -#include "./sdk_OrthancPluginWebDavCollection.methods.h" #include "./sdk_OrthancPluginWorklistAnswers.methods.h" #include "./sdk_OrthancPluginWorklistQuery.methods.h" @@ -108,9 +103,6 @@ RegisterOrthancPluginInstanceOriginEnumeration(module); RegisterOrthancPluginJobStepStatusEnumeration(module); RegisterOrthancPluginJobStopReasonEnumeration(module); - RegisterOrthancPluginLoadDicomInstanceModeEnumeration(module); - RegisterOrthancPluginLogCategoryEnumeration(module); - RegisterOrthancPluginLogLevelEnumeration(module); RegisterOrthancPluginMetricsTypeEnumeration(module); RegisterOrthancPluginPixelFormatEnumeration(module); RegisterOrthancPluginReceivedInstanceActionEnumeration(module); @@ -129,7 +121,6 @@ RegisterOrthancPluginRestOutputClass(module); RegisterOrthancPluginServerChunkedRequestReaderClass(module); RegisterOrthancPluginStorageAreaClass(module); - RegisterOrthancPluginWebDavCollectionClass(module); RegisterOrthancPluginWorklistAnswersClass(module); RegisterOrthancPluginWorklistQueryClass(module); }
--- a/Sources/Autogenerated/sdk.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License @@ -45,7 +45,6 @@ PyTypeObject* GetOrthancPluginRestOutputType(); PyTypeObject* GetOrthancPluginServerChunkedRequestReaderType(); PyTypeObject* GetOrthancPluginStorageAreaType(); -PyTypeObject* GetOrthancPluginWebDavCollectionType(); PyTypeObject* GetOrthancPluginWorklistAnswersType(); PyTypeObject* GetOrthancPluginWorklistQueryType(); @@ -155,15 +154,6 @@ PyObject_HEAD /* Type-specific fields go here. */ - OrthancPluginWebDavCollection* object_; - bool borrowed_; -} sdk_OrthancPluginWebDavCollection_Object; - -typedef struct -{ - PyObject_HEAD - - /* Type-specific fields go here. */ OrthancPluginWorklistAnswers* object_; bool borrowed_; } sdk_OrthancPluginWorklistAnswers_Object;
--- a/Sources/Autogenerated/sdk_GlobalFunctions.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_GlobalFunctions.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License @@ -569,29 +569,6 @@ return Py_None; } -static PyObject* sdk_OrthancPluginExtendOrthancExplorer2(PyObject* module, PyObject* args) -{ - PythonLock::LogCall("Calling Python global function: OrthancPluginExtendOrthancExplorer2()"); - - const char* arg0 = NULL; - const char* arg1 = NULL; - - if (!PyArg_ParseTuple(args, "ss", &arg0, &arg1)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (2 arguments expected)"); - return NULL; - } - - { - PythonThreadsAllower allower; - OrthancPluginExtendOrthancExplorer2(OrthancPlugins::GetGlobalContext(), arg0, arg1); - } - - - Py_INCREF(Py_None); - return Py_None; -} - static PyObject* sdk_OrthancPluginGenerateRestApiAuthorizationToken(PyObject* module, PyObject* args) { PythonLock::LogCall("Calling Python global function: OrthancPluginGenerateRestApiAuthorizationToken()"); @@ -728,29 +705,6 @@ } } -static PyObject* sdk_OrthancPluginGetDatabaseServerIdentifier(PyObject* module, PyObject* args) -{ - PythonLock::LogCall("Calling Python global function: OrthancPluginGetDatabaseServerIdentifier()"); - - - - const char* s; - { - PythonThreadsAllower allower; - s = OrthancPluginGetDatabaseServerIdentifier(OrthancPlugins::GetGlobalContext()); - } - - if (s == NULL) - { - Py_INCREF(Py_None); - return Py_None; - } - else - { - return PyUnicode_FromString(s); - } -} - static PyObject* sdk_OrthancPluginGetDicomForInstance(PyObject* module, PyObject* args) { PythonLock::LogCall("Calling Python global function: OrthancPluginGetDicomForInstance()"); @@ -1155,40 +1109,6 @@ } } -static PyObject* sdk_OrthancPluginLoadDicomInstance(PyObject* module, PyObject* args) -{ - PythonLock::LogCall("Calling Python global function: OrthancPluginLoadDicomInstance()"); - - const char* arg0 = NULL; - long int arg1 = 0; - - if (!PyArg_ParseTuple(args, "sl", &arg0, &arg1)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (2 arguments expected)"); - return NULL; - } - - // This is the case of a constructor - OrthancPluginDicomInstance* obj; - { - PythonThreadsAllower allower; - obj = OrthancPluginLoadDicomInstance(OrthancPlugins::GetGlobalContext(), arg0, static_cast<OrthancPluginLoadDicomInstanceMode>(arg1)); - } - - if (obj == NULL) - { - PythonLock::RaiseException(OrthancPluginErrorCode_InternalError); - return NULL; - } - else - { - PyObject *argList = Py_BuildValue("Lb", obj, false /* not borrowed */); - PyObject *python = PyObject_CallObject((PyObject *) &sdk_OrthancPluginDicomInstance_Type, argList); - Py_DECREF(argList); - return python; - } -} - static PyObject* sdk_OrthancPluginLogError(PyObject* module, PyObject* args) { PythonLock::LogCall("Calling Python global function: OrthancPluginLogError()"); @@ -1233,33 +1153,6 @@ return Py_None; } -static PyObject* sdk_OrthancPluginLogMessage(PyObject* module, PyObject* args) -{ - PythonLock::LogCall("Calling Python global function: OrthancPluginLogMessage()"); - - const char* arg0 = NULL; - const char* arg1 = NULL; - const char* arg2 = NULL; - unsigned long arg3 = 0; - long int arg4 = 0; - long int arg5 = 0; - - if (!PyArg_ParseTuple(args, "ssskll", &arg0, &arg1, &arg2, &arg3, &arg4, &arg5)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (6 arguments expected)"); - return NULL; - } - - { - PythonThreadsAllower allower; - OrthancPluginLogMessage(OrthancPlugins::GetGlobalContext(), arg0, arg1, arg2, arg3, static_cast<OrthancPluginLogCategory>(arg4), static_cast<OrthancPluginLogLevel>(arg5)); - } - - - Py_INCREF(Py_None); - return Py_None; -} - static PyObject* sdk_OrthancPluginLogWarning(PyObject* module, PyObject* args) { PythonLock::LogCall("Calling Python global function: OrthancPluginLogWarning()"); @@ -1809,37 +1702,6 @@ } } -static PyObject* sdk_OrthancPluginSetCurrentThreadName(PyObject* module, PyObject* args) -{ - PythonLock::LogCall("Calling Python global function: OrthancPluginSetCurrentThreadName()"); - - const char* arg0 = NULL; - - if (!PyArg_ParseTuple(args, "s", &arg0)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (1 arguments expected)"); - return NULL; - } - - OrthancPluginErrorCode code; - { - PythonThreadsAllower allower; - code = OrthancPluginSetCurrentThreadName(OrthancPlugins::GetGlobalContext(), arg0); - } - - - if (code == OrthancPluginErrorCode_Success) - { - Py_INCREF(Py_None); - return Py_None; - } - else - { - PythonLock::RaiseException(code); - return NULL; - } -} - static PyObject* sdk_OrthancPluginSetDescription(PyObject* module, PyObject* args) { PythonLock::LogCall("Calling Python global function: OrthancPluginSetDescription()"); @@ -1862,29 +1724,6 @@ return Py_None; } -static PyObject* sdk_OrthancPluginSetDescription2(PyObject* module, PyObject* args) -{ - PythonLock::LogCall("Calling Python global function: OrthancPluginSetDescription2()"); - - const char* arg0 = NULL; - const char* arg1 = NULL; - - if (!PyArg_ParseTuple(args, "ss", &arg0, &arg1)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (2 arguments expected)"); - return NULL; - } - - { - PythonThreadsAllower allower; - OrthancPluginSetDescription2(OrthancPlugins::GetGlobalContext(), arg0, arg1); - } - - - Py_INCREF(Py_None); - return Py_None; -} - static PyObject* sdk_OrthancPluginSetGlobalProperty(PyObject* module, PyObject* args) { PythonLock::LogCall("Calling Python global function: OrthancPluginSetGlobalProperty()"); @@ -1963,29 +1802,6 @@ return Py_None; } -static PyObject* sdk_OrthancPluginSetRootUri2(PyObject* module, PyObject* args) -{ - PythonLock::LogCall("Calling Python global function: OrthancPluginSetRootUri2()"); - - const char* arg0 = NULL; - const char* arg1 = NULL; - - if (!PyArg_ParseTuple(args, "ss", &arg0, &arg1)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (2 arguments expected)"); - return NULL; - } - - { - PythonThreadsAllower allower; - OrthancPluginSetRootUri2(OrthancPlugins::GetGlobalContext(), arg0, arg1); - } - - - Py_INCREF(Py_None); - return Py_None; -} - static PyObject* sdk_OrthancPluginTranscodeDicomInstance(PyObject* module, PyObject* args) { PythonLock::LogCall("Calling Python global function: OrthancPluginTranscodeDicomInstance()"); @@ -2123,8 +1939,6 @@ "Generated from C function OrthancPluginDicomInstanceToJson()" }, { "ExtendOrthancExplorer", sdk_OrthancPluginExtendOrthancExplorer, METH_VARARGS, "Generated from C function OrthancPluginExtendOrthancExplorer()" }, - { "ExtendOrthancExplorer2", sdk_OrthancPluginExtendOrthancExplorer2, METH_VARARGS, - "Generated from C function OrthancPluginExtendOrthancExplorer2()" }, { "GenerateRestApiAuthorizationToken", sdk_OrthancPluginGenerateRestApiAuthorizationToken, METH_VARARGS, "Generated from C function OrthancPluginGenerateRestApiAuthorizationToken()" }, { "GenerateUuid", sdk_OrthancPluginGenerateUuid, METH_VARARGS, @@ -2137,8 +1951,6 @@ "Generated from C function OrthancPluginGetConfiguration()" }, { "GetConfigurationPath", sdk_OrthancPluginGetConfigurationPath, METH_VARARGS, "Generated from C function OrthancPluginGetConfigurationPath()" }, - { "GetDatabaseServerIdentifier", sdk_OrthancPluginGetDatabaseServerIdentifier, METH_VARARGS, - "Generated from C function OrthancPluginGetDatabaseServerIdentifier()" }, { "GetDicomForInstance", sdk_OrthancPluginGetDicomForInstance, METH_VARARGS, "Generated from C function OrthancPluginGetDicomForInstance()" }, { "GetErrorDescription", sdk_OrthancPluginGetErrorDescription, METH_VARARGS, @@ -2169,14 +1981,10 @@ "Generated from C function OrthancPluginHttpPost()" }, { "HttpPut", sdk_OrthancPluginHttpPut, METH_VARARGS, "Generated from C function OrthancPluginHttpPut()" }, - { "LoadDicomInstance", sdk_OrthancPluginLoadDicomInstance, METH_VARARGS, - "Generated from C function OrthancPluginLoadDicomInstance()" }, { "LogError", sdk_OrthancPluginLogError, METH_VARARGS, "Generated from C function OrthancPluginLogError()" }, { "LogInfo", sdk_OrthancPluginLogInfo, METH_VARARGS, "Generated from C function OrthancPluginLogInfo()" }, - { "LogMessage", sdk_OrthancPluginLogMessage, METH_VARARGS, - "Generated from C function OrthancPluginLogMessage()" }, { "LogWarning", sdk_OrthancPluginLogWarning, METH_VARARGS, "Generated from C function OrthancPluginLogWarning()" }, { "LookupInstance", sdk_OrthancPluginLookupInstance, METH_VARARGS, @@ -2213,20 +2021,14 @@ "Generated from C function OrthancPluginRestApiPut()" }, { "RestApiPutAfterPlugins", sdk_OrthancPluginRestApiPutAfterPlugins, METH_VARARGS, "Generated from C function OrthancPluginRestApiPutAfterPlugins()" }, - { "SetCurrentThreadName", sdk_OrthancPluginSetCurrentThreadName, METH_VARARGS, - "Generated from C function OrthancPluginSetCurrentThreadName()" }, { "SetDescription", sdk_OrthancPluginSetDescription, METH_VARARGS, "Generated from C function OrthancPluginSetDescription()" }, - { "SetDescription2", sdk_OrthancPluginSetDescription2, METH_VARARGS, - "Generated from C function OrthancPluginSetDescription2()" }, { "SetGlobalProperty", sdk_OrthancPluginSetGlobalProperty, METH_VARARGS, "Generated from C function OrthancPluginSetGlobalProperty()" }, { "SetMetricsValue", sdk_OrthancPluginSetMetricsValue, METH_VARARGS, "Generated from C function OrthancPluginSetMetricsValue()" }, { "SetRootUri", sdk_OrthancPluginSetRootUri, METH_VARARGS, "Generated from C function OrthancPluginSetRootUri()" }, - { "SetRootUri2", sdk_OrthancPluginSetRootUri2, METH_VARARGS, - "Generated from C function OrthancPluginSetRootUri2()" }, { "TranscodeDicomInstance", sdk_OrthancPluginTranscodeDicomInstance, METH_VARARGS, "Generated from C function OrthancPluginTranscodeDicomInstance()" }, { "UncompressImage", sdk_OrthancPluginUncompressImage, METH_VARARGS,
--- a/Sources/Autogenerated/sdk_OrthancPluginChangeType.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginChangeType.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginCompressionType.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginCompressionType.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginConstraintType.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginConstraintType.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginContentType.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginContentType.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginCreateDicomFlags.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginCreateDicomFlags.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginDicomInstance.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginDicomInstance.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginDicomInstance.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginDicomInstance.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginDicomToJsonFlags.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginDicomToJsonFlags.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginDicomToJsonFormat.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginDicomToJsonFormat.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginDicomWebBinaryMode.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginDicomWebBinaryMode.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginDicomWebNode.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginDicomWebNode.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginDicomWebNode.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginDicomWebNode.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginErrorCode.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginErrorCode.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License @@ -344,30 +344,6 @@ } { - PyObject* tmp = PyLong_FromLong(44); - PyDict_SetItemString(sdk_OrthancPluginErrorCode_Type.tp_dict, "MAIN_DICOM_TAGS_MULTIPLY_DEFINED", tmp); - Py_DECREF(tmp); - } - - { - PyObject* tmp = PyLong_FromLong(45); - PyDict_SetItemString(sdk_OrthancPluginErrorCode_Type.tp_dict, "FORBIDDEN_ACCESS", tmp); - Py_DECREF(tmp); - } - - { - PyObject* tmp = PyLong_FromLong(46); - PyDict_SetItemString(sdk_OrthancPluginErrorCode_Type.tp_dict, "DUPLICATE_RESOURCE", tmp); - Py_DECREF(tmp); - } - - { - PyObject* tmp = PyLong_FromLong(47); - PyDict_SetItemString(sdk_OrthancPluginErrorCode_Type.tp_dict, "INCOMPATIBLE_CONFIGURATIONS", tmp); - Py_DECREF(tmp); - } - - { PyObject* tmp = PyLong_FromLong(1000); PyDict_SetItemString(sdk_OrthancPluginErrorCode_Type.tp_dict, "SQLITE_NOT_OPENED", tmp); Py_DECREF(tmp);
--- a/Sources/Autogenerated/sdk_OrthancPluginFindAnswers.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginFindAnswers.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginFindAnswers.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginFindAnswers.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginFindMatcher.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginFindMatcher.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginFindMatcher.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginFindMatcher.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginFindQuery.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginFindQuery.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginFindQuery.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginFindQuery.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginHttpMethod.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginHttpMethod.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginIdentifierConstraint.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginIdentifierConstraint.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginImage.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginImage.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginImage.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginImage.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginImageFormat.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginImageFormat.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginInstanceOrigin.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginInstanceOrigin.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginJob.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginJob.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginJob.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginJob.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginJobStepStatus.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginJobStepStatus.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginJobStopReason.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginJobStopReason.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginLoadDicomInstanceMode.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginLoadDicomInstanceMode.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginLogCategory.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginLogCategory.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginLogLevel.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginLogLevel.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginMetricsType.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginMetricsType.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginPeers.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginPeers.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginPeers.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginPeers.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginPixelFormat.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginPixelFormat.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginReceivedInstanceAction.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginReceivedInstanceAction.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginResourceType.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginResourceType.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginRestOutput.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginRestOutput.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License @@ -54,10 +54,6 @@ sdk_OrthancPluginRestOutput_Object* self, PyObject *args); static PyObject *sdk_OrthancPluginRestOutput_OrthancPluginSetHttpErrorDetails( sdk_OrthancPluginRestOutput_Object* self, PyObject *args); -static PyObject *sdk_OrthancPluginRestOutput_OrthancPluginStartStreamAnswer( - sdk_OrthancPluginRestOutput_Object* self, PyObject *args); -static PyObject *sdk_OrthancPluginRestOutput_OrthancPluginSendStreamChunk( - sdk_OrthancPluginRestOutput_Object* self, PyObject *args); // End of forward declarations @@ -105,12 +101,6 @@ { "SetHttpErrorDetails", (PyCFunction) sdk_OrthancPluginRestOutput_OrthancPluginSetHttpErrorDetails, METH_VARARGS, "Generated from C function OrthancPluginSetHttpErrorDetails()" }, - { "StartStreamAnswer", - (PyCFunction) sdk_OrthancPluginRestOutput_OrthancPluginStartStreamAnswer, METH_VARARGS, - "Generated from C function OrthancPluginStartStreamAnswer()" }, - { "SendStreamChunk", - (PyCFunction) sdk_OrthancPluginRestOutput_OrthancPluginSendStreamChunk, METH_VARARGS, - "Generated from C function OrthancPluginSendStreamChunk()" }, { NULL } /* Sentinel */ };
--- a/Sources/Autogenerated/sdk_OrthancPluginRestOutput.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginRestOutput.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License @@ -438,79 +438,3 @@ return Py_None; } -static PyObject *sdk_OrthancPluginRestOutput_OrthancPluginStartStreamAnswer( - sdk_OrthancPluginRestOutput_Object* self, PyObject *args) -{ - PythonLock::LogCall("Calling method OrthancPluginStartStreamAnswer() on object of class OrthancPluginRestOutput"); - - if (self->object_ == NULL) - { - PyErr_SetString(PyExc_ValueError, "Invalid object"); - return NULL; - } - - const char* arg0 = NULL; - - if (!PyArg_ParseTuple(args, "s", &arg0)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (1 arguments expected)"); - return NULL; - } - - OrthancPluginErrorCode code; - { - PythonThreadsAllower allower; - code = OrthancPluginStartStreamAnswer(OrthancPlugins::GetGlobalContext(), self->object_, arg0); - } - - - if (code == OrthancPluginErrorCode_Success) - { - Py_INCREF(Py_None); - return Py_None; - } - else - { - PythonLock::RaiseException(code); - return NULL; - } -} - -static PyObject *sdk_OrthancPluginRestOutput_OrthancPluginSendStreamChunk( - sdk_OrthancPluginRestOutput_Object* self, PyObject *args) -{ - PythonLock::LogCall("Calling method OrthancPluginSendStreamChunk() on object of class OrthancPluginRestOutput"); - - if (self->object_ == NULL) - { - PyErr_SetString(PyExc_ValueError, "Invalid object"); - return NULL; - } - - Py_buffer arg0; - - if (!PyArg_ParseTuple(args, "s*", &arg0)) - { - PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (1 arguments expected)"); - return NULL; - } - - OrthancPluginErrorCode code; - { - PythonThreadsAllower allower; - code = OrthancPluginSendStreamChunk(OrthancPlugins::GetGlobalContext(), self->object_, arg0.buf, arg0.len); - } - PyBuffer_Release(&arg0); - - if (code == OrthancPluginErrorCode_Success) - { - Py_INCREF(Py_None); - return Py_None; - } - else - { - PythonLock::RaiseException(code); - return NULL; - } -} -
--- a/Sources/Autogenerated/sdk_OrthancPluginServerChunkedRequestReader.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginServerChunkedRequestReader.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginServerChunkedRequestReader.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginServerChunkedRequestReader.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginStorageArea.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginStorageArea.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginStorageArea.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginStorageArea.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginStorageCommitmentFailureReason.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginStorageCommitmentFailureReason.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginValueRepresentation.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginValueRepresentation.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginWebDavCollection.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginWebDavCollection.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginWebDavCollection.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginWebDavCollection.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginWorklistAnswers.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginWorklistAnswers.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginWorklistAnswers.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginWorklistAnswers.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginWorklistQuery.impl.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginWorklistQuery.impl.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License
--- a/Sources/Autogenerated/sdk_OrthancPluginWorklistQuery.methods.h Fri Jan 17 14:25:06 2025 +0100 +++ b/Sources/Autogenerated/sdk_OrthancPluginWorklistQuery.methods.h Fri Jan 17 15:25:51 2025 +0100 @@ -1,13 +1,13 @@ /** - * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2024 Orthanc Team SRL, 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain + * SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain * SPDX-License-Identifier: AGPL-3.0-or-later */ /** * Python plugin for Orthanc * Copyright (C) 2020-2023 Osimis S.A., Belgium - * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium - * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium + * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium + * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License