# HG changeset patch # User Sebastien Jodogne # Date 1523907094 -7200 # Node ID 01c650c5aa185d7034acb546d77d6d34b17a83f5 # Parent a574a82f31758d766994083108996fd9e3460f9b cont diff -r a574a82f3175 -r 01c650c5aa18 NEWS --- a/NEWS Mon Apr 16 17:19:57 2018 +0200 +++ b/NEWS Mon Apr 16 21:31:34 2018 +0200 @@ -8,6 +8,7 @@ * Fix issue 62 (use correct type for lo_read() value) * Fix issue 63 (allow to connect without specifing username and/or port) * Fix issue 68 (PostgreSQL plugin needs extra flags to compile) +* Resort to Orthanc framework * Support of Linux Standard Base, OpenBSD and FreeBSD diff -r a574a82f3175 -r 01c650c5aa18 Resources/SyncOrthancFolder.py --- a/Resources/SyncOrthancFolder.py Mon Apr 16 17:19:57 2018 +0200 +++ b/Resources/SyncOrthancFolder.py Mon Apr 16 21:31:34 2018 +0200 @@ -28,8 +28,6 @@ 'orthanc/OrthancCppDatabasePlugin.h', ] -EXE = [ ] - def Download(x): branch = x[0] @@ -65,10 +63,3 @@ pool = multiprocessing.Pool(10) # simultaneous downloads pool.map(Download, commands) - - -for exe in EXE: - path = os.path.join(TARGET, exe) - st = os.stat(path) - os.chmod(path, st.st_mode | stat.S_IEXEC) -