1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Bug:
===
* The plugin does not support calls to 'curl http://localhost:8042/tools/reset -d ""'
if the script registers the OnChangeCallback.
https://discourse.orthanc-server.org/t/problem-when-restarting-orthanc-via-api-tools-reset/5183
Ex:
import orthanc
def OnChange(changeType, level, resource):
print("OnChange")
orthanc.RegisterOnChangeCallback(OnChange)
Possible improvements:
=====================
* In ReceivedInstanceFilter: change the orthanc.InstanceOrigin enum for an
object similar to the origin table in lua for the Python Plugin?
https://discourse.orthanc-server.org/t/python-plugin-get-origin-information-calledaet-remoteip/4045
* Allow working with python virtual env (since python 3.11, we must sometimes use --break-system-packages).
Primitives the Orthanc community is missing
===========================================
* Create Python jobs:
https://groups.google.com/g/orthanc-users/c/8-OYbc3mnyI/m/Mr9QvLKeAgAJ
|