# HG changeset patch # User Sebastien Jodogne # Date 1413449003 -7200 # Node ID 2e11c33533560da2746db9459b18cb0c77da25bf # Parent b17b6bd59747cbf5ff218dc629c34dc9adf2d11b download dicomdir in Orthanc Explorer diff -r b17b6bd59747 -r 2e11c3353356 NEWS --- a/NEWS Tue Oct 14 14:47:58 2014 +0200 +++ b/NEWS Thu Oct 16 10:43:23 2014 +0200 @@ -1,6 +1,7 @@ Pending changes in the mainline =============================== +* Download ZIP + DICOMDIR from Orthanc Explorer * Sample plugin framework to serve static resources * Fix issue 21 (Microsoft Visual Studio precompiled headers) diff -r b17b6bd59747 -r 2e11c3353356 OrthancExplorer/explorer.html --- a/OrthancExplorer/explorer.html Tue Oct 14 14:47:58 2014 +0200 +++ b/OrthancExplorer/explorer.html Thu Oct 16 10:43:23 2014 +0200 @@ -105,6 +105,7 @@ Before modification
  • Download ZIP
  • +
  • Download DICOMDIR
  • @@ -151,6 +152,7 @@ Before modification
  • Download ZIP
  • +
  • Download DICOMDIR
  • @@ -200,6 +202,7 @@
  • Preview this series
  • Download ZIP
  • +
  • Download DICOMDIR
  • diff -r b17b6bd59747 -r 2e11c3353356 OrthancExplorer/explorer.js --- a/OrthancExplorer/explorer.js Tue Oct 14 14:47:58 2014 +0200 +++ b/OrthancExplorer/explorer.js Thu Oct 16 10:43:23 2014 +0200 @@ -935,6 +935,24 @@ window.location.href = '../series/' + $.mobile.pageData.uuid + '/archive'; }); + +$('#patient-media').live('click', function(e) { + e.preventDefault(); //stop the browser from following + window.location.href = '../patients/' + $.mobile.pageData.uuid + '/media'; +}); + +$('#study-media').live('click', function(e) { + e.preventDefault(); //stop the browser from following + window.location.href = '../studies/' + $.mobile.pageData.uuid + '/media'; +}); + +$('#series-media').live('click', function(e) { + e.preventDefault(); //stop the browser from following + window.location.href = '../series/' + $.mobile.pageData.uuid + '/media'; +}); + + + $('#protection').live('change', function(e) { var isProtected = e.target.value == "on"; $.ajax({ diff -r b17b6bd59747 -r 2e11c3353356 THANKS --- a/THANKS Tue Oct 14 14:47:58 2014 +0200 +++ b/THANKS Thu Oct 16 10:43:23 2014 +0200 @@ -25,6 +25,7 @@ * Chris Hafey , for suggesting many features and improvements, the Windows service and Windows installer. * Manabu Tokunaga , for the Windows service. +* Vincent Kersten , for DICOMDIR in the GUI. Thanks also to all the contributors active in our Google Group: