snm_pdfpublication_basic - Version 1.9.4

Version Notes

No Notes

Download this release

Release Info

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


Code changes from version 1.9.2 to 1.9.4

app/code/local/AuIt/PublicationBasic/controllers/Admin/FilemanagerController.php CHANGED
@@ -40,9 +40,12 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
40
  catch ( Exception $e )
41
  {
42
  Mage::log("AuIt_PublicationBasic_Admin_FilemanagerController::Exception - ".$e->getMessage());
 
43
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
44
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>0,'error'=>$e->getMessage())));
45
- return;
 
 
46
  }
47
  }
48
  static function _toByteString($size)
@@ -113,9 +116,12 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
113
  $child['data']='MEDIA';
114
  $child['children']=array();
115
  $jsonArray[] = $child;
 
116
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
117
  $this->getResponse()->setBody(Zend_Json::encode($jsonArray));
118
- return;
 
 
119
  }
120
 
121
  $filter = '';
@@ -134,8 +140,11 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
134
  $jsonArray[] = $child;
135
  }
136
  }
137
- $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
 
138
  $this->getResponse()->setBody(Zend_Json::encode($jsonArray));
 
 
139
  }
140
  protected function _create_node()
141
  {
@@ -151,8 +160,11 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
151
  $status=1;
152
  }
153
  }
 
154
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
155
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
 
 
156
  }
157
  protected function _rename_node()
158
  {
@@ -166,8 +178,11 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
166
  $id = $helper->convertPathToId($newPath);
167
  $status=1;
168
  }
 
169
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
170
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
 
 
171
  }
172
  protected function _remove_node()
173
  {
@@ -176,8 +191,11 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
176
  if ( is_dir($path) )
177
  $helper->getStorage()->deleteDirectory($helper->getCurrentPath());
178
  $status=1;$id=0;
 
179
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
180
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
 
 
181
  }
182
  protected function _upload_default()
183
  {
@@ -190,8 +208,11 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
190
  $result = $helper->getStorage()->uploadFile($path,$type);
191
  $status=1;$id=0;
192
  }
 
193
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
194
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
 
 
195
  }
196
 
197
  protected function _search()
@@ -212,7 +233,14 @@ class AuIt_PublicationBasic_Admin_FilemanagerController extends Mage_Adminhtml_C
212
  $result[]='#'.$helper->urlEncode($full);
213
  }
214
  }
215
- $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
 
216
  $this->getResponse()->setBody(Zend_Json::encode($result));
 
 
 
 
 
 
217
  }
218
  }
40
  catch ( Exception $e )
41
  {
42
  Mage::log("AuIt_PublicationBasic_Admin_FilemanagerController::Exception - ".$e->getMessage());
43
+ $this->getResponse()->clearAllHeaders();
44
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
45
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>0,'error'=>$e->getMessage())));
46
+ $this->getResponse()->sendResponse();
47
+ exit();
48
+ return;
49
  }
50
  }
51
  static function _toByteString($size)
116
  $child['data']='MEDIA';
117
  $child['children']=array();
118
  $jsonArray[] = $child;
119
+ $this->getResponse()->clearAllHeaders();
120
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
121
  $this->getResponse()->setBody(Zend_Json::encode($jsonArray));
122
+ $this->getResponse()->sendResponse();
123
+ exit();
124
+ return;
125
  }
126
 
127
  $filter = '';
140
  $jsonArray[] = $child;
141
  }
142
  }
143
+ $this->getResponse()->clearAllHeaders();
144
+ $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
145
  $this->getResponse()->setBody(Zend_Json::encode($jsonArray));
146
+ $this->getResponse()->sendResponse();
147
+ exit();
148
  }
149
  protected function _create_node()
150
  {
160
  $status=1;
161
  }
162
  }
163
+ $this->getResponse()->clearAllHeaders();
164
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
165
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
166
+ $this->getResponse()->sendResponse();
167
+ exit();
168
  }
169
  protected function _rename_node()
170
  {
178
  $id = $helper->convertPathToId($newPath);
179
  $status=1;
180
  }
181
+ $this->getResponse()->clearAllHeaders();
182
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
183
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
184
+ $this->getResponse()->sendResponse();
185
+ exit();
186
  }
187
  protected function _remove_node()
188
  {
191
  if ( is_dir($path) )
192
  $helper->getStorage()->deleteDirectory($helper->getCurrentPath());
193
  $status=1;$id=0;
194
+ $this->getResponse()->clearAllHeaders();
195
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
196
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
197
+ $this->getResponse()->sendResponse();
198
+ exit();
199
  }
200
  protected function _upload_default()
201
  {
208
  $result = $helper->getStorage()->uploadFile($path,$type);
209
  $status=1;$id=0;
210
  }
211
+ $this->getResponse()->clearAllHeaders();
212
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
213
  $this->getResponse()->setBody(Zend_Json::encode(array('status'=>$status,'id'=>$id)));
214
+ $this->getResponse()->sendResponse();
215
+ exit();
216
  }
217
 
218
  protected function _search()
233
  $result[]='#'.$helper->urlEncode($full);
234
  }
235
  }
236
+ $this->getResponse()->clearAllHeaders();
237
+ $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
238
  $this->getResponse()->setBody(Zend_Json::encode($result));
239
+ $this->getResponse()->sendResponse();
240
+ exit();
241
+ }
242
+ protected function _isAllowed()
243
+ {
244
+ return true;
245
  }
246
  }
app/code/local/AuIt/PublicationBasic/controllers/Admin/PreviewController.php CHANGED
@@ -90,8 +90,11 @@ class AuIt_PublicationBasic_Admin_PreviewController extends Mage_Adminhtml_Contr
90
  if ( !count($data) )
91
  $data[]=array("id"=>'', "label"=>$this->__('No data found'), "value"=>'');
92
  }
 
93
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
94
  $this->getResponse()->setBody(Zend_Json::encode($data));
 
 
95
  }
96
  public function productpreviewAction()
97
  {
@@ -163,12 +166,15 @@ class AuIt_PublicationBasic_Admin_PreviewController extends Mage_Adminhtml_Contr
163
  } catch ( Exception $e ) {
164
 
165
  Mage::log ( "AuIt_PublicationBasic_Admin_TemplatesController::Exception - " . $e->getMessage () );
 
166
  $this->getResponse ()->setHeader ( 'Content-type', 'application/json; charset=UTF-8' );
167
  $this->getResponse ()->setBody ( Zend_Json::encode ( array (
168
  'status' => 0,
169
  'error' => $e->getMessage ()
170
  ) ) );
171
- return;
 
 
172
  }
173
  }
174
  protected function _staticvariables()
@@ -180,8 +186,15 @@ class AuIt_PublicationBasic_Admin_PreviewController extends Mage_Adminhtml_Contr
180
  {
181
  $data = $model->buildObjectList();
182
  }
 
183
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
184
  $this->getResponse()->setBody(Zend_Json::encode($data));
 
 
 
 
 
 
185
  }
186
 
187
  }
90
  if ( !count($data) )
91
  $data[]=array("id"=>'', "label"=>$this->__('No data found'), "value"=>'');
92
  }
93
+ $this->getResponse()->clearAllHeaders();
94
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
95
  $this->getResponse()->setBody(Zend_Json::encode($data));
96
+ $this->getResponse()->sendResponse();
97
+ exit();
98
  }
99
  public function productpreviewAction()
100
  {
166
  } catch ( Exception $e ) {
167
 
168
  Mage::log ( "AuIt_PublicationBasic_Admin_TemplatesController::Exception - " . $e->getMessage () );
169
+ $this->getResponse()->clearAllHeaders();
170
  $this->getResponse ()->setHeader ( 'Content-type', 'application/json; charset=UTF-8' );
171
  $this->getResponse ()->setBody ( Zend_Json::encode ( array (
172
  'status' => 0,
173
  'error' => $e->getMessage ()
174
  ) ) );
175
+ $this->getResponse()->sendResponse();
176
+ exit();
177
+ return;
178
  }
179
  }
180
  protected function _staticvariables()
186
  {
187
  $data = $model->buildObjectList();
188
  }
189
+ $this->getResponse()->clearAllHeaders();
190
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
191
  $this->getResponse()->setBody(Zend_Json::encode($data));
192
+ $this->getResponse()->sendResponse();
193
+ exit();
194
+ }
195
+ protected function _isAllowed()
196
+ {
197
+ return true;
198
  }
199
 
200
  }
app/code/local/AuIt/PublicationBasic/controllers/Admin/ShapeController.php CHANGED
@@ -65,8 +65,11 @@ class AuIt_PublicationBasic_Admin_ShapeController extends Mage_Adminhtml_Control
65
  if ( !count($data) )
66
  $data[]=array("id"=>'', "label"=>$this->__('No data found'), "value"=>'');
67
  }
 
68
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
69
  $this->getResponse()->setBody(Zend_Json::encode($data));
 
 
70
  }
71
  public function templatepreviewAction()
72
  {
@@ -106,4 +109,8 @@ class AuIt_PublicationBasic_Admin_ShapeController extends Mage_Adminhtml_Control
106
  $this->getResponse()->setRedirect($url);
107
  }
108
  }
 
 
 
 
109
  }
65
  if ( !count($data) )
66
  $data[]=array("id"=>'', "label"=>$this->__('No data found'), "value"=>'');
67
  }
68
+ $this->getResponse()->clearAllHeaders();
69
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
70
  $this->getResponse()->setBody(Zend_Json::encode($data));
71
+ $this->getResponse()->sendResponse();
72
+ exit();
73
  }
74
  public function templatepreviewAction()
75
  {
109
  $this->getResponse()->setRedirect($url);
110
  }
111
  }
112
+ protected function _isAllowed()
113
+ {
114
+ return true;
115
+ }
116
  }
app/code/local/AuIt/PublicationBasic/controllers/ContentController.php CHANGED
@@ -127,8 +127,11 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
127
  $data = Mage::helper('core')->jsonEncode($data);
128
  }
129
  if ( !$data )$data=Zend_Json::encode(array());
 
130
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
131
  $this->getResponse()->setBody($data);
 
 
132
  }
133
  public function blockAction()
134
  {
@@ -138,9 +141,12 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
138
  $store= $this->getRequest()->getParam('store');
139
  $data['html']=Mage::helper('auit_publicationbasic')->getStaticBlockHTML($tid,$store);
140
  }
 
141
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
142
  $this->getResponse()->setBody(Zend_Json::encode($data));
143
- }
 
 
144
  public function generatorAction()
145
  {
146
  $data=array('html'=>'');
@@ -151,10 +157,13 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
151
  $pid= $this->getRequest()->getParam('pid');
152
  $cls= $this->getRequest()->getParam('cls');
153
  $data=Mage::helper('auit_publicationbasic')->getGeneratorHTML($param,$cls,$tid,$pid,$store);
154
- }
 
155
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
156
- $this->getResponse()->setBody(Zend_Json::encode($data));
157
- }
 
 
158
  public function imageAction()
159
  {
160
  if ( $lbc = $this->getRequest()->getParam('lbc') )
@@ -186,9 +195,12 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
186
 
187
  }
188
  //$this->getResponse()->setHeader('Content-type', 'image/svg+xml');
 
189
  $this->getResponse()->setHeader('Content-type', 'image/png');
190
- $this->getResponse()->setBody($code);
191
- return;
 
 
192
  }
193
  if ( $limg = $this->getRequest()->getParam('limg') )
194
  {
@@ -231,9 +243,12 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
231
  if ( $style_class = $this->getRequest()->getParam('style_class') )
232
  {
233
  $data=Mage::helper('auit_publicationbasic/style')->getCssClasses(array('preview_style'=>$style_class) );
 
234
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
235
  $this->getResponse()->setBody(Zend_Json::encode($data));
236
- return;
 
 
237
  }
238
  $store = $this->getRequest()->getParam('store');
239
  $customer = $this->getRequest()->getParam('customer');
@@ -244,8 +259,11 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
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));
 
 
249
  }
250
  /*
251
  public function searchAction()
@@ -268,8 +286,11 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
268
  if ( !count($data) )
269
  $data[]=array("id"=>'', "label"=>$this->__('No data found'), "value"=>'');
270
  }
 
271
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
272
  $this->getResponse()->setBody(Zend_Json::encode($data));
 
 
273
  }
274
  */
275
  public function cssAction()
@@ -283,8 +304,11 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
283
  {
284
  $css .= Mage::helper('auit_publicationbasic/style')->getCss($style_id,'identifier');
285
  }
 
286
  $this->getResponse()->setHeader('Content-type', 'text/css; charset=UTF-8');
287
  $this->getResponse()->setBody($css);
 
 
288
  }
289
  public function clipsvgAction()
290
  {
@@ -295,6 +319,7 @@ class AuIt_PublicationBasic_ContentController extends Mage_Core_Controller_Front
295
  header("Cache-Control: public, max-age=" . 3600*24);
296
  header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600*24));
297
 
 
298
  $this->getResponse()->setHeader('Content-type', 'image/svg+xml')
299
  ->setHeader('Pragma', 'public', true)
300
  // ->setHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0', true)
127
  $data = Mage::helper('core')->jsonEncode($data);
128
  }
129
  if ( !$data )$data=Zend_Json::encode(array());
130
+ $this->getResponse()->clearAllHeaders();
131
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
132
  $this->getResponse()->setBody($data);
133
+ $this->getResponse()->sendResponse();
134
+ exit();
135
  }
136
  public function blockAction()
137
  {
141
  $store= $this->getRequest()->getParam('store');
142
  $data['html']=Mage::helper('auit_publicationbasic')->getStaticBlockHTML($tid,$store);
143
  }
144
+ $this->getResponse()->clearAllHeaders();
145
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
146
  $this->getResponse()->setBody(Zend_Json::encode($data));
147
+ $this->getResponse()->sendResponse();
148
+ exit();
149
+ }
150
  public function generatorAction()
151
  {
152
  $data=array('html'=>'');
157
  $pid= $this->getRequest()->getParam('pid');
158
  $cls= $this->getRequest()->getParam('cls');
159
  $data=Mage::helper('auit_publicationbasic')->getGeneratorHTML($param,$cls,$tid,$pid,$store);
160
+ }
161
+ $this->getResponse()->clearAllHeaders();
162
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
163
+ $this->getResponse()->setBody(Zend_Json::encode($data));
164
+ $this->getResponse()->sendResponse();
165
+ exit();
166
+ }
167
  public function imageAction()
168
  {
169
  if ( $lbc = $this->getRequest()->getParam('lbc') )
195
 
196
  }
197
  //$this->getResponse()->setHeader('Content-type', 'image/svg+xml');
198
+ $this->getResponse()->clearAllHeaders();
199
  $this->getResponse()->setHeader('Content-type', 'image/png');
200
+ $this->getResponse()->setBody($code);
201
+ $this->getResponse()->sendResponse();
202
+ exit();
203
+ return;
204
  }
205
  if ( $limg = $this->getRequest()->getParam('limg') )
206
  {
243
  if ( $style_class = $this->getRequest()->getParam('style_class') )
244
  {
245
  $data=Mage::helper('auit_publicationbasic/style')->getCssClasses(array('preview_style'=>$style_class) );
246
+ $this->getResponse()->clearAllHeaders();
247
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
248
  $this->getResponse()->setBody(Zend_Json::encode($data));
249
+ $this->getResponse()->sendResponse();
250
+ exit();
251
+ return;
252
  }
253
  $store = $this->getRequest()->getParam('store');
254
  $customer = $this->getRequest()->getParam('customer');
259
  $data = Mage::helper('auit_publicationbasic')->getPreviewData($sku,$type,$store,$customer);
260
  }
261
  }
262
+ $this->getResponse()->clearAllHeaders();
263
+ $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
264
  $this->getResponse()->setBody(Zend_Json::encode($data));
265
+ $this->getResponse()->sendResponse();
266
+ exit();
267
  }
268
  /*
269
  public function searchAction()
286
  if ( !count($data) )
287
  $data[]=array("id"=>'', "label"=>$this->__('No data found'), "value"=>'');
288
  }
289
+ $this->getResponse()->clearAllHeaders();
290
  $this->getResponse()->setHeader('Content-type', 'application/json; charset=UTF-8');
291
  $this->getResponse()->setBody(Zend_Json::encode($data));
292
+ $this->getResponse()->sendResponse();
293
+ exit();
294
  }
295
  */
296
  public function cssAction()
304
  {
305
  $css .= Mage::helper('auit_publicationbasic/style')->getCss($style_id,'identifier');
306
  }
307
+ $this->getResponse()->clearAllHeaders();
308
  $this->getResponse()->setHeader('Content-type', 'text/css; charset=UTF-8');
309
  $this->getResponse()->setBody($css);
310
+ $this->getResponse()->sendResponse();
311
+ exit();
312
  }
313
  public function clipsvgAction()
314
  {
319
  header("Cache-Control: public, max-age=" . 3600*24);
320
  header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600*24));
321
 
322
+ $this->getResponse()->clearAllHeaders();
323
  $this->getResponse()->setHeader('Content-type', 'image/svg+xml')
324
  ->setHeader('Pragma', 'public', true)
325
  // ->setHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0', true)
app/code/local/AuIt/PublicationBasic/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
- <version>1.9.2</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
+ <version>1.9.4</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
app/code/local/AuIt/PublicationBasic/etc/history.xml CHANGED
@@ -1,5 +1,15 @@
1
  <?xml version="1.0"?>
2
  <history>
 
 
 
 
 
 
 
 
 
 
3
 
4
  <version>
5
  <number>1.6.2.1</number>
1
  <?xml version="1.0"?>
2
  <history>
3
+ <version>
4
+ <number>1.9.4</number>
5
+ <date>2015-07-10</date>
6
+ <channel>allPublication</channel>
7
+ <comment></comment>
8
+ <features><![CDATA[
9
+ Fix for patch SUPEE-6285
10
+ ]]></features>
11
+ <fixes><![CDATA[]]></fixes>
12
+ </version>
13
 
14
  <version>
15
  <number>1.6.2.1</number>
app/design/frontend/base/default/template/auit/publicationbasic/product/buttons.phtml CHANGED
@@ -16,4 +16,4 @@
16
  <div class="clearer"></div>
17
  </div>
18
  <?php endif;?>
19
- <?php endif;?>
16
  <div class="clearer"></div>
17
  </div>
18
  <?php endif;?>
19
+ <?php endif;
app/design/frontend/base/default/template/auit/publicationbasic/product/price_tier.phtml CHANGED
@@ -3,4 +3,3 @@
3
  $block = Mage::getSingleton('core/layout')->createBlock('catalog/product_price');
4
  $block->setProduct($_product);
5
  echo $block->getTierPriceHtml();
6
- ?>
3
  $block = Mage::getSingleton('core/layout')->createBlock('catalog/product_price');
4
  $block->setProduct($_product);
5
  echo $block->getTierPriceHtml();
 
app/design/frontend/base/default/template/auit/publicationbasic/product/price_variants.phtml CHANGED
@@ -24,4 +24,4 @@
24
  <?php endforeach;?>
25
  </tbody>
26
  </table>
27
- <?php endif; ?>
24
  <?php endforeach;?>
25
  </tbody>
26
  </table>
27
+ <?php endif;
app/design/frontend/base/default/template/auit/publicationbasic/product/price_variants2.phtml CHANGED
@@ -24,4 +24,4 @@
24
  <?php endforeach;?>
25
  </tbody>
26
  </table>
27
- <?php endif; ?>
24
  <?php endforeach;?>
25
  </tbody>
26
  </table>
27
+ <?php endif;
app/design/frontend/base/default/template/auit/publicationbasic/product_attribute.phtml CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  $_helper = $this->helper('catalog/output');
3
- $_product = $this->getProduct()
4
  ?>
5
  <?php if($_additional = $this->getAdditionalData()): ?>
6
  <?php
@@ -18,4 +18,4 @@ $_product = $this->getProduct()
18
  <?php endforeach; ?>
19
  </tbody>
20
  </table>
21
- <?php endif;?>
1
  <?php
2
  $_helper = $this->helper('catalog/output');
3
+ $_product = $this->getProduct();
4
  ?>
5
  <?php if($_additional = $this->getAdditionalData()): ?>
6
  <?php
18
  <?php endforeach; ?>
19
  </tbody>
20
  </table>
21
+ <?php endif;
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
- <version>1.9.2</version>
5
  <stability>stable</stability>
6
  <license>see snm-portal.com</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary></summary>
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>11:17: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="ef14dc25a39134a2e17dab03a34fd700"/><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="69dd40e51dbbe7cb2637b12d6ffe4db1"/></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="fd0781da53ebca6e99935ddb11b1dc4c"/></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="527a223180b9fad7e88e781c4e4af06c"/><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="9b328855e4545b874401ae0b618a74b3"/><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="54f5f921198a452c78602e3be904a058"/><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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
+ <version>1.9.4</version>
5
  <stability>stable</stability>
6
  <license>see snm-portal.com</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>allPublication</summary>
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-07-10</date>
14
+ <time>14:28:14</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="ef14dc25a39134a2e17dab03a34fd700"/><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="69dd40e51dbbe7cb2637b12d6ffe4db1"/></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="fd0781da53ebca6e99935ddb11b1dc4c"/></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="527a223180b9fad7e88e781c4e4af06c"/><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="9b328855e4545b874401ae0b618a74b3"/><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="0211bcc6041f0d715b040728bb971141"/><file name="history.xml" hash="24a5cbf700e7c1b48b83757e15ab40cb"/><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="1ca3b6bcf2fee074e30e28c49e561637"/><dir name="Admin"><file name="ImportController.php" hash="d54022e572a86260947a3125920b72fe"/><file name="JobqueueController.php" hash="a484e1cf5b604797850f87fca6297988"/><file name="FilemanagerController.php" hash="0a390a28508a17518728caca7b2d430e"/><file name="ShapeController.php" hash="d43a51ac150eb3f2d98d2374c117d7c1"/><file name="PreviewController.php" hash="c389dcf0a7eb709c994b41ba4d10bec5"/></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="39bb8b5f170e1c3be13e890516b3f037"/><file name="price_tier.phtml" hash="48cd9d5bbccb5d17e4a67b1b9beacfa9"/><file name="buttons.phtml" hash="5b9872b41fc558d09c68fb57a42ff8a2"/><file name="images.phtml" hash="ff43caaee28d4a46ec00aecfcf90d7c6"/><file name="price_variants2.phtml" hash="f741cb9ef9643bf5eda6f71706a7547d"/></dir><file name="product_attribute.phtml" hash="834a59386ca51f11b3e68ab8edc2d3bb"/></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>