snm_pdfpublication_basic - Version 1.8.0.3

Version Notes

No Notes

Download this release

Release Info

Developer snm-portal
Extension snm_pdfpublication_basic
Version 1.8.0.3
Comparing to
See all releases


Code changes from version 1.8.0.2 to 1.8.0.3

app/code/local/AuIt/PublicationBasic/Block/Widget/Form/Renderer/Parameter.php CHANGED
@@ -45,7 +45,7 @@ class AuIt_PublicationBasic_Block_Widget_Form_Renderer_Parameter extends Mage_Ad
45
  {
46
  case 'type':
47
  $html .= '<option value="input">'.Mage::helper('checkout')->__('Text').'</option>';
48
- $html .= '<option value="area">'.Mage::helper('checkout')->__('Text Area').'</option>';
49
  $html .= '<option value="number">'.Mage::helper('checkout')->__('Number').'</option>';
50
  $html .= '<option value="color">'.Mage::helper('checkout')->__('Color').'</option>';
51
  break;
45
  {
46
  case 'type':
47
  $html .= '<option value="input">'.Mage::helper('checkout')->__('Text').'</option>';
48
+ //$html .= '<option value="area">'.Mage::helper('checkout')->__('Text Area').'</option>';
49
  $html .= '<option value="number">'.Mage::helper('checkout')->__('Number').'</option>';
50
  $html .= '<option value="color">'.Mage::helper('checkout')->__('Color').'</option>';
51
  break;
app/code/local/AuIt/PublicationBasic/Helper/Export.php CHANGED
@@ -70,7 +70,7 @@ class AuIt_PublicationBasic_Helper_Export extends Mage_Core_Helper_Abstract
70
  $fileFrom = $templateDir.DS.'fonts'.DS.$font;
71
  if ( !is_file($fileFrom) )
72
  {
73
- $messages['error'][] = $this->__('Cannot find file in archiv : %s',$font);
74
  }else {
75
  $file = Mage::helper('auit_publication/font')->getFontDir($font);
76
  if ( !is_file($file) )
@@ -90,10 +90,11 @@ class AuIt_PublicationBasic_Helper_Export extends Mage_Core_Helper_Abstract
90
  if ( is_array($templates['images']) )
91
  foreach ( $templates['images'] as $image => $tmp )
92
  {
 
93
  $fileFrom = $templateDir.DS.'images'.DS.$image;
94
  if ( !is_file($fileFrom) )
95
  {
96
- $messages['error'][] = $this->__('Cannot find file in archiv : %s',$image);
97
  }else {
98
  $file = Mage::helper('auit_publicationbasic/filemanager')->convertIdToPath($image,false);
99
  if ( !is_file($file) )
@@ -114,7 +115,7 @@ class AuIt_PublicationBasic_Helper_Export extends Mage_Core_Helper_Abstract
114
  $styleId=trim($styleId);
115
  $file = $templateDir.DS.'style_'.$styleId.'.ser';
116
  if ( !file_exists($file) )
117
- $messages['error'][]=$this->__('Cannot find file in archiv : %s',''.$file);
118
  else {
119
  $data = unserialize(file_get_contents($file));
120
  $model = Mage::getModel('auit_publication/styles');
@@ -134,7 +135,7 @@ class AuIt_PublicationBasic_Helper_Export extends Mage_Core_Helper_Abstract
134
  $generatorId=trim($generatorId);
135
  $file = $templateDir.DS.'generator_'.$generatorId.'.ser';
136
  if ( !file_exists($file) )
137
- $messages['error'][]=$this->__('Cannot find file in archiv : %s',''.$file);
138
  else {
139
  $data = unserialize(file_get_contents($file));
140
  $model = Mage::getModel('auit_publication/generator');
@@ -155,7 +156,7 @@ class AuIt_PublicationBasic_Helper_Export extends Mage_Core_Helper_Abstract
155
  $templateId=trim($templateId);
156
  $file = $templateDir.DS.'template_'.$templateId.'.ser';
157
  if ( !file_exists($file) )
158
- $messages['error'][]=$this->__('Cannot find file in archiv : %s',''.$file);
159
  else {
160
  $data = unserialize(file_get_contents($file));
161
  $model = Mage::getModel('auit_publication/template');
70
  $fileFrom = $templateDir.DS.'fonts'.DS.$font;
71
  if ( !is_file($fileFrom) )
72
  {
73
+ $messages['error'][] = $this->__('Cannot find font in archiv : %s',$font);
74
  }else {
75
  $file = Mage::helper('auit_publication/font')->getFontDir($font);
76
  if ( !is_file($file) )
90
  if ( is_array($templates['images']) )
91
  foreach ( $templates['images'] as $image => $tmp )
92
  {
93
+ if ( !$image) continue;
94
  $fileFrom = $templateDir.DS.'images'.DS.$image;
95
  if ( !is_file($fileFrom) )
96
  {
97
+ $messages['error'][] = $this->__('Cannot find image in archiv : %s',$image);
98
  }else {
99
  $file = Mage::helper('auit_publicationbasic/filemanager')->convertIdToPath($image,false);
100
  if ( !is_file($file) )
115
  $styleId=trim($styleId);
116
  $file = $templateDir.DS.'style_'.$styleId.'.ser';
117
  if ( !file_exists($file) )
118
+ $messages['error'][]=$this->__('Cannot find style in archiv : %s',''.$file);
119
  else {
120
  $data = unserialize(file_get_contents($file));
121
  $model = Mage::getModel('auit_publication/styles');
135
  $generatorId=trim($generatorId);
136
  $file = $templateDir.DS.'generator_'.$generatorId.'.ser';
137
  if ( !file_exists($file) )
138
+ $messages['error'][]=$this->__('Cannot find generator in archiv : %s',''.$file);
139
  else {
140
  $data = unserialize(file_get_contents($file));
141
  $model = Mage::getModel('auit_publication/generator');
156
  $templateId=trim($templateId);
157
  $file = $templateDir.DS.'template_'.$templateId.'.ser';
158
  if ( !file_exists($file) )
159
+ $messages['error'][]=$this->__('Cannot find template in archiv : %s',''.$file);
160
  else {
161
  $data = unserialize(file_get_contents($file));
162
  $model = Mage::getModel('auit_publication/template');
app/code/local/AuIt/PublicationBasic/Helper/Svg.php CHANGED
@@ -34,8 +34,9 @@ class AuIt_PublicationBasic_Helper_Svg extends Mage_Core_Helper_Abstract
34
  $json = json_decode ( file_get_contents($file),true );
35
  if ( isset($json['data']) && isset($json['data'][$fileName]) )
36
  {
 
37
  return array(
38
- 'size' => isset($json['data']['size'])?$json['data']['size']:300,
39
  'path' => $json['data'][$fileName]
40
  );
41
  }
@@ -68,6 +69,7 @@ class AuIt_PublicationBasic_Helper_Svg extends Mage_Core_Helper_Abstract
68
  $pathInfo = $this->_getPath($group,$fileName);
69
  $size = $pathInfo['size'];
70
  $off = $size*0.05;
 
71
  $vb = join(' ',array(-$off, -$off, $size + $off*2, $size + $off*2));
72
  //$vb = join(' ',array(0, 0, $size + $off*2, $size + $off*2));
73
  $svg = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>';
34
  $json = json_decode ( file_get_contents($file),true );
35
  if ( isset($json['data']) && isset($json['data'][$fileName]) )
36
  {
37
+
38
  return array(
39
+ 'size' => isset($json['size'])?$json['size']:300,
40
  'path' => $json['data'][$fileName]
41
  );
42
  }
69
  $pathInfo = $this->_getPath($group,$fileName);
70
  $size = $pathInfo['size'];
71
  $off = $size*0.05;
72
+ $off=0;
73
  $vb = join(' ',array(-$off, -$off, $size + $off*2, $size + $off*2));
74
  //$vb = join(' ',array(0, 0, $size + $off*2, $size + $off*2));
75
  $svg = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>';
app/code/local/AuIt/PublicationBasic/Model/Renderer/Abstract.php CHANGED
@@ -542,6 +542,7 @@ class AuIt_PublicationBasic_Model_Renderer_Abstract extends Varien_Object
542
  }
543
  protected function getBarcodeImg($blockInfo)
544
  {
 
545
  $logo = trim($blockInfo->getSrc());
546
  if ( $logo ){
547
  $helper = Mage::helper('auit_publicationbasic/filemanager');
@@ -557,11 +558,15 @@ class AuIt_PublicationBasic_Model_Renderer_Abstract extends Varien_Object
557
  else
558
  $code = $this->getAttribute($blockInfo->getPOpt2());
559
 
560
- $class = $blockInfo->getBoxClass();
561
  $color = 'black';
562
- if ( $this->_Style )
563
  $color = $this->_Style->getComputedStyle($class,'colour',$color);
 
 
 
564
  $key = $code.':'.$lbc.':'.$logo.':'.$color;
 
565
  if ( isset($this->_barcodes[$key]) )
566
  {
567
  return $this->_barcodes[$key];
542
  }
543
  protected function getBarcodeImg($blockInfo)
544
  {
545
+
546
  $logo = trim($blockInfo->getSrc());
547
  if ( $logo ){
548
  $helper = Mage::helper('auit_publicationbasic/filemanager');
558
  else
559
  $code = $this->getAttribute($blockInfo->getPOpt2());
560
 
561
+ $class = $blockInfo->getClass();
562
  $color = 'black';
563
+ if ( $this->_Style ){
564
  $color = $this->_Style->getComputedStyle($class,'colour',$color);
565
+ //$color = Mage::helper('auit_publicationbasic/style')->getComputedStyle($styleid,$class,'colour','black');
566
+ }
567
+
568
  $key = $code.':'.$lbc.':'.$logo.':'.$color;
569
+
570
  if ( isset($this->_barcodes[$key]) )
571
  {
572
  return $this->_barcodes[$key];
app/code/local/AuIt/PublicationBasic/Model/Renderer/Pdf.php CHANGED
@@ -240,6 +240,7 @@ class AuIt_PublicationBasic_Model_Renderer_Pdf extends AuIt_PublicationBasic_Mod
240
  $sf = 1;
241
  $size = $size1 =$path['size'];
242
  $off = $size*0.05;
 
243
  $size += $off*2;
244
  $bs = min(array((float)$blockInfo->getW(),(float)$blockInfo->getH()));
245
  $bs = $this->_tcpdf->getHTMLUnitToUnits($bs,1, 'mm');
240
  $sf = 1;
241
  $size = $size1 =$path['size'];
242
  $off = $size*0.05;
243
+ $off =0;
244
  $size += $off*2;
245
  $bs = min(array((float)$blockInfo->getW(),(float)$blockInfo->getH()));
246
  $bs = $this->_tcpdf->getHTMLUnitToUnits($bs,1, 'mm');
app/code/local/AuIt/PublicationBasic/Model/Styles.php CHANGED
@@ -213,11 +213,13 @@ class AuIt_PublicationBasic_Model_Styles extends Mage_Core_Model_Abstract
213
  $className .= '.auit-layout-text-frame.'.self::CLPREFIX.$cssObj['uid'].',';
214
  $className .= '.'.self::CLPREFIX.$cssObj['uid'];
215
  **/
216
- if ( !$tcpdf )
217
- $className .= '#auit-layout-frame .'.self::CLPREFIX.$cssObj['uid'].'';
218
- else
219
- $className .= '.auit-layout-text-frame.'.self::CLPREFIX.$cssObj['uid'].'';
220
-
 
 
221
 
222
  $css[]= $className.'{';
223
  }
213
  $className .= '.auit-layout-text-frame.'.self::CLPREFIX.$cssObj['uid'].',';
214
  $className .= '.'.self::CLPREFIX.$cssObj['uid'];
215
  **/
216
+ if ( isset($cssObj['uid']) )
217
+ {
218
+ if ( !$tcpdf )
219
+ $className .= '#auit-layout-frame .'.self::CLPREFIX.$cssObj['uid'].'';
220
+ else
221
+ $className .= '.auit-layout-text-frame.'.self::CLPREFIX.$cssObj['uid'].'';
222
+ }
223
 
224
  $css[]= $className.'{';
225
  }
app/code/local/AuIt/PublicationBasic/controllers/ContentController.php CHANGED
@@ -134,9 +134,7 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
134
  $logo = false;
135
  }
136
  $color = Mage::helper('auit_publicationbasic/style')->getComputedStyle($styleid,$class,'colour','black');
137
-
138
  $b1d=array('EAN13','C128','C128A','C128B','C128C','C39');
139
-
140
  if ( in_array($lbc,$b1d ) )
141
  {
142
  $barcode = new AuIt_Barcode1D($code, $lbc);
134
  $logo = false;
135
  }
136
  $color = Mage::helper('auit_publicationbasic/style')->getComputedStyle($styleid,$class,'colour','black');
 
137
  $b1d=array('EAN13','C128','C128A','C128B','C128C','C39');
 
138
  if ( in_array($lbc,$b1d ) )
139
  {
140
  $barcode = new AuIt_Barcode1D($code, $lbc);
app/code/local/AuIt/PublicationBasic/data/shapelib/categories.json CHANGED
@@ -1,14 +1,14 @@
1
  {"categories" : {
2
  "basic": "Basic",
3
- "object": "Objects",
4
- "symbol": "Symbols",
 
 
5
  "arrow": "Arrows",
6
  "flowchart": "Flowchart",
7
  "animal": "Animals",
8
  "game": "Cards & Chess",
9
- "dialog_balloon": "Balloons",
10
  "math": "Mathematical",
11
- "music": "Music",
12
- "misc": "Miscellaneous"
13
  }
14
  }
1
  {"categories" : {
2
  "basic": "Basic",
3
+ "raphael_1": "Symbols 1",
4
+ "raphael_2": "Symbols 2",
5
+ "sales": "Symbols 3",
6
+ "symbol": "Symbols 4",
7
  "arrow": "Arrows",
8
  "flowchart": "Flowchart",
9
  "animal": "Animals",
10
  "game": "Cards & Chess",
 
11
  "math": "Mathematical",
12
+ "music": "Music"
 
13
  }
14
  }
app/code/local/AuIt/PublicationBasic/data/shapelib/sales.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"data": {
2
+ "rectangle_2_rounded": "m50.66998,1l198.6639,0l0,0c13.17268,0 25.80577,5.2328 35.12022,14.54726c9.31445,9.31446 14.54727,21.94758 14.54727,35.12021l0,248.33141c0,0.00134 -0.00116,0.00247 -0.0025,0.00247l-297.99637,-0.00247l0,0c-0.00136,0 -0.0025,-0.0011 -0.0025,-0.0025l0.0025,-248.3289l0,0c0,-27.43059 22.23686,-49.66747 49.66748,-49.66747z",
3
+ "rectangle_3_rounded": "m50.66972,1l248.33028,0c0.0007,0 0.00134,0.00024 0.00177,0.00072c0.00049,0.00048 0.00076,0.00108 0.00076,0.0018l-0.00253,248.32779c0,27.43044 -22.23679,49.66722 -49.66722,49.66722l-248.3303,0l0,0c-0.00138,0 -0.00248,-0.00113 -0.00248,-0.0025l0.00248,-248.32779l0,0c0,-27.43045 22.23678,-49.66723 49.66724,-49.66723z",
4
+ "coud": "m193.50864,67.27344c-28.56444,0 -53.08249,14.81322 -65.08365,36.1982c-4.7932,-2.67596 -10.08009,-4.29625 -15.72245,-4.29625c-17.06268,0 -31.26126,13.72618 -35.64974,32.35901c-7.49058,-2.96072 -16.20005,-4.7533 -25.50328,-4.7533c-27.90971,0 -50.54951,15.27039 -50.54951,34.09579c0,16.99312 18.56764,30.96303 42.68829,33.54732c-1.08106,1.83421 -1.91961,3.65059 -1.91961,5.57599c0,18.02431 49.38134,32.72462 110.23999,32.72462c60.85864,0 110.24005,-14.70032 110.23999,-32.72462c0,-1.21274 -0.75272,-2.29501 -1.18832,-3.47357c2.66562,0.6629 5.30496,1.37115 8.22687,1.37115c16.28061,0.00005 29.5253,-11.06223 29.5253,-24.6806c0,-13.61838 -13.24469,-24.68059 -29.5253,-24.68059c-1.99515,0 -3.69165,0.68915 -5.57599,1.00551c1.64767,-5.44531 2.74228,-11.00153 2.74228,-16.91078c0,-36.04859 -32.63087,-65.35786 -72.94485,-65.35786z",
5
+ "1": "m0.99786,35.96579l0,0c0,-19.31077 15.28761,-34.96524 34.14583,-34.96524l15.52084,0l0,0l74.50001,0l139.68748,0c9.05606,0 17.74118,3.68382 24.14478,10.24108c6.40356,6.55726 10.00107,15.45081 10.00107,24.72416l0,87.41311l0,0l0,52.44785l0,0c0,19.31078 -15.2876,34.96524 -34.14584,34.96524l-139.68748,0l-97.32507,88.90848l22.82506,-88.90848l-15.52084,0c-18.85822,0 -34.14583,-15.65446 -34.14583,-34.96524l0,0l0,-52.44785l0,0z",
6
+ "4": "m1,1l49.66667,0l0,0l74.5,0l173.83334,0l0,115.8889l0,0l0,49.66666l0,33.11111l-173.83334,0l-123.68433,97.37498l49.18433,-97.37498l-49.66667,0l0,-33.11111l0,-49.66666l0,0z",
7
+ "5": "m3.88165,296.34811l58.64952,-105.30074l0,0c-62.13446,-31.76456 -79.86445,-91.6022 -40.96117,-138.24044c38.90255,-46.63797 121.70818,-64.81269 191.29914,-41.98796c69.59094,22.8246 103.19446,79.17835 77.63046,130.19172c-25.56265,51.01335 -101.92546,79.99094 -176.41714,66.94487l-110.20081,88.39255z",
8
+ "6": "m4.33333,266.6662c0,-1.854 2.23757,-3.35571 5,-3.35571c2.76243,0 5,1.50171 5,3.35571c0,1.85394 -2.23757,3.35565 -5,3.35565c-2.76243,0 -5,-1.50171 -5,-3.35565zm10.25,-24.11072c0,-4.6351 5.59392,-8.38943 12.50001,-8.38943c6.90608,0 12.5,3.75433 12.5,8.38943c0,4.63489 -5.59392,8.38928 -12.5,8.38928c-6.90609,0 -12.50001,-3.75433 -12.50001,-8.38928zm23.75001,-36.55524c0,-12.81482 19.46685,-23.19473 43.50002,-23.19473c24.0331,0 43.49996,10.37991 43.49996,23.19473c0,12.81473 -19.46686,23.19455 -43.49996,23.19455c-24.03317,0 -43.50002,-10.37982 -43.50002,-23.19455zm-37.33334,-104.99994c0,-55.2486 66.67956,-100 149,-100c82.32047,0 149,44.7514 149,100c0,55.24866 -66.67953,100 -149,100c-82.32044,0 -149,-44.75134 -149,-100z",
9
+ "scream": "m299.67374,132.67729l-35.72574,1.97192l-9.55817,48.04506l-31.60561,-11.61551l-45.83566,36.86661l-17.45096,-21.51509l-146.98414,92.00807l81.6677,-102.60858l-67.83573,-13.33963l21.22697,-19.84731l-46.57336,-36.42733l33.47025,-8.80944l-10.52427,-47.94958l35.08694,5.02536l28.86619,-44.2482l25.5638,17.26465l59.09183,-26.49832l7.92432,24.02253l70.55626,-0.33542l-12.23108,23.15343l59.61954,25.93398l-28.50317,14.93327l29.75409,43.96953z",
10
+ "thought": "m12,1c-6.094,0 -11,4.906 -11,11l0,147c0,6.09399 4.906,11 11,11l49.15625,0c-2.03143,2.32526 -3.15625,4.84886 -3.15625,7.5c0,11.32597 20.36188,20.5 45.5,20.5c25.13812,0 45.5,-9.17403 45.5,-20.5c0,-2.65114 -1.12482,-5.17474 -3.15625,-7.5l142.15625,0c6.09399,0 11,-4.90601 11,-11l0,-147c0,-6.094 -4.90601,-11 -11,-11l-276,0zm54,199c-13.81215,0 -25,5.37016 -25,12c0,6.62984 11.18785,12 25,12c13.81216,0 25,-5.37016 25,-12c0,-6.62984 -11.18784,-12 -25,-12zm-25,30c-7.73481,0 -14,4.02762 -14,9c0,4.97238 6.26519,9 14,9c7.73481,0 14,-4.02762 14,-9c0,-4.97238 -6.26519,-9 -14,-9zm-24,22c-4.97238,0 -9,2.23756 -9,5c0,2.76242 4.02762,5 9,5c4.97238,0 9,-2.23758 9,-5c0,-2.76244 -4.02762,-5 -9,-5z",
11
+ "diamonds": "m79.28394,70.5173l69.51914,-69.51918l69.53062,69.51918l-69.53062,69.5193l-69.51914,-69.5193zm-78.28265,78.73502l69.53064,-69.51916l69.51917,69.51916l-69.51917,69.53081l-69.53064,-69.53081zm158.04381,1.41991l69.53076,-69.50788l69.50775,69.50788l-69.50775,69.53059l-69.53076,-69.53059zm-78.26005,78.74646l69.50779,-69.51927l69.53087,69.51927l-69.53087,69.5197l-69.50779,-69.5197z",
12
+ "frame_half": "m1,1l297,0l-98.99899,98.99902l-99.00199,0l0,99.00198l-98.99902,98.99901z",
13
+ "logo_apple": "m209.28954,1.00088c-43.04727,7.92585 -57.33284,43.96882 -57.8894,64.561c23.68694,1.71168 38.47275,-11.65597 44.5219,-19.4791c9.85237,-11.09263 12.25443,-26.71591 13.36751,-45.0819zm5.28372,71.19604c-31.11621,-0.01418 -48.48506,12.70539 -57.04939,12.84402c-9.82712,-0.76584 -38.46593,-12.28108 -55.16231,-12.46661c-58.47802,1.74345 -75.23289,65.28636 -74.50751,92.61087c4.76329,104.60263 68.59296,131.60016 79.02421,134.12564c8.36713,1.64984 36.57712,-12.89731 57.32939,-12.23529c22.65837,2.3606 38.49214,11.76068 47.58983,11.10309c11.51012,-0.79871 49.05655,-31.14218 60.37299,-77.89201c-22.81836,-19.29358 -36.89403,-36.77824 -38.15468,-53.37267c-0.584,-7.50279 10.70016,-49.91425 28.69514,-61.83392c2.59723,-14.65567 -24.13031,-33.25182 -45.08191,-32.83442c-1.03252,-0.02777 -2.05203,-0.0482 -3.05577,-0.04871z",
14
+ "man": "m125.90131,25.2503c0,-13.33112 10.79823,-24.12934 24.12934,-24.12934c13.33113,0 24.12932,10.79822 24.12932,24.12934c0,13.33112 -10.79819,24.12934 -24.12932,24.12934c-13.33113,0 -24.12934,-10.79822 -24.12934,-24.12934zm81.12696,68.30144v-12.18601c0,-12.82147 -10.38806,-23.21696 -23.21696,-23.21696h-67.63607c-12.82147,0 -23.21695,10.39549 -23.21695,23.21696v12.18601c-0.02242,0.2766 -0.03739,0.56071 -0.03739,0.84853v70.18918c0,5.4538 4.41839,9.87215 9.87218,9.87215c5.44633,0 9.87589,-4.41837 9.87589,-9.87215v-69.14999h6.62006v79.02961h0.04859v111.66646c0,7.25925 5.89491,13.15787 13.16164,13.15787c7.27048,0 13.16164,-5.89114 13.16164,-13.15787v-111.66646h8.68347v111.66646c0,7.25925 5.89856,13.15787 13.16162,13.15787c7.27045,0 13.16161,-5.89114 13.16161,-13.15787v-111.66646h0.04112v-79.02961h6.62007v69.14623c0,5.45381 4.42955,9.8759 9.8759,9.8759c5.45386,0 9.87218,-4.42209 9.87218,-9.8759v-70.18916c-0.00371,-0.29156 -0.02617,-0.56819 -0.0486,-0.8448z",
15
+ "woman": "m150.04984,49.03255c13.33249,0 24.15346,-10.81348 24.15346,-24.15346c0,-13.34748 -10.82097,-24.16844 -24.15346,-24.16844c-13.34375,0 -24.16843,10.82096 -24.16843,24.16844c0,13.33998 10.82095,24.15346 24.16843,24.15346zm67.74049,104.1672l-21.67561,-80.39177c-0.20212,-0.72988 -0.48662,-1.42607 -0.83093,-2.06987c-2.46291,-7.53088 -9.53339,-12.9844 -17.88399,-12.9844h-54.86088c-8.70618,0 -16.01627,5.9214 -18.16845,13.95758c-0.14598,0.35184 -0.26575,0.7224 -0.37429,1.10417l-21.2901,80.38803c-1.41861,5.2701 1.71053,10.6862 6.98811,12.1048c5.27014,1.4111 10.68626,-1.71803 12.10487,-6.98813l16.71989,-63.14786h6.96569l-30.34438,114.25453h28.5927v78.87959c0,6.06738 4.91077,10.9819 10.98564,10.9819c6.05989,0 10.9819,-4.9108 10.9819,-10.9819v-78.87959h8.73613v78.87959c0,6.06738 4.91826,10.9819 10.99315,10.9819c6.05988,0 10.9819,-4.9108 10.9819,-10.9819v-78.87959h28.57767l-30.45665,-114.25453h7.14911l17.02679,63.14786c1.41859,5.2701 6.83472,8.39923 12.10481,6.98813c5.2589,-1.41859 8.38803,-6.83842 6.97693,-12.10854z",
16
+ "plant_tree_1": "m122.82124,295.43991c-9.60714,-8.11343 -1.74962,-22.4458 -1.18428,-32.9653c4.14859,-11.24323 3.96359,-85.81235 -10.94936,-86.09872c-15.83897,-4.80884 -33.8653,1.83771 -48.3958,-7.59918c-9.84084,-5.82912 -12.90007,-17.71764 -12.64209,-28.40579c0.19444,-11.07701 -10.96857,-15.73981 -14.56149,-25.02111c-4.85892,-11.57952 -0.66407,-24.81283 7.67092,-33.63805c7.87535,-8.99152 0.96225,-20.76784 4.99341,-30.60822c5.74977,-13.3805 22.92119,-7.46461 32.14548,-16.67288c9.90182,-6.99356 18.35265,-19.09785 32.07681,-17.29906c13.25371,0.83774 28.05221,3.21463 39.26759,-5.80136c10.45538,-8.74133 25.08881,-13.41753 38.21471,-8.04486c12.4521,3.84588 26.61226,11.87612 26.66945,26.64145c-3.79947,15.14795 10.55962,14.96229 20.88582,17.05112c12.22475,5.50745 24.82689,14.06517 29.88231,26.94686c1.34924,14.72554 -15.32854,26.93484 -7.76337,41.96729c2.96521,14.64848 -9.76962,22.78136 -18.92447,30.72028c-3.76666,14.33221 -18.04883,25.98621 -33.39958,22.57785c-12.36432,-2.02824 -19.98886,11.49191 -32.59709,10.30693c-8.35739,8.60075 -2.66228,82.40933 -1.11533,92.59302c6.29385,12.59021 -2.48013,26.51376 -16.65036,26.0885c-11.10333,1.33105 -23.19679,1.95465 -33.62328,-2.73877z",
17
+ "sign_no": "m0.99794,149.99951l0,0c0,-82.29002 66.70967,-148.99969 148.99992,-148.99969l0,0c39.51779,0 77.41692,15.69819 105.35898,43.64116c27.94318,27.94297 43.64124,65.84185 43.64124,105.35853l0,0c0,82.29103 -66.7092,149.00024 -149.00021,149.00024l0,0c-82.29025,0 -148.99992,-66.70921 -148.99992,-149.00024zm240.6012,66.65504l0,0c32.80489,-45.08388 27.92851,-107.33437 -11.49672,-146.75905c-39.42525,-39.42501 -101.67574,-44.30139 -146.75847,-11.49616l158.25519,158.25521zm-183.20167,-133.30872c-32.80512,45.08364 -27.92886,107.33413 11.49615,146.75825c39.4249,39.42525 101.67541,44.30159 146.75814,11.49672l-158.2543,-158.25497z",
18
+ "star_32": "m1,150l37.78866,-10.95375l-34.9264,-18.11479l39.19976,-3.37057l-30.72019,-24.58047l39.1037,4.34019l-25.33452,-30.10049l37.5051,11.88636l-18.97492,-34.46539l34.46528,18.97503l-11.88614,-37.50511l30.10025,25.33441l-4.34019,-39.10359l24.58048,30.72008l3.37057,-39.19964l18.11479,34.92639l10.95375,-37.78866l10.95375,37.78866l18.11479,-34.92639l3.37057,39.19964l24.58047,-30.72008l-4.34018,39.10359l30.10023,-25.33441l-11.88614,37.50511l34.4653,-18.97503l-18.97491,34.46539l37.50508,-11.88636l-25.33452,30.10049l39.10347,-4.34019l-30.71994,24.58047l39.1994,3.37057l-34.92581,18.11479l37.78842,10.95375l-37.78842,10.95375l34.92581,18.11479l-39.1994,3.37057l30.71994,24.58047l-39.10347,-4.34018l25.33452,30.10025l-37.50508,-11.88615l18.97491,34.4653l-34.4653,-18.97493l11.88614,37.5051l-30.10023,-25.33452l4.34018,39.10347l-24.58047,-30.71994l-3.37057,39.1994l-18.11479,-34.92581l-10.95375,37.78842l-10.95375,-37.78842l-18.11479,34.92581l-3.37057,-39.1994l-24.58048,30.71994l4.34019,-39.10347l-30.10025,25.33452l11.88614,-37.5051l-34.46528,18.97493l18.97492,-34.4653l-37.5051,11.88615l25.33452,-30.10025l-39.1037,4.34018l30.72019,-24.58047l-39.19976,-3.37057l34.9264,-18.11479l-37.78866,-10.95375z",
19
+ "sun": "m298.99939,149.99919l-60.12755,21.3835l0,-42.76601l60.12755,21.38251zm-43.65198,-105.36193l-27.38881,57.64266l-30.23897,-30.23995l57.62778,-27.40271zm-105.34804,-43.63768l21.38251,60.12764l-42.76602,0l21.38351,-60.12764zm-105.36263,43.63768l57.64236,27.40271l-30.23955,30.23995l-27.40281,-57.64266zm-43.63767,105.36193l60.12774,-21.38251l0,42.76601l-60.12774,-21.3835zm43.63767,105.34903l27.40281,-57.62877l30.23955,30.23996l-57.64236,27.38881zm105.36263,43.65096l-21.38351,-60.12753l42.76602,0l-21.38251,60.12753zm105.34804,-43.65096l-57.62778,-27.38881l30.23897,-30.23996l27.38881,57.62877zm-179.84834,-105.34903l0,0c0,-41.14515 33.35516,-74.5 74.50031,-74.5c41.14514,0 74.5,33.35485 74.5,74.5c0,41.14514 -33.35486,74.49998 -74.5,74.49998c-41.14514,0 -74.50031,-33.35484 -74.50031,-74.49998z"
20
+ }
21
+ }
app/code/local/AuIt/PublicationBasic/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
- <version>1.8.0.2</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
+ <version>1.8.0.3</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
app/design/frontend/base/default/template/auit/publicationbasic/product/images.phtml CHANGED
@@ -7,6 +7,10 @@
7
  $boxH = $this->getGeneratorParameter('height',50);
8
  $maxPictures=$this->getGeneratorParameter('max-pictures',2);
9
  $bgColor = $this->getGeneratorParameter('bgcolor','rgba(0,0,0,0.2)');
 
 
 
 
10
 
11
  $orientation = $this->getGeneratorParameter('orientation',0);
12
 
@@ -26,8 +30,8 @@
26
  'x'=>$x+$border, 'y'=>$y+$border, 'w'=>$boxW-$border-$border, 'h'=>$boxH-$border-$border,
27
  'type'=>'p_img',
28
  'p_opt'=>'image',
29
- 'p_opt2'=>'fill2box',
30
- 'style_colour_background'=>'rgba(255,255,255,1)',
31
  //'src'=>'ROOT/samples/logo_h.png',
32
  'scale'=>'100',
33
  'xoff'=>'0',
@@ -62,8 +66,8 @@
62
  'x'=>$x+$border, 'y'=>$y+$border, 'w'=>$boxW-$border-$border, 'h'=>$boxH-$border-$border,
63
  'type'=>'p_img',
64
  'p_opt'=>'image:'.$idx,
65
- 'p_opt2'=>'fill2box',
66
- 'style_colour_background'=>'rgba(255,255,255,1)',
67
  'scale'=>'100',
68
  'xoff'=>'0',
69
  'yoff'=>'0',
7
  $boxH = $this->getGeneratorParameter('height',50);
8
  $maxPictures=$this->getGeneratorParameter('max-pictures',2);
9
  $bgColor = $this->getGeneratorParameter('bgcolor','rgba(0,0,0,0.2)');
10
+ $imgbgcolor = $this->getGeneratorParameter('imgbgcolor','rgba(255,255,255,1)');
11
+ $fillmode= $this->getGeneratorParameter('fillmode','fill2box');
12
+ if ( $fillmode != 'fit2box' && $fillmode != 'fill2box')
13
+ $fillmode = 'fill2box';
14
 
15
  $orientation = $this->getGeneratorParameter('orientation',0);
16
 
30
  'x'=>$x+$border, 'y'=>$y+$border, 'w'=>$boxW-$border-$border, 'h'=>$boxH-$border-$border,
31
  'type'=>'p_img',
32
  'p_opt'=>'image',
33
+ 'p_opt2'=>$fillmode,
34
+ 'style_colour_background'=>$imgbgcolor,
35
  //'src'=>'ROOT/samples/logo_h.png',
36
  'scale'=>'100',
37
  'xoff'=>'0',
66
  'x'=>$x+$border, 'y'=>$y+$border, 'w'=>$boxW-$border-$border, 'h'=>$boxH-$border-$border,
67
  'type'=>'p_img',
68
  'p_opt'=>'image:'.$idx,
69
+ 'p_opt2'=>$fillmode,
70
+ 'style_colour_background'=>$imgbgcolor,
71
  'scale'=>'100',
72
  'xoff'=>'0',
73
  'yoff'=>'0',
lib/snm3/auit/barcode.php CHANGED
@@ -58,8 +58,11 @@ class AuIt_Barcode1D extends TCPDFBarcode
58
  }
59
  class AuIt_Barcode extends TCPDF2DBarcode
60
  {
61
- public function getBarcodeWithLogo($logo,$w=3, $h=3, $color) {
62
  // calculate image size
 
 
 
63
  $width = ($this->barcode_array['num_cols'] * $w);
64
  $height = ($this->barcode_array['num_rows'] * $h);
65
  /*
@@ -77,9 +80,13 @@ class AuIt_Barcode extends TCPDF2DBarcode
77
  $img = imagecreatetruecolor($width,$height);
78
  // imageAlphaBlending($img, false);
79
  imageSaveAlpha($img, true);
 
80
  $trans_colour = imagecolorallocatealpha($img, 0, 0, 0, 127);
81
- imagefill($img, 0, 0, $trans_colour);
82
- $bgc = ImageColorAllocate ($img, 0, 0, 0);
 
 
 
83
  $y = 0;
84
  for ($r = 0; $r < $this->barcode_array['num_rows']; ++$r) {
85
  $x = 0;
58
  }
59
  class AuIt_Barcode extends TCPDF2DBarcode
60
  {
61
+ public function getBarcodeWithLogo($logo,$w=3, $h=3, $color=null) {
62
  // calculate image size
63
+ $color = Mage::getSingleton('auit_publicationbasic/styles')->ColorToArray($color);
64
+
65
+
66
  $width = ($this->barcode_array['num_cols'] * $w);
67
  $height = ($this->barcode_array['num_rows'] * $h);
68
  /*
80
  $img = imagecreatetruecolor($width,$height);
81
  // imageAlphaBlending($img, false);
82
  imageSaveAlpha($img, true);
83
+
84
  $trans_colour = imagecolorallocatealpha($img, 0, 0, 0, 127);
85
+ imagefill($img, 0, 0, $trans_colour);
86
+ if ( $color && is_array($color) )
87
+ $bgc = ImageColorAllocate ($img, $color[0], $color[1], $color[2]);
88
+ else
89
+ $bgc = ImageColorAllocate ($img, 0, 0, 0);
90
  $y = 0;
91
  for ($r = 0; $r < $this->barcode_array['num_rows']; ++$r) {
92
  $x = 0;
lib/snm3/auit/pdf.php CHANGED
@@ -749,6 +749,9 @@ class AuIt_Pdf2 extends TCPDF {
749
  $this->_out('h');
750
  break;
751
  }
 
 
 
752
  }
753
  $firstcmd = false;
754
  } // end foreach
749
  $this->_out('h');
750
  break;
751
  }
752
+ default:
753
+ Mage::log("svg2 path unknown:".$cmd);
754
+ break;
755
  }
756
  $firstcmd = false;
757
  } // end foreach
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
- <version>1.8.0.2</version>
5
  <stability>stable</stability>
6
  <license>see snm-portal.com</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>snm_pdfpublication_basic extension from snm-portal.com</description>
11
  <notes>No Notes</notes>
12
  <authors><author><name>snm-portal</name><user>augsten</user><email>develop@snm-portal.com</email></author></authors>
13
- <date>2014-07-26</date>
14
- <time>13:18:42</time>
15
- <contents><target name="magelib"><dir name="snm3"><dir name="tcpdf"><dir name="tools"><file name="convert_fonts_examples.txt" hash="01d1bb3c8c8bdb35f3837e2715dbe681"/><file name="tcpdf_addfont.php" hash="8a55d83a4002cf045b586982b64c8356"/><file name=".htaccess" hash="183e8e4abc660eaba3c3da4bb82b0bcf"/></dir><file name="tcpdf.php" hash="fd073bc49f7106c04b101e6c386120dd"/><file name="tcpdf_barcodes_2d.php" hash="17bfd10e3232de9145f5b74a6ef6afac"/><dir name="fonts"><file name="helveticai.php" hash="e0a7f23376f50de631db93814aff2e35"/><file name="zapfdingbats.php" hash="191b3c2e856e750c06c0ba7987f902fb"/><file name="helveticabi.php" hash="c22fdc8941f2956e0930b20105870468"/><file name="helveticab.php" hash="3daad3713df02c15beebd09ceecacacd"/><file name="helvetica.php" hash="2a315fa2593161154c319788f0ef2127"/></dir><file name="tcpdf_parser.php" hash="5c546b7f37191a754b6743a640c6a0cd"/><file name="tcpdf_autoconfig.php" hash="2ff9546965d6bc3e9a7f65552cd80c41"/><file name="CHANGELOG.TXT" hash="abf24925b600c9fffdaee35bb216e7bd"/><file name="tcpdf_import.php" hash="6bb88a8a3d69511d1bf9e7af12ab5f47"/><file name="tcpdf_barcodes_1d.php" hash="27f0f0c023d8775a7d970a0550caa3ef"/><file name="composer.json" hash="0e83d096a5529f0ce9034af6e20e22e8"/><file name="LICENSE.TXT" hash="5c87b66a5358ebcc495b03e0afcd342c"/><file name="README.TXT" hash="b0d263ba91ffc434ac633523fd75a42c"/><dir name="config"><dir name="lang"><file name="por.php" hash="4e5e4b97c58d71c3edcfeafa14951408"/><file name="bel.php" hash="aaa9c18becac50de78f3ed7167442df7"/><file name="ara.php" hash="88c3faeee02a1d61f0e4a3d3753e1345"/><file name="hat.php" hash="119c2452df924c74378b5c50d49bffe3"/><file name="hun.php" hash="7973e7f5b945479c7e8c0ac97058adb9"/><file name="zho.php" hash="ad33733922f50d05affe34413a924185"/><file name="cat.php" hash="3b1853da276cd8d642d75adadb0e3ff0"/><file name="far.php" hash="47a6541a450730616fc093c6739aeb70"/><file name="mlt.php" hash="49fe005624ad848581820b7c26ffec0d"/><file name="aze.php" hash="0d94296afd349a572e6afb8cdd2e767d"/><file name="mkd.php" hash="8719cb2ce7465fc69c36563a362df048"/><file name="bra.php" hash="2b9affb5500e8c421ecd506b70ee2330"/><file name="jpn.php" hash="5767e072fd091dff871996a3d012c3a3"/><file name="hye.php" hash="ae6dbe852b60660dcaeff404b2525fa8"/><file name="ces.php" hash="a21be64a536079b88dc064996df88f2d"/><file name="hrv.php" hash="ee77ae996bb0c83a78e5012542f7b973"/><file name="srp.php" hash="cbb390944537fe268f8b25f0df3b5fe0"/><file name="sqi.php" hash="8e2d65d8d0d6fd5117fffc2f2aed07e8"/><file name="ukr.php" hash="2f27ecba8e32022e40989f767f9c5ca3"/><file name="heb.php" hash="8b87f24cac90703fe51790de4369402f"/><file name="pol.php" hash="2a19c1be4a0218d39651e83550316108"/><file name="ita.php" hash="d74f2ef88fc933b7a24758c26cca5bb5"/><file name="urd.php" hash="db5c8e29e079fc30f0c0a19271b8cbfa"/><file name="rus.php" hash="9195119a0baa343354a9d9af538959d8"/><file name="ger.php" hash="8fbb25bbb83656e5f632413fe38f0ffb"/><file name="eus.php" hash="e0b1be60fb7b015ef11919efee02373f"/><file name="swa.php" hash="28ddcf894fa9e70305ab15653454dc04"/><file name="swe.php" hash="3426291e4f6d245f6bf945d9bf103c25"/><file name="glg.php" hash="aeedb99c68cac50d0730a2f9d15e7a11"/><file name="ron.php" hash="97a5d9ca1a84002c15f966fc828c6801"/><file name="dan.php" hash="0fe1af520d1ca49b7c001f6fd477c170"/><file name="spa.php" hash="d94a308b53e6bc441091daddfad4ebb7"/><file name="fra.php" hash="f056969e8f8afd9b93bb07e43a615925"/><file name="nld.php" hash="dc17db1ed58edb04ed38b38d0c4aeb67"/><file name="nob.php" hash="80c2c48943a01d3a4620a0d467a00494"/><file name="afr.php" hash="d2e3e7f95299aeb0a8cbd1a22124f806"/><file name="eng.php" hash="af8873cc6a43760e060a5bcf0e4b1160"/><file name="slv.php" hash="482e42ee876acd292d829778a763b679"/><file name="est.php" hash="3fa8a31d7c62a99f02ce179c0cfd48d4"/><file name="kor.php" hash="e52771743209216779f95253346e8dc0"/><file name="ind.php" hash="c13986f1929289ca2f31cc234193dfa2"/><file name="gle.php" hash="658bbc9cf255c9234f1fca1c5af6520c"/><file name="kat.php" hash="53f47408b56384d92ccf79004edd06a2"/><file name="chi.php" hash="d30bfd131b4442ec577865f9f7c6965d"/><file name="bul.php" hash="cffad12f128f2d602a41213425fda45b"/><file name="msa.php" hash="446fb5b43c31f44274497cabbd313d2f"/><file name="yid.php" hash="3514268a049f09590ad2b3eaa5a68cae"/><file name="cym.php" hash="8cb4da872b8e55077e2539ccb328856e"/></dir><file name="tcpdf_config.php" hash="09a8c58f2781725c0f4f6e4379b92c62"/></dir><dir name="include"><file name="tcpdf_static.php" hash="4f34cb94f62e7faa98ad79712a9f6b8e"/><file name="tcpdf_filters.php" hash="205fd4b7bc978688de8420087c161bcb"/><file name="sRGB.icc" hash="060e79448f1454582be37b3de490da2f"/><file name="tcpdf_font_data.php" hash="8f83bbc144d70505672f82679546c72d"/><file name="tcpdf_images.php" hash="42f2f6e2122319a302b2769011897b2a"/><file name="tcpdf_fonts.php" hash="75837274a0d67e19ee975aaef9e283ee"/><dir name="barcodes"><file name="qrcode.php" hash="edd56d70cac390ef63feeef7e9d71b3f"/><file name="datamatrix.php" hash="561027d7adbd2358225866cba60568d2"/><file name="pdf417.php" hash="0d24de61581243b069fb508efbc78a67"/></dir><file name="tcpdf_colors.php" hash="cacdbe68a428ae36151a3d1152b2b77b"/></dir></dir><dir name="auit"><file name="pdf.php" hash="2443e02fdb642c434f97e5fdc19c3a73"/><file name="barcode.php" hash="a09c2cdb5eebac6edb68a28ca2d66f5f"/></dir></dir></target><target name="magelocal"><dir name="AuIt"><dir name="PublicationBasic"><dir name="Block"><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Image.php" hash="61f2dffe0c519eec9f2a6ed6145885b4"/></dir></dir></dir><dir name="Form"><dir name="Element"><file name="Styles.phpXXX" hash="0fa4f3f555c2df4bf658fdf16104687d"/><file name="Publication.phpXXX" hash="d046ddd372a5316f84f54e172b5799a1"/><file name="Satzeditor.php" hash="8490dde3310c33a5a4b76942e3948df1"/><file name="Parameter.php" hash="1658131ba7279c768691aa7656e9d7d8"/></dir><dir name="Renderer"><file name="Parameter.php" hash="ae9c6243b97b044b57cb8e372242e73c"/></dir></dir></dir><dir name="Adminhtml"><file name="Versioninfo.php" hash="347b6ffa0dc95d6a07aed7c0a34bf398"/><dir name="Import"><dir name="Edit"><file name="Form.php" hash="867c61d7b2df316f1ae8217b72545cf9"/></dir><dir name="Frame"><file name="Result.php" hash="e955891d25b6022359ee69a5e50a6097"/></dir><file name="Edit.php" hash="19ca4720403eb0e20719e15c9c847acc"/></dir><file name="Info.php" hash="d6a6efe359cf0fe462c9b44706dffec2"/><file name="Jobqueue.php" hash="5f0d54978b5069d979a47d072d8d7870"/><file name="Items.php" hash="5cd6e34b698e6fd99bf0d8f3e70f93d9"/><file name="Projects.php" hash="1c4f4fc77ed96df5830cd211e9b7013e"/><dir name="Projects"><dir name="Edit"><file name="Tabs.php" hash="e72ef03619fc1579a35e4bb3ba22b5a2"/><dir name="Tab"><file name="Settings.php" hash="5b4fec7d6a05a120ab8929255a5355a9"/><file name="Layout.php" hash="ec00f751a35a79dc56e2cec40cc41091"/><file name="Main.php" hash="6f444f48f2b1aa7341867028f01fa98f"/></dir><file name="Form.php" hash="959740aab024cb1103670aea6fe81411"/></dir><file name="Grid.php" hash="b8dab256a5b34d586e989b2f4b09b5ae"/><file name="Edit.php" hash="b490f9be6d73822e61305fe72f59842d"/></dir><file name="Satzeditor.php" hash="96f49c918ad2b6c8b0aa67e0d9a3dcdf"/><dir name="Jobqueue"><dir name="Edit"><file name="Tabs.php" hash="72afcdbfeb612efc3b88e1286a89a289"/><dir name="Tab"><dir name="Products"><file name="Grid.php" hash="64e107053234cb0abb9ba3a0646dfe14"/><file name="Field.php" hash="723fe2a80c975ddb5d3248a373282157"/></dir><file name="Settings.php" hash="3aea2af6c20ddfd30f10191c6c12a58b"/><file name="Queue.php" hash="ee2375edb56f1343164bdd636e7b0e35"/><file name="Products.php" hash="a7ebaa0499c2596c7b587f3d7ed2fea1"/><file name="Print.php" hash="209d13f2a593c98c33c8338c167d82bd"/><file name="Epub3.php" hash="6551c28c7c19b205ca25a60e22a6aba3"/><file name="Main.php" hash="bae1d560e729caead0c15bfbfcf6572d"/></dir><file name="Form.php" hash="f982277390678e8c4464a129c10860bc"/></dir><file name="Grid.php" hash="a4ffc0f3af4c531029c95e6b326e5adc"/><file name="Edit.php" hash="9ff847a1b202e8066507c5c5064cffae"/><file name="Preview.php" hash="fc29b7a55f37677bb7e6f8a7ccbd3241"/></dir></dir><file name="Generator.php" hash="72e6ee5302c96a63a2a6b75eef638e43"/><dir name="Product"><file name="Buttons.php" hash="8808c384e1f61e4c2d639fa5cc8e9eac"/></dir><file name="Frame.php" hash="f5b8d0e11f6d3c1273e5a736767893fe"/></dir><dir name="Model"><dir name="Pdf"><file name="Base.php" hash="03c3b9a4a65028a2bef9838fb91acfad"/></dir><dir name="Filemanager"><file name="Storage.php" hash="b55328a17655b97a74b26d8e6eaf9b09"/><dir name="Storage"><file name="Collection.php" hash="bdc4a955e6d000e028f28189f15c78e0"/></dir></dir><dir name="Email"><dir name="Template"><file name="Helper.php" hash="67489e51133cdbf9c77263265848e691"/><file name="Filter.php" hash="14b1800c7916cf15fcbc80cbcec8b81f"/></dir></dir><file name="Jobqueue.php" hash="8d10cee0ba328dce5114eed8927e5258"/><dir name="Adminhtml"><file name="Idtemplate.php" hash="cb75c67a7df5b52fe2b162c9dd390d3d"/><file name="Arraytemplate.php" hash="5d3313fb14a1f0a747fce4688da0d0aa"/><dir name="System"><dir name="Config"><dir name="Product"><file name="Attribute.php" hash="19eb06ed676684be98bab52e87fde729"/></dir><file name="Producttemplates.php" hash="85dbe2b6b8a6dc9bdf4eb6ae41a0bf7e"/></dir></dir></dir><file name="Style.php" hash="4edfebf8ccc1aadbb1e5c370628c32c0"/><file name="Cron.php" hash="e0eb7767b10b488ebb817638e8f89190"/><file name="Project.php" hash="2c819537a71335a7ad8109d4fd31b75c"/><file name="Generator.php" hash="46e46ffdca417f02f06b86ee23c983a4"/><file name="Font.php" hash="c724c026c9cd0e0db6226b324ae7417a"/><file name="Styles.php" hash="038d8edd584f1dcc88760343a8d4e332"/><dir name="Resource"><dir name="Styles"><file name="Collection.php" hash="516757fa83e6f4f56a74cd98cfd043f5"/></dir><file name="Jobqueue.php" hash="69be09343a26ecb36be644dc4fcab1ae"/><dir name="Template"><file name="Collection.php" hash="bad352781f731b52a906b21ff4237482"/></dir><file name="Abstract.php" hash="177fdf20a7da55465fe7ba724cf42c78"/><dir name="Project"><file name="Collection.php" hash="ef39bb97211b2fb11f48fdc485fae86f"/></dir><file name="Project.php" hash="c485d7adef9630ac7ed57d1dc6004892"/><file name="Generator.php" hash="69857ca1fc66e92307f67359b72e3829"/><dir name="Generator"><file name="Collection.php" hash="86a1c6999faf2020045667586916e130"/></dir><file name="Styles.php" hash="b07e8d82a20c92d6f62916704982fcec"/><file name="Template.php" hash="4deb8416dea904885abef3d109ffbc7b"/><dir name="Jobqueue"><file name="Collection.php" hash="64999a8db6dd96153a93ad380bee9f19"/></dir></dir><dir name="Config"><file name="Idtemplate.php" hash="618d60cb811b354ef9532efa8be85c93"/><file name="Arraytemplate.php" hash="8d21fab3662f01d36bf1b9aa8d3a6605"/><file name="Update.php" hash="18d66959f5d8ae26b11d914c3a7a4d57"/></dir><file name="Template.php" hash="d1cae1bf6c6d7fb9a69bb0c3441dce26"/><dir name="Renderer"><file name="Abstract.php" hash="7368f4fa49a8e014bfb5d9fbf1818763"/><file name="Pdf.php" hash="0b229433230e2319e129d680eb05baa8"/></dir></dir><dir name="data"><file name="gfont.ser" hash="7d721f80d97ed2aab6147eeee742d295"/><dir name="css"><file name="default.css" hash="53b5f66df79eef855335f798ec903232"/></dir><dir name="shapelib"><file name="misc.json" hash="362692de0da72df10ec79e8cabf82ce1"/><file name="symbol.json" hash="3d6f4033be5c7e2c01584770a430445b"/><file name="arrow.json" hash="56b7a54d89a38b1ad8d90dbb49419375"/><file name="categories.json" hash="0780aa756b718a03369aa88effa4e027"/><file name="music.json" hash="30b05d18591754122736a56316e809b6"/><file name="dialog_balloon.json" hash="f42f1a9da4a6580cce5777a92d828fcc"/><file name="object.json" hash="79b64dfa23fd0da64bf6ce1d159fa2fc"/><file name="raphael_2.json" hash="5b3c3eea713927f637c416a786df2072"/><file name="game.json" hash="8bfeb3d78da91cd90d9b2da9258c279b"/><file name="flowchart.json" hash="bf4343c2c1fd618ce5e8aa04c1def32d"/><file name="basic.json" hash="9a0c84ac03d46a0e0ce40320f74f4a34"/><file name="math.json" hash="8c62b7fb36b1061f2d715485f1cb143b"/><file name="raphael_1.json" hash="d6b84c0eb724a4dea5bdf02b8fa669ab"/><file name="animal.json" hash="22d536b6151d6cba305728001b96e82b"/><file name="electronics.json" hash="0762432479510c8bbff58e631edfa156"/><file name="raphael.txt" hash="a4156780de6385427328cc9a7148abfb"/></dir></dir><dir name="Helper"><file name="Filemanager.php" hash="4bfe726daf69fcf3be5e0b037ba892e0"/><file name="Arrayconfig.php" hash="261f48cda93d07e5cf95cf15ce188b64"/><file name="Svg.php" hash="d915cac5d59df8e5c2819d74d52f8948"/><file name="Style.php" hash="b0f81e4af823647231915fdffdc490b5"/><file name="Export.php" hash="7deff30f32c60011c63347b704a022a7"/><file name="Config.php" hash="9e65977bb0f5bfce8aaee66e996e8561"/><file name="Data.php" hash="c4647b7e9713742d257a4a19874474e3"/><file name="Dirdirective.php" hash="caaa9333f32fe15fd0ac4f9ec68525db"/><file name="Font.php" hash="ade9858b9ad84466c5299fbab7c8aebe"/><file name="Pdf.php" hash="06950471da2acad64a11a67261f56b48"/></dir><dir name="etc"><file name="dir.directive.xml" hash="94abf565cf4a898a307c621ea141ad97"/><file name="adminhtml.xml" hash="9342841d6dbd2974b38eb55e4a6fab3e"/><file name="config.xml" hash="d7cc91ae5d4004329bd085ccd9a5c016"/><file name="history.xml" hash="382a1824dd4f690c6fb58c18d5792d5b"/><file name="system.xml" hash="8a4340b9e4cf3ae3ac1ff1fd72364839"/></dir><dir name="sql"><dir name="auit_publicationbasic_setup"><file name="install-1.8.0.1.php" hash="2e75c5675f55602e3efc435c9267f6da"/></dir></dir><dir name="controllers"><file name="ContentController.php" hash="5b87163c38eaecc691fd19af25a12b31"/><dir name="Admin"><file name="ImportController.php" hash="d54022e572a86260947a3125920b72fe"/><file name="JobqueueController.php" hash="a991e4ac21348a43bf50aeb806e9ca84"/><file name="FilemanagerController.php" hash="9576633f3a5cce0baf4cb4536b788df9"/><file name="ShapeController.php" hash="02644a3d8b74ed17a585d7eaab450b86"/><file name="PreviewController.php" hash="f193f06b74a51f3c63bde62003c1d662"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="99a88608e21dbd9dac12ec66ab77a71d"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><dir name="product"><file name="price_variants.phtml" hash="a550a619f97a095a183f4ecfae6933ad"/><file name="buttons.phtml" hash="5af8fc7a11ca8cd8dfdef3ac9d0f529a"/><file name="images.phtml" hash="763d0bc1eac2d942cdd02bececc07738"/><file name="price_variants2.phtml" hash="d3ac6a7014018f4e7ff6197afee2ba21"/></dir><file name="product_attribute.phtml" hash="5c86d9787594a833bf364aad4d46b47d"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="ae90fbb71cdbd28010538fb675997e6b"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><file name="filemanager.phtml" hash="b262367fe671b86edf91b222c0015aaa"/><file name="satzeditor.phtml" hash="849df5aa90a2960218fd5b90f63c058e"/><dir name="admin"><dir name="import"><dir name="form"><file name="after.phtml" hash="82f147959a1a63c97d7b8cfd5643a529"/><file name="before.phtml" hash="970bb388fff1aae7af2c3c5a537d6a54"/></dir><dir name="frame"><file name="result.phtml" hash="87f629974959d669e2e5c6cf05120aaf"/></dir></dir></dir><dir name="renderer"><file name="array.phtml" hash="d9b4eb7a36418ee84e80a6e1aaf215ab"/><file name="array_date.phtml" hash="1387ef94e7178d7f6d0ef150597d6fb2"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="XAuIt_PublicationBasic.xml" hash="ab7e6c3ffd1e5f1b4d509cb98df221b3"/></dir></target><target name="mageweb"><dir name="js"><dir name="auit"><dir name="publicationbasic"><dir name="gridster"><file name="jquery.gridster.js" hash="4be7c72d0a7e2ff1a730179dce40bc39"/><file name="jquery.gridster.min.css" hash="2de0aa9fdd3481d200eb4ee5c690f511"/><file name="jquery.gridster.min.js" hash="08f8fc5c488c874203c02b0791b4d0f2"/><file name="jquery.gridster.css" hash="d93274457763a13021d55d23b0adf783"/></dir><dir name="jquery"><file name="jquery-1.9.0.min.js" hash="bd86b25cf27379f0b5b765ac8d7b8123"/><file name="jquery-1.9.0.js" hash="573701cf4501819581a58cb4038a6f7d"/><file name="jquery-ui-1.10.0.custom.js" hash="2e06e419682502e57ef69573bc47efe1"/><file name="jquery.mousewheel.js" hash="e0dd9bfeb66850507cc25c35d9ffc55b"/><file name="jquery-noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><dir name="css"><dir name="smoothness"><file name="jquery-ui-1.10.0.custom.css" hash="29dc6f1a5896bded4c64e08870935ad0"/><dir name="images"><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="36d73421e98540eb9899dfdab1e4afaf"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="6069814bbf1621f2b4a7e7ca39eadaaf"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="1683f289128542b462cca77dc6b6d4bf"/><file name="ui-icons_cd0a0a_256x240.png" hash="0d3cb2a44a993bea91ce830b7b61e56a"/><file name="ui-icons_888888_256x240.png" hash="22d602a11b95c70cb1c13f58c6a44dd1"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="01b117d1785587a9424b1180d3798bf3"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="b3f841139c6604fa71b2a9f771be4df8"/><file name="ui-icons_454545_256x240.png" hash="0a4a9e848ae55bfd4e9839e6324c67e0"/><file name="ui-icons_222222_256x240.png" hash="854cfef6b6ca4944dd1ba7b025ca0c66"/><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="4e23f7f7ab8c99dac2325ff44a98eedf"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="237b38af07f918d30cd4a53f8ba201aa"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="4b401b58b5e65b0870a2d1c29f6b9c0d"/><file name="ui-icons_2e83ff_256x240.png" hash="d90630a0da6df0be512e5f789af72551"/></dir><file name="jquery-ui-1.10.0.custom.min.css" hash="7052370aa4e9878e7f76e473eccf4cf9"/></dir></dir><file name="jquery-ui-1.10.0.custom.min.js" hash="da1e608faf62dbb9502f0c364d7140e3"/><file name="jquery-ui-combobox.js" hash="4614c0e61a10c05e7c0cf15e1ab9874d"/></dir><dir name="editor"><file name="nicEdit.js" hash="99ea1507863613875084280e2366c7d6"/><file name="nicEditorIcons.gif" hash="814b0cbfa93e52bbd76e5b6a37338653"/></dir><dir name="lib"><file name="jquery.masonry.min.js" hash="dfce0167f5e3c4b592bd6d13b83522e6"/><file name="jquery.tmpl.js" hash="31da7368c57f2fd0d06b0b0109dcf91f"/><file name="jquery.sortable.js" hash="6624e24c09b9371c3b662eead77368a9"/><file name="jquery.ui.resizable.snap.ext.v1.7.js" hash="a3cacb37d9fc1c5109261e26caeef90e"/></dir><dir name="colorpicker"><file name="jquery.colorpicker.css" hash="91d7ba05f3ef8f591efd81a698fc9a14"/><file name="README" hash="a6dfb15e339826c75bc0aa2ddf585545"/><file name="index.html" hash="63b312e4903de349d6e3f83a5bf11710"/><dir name="i18n"><file name="jquery.ui.colorpicker-nl.js" hash="faed2ea5bb0dbcf361ae66474cc88a71"/><file name="jquery.ui.colorpicker-en.js" hash="3ec47d3611b63904066e0a090b678bd8"/><file name="jquery.ui.colorpicker-fr.js" hash="c54aa0375b01ea5d8220a6e42ead3e37"/></dir><file name="jquery.colorpicker.js" hash="b041e8eb7ee97798f740590089c4f524"/><file name="TODO" hash="1c9cbe87e6335acdc8d931652807e779"/><dir name="images"><file name="ui-colorpicker.png" hash="7f84e7fc66ed39527a51c97ce1e181f0"/><file name="map.png" hash="db163b6d98c20097ec791f4d7dd938fd"/><file name="preview-opacity.png" hash="ab27137e3f7161c011a7b8bb89782c73"/><file name="bar-pointer.png" hash="5fd83de4556ee0a6c2421cf4a82b33ff"/><file name="bar-opacity.png" hash="ca51657e035c8ec7101a2ba3e4fb027c"/><file name="bar-alpha.png" hash="5c5791930e0644f718c68296a62251cd"/><file name="map-opacity.png" hash="47d63ecea460265f78ab03b88d2b0b10"/><file name="map-pointer.png" hash="e980c6080dd47664329b219cc35cd79d"/><file name="bar.png" hash="fe1c7cbad0cbc0e2d90a0291658dbbcb"/></dir></dir><dir name="knockout"><file name="knockout-jquery-ui-widget.js" hash="c4a8fe0bebb53084fa3a2844e32d12a4"/><file name="knockout-latest.debug.js" hash="10009389a77872b5515acce22a2b013c"/><file name="knockout-sortable.js" hash="c38cc8f60b0b2ccd6b97bccdf0c98089"/><file name="knockout-3.1.0.js" hash="999f69b4d056ddefee31c71a357223f4"/><file name="knockout.mapping.js" hash="79c16fd9c4d13c674a827cd13993358c"/></dir><dir name="images"><file name="trash.svg" hash="6963c7ce996b7d7ef7252e1585fd47e8"/><file name="no-imagick.jpg" hash="6011a7db1633c0bf403363b05bd773ad"/><dir name="thumbnail"><file name="txt.png" hash="802eac23987c0e8ed44d94ece52d55ca"/><file name="gz.png" hash="36ec4db53b987983176a4824f7478e85"/><dir name="p16"><file name="txt.png" hash="79520d0ef237730c55eb5bcd50b78ea2"/><file name="swf.png" hash="1623343ec1b366081175a4d28feb66ae"/><file name="gz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="video.png" hash="9681c0591166287c6c3144837fdf1008"/><file name="zip.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="pdf.png" hash="f8dfa3fa0386adcd2370c6d509a0be91"/><file name="image.png" hash="66517d22e9c688e521951b3c2d4498e0"/><file name="tgz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/></dir><file name="zip.png" hash="36ec4db53b987983176a4824f7478e85"/><file name="empty.png" hash="4916f08cf952402163d8ece7a90c28a3"/><file name="pdf.png" hash="01275166b86b1dc6e863e7c74e31a4b4"/></dir><file name="empty_template.png" hash="7cb866b823cac2c686e686e876de397c"/><file name="ajax-loader.gif" hash="08a3028fda91d443f4d5e93307c96fcd"/><file name="loadinfo.gif" hash="66c1026d570b265736fc352f8cd7d0fa"/></dir><dir name="publication"><file name="validate.js" hash="4b0c925f64fb09085efc8acca90f9a68"/><file name="filemanager.js" hash="6a722bdfb3084e0591720a36e99581d1"/><file name="satzeditor.js" hash="d34ef9b18c1183b665233471464b1713"/><file name="fileupload.js" hash="5647a7a8e57130babbee9ac01328cc5a"/></dir><dir name="css"><file name="filemanager.css" hash="572befaf880ca68da8f0e29828ed7498"/><file name="basic.css" hash="33d94cc074d578630adfe93f65a82354"/><file name="satzeditor.css" hash="37bb263029b96f5e586f98a819d4d3ea"/></dir><dir name="filetree"><file name="jquery.jstree.js" hash="7fc98c0efedcdea06a695cb2ccaa18c2"/><dir name="_lib"><file name="jquery.js" hash="1043c71003dd56fb3417cca1f2048d44"/><file name="jquery.hotkeys.js" hash="e44a7f6c300f1cec9d4f3359d62d4525"/><file name="jquery.cookie.js" hash="ce56bb0d2daafc993b2866ccc1af86fc"/></dir><dir name="themes"><dir name="default-rtl"><file name="dots.gif" hash="3ce3f8853ef2c56f6aec2bf8dc1e58fe"/><file name="style.css" hash="d26c0f2c59237a6bdc1e9ca9a604075b"/><file name="d.png" hash="d6f62e7edafae482fc8abda429e692ce"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="e3fb5e0791a390693960697c569e5696"/></dir><dir name="default"><file name="style.css" hash="00575b10a2eb206a9838b5e592b0d2e2"/><file name="d.png" hash="0eb50798dca00f5cc8e153e6da9a87f9"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="25d6637406a2a3d42735b22d0f627639"/></dir><dir name="apple"><file name="bg.jpg" hash="eb12f0d34682685e9c0765c86f849230"/><file name="style.css" hash="972faf8c700639be6acd867274f6a9bb"/><file name="d.png" hash="84c5c7217fd02dc781c5bffd619e6f2a"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/></dir><dir name="classic"><file name="style.css" hash="5a529a18800bfbdc6c1691b4ab4c76f7"/><file name="d.png" hash="651903f05f01694e55fc3b9218a56d89"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/><file name="d.gif" hash="e59bf915dbc3b54de68f97fcc385e9c6"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies>
18
  <required>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
+ <version>1.8.0.3</version>
5
  <stability>stable</stability>
6
  <license>see snm-portal.com</license>
7
  <channel>community</channel>
10
  <description>snm_pdfpublication_basic extension from snm-portal.com</description>
11
  <notes>No Notes</notes>
12
  <authors><author><name>snm-portal</name><user>augsten</user><email>develop@snm-portal.com</email></author></authors>
13
+ <date>2014-07-29</date>
14
+ <time>14:54:10</time>
15
+ <contents><target name="magelib"><dir name="snm3"><dir name="tcpdf"><dir name="tools"><file name="convert_fonts_examples.txt" hash="01d1bb3c8c8bdb35f3837e2715dbe681"/><file name="tcpdf_addfont.php" hash="8a55d83a4002cf045b586982b64c8356"/><file name=".htaccess" hash="183e8e4abc660eaba3c3da4bb82b0bcf"/></dir><file name="tcpdf.php" hash="fd073bc49f7106c04b101e6c386120dd"/><file name="tcpdf_barcodes_2d.php" hash="17bfd10e3232de9145f5b74a6ef6afac"/><dir name="fonts"><file name="helveticai.php" hash="e0a7f23376f50de631db93814aff2e35"/><file name="zapfdingbats.php" hash="191b3c2e856e750c06c0ba7987f902fb"/><file name="helveticabi.php" hash="c22fdc8941f2956e0930b20105870468"/><file name="helveticab.php" hash="3daad3713df02c15beebd09ceecacacd"/><file name="helvetica.php" hash="2a315fa2593161154c319788f0ef2127"/></dir><file name="tcpdf_parser.php" hash="5c546b7f37191a754b6743a640c6a0cd"/><file name="tcpdf_autoconfig.php" hash="2ff9546965d6bc3e9a7f65552cd80c41"/><file name="CHANGELOG.TXT" hash="abf24925b600c9fffdaee35bb216e7bd"/><file name="tcpdf_import.php" hash="6bb88a8a3d69511d1bf9e7af12ab5f47"/><file name="tcpdf_barcodes_1d.php" hash="27f0f0c023d8775a7d970a0550caa3ef"/><file name="composer.json" hash="0e83d096a5529f0ce9034af6e20e22e8"/><file name="LICENSE.TXT" hash="5c87b66a5358ebcc495b03e0afcd342c"/><file name="README.TXT" hash="b0d263ba91ffc434ac633523fd75a42c"/><dir name="config"><dir name="lang"><file name="por.php" hash="4e5e4b97c58d71c3edcfeafa14951408"/><file name="bel.php" hash="aaa9c18becac50de78f3ed7167442df7"/><file name="ara.php" hash="88c3faeee02a1d61f0e4a3d3753e1345"/><file name="hat.php" hash="119c2452df924c74378b5c50d49bffe3"/><file name="hun.php" hash="7973e7f5b945479c7e8c0ac97058adb9"/><file name="zho.php" hash="ad33733922f50d05affe34413a924185"/><file name="cat.php" hash="3b1853da276cd8d642d75adadb0e3ff0"/><file name="far.php" hash="47a6541a450730616fc093c6739aeb70"/><file name="mlt.php" hash="49fe005624ad848581820b7c26ffec0d"/><file name="aze.php" hash="0d94296afd349a572e6afb8cdd2e767d"/><file name="mkd.php" hash="8719cb2ce7465fc69c36563a362df048"/><file name="bra.php" hash="2b9affb5500e8c421ecd506b70ee2330"/><file name="jpn.php" hash="5767e072fd091dff871996a3d012c3a3"/><file name="hye.php" hash="ae6dbe852b60660dcaeff404b2525fa8"/><file name="ces.php" hash="a21be64a536079b88dc064996df88f2d"/><file name="hrv.php" hash="ee77ae996bb0c83a78e5012542f7b973"/><file name="srp.php" hash="cbb390944537fe268f8b25f0df3b5fe0"/><file name="sqi.php" hash="8e2d65d8d0d6fd5117fffc2f2aed07e8"/><file name="ukr.php" hash="2f27ecba8e32022e40989f767f9c5ca3"/><file name="heb.php" hash="8b87f24cac90703fe51790de4369402f"/><file name="pol.php" hash="2a19c1be4a0218d39651e83550316108"/><file name="ita.php" hash="d74f2ef88fc933b7a24758c26cca5bb5"/><file name="urd.php" hash="db5c8e29e079fc30f0c0a19271b8cbfa"/><file name="rus.php" hash="9195119a0baa343354a9d9af538959d8"/><file name="ger.php" hash="8fbb25bbb83656e5f632413fe38f0ffb"/><file name="eus.php" hash="e0b1be60fb7b015ef11919efee02373f"/><file name="swa.php" hash="28ddcf894fa9e70305ab15653454dc04"/><file name="swe.php" hash="3426291e4f6d245f6bf945d9bf103c25"/><file name="glg.php" hash="aeedb99c68cac50d0730a2f9d15e7a11"/><file name="ron.php" hash="97a5d9ca1a84002c15f966fc828c6801"/><file name="dan.php" hash="0fe1af520d1ca49b7c001f6fd477c170"/><file name="spa.php" hash="d94a308b53e6bc441091daddfad4ebb7"/><file name="fra.php" hash="f056969e8f8afd9b93bb07e43a615925"/><file name="nld.php" hash="dc17db1ed58edb04ed38b38d0c4aeb67"/><file name="nob.php" hash="80c2c48943a01d3a4620a0d467a00494"/><file name="afr.php" hash="d2e3e7f95299aeb0a8cbd1a22124f806"/><file name="eng.php" hash="af8873cc6a43760e060a5bcf0e4b1160"/><file name="slv.php" hash="482e42ee876acd292d829778a763b679"/><file name="est.php" hash="3fa8a31d7c62a99f02ce179c0cfd48d4"/><file name="kor.php" hash="e52771743209216779f95253346e8dc0"/><file name="ind.php" hash="c13986f1929289ca2f31cc234193dfa2"/><file name="gle.php" hash="658bbc9cf255c9234f1fca1c5af6520c"/><file name="kat.php" hash="53f47408b56384d92ccf79004edd06a2"/><file name="chi.php" hash="d30bfd131b4442ec577865f9f7c6965d"/><file name="bul.php" hash="cffad12f128f2d602a41213425fda45b"/><file name="msa.php" hash="446fb5b43c31f44274497cabbd313d2f"/><file name="yid.php" hash="3514268a049f09590ad2b3eaa5a68cae"/><file name="cym.php" hash="8cb4da872b8e55077e2539ccb328856e"/></dir><file name="tcpdf_config.php" hash="09a8c58f2781725c0f4f6e4379b92c62"/></dir><dir name="include"><file name="tcpdf_static.php" hash="4f34cb94f62e7faa98ad79712a9f6b8e"/><file name="tcpdf_filters.php" hash="205fd4b7bc978688de8420087c161bcb"/><file name="sRGB.icc" hash="060e79448f1454582be37b3de490da2f"/><file name="tcpdf_font_data.php" hash="8f83bbc144d70505672f82679546c72d"/><file name="tcpdf_images.php" hash="42f2f6e2122319a302b2769011897b2a"/><file name="tcpdf_fonts.php" hash="75837274a0d67e19ee975aaef9e283ee"/><dir name="barcodes"><file name="qrcode.php" hash="edd56d70cac390ef63feeef7e9d71b3f"/><file name="datamatrix.php" hash="561027d7adbd2358225866cba60568d2"/><file name="pdf417.php" hash="0d24de61581243b069fb508efbc78a67"/></dir><file name="tcpdf_colors.php" hash="cacdbe68a428ae36151a3d1152b2b77b"/></dir></dir><dir name="auit"><file name="pdf.php" hash="42f0cee8b799acc91f0dd12b4e267b08"/><file name="barcode.php" hash="46f6b98de94dbbfb09fc2e00bae197d9"/></dir></dir></target><target name="magelocal"><dir name="AuIt"><dir name="PublicationBasic"><dir name="Block"><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Image.php" hash="61f2dffe0c519eec9f2a6ed6145885b4"/></dir></dir></dir><dir name="Form"><dir name="Element"><file name="Styles.phpXXX" hash="0fa4f3f555c2df4bf658fdf16104687d"/><file name="Publication.phpXXX" hash="d046ddd372a5316f84f54e172b5799a1"/><file name="Satzeditor.php" hash="8490dde3310c33a5a4b76942e3948df1"/><file name="Parameter.php" hash="1658131ba7279c768691aa7656e9d7d8"/></dir><dir name="Renderer"><file name="Parameter.php" hash="5c2399f1b009694b96408a469b698895"/></dir></dir></dir><dir name="Adminhtml"><file name="Versioninfo.php" hash="347b6ffa0dc95d6a07aed7c0a34bf398"/><dir name="Import"><dir name="Edit"><file name="Form.php" hash="867c61d7b2df316f1ae8217b72545cf9"/></dir><dir name="Frame"><file name="Result.php" hash="e955891d25b6022359ee69a5e50a6097"/></dir><file name="Edit.php" hash="19ca4720403eb0e20719e15c9c847acc"/></dir><file name="Info.php" hash="d6a6efe359cf0fe462c9b44706dffec2"/><file name="Jobqueue.php" hash="5f0d54978b5069d979a47d072d8d7870"/><file name="Items.php" hash="5cd6e34b698e6fd99bf0d8f3e70f93d9"/><file name="Projects.php" hash="1c4f4fc77ed96df5830cd211e9b7013e"/><dir name="Projects"><dir name="Edit"><file name="Tabs.php" hash="e72ef03619fc1579a35e4bb3ba22b5a2"/><dir name="Tab"><file name="Settings.php" hash="5b4fec7d6a05a120ab8929255a5355a9"/><file name="Layout.php" hash="ec00f751a35a79dc56e2cec40cc41091"/><file name="Main.php" hash="6f444f48f2b1aa7341867028f01fa98f"/></dir><file name="Form.php" hash="959740aab024cb1103670aea6fe81411"/></dir><file name="Grid.php" hash="b8dab256a5b34d586e989b2f4b09b5ae"/><file name="Edit.php" hash="b490f9be6d73822e61305fe72f59842d"/></dir><file name="Satzeditor.php" hash="96f49c918ad2b6c8b0aa67e0d9a3dcdf"/><dir name="Jobqueue"><dir name="Edit"><file name="Tabs.php" hash="72afcdbfeb612efc3b88e1286a89a289"/><dir name="Tab"><dir name="Products"><file name="Grid.php" hash="64e107053234cb0abb9ba3a0646dfe14"/><file name="Field.php" hash="723fe2a80c975ddb5d3248a373282157"/></dir><file name="Settings.php" hash="3aea2af6c20ddfd30f10191c6c12a58b"/><file name="Queue.php" hash="ee2375edb56f1343164bdd636e7b0e35"/><file name="Products.php" hash="a7ebaa0499c2596c7b587f3d7ed2fea1"/><file name="Print.php" hash="209d13f2a593c98c33c8338c167d82bd"/><file name="Epub3.php" hash="6551c28c7c19b205ca25a60e22a6aba3"/><file name="Main.php" hash="bae1d560e729caead0c15bfbfcf6572d"/></dir><file name="Form.php" hash="f982277390678e8c4464a129c10860bc"/></dir><file name="Grid.php" hash="a4ffc0f3af4c531029c95e6b326e5adc"/><file name="Edit.php" hash="9ff847a1b202e8066507c5c5064cffae"/><file name="Preview.php" hash="fc29b7a55f37677bb7e6f8a7ccbd3241"/></dir></dir><file name="Generator.php" hash="72e6ee5302c96a63a2a6b75eef638e43"/><dir name="Product"><file name="Buttons.php" hash="8808c384e1f61e4c2d639fa5cc8e9eac"/></dir><file name="Frame.php" hash="f5b8d0e11f6d3c1273e5a736767893fe"/></dir><dir name="Model"><dir name="Pdf"><file name="Base.php" hash="03c3b9a4a65028a2bef9838fb91acfad"/></dir><dir name="Filemanager"><file name="Storage.php" hash="b55328a17655b97a74b26d8e6eaf9b09"/><dir name="Storage"><file name="Collection.php" hash="bdc4a955e6d000e028f28189f15c78e0"/></dir></dir><dir name="Email"><dir name="Template"><file name="Helper.php" hash="67489e51133cdbf9c77263265848e691"/><file name="Filter.php" hash="14b1800c7916cf15fcbc80cbcec8b81f"/></dir></dir><file name="Jobqueue.php" hash="8d10cee0ba328dce5114eed8927e5258"/><dir name="Adminhtml"><file name="Idtemplate.php" hash="cb75c67a7df5b52fe2b162c9dd390d3d"/><file name="Arraytemplate.php" hash="5d3313fb14a1f0a747fce4688da0d0aa"/><dir name="System"><dir name="Config"><dir name="Product"><file name="Attribute.php" hash="19eb06ed676684be98bab52e87fde729"/></dir><file name="Producttemplates.php" hash="85dbe2b6b8a6dc9bdf4eb6ae41a0bf7e"/></dir></dir></dir><file name="Style.php" hash="4edfebf8ccc1aadbb1e5c370628c32c0"/><file name="Cron.php" hash="e0eb7767b10b488ebb817638e8f89190"/><file name="Project.php" hash="2c819537a71335a7ad8109d4fd31b75c"/><file name="Generator.php" hash="46e46ffdca417f02f06b86ee23c983a4"/><file name="Font.php" hash="c724c026c9cd0e0db6226b324ae7417a"/><file name="Styles.php" hash="bcf6b1f68fe35ec81b151aedf69af5e3"/><dir name="Resource"><dir name="Styles"><file name="Collection.php" hash="516757fa83e6f4f56a74cd98cfd043f5"/></dir><file name="Jobqueue.php" hash="69be09343a26ecb36be644dc4fcab1ae"/><dir name="Template"><file name="Collection.php" hash="bad352781f731b52a906b21ff4237482"/></dir><file name="Abstract.php" hash="177fdf20a7da55465fe7ba724cf42c78"/><dir name="Project"><file name="Collection.php" hash="ef39bb97211b2fb11f48fdc485fae86f"/></dir><file name="Project.php" hash="c485d7adef9630ac7ed57d1dc6004892"/><file name="Generator.php" hash="69857ca1fc66e92307f67359b72e3829"/><dir name="Generator"><file name="Collection.php" hash="86a1c6999faf2020045667586916e130"/></dir><file name="Styles.php" hash="b07e8d82a20c92d6f62916704982fcec"/><file name="Template.php" hash="4deb8416dea904885abef3d109ffbc7b"/><dir name="Jobqueue"><file name="Collection.php" hash="64999a8db6dd96153a93ad380bee9f19"/></dir></dir><dir name="Config"><file name="Idtemplate.php" hash="618d60cb811b354ef9532efa8be85c93"/><file name="Arraytemplate.php" hash="8d21fab3662f01d36bf1b9aa8d3a6605"/><file name="Update.php" hash="18d66959f5d8ae26b11d914c3a7a4d57"/></dir><file name="Template.php" hash="d1cae1bf6c6d7fb9a69bb0c3441dce26"/><dir name="Renderer"><file name="Abstract.php" hash="6ffd90970f030d20d806c334e4373a39"/><file name="Pdf.php" hash="57a033f2447f0df3b4784ebc328716f2"/></dir></dir><dir name="data"><file name="gfont.ser" hash="7d721f80d97ed2aab6147eeee742d295"/><dir name="css"><file name="default.css" hash="53b5f66df79eef855335f798ec903232"/></dir><dir name="shapelib"><file name="misc.json" hash="362692de0da72df10ec79e8cabf82ce1"/><file name="symbol.json" hash="3d6f4033be5c7e2c01584770a430445b"/><file name="arrow.json" hash="56b7a54d89a38b1ad8d90dbb49419375"/><file name="sales.json" hash="39337068d3541014d9c453fe889075f5"/><file name="categories.json" hash="9de70137932ed00b29c12391604ace52"/><file name="music.json" hash="30b05d18591754122736a56316e809b6"/><file name="dialog_balloon.json" hash="f42f1a9da4a6580cce5777a92d828fcc"/><file name="object.json" hash="79b64dfa23fd0da64bf6ce1d159fa2fc"/><file name="raphael_2.json" hash="5b3c3eea713927f637c416a786df2072"/><file name="game.json" hash="8bfeb3d78da91cd90d9b2da9258c279b"/><file name="flowchart.json" hash="bf4343c2c1fd618ce5e8aa04c1def32d"/><file name="basic.json" hash="9a0c84ac03d46a0e0ce40320f74f4a34"/><file name="math.json" hash="8c62b7fb36b1061f2d715485f1cb143b"/><file name="raphael_1.json" hash="d6b84c0eb724a4dea5bdf02b8fa669ab"/><file name="animal.json" hash="22d536b6151d6cba305728001b96e82b"/><file name="electronics.json" hash="0762432479510c8bbff58e631edfa156"/><file name="raphael.txt" hash="a4156780de6385427328cc9a7148abfb"/></dir></dir><dir name="Helper"><file name="Filemanager.php" hash="4bfe726daf69fcf3be5e0b037ba892e0"/><file name="Arrayconfig.php" hash="261f48cda93d07e5cf95cf15ce188b64"/><file name="Svg.php" hash="625dac4650de20d4666d73c699204442"/><file name="Style.php" hash="b0f81e4af823647231915fdffdc490b5"/><file name="Export.php" hash="548dac6323bfba6769c1cbf5afca01f8"/><file name="Config.php" hash="9e65977bb0f5bfce8aaee66e996e8561"/><file name="Data.php" hash="c4647b7e9713742d257a4a19874474e3"/><file name="Dirdirective.php" hash="caaa9333f32fe15fd0ac4f9ec68525db"/><file name="Font.php" hash="ade9858b9ad84466c5299fbab7c8aebe"/><file name="Pdf.php" hash="06950471da2acad64a11a67261f56b48"/></dir><dir name="etc"><file name="dir.directive.xml" hash="94abf565cf4a898a307c621ea141ad97"/><file name="adminhtml.xml" hash="9342841d6dbd2974b38eb55e4a6fab3e"/><file name="config.xml" hash="c591684bafc5d95bf6b2aa6dcc615ba2"/><file name="history.xml" hash="382a1824dd4f690c6fb58c18d5792d5b"/><file name="system.xml" hash="8a4340b9e4cf3ae3ac1ff1fd72364839"/></dir><dir name="sql"><dir name="auit_publicationbasic_setup"><file name="install-1.8.0.1.php" hash="2e75c5675f55602e3efc435c9267f6da"/></dir></dir><dir name="controllers"><file name="ContentController.php" hash="d4850605f94ab79170cf58e33f317262"/><dir name="Admin"><file name="ImportController.php" hash="d54022e572a86260947a3125920b72fe"/><file name="JobqueueController.php" hash="a991e4ac21348a43bf50aeb806e9ca84"/><file name="FilemanagerController.php" hash="9576633f3a5cce0baf4cb4536b788df9"/><file name="ShapeController.php" hash="02644a3d8b74ed17a585d7eaab450b86"/><file name="PreviewController.php" hash="f193f06b74a51f3c63bde62003c1d662"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="99a88608e21dbd9dac12ec66ab77a71d"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><dir name="product"><file name="price_variants.phtml" hash="a550a619f97a095a183f4ecfae6933ad"/><file name="buttons.phtml" hash="5af8fc7a11ca8cd8dfdef3ac9d0f529a"/><file name="images.phtml" hash="ff43caaee28d4a46ec00aecfcf90d7c6"/><file name="price_variants2.phtml" hash="d3ac6a7014018f4e7ff6197afee2ba21"/></dir><file name="product_attribute.phtml" hash="5c86d9787594a833bf364aad4d46b47d"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="ae90fbb71cdbd28010538fb675997e6b"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><file name="filemanager.phtml" hash="b262367fe671b86edf91b222c0015aaa"/><file name="satzeditor.phtml" hash="849df5aa90a2960218fd5b90f63c058e"/><dir name="admin"><dir name="import"><dir name="form"><file name="after.phtml" hash="82f147959a1a63c97d7b8cfd5643a529"/><file name="before.phtml" hash="970bb388fff1aae7af2c3c5a537d6a54"/></dir><dir name="frame"><file name="result.phtml" hash="87f629974959d669e2e5c6cf05120aaf"/></dir></dir></dir><dir name="renderer"><file name="array.phtml" hash="d9b4eb7a36418ee84e80a6e1aaf215ab"/><file name="array_date.phtml" hash="1387ef94e7178d7f6d0ef150597d6fb2"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="XAuIt_PublicationBasic.xml" hash="ab7e6c3ffd1e5f1b4d509cb98df221b3"/></dir></target><target name="mageweb"><dir name="js"><dir name="auit"><dir name="publicationbasic"><dir name="gridster"><file name="jquery.gridster.js" hash="4be7c72d0a7e2ff1a730179dce40bc39"/><file name="jquery.gridster.min.css" hash="2de0aa9fdd3481d200eb4ee5c690f511"/><file name="jquery.gridster.min.js" hash="08f8fc5c488c874203c02b0791b4d0f2"/><file name="jquery.gridster.css" hash="d93274457763a13021d55d23b0adf783"/></dir><dir name="jquery"><file name="jquery-1.9.0.min.js" hash="bd86b25cf27379f0b5b765ac8d7b8123"/><file name="jquery-1.9.0.js" hash="573701cf4501819581a58cb4038a6f7d"/><file name="jquery-ui-1.10.0.custom.js" hash="2e06e419682502e57ef69573bc47efe1"/><file name="jquery.mousewheel.js" hash="e0dd9bfeb66850507cc25c35d9ffc55b"/><file name="jquery-noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><dir name="css"><dir name="smoothness"><file name="jquery-ui-1.10.0.custom.css" hash="29dc6f1a5896bded4c64e08870935ad0"/><dir name="images"><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="36d73421e98540eb9899dfdab1e4afaf"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="6069814bbf1621f2b4a7e7ca39eadaaf"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="1683f289128542b462cca77dc6b6d4bf"/><file name="ui-icons_cd0a0a_256x240.png" hash="0d3cb2a44a993bea91ce830b7b61e56a"/><file name="ui-icons_888888_256x240.png" hash="22d602a11b95c70cb1c13f58c6a44dd1"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="01b117d1785587a9424b1180d3798bf3"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="b3f841139c6604fa71b2a9f771be4df8"/><file name="ui-icons_454545_256x240.png" hash="0a4a9e848ae55bfd4e9839e6324c67e0"/><file name="ui-icons_222222_256x240.png" hash="854cfef6b6ca4944dd1ba7b025ca0c66"/><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="4e23f7f7ab8c99dac2325ff44a98eedf"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="237b38af07f918d30cd4a53f8ba201aa"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="4b401b58b5e65b0870a2d1c29f6b9c0d"/><file name="ui-icons_2e83ff_256x240.png" hash="d90630a0da6df0be512e5f789af72551"/></dir><file name="jquery-ui-1.10.0.custom.min.css" hash="7052370aa4e9878e7f76e473eccf4cf9"/></dir></dir><file name="jquery-ui-1.10.0.custom.min.js" hash="da1e608faf62dbb9502f0c364d7140e3"/><file name="jquery-ui-combobox.js" hash="4614c0e61a10c05e7c0cf15e1ab9874d"/></dir><dir name="editor"><file name="nicEdit.js" hash="99ea1507863613875084280e2366c7d6"/><file name="nicEditorIcons.gif" hash="814b0cbfa93e52bbd76e5b6a37338653"/></dir><dir name="lib"><file name="jquery.masonry.min.js" hash="dfce0167f5e3c4b592bd6d13b83522e6"/><file name="jquery.tmpl.js" hash="31da7368c57f2fd0d06b0b0109dcf91f"/><file name="jquery.sortable.js" hash="6624e24c09b9371c3b662eead77368a9"/><file name="jquery.ui.resizable.snap.ext.v1.7.js" hash="a3cacb37d9fc1c5109261e26caeef90e"/></dir><dir name="colorpicker"><file name="jquery.colorpicker.css" hash="91d7ba05f3ef8f591efd81a698fc9a14"/><file name="README" hash="a6dfb15e339826c75bc0aa2ddf585545"/><file name="index.html" hash="63b312e4903de349d6e3f83a5bf11710"/><dir name="i18n"><file name="jquery.ui.colorpicker-nl.js" hash="faed2ea5bb0dbcf361ae66474cc88a71"/><file name="jquery.ui.colorpicker-en.js" hash="3ec47d3611b63904066e0a090b678bd8"/><file name="jquery.ui.colorpicker-fr.js" hash="c54aa0375b01ea5d8220a6e42ead3e37"/></dir><file name="jquery.colorpicker.js" hash="b041e8eb7ee97798f740590089c4f524"/><file name="TODO" hash="1c9cbe87e6335acdc8d931652807e779"/><dir name="images"><file name="ui-colorpicker.png" hash="7f84e7fc66ed39527a51c97ce1e181f0"/><file name="map.png" hash="db163b6d98c20097ec791f4d7dd938fd"/><file name="preview-opacity.png" hash="ab27137e3f7161c011a7b8bb89782c73"/><file name="bar-pointer.png" hash="5fd83de4556ee0a6c2421cf4a82b33ff"/><file name="bar-opacity.png" hash="ca51657e035c8ec7101a2ba3e4fb027c"/><file name="bar-alpha.png" hash="5c5791930e0644f718c68296a62251cd"/><file name="map-opacity.png" hash="47d63ecea460265f78ab03b88d2b0b10"/><file name="map-pointer.png" hash="e980c6080dd47664329b219cc35cd79d"/><file name="bar.png" hash="fe1c7cbad0cbc0e2d90a0291658dbbcb"/></dir></dir><dir name="knockout"><file name="knockout-jquery-ui-widget.js" hash="c4a8fe0bebb53084fa3a2844e32d12a4"/><file name="knockout-latest.debug.js" hash="10009389a77872b5515acce22a2b013c"/><file name="knockout-sortable.js" hash="c38cc8f60b0b2ccd6b97bccdf0c98089"/><file name="knockout-3.1.0.js" hash="999f69b4d056ddefee31c71a357223f4"/><file name="knockout.mapping.js" hash="79c16fd9c4d13c674a827cd13993358c"/></dir><dir name="images"><file name="trash.svg" hash="6963c7ce996b7d7ef7252e1585fd47e8"/><file name="no-imagick.jpg" hash="6011a7db1633c0bf403363b05bd773ad"/><dir name="thumbnail"><file name="txt.png" hash="802eac23987c0e8ed44d94ece52d55ca"/><file name="gz.png" hash="36ec4db53b987983176a4824f7478e85"/><dir name="p16"><file name="txt.png" hash="79520d0ef237730c55eb5bcd50b78ea2"/><file name="swf.png" hash="1623343ec1b366081175a4d28feb66ae"/><file name="gz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="video.png" hash="9681c0591166287c6c3144837fdf1008"/><file name="zip.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="pdf.png" hash="f8dfa3fa0386adcd2370c6d509a0be91"/><file name="image.png" hash="66517d22e9c688e521951b3c2d4498e0"/><file name="tgz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/></dir><file name="zip.png" hash="36ec4db53b987983176a4824f7478e85"/><file name="empty.png" hash="4916f08cf952402163d8ece7a90c28a3"/><file name="pdf.png" hash="01275166b86b1dc6e863e7c74e31a4b4"/></dir><file name="empty_template.png" hash="7cb866b823cac2c686e686e876de397c"/><file name="ajax-loader.gif" hash="08a3028fda91d443f4d5e93307c96fcd"/><file name="loadinfo.gif" hash="66c1026d570b265736fc352f8cd7d0fa"/></dir><dir name="publication"><file name="validate.js" hash="4b0c925f64fb09085efc8acca90f9a68"/><file name="filemanager.js" hash="6a722bdfb3084e0591720a36e99581d1"/><file name="satzeditor.js" hash="d34ef9b18c1183b665233471464b1713"/><file name="fileupload.js" hash="5647a7a8e57130babbee9ac01328cc5a"/></dir><dir name="css"><file name="filemanager.css" hash="572befaf880ca68da8f0e29828ed7498"/><file name="basic.css" hash="33d94cc074d578630adfe93f65a82354"/><file name="satzeditor.css" hash="37bb263029b96f5e586f98a819d4d3ea"/></dir><dir name="filetree"><file name="jquery.jstree.js" hash="7fc98c0efedcdea06a695cb2ccaa18c2"/><dir name="_lib"><file name="jquery.js" hash="1043c71003dd56fb3417cca1f2048d44"/><file name="jquery.hotkeys.js" hash="e44a7f6c300f1cec9d4f3359d62d4525"/><file name="jquery.cookie.js" hash="ce56bb0d2daafc993b2866ccc1af86fc"/></dir><dir name="themes"><dir name="default-rtl"><file name="dots.gif" hash="3ce3f8853ef2c56f6aec2bf8dc1e58fe"/><file name="style.css" hash="d26c0f2c59237a6bdc1e9ca9a604075b"/><file name="d.png" hash="d6f62e7edafae482fc8abda429e692ce"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="e3fb5e0791a390693960697c569e5696"/></dir><dir name="default"><file name="style.css" hash="00575b10a2eb206a9838b5e592b0d2e2"/><file name="d.png" hash="0eb50798dca00f5cc8e153e6da9a87f9"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="25d6637406a2a3d42735b22d0f627639"/></dir><dir name="apple"><file name="bg.jpg" hash="eb12f0d34682685e9c0765c86f849230"/><file name="style.css" hash="972faf8c700639be6acd867274f6a9bb"/><file name="d.png" hash="84c5c7217fd02dc781c5bffd619e6f2a"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/></dir><dir name="classic"><file name="style.css" hash="5a529a18800bfbdc6c1691b4ab4c76f7"/><file name="d.png" hash="651903f05f01694e55fc3b9218a56d89"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/><file name="d.gif" hash="e59bf915dbc3b54de68f97fcc385e9c6"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies>
18
  <required>