Commit 17652aa8d4d0d9de499b9b2bf9e73ba9b0b4ba5d

Authored by Luigi Serra
2 parents bf740953 e2d8a521

Merge branch 'master' of http://service.routetopa.eu:7480/isislab/DEEP

datalets.xml
... ... @@ -588,6 +588,12 @@
588 588 <type>GEOJSON</type>
589 589 <selection>1</selection>
590 590 </input>
  591 + <input>
  592 + <name>BalloonContent</name>
  593 + <description>BalloonContentDescription</description>
  594 + <type>TEXT</type>
  595 + <selection>*</selection>
  596 + </input>
591 597 <layouts>
592 598 </layouts>
593 599 </inputs>
... ...
export/deepexport.php
... ... @@ -56,15 +56,28 @@ class DeepExport
56 56  
57 57 if(!empty($_REQUEST["description"]))
58 58 $sect->writeText("Dataset description : " . strip_tags($_REQUEST["description"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  59 +
59 60 if(!empty($_REQUEST["created"]))
60 61 $sect->writeText("Dataset creation date : " . strip_tags($_REQUEST["created"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  62 +
61 63 if(!empty($_REQUEST["format"]))
62 64 $sect->writeText("Dataset format : " . strip_tags($_REQUEST["format"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  65 +
63 66 if(!empty($_REQUEST["lastModified"]))
64 67 $sect->writeText("Dataset last modified : " . strip_tags($_REQUEST["lastModified"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
65 68  
66 69 if(!empty($_REQUEST["dataset"]))
67 70 $sect->writeText("Dataset link : " . strip_tags($_REQUEST["dataset"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  71 +
  72 + if(!empty($_REQUEST["timestamp"]))
  73 + $sect->writeText("Datalet added on : " . strip_tags($_REQUEST["timestamp"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  74 +
  75 + if(!empty($_REQUEST["user"]))
  76 + $sect->writeText("Datalet created by : " . strip_tags($_REQUEST["user"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  77 +
  78 + if(!empty($_REQUEST["comment"]))
  79 + $sect->writeText("Datalet comment : " . strip_tags($_REQUEST["comment"]), new PHPRtfLite_Font(14), new PHPRtfLite_ParFormat('center'));
  80 +
68 81 // save rtf document
69 82  
70 83 $rtf->sendRtf('datalet.rtf');
... ...