annotate Resources/Samples/Lua/CallDcm2Xml.lua @ 1793:9a3a77d1d2a2

backward compatibility with Orthanc 0.9.4
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 19 Nov 2015 11:57:32 +0100
parents 921532f67770
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1065
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 function OnStoredInstance(instanceId, tags, metadata)
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 -- Assume Latin1 encoding in dcm2xml
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 local args = {}
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 table.insert(args, '+Ca')
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
5 table.insert(args, 'latin-1')
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
6
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 Delete(CallSystem(instanceId, 'dcm2xml', args))
921532f67770 Lua scripts can invoke system commands, with CallSystem()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8 end