snm_pdfpublication_basic - Version 1.9.1

Version Notes

No Notes

Download this release

Release Info

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


Code changes from version 1.8.2 to 1.9.1

app/code/local/AuIt/PublicationBasic/Block/Adminhtml/Jobqueue/Edit/Tab/Main.php CHANGED
@@ -79,6 +79,13 @@ class AuIt_PublicationBasic_Block_Adminhtml_Jobqueue_Edit_Tab_Main
79
  }
80
  elseif ( $model->getVariante() == AuIt_PublicationBasic_Model_Jobqueue::TYPE_BROCHURE_LIST )
81
  {
 
 
 
 
 
 
 
82
  /*
83
  $fieldset->addField('template', 'select', array(
84
  'label' => Mage::helper('auit_publicationbasic')->__('Template'),
79
  }
80
  elseif ( $model->getVariante() == AuIt_PublicationBasic_Model_Jobqueue::TYPE_BROCHURE_LIST )
81
  {
82
+ $fieldset->addField('print_customer', 'text', array(
83
+ 'label' => Mage::helper('auit_publicationbasic')->__('Use CustomerID'),
84
+ 'title' => Mage::helper('auit_publicationbasic')->__('Use CustomerID'),
85
+ 'name' => 'print_customer',
86
+ 'required' => false
87
+ ));
88
+
89
  /*
90
  $fieldset->addField('template', 'select', array(
91
  'label' => Mage::helper('auit_publicationbasic')->__('Template'),
app/code/local/AuIt/PublicationBasic/Block/Adminhtml/Satzeditor.php CHANGED
@@ -61,16 +61,6 @@ class AuIt_PublicationBasic_Block_Adminhtml_Satzeditor extends Mage_Adminhtml_Bl
61
 
62
  return Mage::helper('core')->jsonEncode($this->getObj());
63
  }
64
- /**
65
- public function getJsonProductData()
66
- {
67
- $obj = $this->getObj();
68
- $type=AuIt_PublicationBasic_Helper_Data::TEMPLATE_UNKNOWN;
69
- if ( $obj && isset($obj['object']) && isset($obj['object']['type']))
70
- $type=$obj['object']['type'];
71
- return Mage::helper('core')->jsonEncode(Mage::helper('auit_publicationbasic')->getPreviewDataFromStore($obj['preview_sku'],$type,$obj['preview_store']));
72
- }
73
- */
74
  public function getJsonModel()
75
  {
76
  return '';//Mage::helper('core')->jsonEncode($this->getObj());
61
 
62
  return Mage::helper('core')->jsonEncode($this->getObj());
63
  }
 
 
 
 
 
 
 
 
 
 
64
  public function getJsonModel()
65
  {
66
  return '';//Mage::helper('core')->jsonEncode($this->getObj());
app/code/local/AuIt/PublicationBasic/Block/Generator.php CHANGED
@@ -182,6 +182,9 @@ class AuIt_PublicationBasic_Block_Generator extends Mage_Catalog_Block_Product_V
182
  {
183
  extract ($this->_viewVars, EXTR_SKIP);
184
  ob_start();
 
 
 
185
  $html ='';
186
  try {
187
  eval('?>'.$this->getGenerator()->getSource());
@@ -191,6 +194,7 @@ class AuIt_PublicationBasic_Block_Generator extends Mage_Catalog_Block_Product_V
191
  $html = 'Exception:'.$e->getMessage();
192
  // throw $e;
193
  }
 
194
 
195
  return $html;
196
  }
182
  {
183
  extract ($this->_viewVars, EXTR_SKIP);
184
  ob_start();
185
+
186
+ $oldcwd = getcwd();
187
+ chdir ( Mage::getBaseDir() );
188
  $html ='';
189
  try {
190
  eval('?>'.$this->getGenerator()->getSource());
194
  $html = 'Exception:'.$e->getMessage();
195
  // throw $e;
196
  }
197
+ chdir ($oldcwd );
198
 
199
  return $html;
200
  }
app/code/local/AuIt/PublicationBasic/Helper/Data.php CHANGED
@@ -54,7 +54,9 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
54
  $obj['preview_sku']='';
55
  if ( !isset($obj['preview_store']) )
56
  $obj['preview_store']=0;
57
-
 
 
58
  if ( isset($obj['showCurrentSpread']) )
59
  unset($obj['showCurrentSpread']);
60
  return $obj;
@@ -204,7 +206,21 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
204
  }
205
  return $sid;
206
  }
207
- public function getPreviewDataFromStore($sku,$type,$storeId=0)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  {
209
  $lsku = $sku;
210
  $lstoreId = $storeId;
@@ -215,6 +231,16 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
215
  $initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
216
  $data=$this->getObjectData($sku,$type,$storeId);
217
  $data = array_shift($data);
 
 
 
 
 
 
 
 
 
 
218
  // Stop store emulation process
219
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
220
  // BUG translation from modulcodes
@@ -223,15 +249,17 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
223
 
224
  $data['preview_sku']=$lsku;
225
  $data['preview_store']=$lstoreId;
226
-
227
  return $data;
228
  }
229
- public function getPreviewData($sku,$type)
230
  {
231
  $lsku = $sku;
232
  $lstoreId = Mage::app()->getStore()->getName();
233
  if ( !$sku )
234
  return array();
 
 
235
  // $storeId = $this->_getStoreId($storeId);
236
  // $appEmulation = Mage::getSingleton('core/app_emulation');
237
  //$initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
@@ -243,10 +271,17 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
243
  // BUG translation from modulcodes
244
  //$initialDesign = $initialEnvironmentInfo->getInitialDesign();
245
  //Mage::getSingleton('core/translate')->init($initialDesign['area'], false);
246
-
 
 
 
 
 
 
 
247
  $data['preview_sku']=$lsku;
248
  $data['preview_store']=$lstoreId;
249
-
250
  return $data;
251
  }
252
  public function getStaticBlockHTML($identifier,$storeId=0)
@@ -366,7 +401,14 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
366
  $value = $product->getData($attribute->getAttributeCode());
367
  if ( $attribute->getIsHtmlAllowedOnFront()) {
368
  $value = $this->_getTemplateProcessor()->filter($value);
369
- }
 
 
 
 
 
 
 
370
  }
371
  $data[$attribute->getAttributeCode()]=$value;
372
  }
@@ -686,7 +728,7 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
686
  {
687
  $hash=array();
688
  //$allowedAttributes=array('date','price','boolean','text','textarea','select','multiselect','media_image');
689
- $allowedAttributes=array('boolean','select','multiselect','text','textarea');
690
  //$allowedAttributes=array('text','textarea');
691
  $collection = Mage::getResourceModel('catalog/product_attribute_collection')
692
  ->addVisibleFilter();
@@ -786,6 +828,23 @@ class AuIt_PublicationBasic_Helper_Data extends Mage_Core_Helper_Abstract
786
  }
787
  return $_options;
788
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
789
  public function getPriceFromats()
790
  {
791
  static $_options;
54
  $obj['preview_sku']='';
55
  if ( !isset($obj['preview_store']) )
56
  $obj['preview_store']=0;
57
+ if ( !isset($obj['preview_customer']) )
58
+ $obj['preview_customer']=0;
59
+
60
  if ( isset($obj['showCurrentSpread']) )
61
  unset($obj['showCurrentSpread']);
62
  return $obj;
206
  }
207
  return $sid;
208
  }
209
+ public function setCatalogCustomer($customerId){
210
+ //Mage::log("setCatalogCustomer($customerId)");
211
+ if ( $customerId )
212
+ {
213
+ $customer = Mage::getModel('customer/customer')->load($customerId);
214
+ if ( $customer->getId() )
215
+ {
216
+ Mage::getSingleton('customer/session')->setId($customerId);
217
+ //Mage::getSingleton('customer/session')->setCustomer($customer);
218
+ return;
219
+ }
220
+ }
221
+ Mage::getSingleton('customer/session')->setId(0);
222
+ }
223
+ public function getPreviewDataFromStore($sku,$type,$storeId=0,$customerId=0)
224
  {
225
  $lsku = $sku;
226
  $lstoreId = $storeId;
231
  $initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
232
  $data=$this->getObjectData($sku,$type,$storeId);
233
  $data = array_shift($data);
234
+
235
+ $this->setCatalogCustomer($customerId);
236
+ /*
237
+ $locale = Mage::app()->getLocale();
238
+ $format = $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
239
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_FULL]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_FULL);
240
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_LONG]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_LONG);
241
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM);
242
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_SHORT]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
243
+ */
244
  // Stop store emulation process
245
  $appEmulation->stopEnvironmentEmulation($initialEnvironmentInfo);
246
  // BUG translation from modulcodes
249
 
250
  $data['preview_sku']=$lsku;
251
  $data['preview_store']=$lstoreId;
252
+ $data['preview_customer']=$customerId;
253
  return $data;
254
  }
255
+ public function getPreviewData($sku,$type,$storeDummy,$customerId=0)
256
  {
257
  $lsku = $sku;
258
  $lstoreId = Mage::app()->getStore()->getName();
259
  if ( !$sku )
260
  return array();
261
+ $this->setCatalogCustomer($customerId);
262
+
263
  // $storeId = $this->_getStoreId($storeId);
264
  // $appEmulation = Mage::getSingleton('core/app_emulation');
265
  //$initialEnvironmentInfo = $appEmulation->startEnvironmentEmulation($storeId);
271
  // BUG translation from modulcodes
272
  //$initialDesign = $initialEnvironmentInfo->getInitialDesign();
273
  //Mage::getSingleton('core/translate')->init($initialDesign['area'], false);
274
+ /*
275
+ $locale = Mage::app()->getLocale();
276
+ $format = $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
277
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_FULL]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_FULL);
278
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_LONG]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_LONG);
279
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM);
280
+ $data['_DATE_'.Mage_Core_Model_Locale::FORMAT_TYPE_SHORT]= $locale->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
281
+ */
282
  $data['preview_sku']=$lsku;
283
  $data['preview_store']=$lstoreId;
284
+ $data['preview_customer']=$customerId;
285
  return $data;
286
  }
287
  public function getStaticBlockHTML($identifier,$storeId=0)
401
  $value = $product->getData($attribute->getAttributeCode());
402
  if ( $attribute->getIsHtmlAllowedOnFront()) {
403
  $value = $this->_getTemplateProcessor()->filter($value);
404
+ }
405
+ if ( $attribute->getFrontendInput() == 'date')
406
+ {
407
+ $data[$attribute->getAttributeCode().'_'.Mage_Core_Model_Locale::FORMAT_TYPE_FULL]= ''.Mage::helper('core')->formatDate($value, Mage_Core_Model_Locale::FORMAT_TYPE_FULL);
408
+ $data[$attribute->getAttributeCode().'_'.Mage_Core_Model_Locale::FORMAT_TYPE_LONG]= ''.Mage::helper('core')->formatDate($value, Mage_Core_Model_Locale::FORMAT_TYPE_LONG);
409
+ $data[$attribute->getAttributeCode().'_'.Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM]= ''.Mage::helper('core')->formatDate($value, Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM);
410
+ $data[$attribute->getAttributeCode().'_'.Mage_Core_Model_Locale::FORMAT_TYPE_SHORT]= ''.Mage::helper('core')->formatDate($value, Mage_Core_Model_Locale::FORMAT_TYPE_SHORT);
411
+ }
412
  }
413
  $data[$attribute->getAttributeCode()]=$value;
414
  }
728
  {
729
  $hash=array();
730
  //$allowedAttributes=array('date','price','boolean','text','textarea','select','multiselect','media_image');
731
+ $allowedAttributes=array('boolean','select','multiselect','text','textarea','weight','price','date');
732
  //$allowedAttributes=array('text','textarea');
733
  $collection = Mage::getResourceModel('catalog/product_attribute_collection')
734
  ->addVisibleFilter();
828
  }
829
  return $_options;
830
  }
831
+
832
+ public function getAttributeFormats()
833
+ {
834
+ static $_options;
835
+ if (!$_options) {
836
+ $_options = array();
837
+ $_options['-'] = $this->__('Default');
838
+ $_options['AL.digits(value)'] = $this->__('Number');
839
+ $_options['AL.printf(value,\'%0.1f\')'] = $this->__('.0');
840
+ $_options['AL.printf(value,\'%0.2f\')'] = $this->__('.00');
841
+ $_options['AL.date(ac,value,\''.Mage_Core_Model_Locale::FORMAT_TYPE_FULL.'\')'] = $this->__('Date Full');
842
+ $_options['AL.date(ac,value,\''.Mage_Core_Model_Locale::FORMAT_TYPE_LONG.'\')'] = $this->__('Date Long');
843
+ $_options['AL.date(ac,value,\''.Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM.'\')'] = $this->__('Date Medium');
844
+ $_options['AL.date(ac,value,\''.Mage_Core_Model_Locale::FORMAT_TYPE_SHORT.'\')'] = $this->__('Date Short');
845
+ }
846
+ return $_options;
847
+ }
848
  public function getPriceFromats()
849
  {
850
  static $_options;
app/code/local/AuIt/PublicationBasic/Model/Pdf/Base.php CHANGED
@@ -227,6 +227,8 @@ abstract class AuIt_PublicationBasic_Model_Pdf_Base extends Varien_Object //Mage
227
  $storeId = $data['preview_store'];
228
  if ( !$storeId )
229
  $storeId ='default';
 
 
230
  try {
231
  $sender->emulateDesign($storeId);
232
  }
227
  $storeId = $data['preview_store'];
228
  if ( !$storeId )
229
  $storeId ='default';
230
+ Mage::helper->setCatalogCustomer($data['preview_customer']);
231
+
232
  try {
233
  $sender->emulateDesign($storeId);
234
  }
app/code/local/AuIt/PublicationBasic/Model/Renderer/Abstract.php CHANGED
@@ -120,6 +120,12 @@ class AuIt_PublicationBasic_Model_Renderer_Abstract extends Varien_Object
120
  {
121
 
122
  }
 
 
 
 
 
 
123
 
124
  $this->_Style = Mage::getModel('auit_publicationbasic/styles');
125
  if ( $jobQueue && $jobQueue->getJobStyle() )
120
  {
121
 
122
  }
123
+ $customerId = 0;
124
+ if ( isset($data['preview_customer']) )
125
+ $customerId = $data['preview_customer'];
126
+ if ( $jobQueue && $jobQueue->getPrintCustomer() )
127
+ $customerId =$jobQueue->getPrintCustomer();
128
+ Mage::helper('auit_publicationbasic')->setCatalogCustomer($customerId);
129
 
130
  $this->_Style = Mage::getModel('auit_publicationbasic/styles');
131
  if ( $jobQueue && $jobQueue->getJobStyle() )
app/code/local/AuIt/PublicationBasic/Model/Resource/Jobqueue.php CHANGED
@@ -9,7 +9,7 @@ class AuIt_PublicationBasic_Model_Resource_Jobqueue extends AuIt_PublicationBasi
9
  }
10
  public function getBlobFields()
11
  {
12
- return array('salesrule_rule','template','template2','use_doc_size','user_page_size','user_page_orientation','placment_method','use_bleed','catalog_skus','print_store','layout_def');
13
  }
14
  public function getJobRoot()
15
  {
9
  }
10
  public function getBlobFields()
11
  {
12
+ return array('salesrule_rule','template','template2','use_doc_size','user_page_size','user_page_orientation','placment_method','use_bleed','catalog_skus','print_store','print_customer','layout_def');
13
  }
14
  public function getJobRoot()
15
  {
app/code/local/AuIt/PublicationBasic/controllers/ContentController.php CHANGED
@@ -103,24 +103,27 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
103
  if ( $model->getId() )
104
  {
105
  $pid = $this->getRequest()->getParam('pid');
 
106
  $store= $this->getRequest()->getParam('store');
107
  $obj = Mage::helper('auit_publicationbasic')->cleanLayoutData($model->getData('data'));
108
  if ( !$pid )
109
  $pid=$obj['preview_sku'];
 
 
110
  if ( !$store )
111
  $store=$obj['preview_store'];
112
  $type= $model->getType();
113
 
114
  $data['data']=$obj;
115
- $data['productData']=Mage::helper('auit_publicationbasic')->getPreviewData($pid,$type,$store);
116
  $data = Mage::helper('core')->jsonEncode($data);
117
  }
118
  }else {
119
  // GRoup produkt daten anfordern
120
  $pid = $this->getRequest()->getParam('pid');
121
  $store= $this->getRequest()->getParam('store');
122
-
123
- $data['productData']=Mage::helper('auit_publicationbasic')->getPreviewData($pid,AuIt_PublicationBasic_Helper_Data::TEMPLATE_PRODUCT,$store);
124
  $data = Mage::helper('core')->jsonEncode($data);
125
  }
126
  if ( !$data )$data=Zend_Json::encode(array());
@@ -233,10 +236,13 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
233
  return;
234
  }
235
  $store = $this->getRequest()->getParam('store');
 
236
  if ( $sku = $this->getRequest()->getParam('sku') )
237
  {
238
  if ( $type = $this->getRequest()->getParam('type') )
239
- $data = Mage::helper('auit_publicationbasic')->getPreviewData($sku,$type,$store);
 
 
240
  }
241
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
242
  $this->getResponse()->setBody(Zend_Json::encode($data));
103
  if ( $model->getId() )
104
  {
105
  $pid = $this->getRequest()->getParam('pid');
106
+ $customer = $this->getRequest()->getParam('customer');
107
  $store= $this->getRequest()->getParam('store');
108
  $obj = Mage::helper('auit_publicationbasic')->cleanLayoutData($model->getData('data'));
109
  if ( !$pid )
110
  $pid=$obj['preview_sku'];
111
+ if ( !$customer )
112
+ $customer=$obj['preview_customer'];
113
  if ( !$store )
114
  $store=$obj['preview_store'];
115
  $type= $model->getType();
116
 
117
  $data['data']=$obj;
118
+ $data['productData']=Mage::helper('auit_publicationbasic')->getPreviewData($pid,$type,$store,$customer);
119
  $data = Mage::helper('core')->jsonEncode($data);
120
  }
121
  }else {
122
  // GRoup produkt daten anfordern
123
  $pid = $this->getRequest()->getParam('pid');
124
  $store= $this->getRequest()->getParam('store');
125
+ $customer = $this->getRequest()->getParam('customer');
126
+ $data['productData']=Mage::helper('auit_publicationbasic')->getPreviewData($pid,AuIt_PublicationBasic_Helper_Data::TEMPLATE_PRODUCT,$store,$customer);
127
  $data = Mage::helper('core')->jsonEncode($data);
128
  }
129
  if ( !$data )$data=Zend_Json::encode(array());
236
  return;
237
  }
238
  $store = $this->getRequest()->getParam('store');
239
+ $customer = $this->getRequest()->getParam('customer');
240
  if ( $sku = $this->getRequest()->getParam('sku') )
241
  {
242
  if ( $type = $this->getRequest()->getParam('type') )
243
+ {
244
+ $data = Mage::helper('auit_publicationbasic')->getPreviewData($sku,$type,$store,$customer);
245
+ }
246
  }
247
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
248
  $this->getResponse()->setBody(Zend_Json::encode($data));
app/code/local/AuIt/PublicationBasic/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
- <version>1.8.2</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
+ <version>1.9.1</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
app/design/frontend/base/default/template/auit/publicationbasic/product/price_tier.phtml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+ $_product = $this->getProduct();
3
+ $block = Mage::getSingleton('core/layout')->createBlock('catalog/product_price');
4
+ $block->setProduct($_product);
5
+ echo $block->getTierPriceHtml();
6
+ ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
- <version>1.8.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-08-20</date>
14
- <time>12:30:58</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="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="bf3e049b41fbfc9cfe9f0e3e4efcc9f1"/></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="65dc8a95d455066ec4ceb78513dcbd89"/><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="ce65d5f84c432627491ba5670d27650e"/><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="81eafe7ba84c63f4faf99ed644eec73d"/></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="d573ddd446bf637c0da6493978d49bdc"/><dir name="Renderer"><file name="Abstract.php" hash="c278933ef4af1ee978d667cc5b30fd4b"/><file name="Pdf.php" hash="009a8cafebf12e8cb3f25ad7aeed5021"/></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="91d160230a55afe138d206b6993bc6cf"/><file name="Config.php" hash="9e65977bb0f5bfce8aaee66e996e8561"/><file name="Data.php" hash="ff18a216b815c7f39f1749caa45f364c"/><file name="Dirdirective.php" hash="caaa9333f32fe15fd0ac4f9ec68525db"/><file name="Font.php" hash="ade9858b9ad84466c5299fbab7c8aebe"/><file name="Pdf.php" hash="c2175d1428b18e3f71723675c2762b40"/></dir><dir name="etc"><file name="dir.directive.xml" hash="94abf565cf4a898a307c621ea141ad97"/><file name="adminhtml.xml" hash="9342841d6dbd2974b38eb55e4a6fab3e"/><file name="config.xml" hash="e0ede7aa267ef26de55ec95638ecc3e0"/><file name="history.xml" hash="382a1824dd4f690c6fb58c18d5792d5b"/><file name="system.xml" hash="fb86e0cf5a4742568c269f548467f69b"/></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="6f9d36b74cfecf92f5535b785e134068"/><dir name="Admin"><file name="ImportController.php" hash="d54022e572a86260947a3125920b72fe"/><file name="JobqueueController.php" hash="a484e1cf5b604797850f87fca6297988"/><file name="FilemanagerController.php" hash="9576633f3a5cce0baf4cb4536b788df9"/><file name="ShapeController.php" hash="699a881565484bb7d5bbb84c471bdc24"/><file name="PreviewController.php" hash="58584e1cb2d57f8eec7afcc5f15f247c"/></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="8f4f889d240afdfc55aa2e053c12c59d"/><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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
+ <version>1.9.1</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>2015-03-19</date>
14
+ <time>08:41:03</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="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="bf3e049b41fbfc9cfe9f0e3e4efcc9f1"/></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="65dc8a95d455066ec4ceb78513dcbd89"/><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="235181c8a3d271cef491c7e596acb925"/><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="563ed98acc3656630d8a9e736931a31a"/></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="01533588a4123dc41848b7d37d06779a"/><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="4cb5e4c5eb764ac39388ab38803c25ca"/></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="ce65d5f84c432627491ba5670d27650e"/><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="81eafe7ba84c63f4faf99ed644eec73d"/></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="3fa29ae05e9ea6d59679011ea96c7f34"/><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="d573ddd446bf637c0da6493978d49bdc"/><dir name="Renderer"><file name="Abstract.php" hash="20091549143fb573c2f54423e55de7be"/><file name="Pdf.php" hash="009a8cafebf12e8cb3f25ad7aeed5021"/></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="91d160230a55afe138d206b6993bc6cf"/><file name="Config.php" hash="9e65977bb0f5bfce8aaee66e996e8561"/><file name="Data.php" hash="0242496071a7c1e74f170f0f550b1ef7"/><file name="Dirdirective.php" hash="caaa9333f32fe15fd0ac4f9ec68525db"/><file name="Font.php" hash="ade9858b9ad84466c5299fbab7c8aebe"/><file name="Pdf.php" hash="c2175d1428b18e3f71723675c2762b40"/></dir><dir name="etc"><file name="dir.directive.xml" hash="94abf565cf4a898a307c621ea141ad97"/><file name="adminhtml.xml" hash="9342841d6dbd2974b38eb55e4a6fab3e"/><file name="config.xml" hash="18bf5975de4fac931c7b529d76eccbc7"/><file name="history.xml" hash="382a1824dd4f690c6fb58c18d5792d5b"/><file name="system.xml" hash="fb86e0cf5a4742568c269f548467f69b"/></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="6da364388bd59762d9b2f56f16e9b808"/><dir name="Admin"><file name="ImportController.php" hash="d54022e572a86260947a3125920b72fe"/><file name="JobqueueController.php" hash="a484e1cf5b604797850f87fca6297988"/><file name="FilemanagerController.php" hash="9576633f3a5cce0baf4cb4536b788df9"/><file name="ShapeController.php" hash="699a881565484bb7d5bbb84c471bdc24"/><file name="PreviewController.php" hash="58584e1cb2d57f8eec7afcc5f15f247c"/></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="price_tier.phtml" hash="0adcfad95dc36c14a160fd08caa4627f"/><file name="buttons.phtml" hash="8f4f889d240afdfc55aa2e053c12c59d"/><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>