[med-svn] [odil] branch upstream updated (a4169f1 -> f7fac8f)
Julien Lamy
lamy-guest at moszumanska.debian.org
Fri May 13 13:47:53 UTC 2016
This is an automated email from the git hooks/post-receive script.
lamy-guest pushed a change to branch upstream
in repository odil.
from a4169f1 Imported Upstream version 0.5.0
adds f7fac8f Imported Upstream version 0.6.0
No new revisions were added by this update.
Summary of changes:
.travis.yml | 6 +-
CMakeLists.txt | 30 +
Doxyfile | 2789 ++++++++------
FindDCMTK.cmake | 13 +-
README.md | 5 +-
applications/CMakeLists.txt | 1 +
applications/dicomdir.py | 59 +
applications/echo.py | 4 +-
applications/find.py | 15 +-
applications/get.py | 117 +
applications/odil | 5 +-
applications/print_.py | 14 +-
applications/transcode.py | 4 +-
cmake/functions.cmake | 32 +
examples/CMakeLists.txt | 7 +
examples/move.cpp | 20 +-
registry.cpp.tmpl | 29 +-
registry.h.tmpl | 4 +
src/CMakeLists.txt | 18 +-
src/odil/Association.h | 16 +-
src/odil/AssociationAcceptor.h | 11 +
src/odil/AssociationParameters.h | 18 +
src/odil/BasicDirectoryCreator.cpp | 17 +-
src/odil/BasicDirectoryCreator.h | 2 +
src/odil/DataSet.cpp | 151 +
src/odil/DataSet.h | 114 +-
src/odil/Element.h | 1 +
src/odil/ElementsDictionary.cpp | 16 +
src/odil/ElementsDictionary.h | 11 +
src/odil/Exception.h | 1 +
src/odil/FindSCU.h | 1 +
src/odil/GetSCP.h | 3 +-
src/odil/GetSCU.cpp | 23 +-
src/odil/GetSCU.h | 24 +-
src/odil/MoveSCP.h | 5 +-
src/odil/MoveSCU.cpp | 116 +-
src/odil/MoveSCU.h | 43 +-
src/odil/Reader.cpp | 10 +-
src/odil/Reader.h | 1 +
src/odil/SCP.h | 7 +
src/odil/SCPDispatcher.h | 5 +
src/odil/SCU.h | 2 +
src/odil/Tag.cpp | 110 +-
src/odil/Tag.h | 5 +-
src/odil/UIDsDictionary.h | 6 +
src/odil/VR.cpp | 4 +-
src/odil/VR.h | 4 +-
src/odil/VRFinder.cpp | 119 +-
src/odil/VRFinder.h | 5 +
src/odil/Value.h | 3 +
src/odil/Writer.cpp | 20 +-
src/odil/json_converter.cpp | 1 +
src/odil/odil.h | 15 +
src/odil/registry.cpp | 4159 ++++++++++++++++++++-
src/odil/registry.h | 57 +-
src/odil/xml_converter.cpp | 1 +
tests/CMakeLists.txt | 2 +-
tests/code/EchoSCP.cpp | 2 +-
tests/code/GetSCP.cpp | 1 +
tests/code/GetSCU.cpp | 36 +-
tests/code/MoveSCP.cpp | 1 +
tests/code/MoveSCU.cpp | 50 +-
tests/code/SCPDispatcher.cpp | 2 +-
tests/run | 6 +-
tests/wrappers/test_data_set.py | 140 +-
tests/wrappers/test_echo_scp.py | 72 +
tests/wrappers/test_element.py | 25 +-
tests/wrappers/test_exception.py | 25 +
tests/wrappers/test_find_scp.py | 109 +
tests/wrappers/test_find_scu.py | 16 +-
tests/wrappers/test_get_scp.py | 133 +
tests/wrappers/test_get_scu.py | 54 +-
tests/wrappers/test_move_scp.py | 157 +
tests/wrappers/test_move_scu.py | 66 +-
tests/wrappers/test_store_scu.py | 23 +-
tests/wrappers/test_value.py | 46 +-
tests/wrappers/test_vr_finder.py | 16 +
wrappers/Assocation.cpp | 58 +-
wrappers/BasicDirectoryCreator.cpp | 130 +
wrappers/{EchoSCU.cpp => CEchoRequest.cpp} | 25 +-
wrappers/CFindRequest.cpp | 38 +
wrappers/CGetRequest.cpp | 38 +
wrappers/CGetResponse.cpp | 79 +
wrappers/CMakeLists.txt | 2 +-
wrappers/CMoveRequest.cpp | 42 +
wrappers/CMoveResponse.cpp | 79 +
wrappers/CStoreRequest.cpp | 65 +
wrappers/DataSet.cpp | 118 +-
wrappers/DataSetGeneratorWrapper.h | 52 +
wrappers/{Exception.cpp => EchoSCP.cpp} | 25 +-
wrappers/Element.cpp | 27 +-
wrappers/Exception.cpp | 18 +-
wrappers/FindSCP.cpp | 48 +
wrappers/GetSCP.cpp | 63 +
wrappers/GetSCU.cpp | 36 +-
wrappers/Message.cpp | 35 +
wrappers/MoveSCP.cpp | 70 +
wrappers/MoveSCU.cpp | 51 +-
wrappers/{Exception.cpp => Request.cpp} | 19 +-
wrappers/Response.cpp | 43 +
wrappers/{Exception.cpp => StoreSCP.cpp} | 25 +-
wrappers/Tag.cpp | 1 +
wrappers/{Exception.cpp => VRFinder.cpp} | 16 +-
wrappers/Value.cpp | 25 +-
wrappers/exception_factory.cpp | 26 +
wrappers/{Exception.cpp => exception_factory.h} | 22 +-
wrappers/json_converter.cpp | 11 +-
wrappers/odil.cpp | 39 +-
wrappers/value_constructor.cpp | 81 +
src/odil/asio.cpp => wrappers/value_constructor.h | 8 +-
wrappers/xml_converter.cpp | 1 +
111 files changed, 9049 insertions(+), 1628 deletions(-)
create mode 100644 applications/dicomdir.py
create mode 100644 applications/get.py
create mode 100644 cmake/functions.cmake
create mode 100644 src/odil/odil.h
create mode 100644 tests/wrappers/test_echo_scp.py
create mode 100644 tests/wrappers/test_exception.py
create mode 100644 tests/wrappers/test_find_scp.py
create mode 100644 tests/wrappers/test_get_scp.py
create mode 100644 tests/wrappers/test_move_scp.py
create mode 100644 tests/wrappers/test_vr_finder.py
create mode 100644 wrappers/BasicDirectoryCreator.cpp
copy wrappers/{EchoSCU.cpp => CEchoRequest.cpp} (51%)
create mode 100644 wrappers/CFindRequest.cpp
create mode 100644 wrappers/CGetRequest.cpp
create mode 100644 wrappers/CGetResponse.cpp
create mode 100644 wrappers/CMoveRequest.cpp
create mode 100644 wrappers/CMoveResponse.cpp
create mode 100644 wrappers/CStoreRequest.cpp
create mode 100644 wrappers/DataSetGeneratorWrapper.h
copy wrappers/{Exception.cpp => EchoSCP.cpp} (51%)
create mode 100644 wrappers/FindSCP.cpp
create mode 100644 wrappers/GetSCP.cpp
create mode 100644 wrappers/Message.cpp
create mode 100644 wrappers/MoveSCP.cpp
copy wrappers/{Exception.cpp => Request.cpp} (56%)
create mode 100644 wrappers/Response.cpp
copy wrappers/{Exception.cpp => StoreSCP.cpp} (51%)
copy wrappers/{Exception.cpp => VRFinder.cpp} (70%)
create mode 100644 wrappers/exception_factory.cpp
copy wrappers/{Exception.cpp => exception_factory.h} (57%)
create mode 100644 wrappers/value_constructor.cpp
copy src/odil/asio.cpp => wrappers/value_constructor.h (74%)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/odil.git
More information about the debian-med-commit
mailing list