changeset 2255:1442da6a03dd

removed unused .orig file
author Alain Mazy <am@osimis.io>
date Wed, 01 Feb 2017 14:04:24 +0000
parents 4305c183c7f8
children de1ba22fd28a
files Resources/Samples/Lua/OnStableStudy.lua.orig
diffstat 1 files changed, 0 insertions(+), 46 deletions(-) [+]
line wrap: on
line diff
--- a/Resources/Samples/Lua/OnStableStudy.lua.orig	Wed Feb 01 14:03:41 2017 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,46 +0,0 @@
-function Initialize()
-   print('Number of stored studies at initialization: ' ..
-            table.getn(ParseJson(RestApiGet('/studies'))))
-end
-
-
-function Finalize()
-   print('Number of stored studies at finalization: ' ..
-            table.getn(ParseJson(RestApiGet('/studies'))))
-end
-
-
-function OnStoredInstance(instanceId, tags, metadata)
-   patient = ParseJson(RestApiGet('/instances/' .. instanceId .. '/patient'))
-   print('Received an instance for patient: ' .. 
-            patient['MainDicomTags']['PatientID'] .. ' - ' .. 
-            patient['MainDicomTags']['PatientName'])
-end
-
-
-function OnStableStudy(studyId, tags, metadata)
-   if (metadata['ModifiedFrom'] == nil and
-       metadata['AnonymizedFrom'] == nil) then
-
-      print('This study is now stable: ' .. studyId)
-      
-      -- The tags to be replaced
-      local replace = {}
-      replace['StudyDescription'] = 'Modified study'
-      replace['StationName'] = 'My Medical Device'
-      replace['0031-1020'] = 'Some private tag'
-
-      -- The tags to be removed
-      local remove = { 'MilitaryRank' }
-
-      -- The modification command
-      local command = {}
-      command['Remove'] = remove
-      command['Replace'] = replace
-
-      -- Modify the entire study in one single call
-      local m = RestApiPost('/studies/' .. studyId .. '/modify',
-                            DumpJson(command, true))
-      print('Modified study: ' .. m)
-   end
-end