snm_pdfpublication_basic - Version 1.8.0.2

Version Notes

No Notes

Download this release

Release Info

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


Code changes from version 1.8.0.1 to 1.8.0.2

app/code/local/AuIt/PublicationBasic/Block/Generator.php CHANGED
@@ -67,7 +67,7 @@ class AuIt_PublicationBasic_Block_Generator extends Mage_Catalog_Block_Product_V
67
 
68
  $typeBlock = $this->getLayout()->createBlock('catalog/product_view_type_configurable');
69
  $data = Mage::helper('core')->jsonDecode($typeBlock->getJsonConfig());
70
- mage::log($data);
71
  $attributes= array_reverse($data['attributes']);
72
  $pricevariants=array();
73
  $products=array();
67
 
68
  $typeBlock = $this->getLayout()->createBlock('catalog/product_view_type_configurable');
69
  $data = Mage::helper('core')->jsonDecode($typeBlock->getJsonConfig());
70
+
71
  $attributes= array_reverse($data['attributes']);
72
  $pricevariants=array();
73
  $products=array();
app/code/local/AuIt/PublicationBasic/Helper/Pdf.php CHANGED
@@ -172,7 +172,7 @@ class AuIt_PublicationBasic_Helper_Pdf extends Mage_Core_Helper_Abstract
172
  try {
173
  $pdf = $pdfPublication->getPdfFromData('preview',$data,0,$spread);
174
  $im = new Imagick();
175
- $im->setResolution(300,300);
176
  //$im->setBackgroundColor(new ImagickPixel('transparent'));
177
 
178
  $im->setBackgroundColor(new ImagickPixel('white'));
@@ -191,8 +191,8 @@ class AuIt_PublicationBasic_Helper_Pdf extends Mage_Core_Helper_Abstract
191
  //else
192
  $im->setiteratorindex(0);
193
 
194
- if ( $asThumb )
195
- $im->scaleImage(400,400,true);
196
 
197
  //$im->resizeImage(400, 400, imagick::FILTER_LANCZOS, 1,true);
198
  $im->writeimage($path);
172
  try {
173
  $pdf = $pdfPublication->getPdfFromData('preview',$data,0,$spread);
174
  $im = new Imagick();
175
+ //$im->setResolution(300,300);
176
  //$im->setBackgroundColor(new ImagickPixel('transparent'));
177
 
178
  $im->setBackgroundColor(new ImagickPixel('white'));
191
  //else
192
  $im->setiteratorindex(0);
193
 
194
+ //if ( $asThumb )
195
+ //$im->scaleImage(400,400,true);
196
 
197
  //$im->resizeImage(400, 400, imagick::FILTER_LANCZOS, 1,true);
198
  $im->writeimage($path);
app/code/local/AuIt/PublicationBasic/Model/Jobqueue.php CHANGED
@@ -205,15 +205,15 @@ class AuIt_PublicationBasic_Model_Jobqueue extends Mage_Core_Model_Abstract
205
  {
206
  try {
207
  $im = new Imagick($pdf.'[0]');
208
- $im->setResolution(300,300);
209
- $im->setBackgroundColor(new ImagickPixel('white'));
210
  //$im->readimageblob($pdf->render());
211
  $im->setBackgroundColor(new ImagickPixel('white'));
212
  $im = $im->flattenImages();
213
  $im->setImageFormat('jpg');
214
  $im->setiteratorindex(0);
215
- if ( $asThumb )
216
- $im->scaleImage(400,400,true);
217
  $im->writeimage($path);
218
  $im->clear();
219
  $im->destroy();
205
  {
206
  try {
207
  $im = new Imagick($pdf.'[0]');
208
+ // $im->setResolution(300,300);
209
+ //$im->setBackgroundColor(new ImagickPixel('white'));
210
  //$im->readimageblob($pdf->render());
211
  $im->setBackgroundColor(new ImagickPixel('white'));
212
  $im = $im->flattenImages();
213
  $im->setImageFormat('jpg');
214
  $im->setiteratorindex(0);
215
+ //if ( $asThumb )
216
+ //$im->scaleImage(400,400,true);
217
  $im->writeimage($path);
218
  $im->clear();
219
  $im->destroy();
app/code/local/AuIt/PublicationBasic/Model/Renderer/Abstract.php CHANGED
@@ -34,8 +34,8 @@ class AuIt_PublicationBasic_Model_Renderer_Abstract extends Varien_Object
34
  {
35
  if ( $var['type'] == 'p_img')
36
  return $var['src'];
37
- if ( !$var['def'])
38
- Mage::log($var);
39
  return $var['def'];
40
  }
41
  }
34
  {
35
  if ( $var['type'] == 'p_img')
36
  return $var['src'];
37
+ // if ( !$var['def'])
38
+ // Mage::log($var);
39
  return $var['def'];
40
  }
41
  }
app/code/local/AuIt/PublicationBasic/Model/Renderer/Pdf.php CHANGED
@@ -545,7 +545,7 @@ class AuIt_PublicationBasic_Model_Renderer_Pdf extends AuIt_PublicationBasic_Mod
545
  $border=0,
546
  $fitonpage=false
547
  );
548
- Mage::log("$x + $xoff,$y + $yoff,$iw,$ih");
549
  /*
550
  $pdf->ImageSVG($file,
551
  0,
545
  $border=0,
546
  $fitonpage=false
547
  );
548
+ //Mage::log("$x + $xoff,$y + $yoff,$iw,$ih");
549
  /*
550
  $pdf->ImageSVG($file,
551
  0,
app/code/local/AuIt/PublicationBasic/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
- <version>1.8.0.1</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <AuIt_PublicationBasic>
5
+ <version>1.8.0.2</version>
6
  </AuIt_PublicationBasic>
7
  </modules>
8
  <frontend>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
- <version>1.8.0.1</version>
5
  <stability>stable</stability>
6
  <license>see snm-portal.com</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>snm_pdfpublication_basic extension from snm-portal.com</description>
11
  <notes>No Notes</notes>
12
  <authors><author><name>snm-portal</name><user>augsten</user><email>develop@snm-portal.com</email></author></authors>
13
- <date>2014-07-25</date>
14
- <time>15:40:17</time>
15
- <contents><target name="magelib"><dir name="snm3"><dir name="tcpdf"><dir name="tools"><file name="convert_fonts_examples.txt" hash="01d1bb3c8c8bdb35f3837e2715dbe681"/><file name="tcpdf_addfont.php" hash="8a55d83a4002cf045b586982b64c8356"/><file name=".htaccess" hash="183e8e4abc660eaba3c3da4bb82b0bcf"/></dir><file name="tcpdf.php" hash="fd073bc49f7106c04b101e6c386120dd"/><file name="tcpdf_barcodes_2d.php" hash="17bfd10e3232de9145f5b74a6ef6afac"/><dir name="fonts"><file name="helveticai.php" hash="e0a7f23376f50de631db93814aff2e35"/><file name="zapfdingbats.php" hash="191b3c2e856e750c06c0ba7987f902fb"/><file name="helveticabi.php" hash="c22fdc8941f2956e0930b20105870468"/><file name="helveticab.php" hash="3daad3713df02c15beebd09ceecacacd"/><file name="helvetica.php" hash="2a315fa2593161154c319788f0ef2127"/></dir><file name="tcpdf_parser.php" hash="5c546b7f37191a754b6743a640c6a0cd"/><file name="tcpdf_autoconfig.php" hash="2ff9546965d6bc3e9a7f65552cd80c41"/><file name="CHANGELOG.TXT" hash="abf24925b600c9fffdaee35bb216e7bd"/><file name="tcpdf_import.php" hash="6bb88a8a3d69511d1bf9e7af12ab5f47"/><file name="tcpdf_barcodes_1d.php" hash="27f0f0c023d8775a7d970a0550caa3ef"/><file name="composer.json" hash="0e83d096a5529f0ce9034af6e20e22e8"/><file name="LICENSE.TXT" hash="5c87b66a5358ebcc495b03e0afcd342c"/><file name="README.TXT" hash="b0d263ba91ffc434ac633523fd75a42c"/><dir name="config"><dir name="lang"><file name="por.php" hash="4e5e4b97c58d71c3edcfeafa14951408"/><file name="bel.php" hash="aaa9c18becac50de78f3ed7167442df7"/><file name="ara.php" hash="88c3faeee02a1d61f0e4a3d3753e1345"/><file name="hat.php" hash="119c2452df924c74378b5c50d49bffe3"/><file name="hun.php" hash="7973e7f5b945479c7e8c0ac97058adb9"/><file name="zho.php" hash="ad33733922f50d05affe34413a924185"/><file name="cat.php" hash="3b1853da276cd8d642d75adadb0e3ff0"/><file name="far.php" hash="47a6541a450730616fc093c6739aeb70"/><file name="mlt.php" hash="49fe005624ad848581820b7c26ffec0d"/><file name="aze.php" hash="0d94296afd349a572e6afb8cdd2e767d"/><file name="mkd.php" hash="8719cb2ce7465fc69c36563a362df048"/><file name="bra.php" hash="2b9affb5500e8c421ecd506b70ee2330"/><file name="jpn.php" hash="5767e072fd091dff871996a3d012c3a3"/><file name="hye.php" hash="ae6dbe852b60660dcaeff404b2525fa8"/><file name="ces.php" hash="a21be64a536079b88dc064996df88f2d"/><file name="hrv.php" hash="ee77ae996bb0c83a78e5012542f7b973"/><file name="srp.php" hash="cbb390944537fe268f8b25f0df3b5fe0"/><file name="sqi.php" hash="8e2d65d8d0d6fd5117fffc2f2aed07e8"/><file name="ukr.php" hash="2f27ecba8e32022e40989f767f9c5ca3"/><file name="heb.php" hash="8b87f24cac90703fe51790de4369402f"/><file name="pol.php" hash="2a19c1be4a0218d39651e83550316108"/><file name="ita.php" hash="d74f2ef88fc933b7a24758c26cca5bb5"/><file name="urd.php" hash="db5c8e29e079fc30f0c0a19271b8cbfa"/><file name="rus.php" hash="9195119a0baa343354a9d9af538959d8"/><file name="ger.php" hash="8fbb25bbb83656e5f632413fe38f0ffb"/><file name="eus.php" hash="e0b1be60fb7b015ef11919efee02373f"/><file name="swa.php" hash="28ddcf894fa9e70305ab15653454dc04"/><file name="swe.php" hash="3426291e4f6d245f6bf945d9bf103c25"/><file name="glg.php" hash="aeedb99c68cac50d0730a2f9d15e7a11"/><file name="ron.php" hash="97a5d9ca1a84002c15f966fc828c6801"/><file name="dan.php" hash="0fe1af520d1ca49b7c001f6fd477c170"/><file name="spa.php" hash="d94a308b53e6bc441091daddfad4ebb7"/><file name="fra.php" hash="f056969e8f8afd9b93bb07e43a615925"/><file name="nld.php" hash="dc17db1ed58edb04ed38b38d0c4aeb67"/><file name="nob.php" hash="80c2c48943a01d3a4620a0d467a00494"/><file name="afr.php" hash="d2e3e7f95299aeb0a8cbd1a22124f806"/><file name="eng.php" hash="af8873cc6a43760e060a5bcf0e4b1160"/><file name="slv.php" hash="482e42ee876acd292d829778a763b679"/><file name="est.php" hash="3fa8a31d7c62a99f02ce179c0cfd48d4"/><file name="kor.php" hash="e52771743209216779f95253346e8dc0"/><file name="ind.php" hash="c13986f1929289ca2f31cc234193dfa2"/><file name="gle.php" hash="658bbc9cf255c9234f1fca1c5af6520c"/><file name="kat.php" hash="53f47408b56384d92ccf79004edd06a2"/><file name="chi.php" hash="d30bfd131b4442ec577865f9f7c6965d"/><file name="bul.php" hash="cffad12f128f2d602a41213425fda45b"/><file name="msa.php" hash="446fb5b43c31f44274497cabbd313d2f"/><file name="yid.php" hash="3514268a049f09590ad2b3eaa5a68cae"/><file name="cym.php" hash="8cb4da872b8e55077e2539ccb328856e"/></dir><file name="tcpdf_config.php" hash="09a8c58f2781725c0f4f6e4379b92c62"/></dir><dir name="include"><file name="tcpdf_static.php" hash="4f34cb94f62e7faa98ad79712a9f6b8e"/><file name="tcpdf_filters.php" hash="205fd4b7bc978688de8420087c161bcb"/><file name="sRGB.icc" hash="060e79448f1454582be37b3de490da2f"/><file name="tcpdf_font_data.php" hash="8f83bbc144d70505672f82679546c72d"/><file name="tcpdf_images.php" hash="42f2f6e2122319a302b2769011897b2a"/><file name="tcpdf_fonts.php" hash="75837274a0d67e19ee975aaef9e283ee"/><dir name="barcodes"><file name="qrcode.php" hash="edd56d70cac390ef63feeef7e9d71b3f"/><file name="datamatrix.php" hash="561027d7adbd2358225866cba60568d2"/><file name="pdf417.php" hash="0d24de61581243b069fb508efbc78a67"/></dir><file name="tcpdf_colors.php" hash="cacdbe68a428ae36151a3d1152b2b77b"/></dir></dir><dir name="auit"><file name="pdf.php" hash="2443e02fdb642c434f97e5fdc19c3a73"/><file name="barcode.php" hash="a09c2cdb5eebac6edb68a28ca2d66f5f"/></dir></dir></target><target name="magelocal"><dir name="AuIt"><dir name="PublicationBasic"><dir name="Block"><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Image.php" hash="61f2dffe0c519eec9f2a6ed6145885b4"/></dir></dir></dir><dir name="Form"><dir name="Element"><file name="Styles.phpXXX" hash="0fa4f3f555c2df4bf658fdf16104687d"/><file name="Publication.phpXXX" hash="d046ddd372a5316f84f54e172b5799a1"/><file name="Satzeditor.php" hash="8490dde3310c33a5a4b76942e3948df1"/><file name="Parameter.php" hash="1658131ba7279c768691aa7656e9d7d8"/></dir><dir name="Renderer"><file name="Parameter.php" hash="ae9c6243b97b044b57cb8e372242e73c"/></dir></dir></dir><dir name="Adminhtml"><file name="Versioninfo.php" hash="347b6ffa0dc95d6a07aed7c0a34bf398"/><dir name="Import"><dir name="Edit"><file name="Form.php" hash="867c61d7b2df316f1ae8217b72545cf9"/></dir><dir name="Frame"><file name="Result.php" hash="e955891d25b6022359ee69a5e50a6097"/></dir><file name="Edit.php" hash="19ca4720403eb0e20719e15c9c847acc"/></dir><file name="Info.php" hash="d6a6efe359cf0fe462c9b44706dffec2"/><file name="Jobqueue.php" hash="5f0d54978b5069d979a47d072d8d7870"/><file name="Items.php" hash="5cd6e34b698e6fd99bf0d8f3e70f93d9"/><file name="Projects.php" hash="1c4f4fc77ed96df5830cd211e9b7013e"/><dir name="Projects"><dir name="Edit"><file name="Tabs.php" hash="e72ef03619fc1579a35e4bb3ba22b5a2"/><dir name="Tab"><file name="Settings.php" hash="5b4fec7d6a05a120ab8929255a5355a9"/><file name="Layout.php" hash="ec00f751a35a79dc56e2cec40cc41091"/><file name="Main.php" hash="6f444f48f2b1aa7341867028f01fa98f"/></dir><file name="Form.php" hash="959740aab024cb1103670aea6fe81411"/></dir><file name="Grid.php" hash="b8dab256a5b34d586e989b2f4b09b5ae"/><file name="Edit.php" hash="b490f9be6d73822e61305fe72f59842d"/></dir><file name="Satzeditor.php" hash="96f49c918ad2b6c8b0aa67e0d9a3dcdf"/><dir name="Jobqueue"><dir name="Edit"><file name="Tabs.php" hash="72afcdbfeb612efc3b88e1286a89a289"/><dir name="Tab"><dir name="Products"><file name="Grid.php" hash="64e107053234cb0abb9ba3a0646dfe14"/><file name="Field.php" hash="723fe2a80c975ddb5d3248a373282157"/></dir><file name="Settings.php" hash="3aea2af6c20ddfd30f10191c6c12a58b"/><file name="Queue.php" hash="ee2375edb56f1343164bdd636e7b0e35"/><file name="Products.php" hash="a7ebaa0499c2596c7b587f3d7ed2fea1"/><file name="Print.php" hash="209d13f2a593c98c33c8338c167d82bd"/><file name="Epub3.php" hash="6551c28c7c19b205ca25a60e22a6aba3"/><file name="Main.php" hash="bae1d560e729caead0c15bfbfcf6572d"/></dir><file name="Form.php" hash="f982277390678e8c4464a129c10860bc"/></dir><file name="Grid.php" hash="a4ffc0f3af4c531029c95e6b326e5adc"/><file name="Edit.php" hash="9ff847a1b202e8066507c5c5064cffae"/><file name="Preview.php" hash="fc29b7a55f37677bb7e6f8a7ccbd3241"/></dir></dir><file name="Generator.php" hash="0d67dfc56a38640b60289f11cec19a9f"/><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="e4bb27525d5eebc10d643b6b233aabae"/><dir name="Adminhtml"><file name="Idtemplate.php" hash="cb75c67a7df5b52fe2b162c9dd390d3d"/><file name="Arraytemplate.php" hash="5d3313fb14a1f0a747fce4688da0d0aa"/><dir name="System"><dir name="Config"><dir name="Product"><file name="Attribute.php" hash="19eb06ed676684be98bab52e87fde729"/></dir><file name="Producttemplates.php" hash="85dbe2b6b8a6dc9bdf4eb6ae41a0bf7e"/></dir></dir></dir><file name="Style.php" hash="4edfebf8ccc1aadbb1e5c370628c32c0"/><file name="Cron.php" hash="e0eb7767b10b488ebb817638e8f89190"/><file name="Project.php" hash="2c819537a71335a7ad8109d4fd31b75c"/><file name="Generator.php" hash="46e46ffdca417f02f06b86ee23c983a4"/><file name="Font.php" hash="c724c026c9cd0e0db6226b324ae7417a"/><file name="Styles.php" hash="038d8edd584f1dcc88760343a8d4e332"/><dir name="Resource"><dir name="Styles"><file name="Collection.php" hash="516757fa83e6f4f56a74cd98cfd043f5"/></dir><file name="Jobqueue.php" hash="69be09343a26ecb36be644dc4fcab1ae"/><dir name="Template"><file name="Collection.php" hash="bad352781f731b52a906b21ff4237482"/></dir><file name="Abstract.php" hash="177fdf20a7da55465fe7ba724cf42c78"/><dir name="Project"><file name="Collection.php" hash="ef39bb97211b2fb11f48fdc485fae86f"/></dir><file name="Project.php" hash="c485d7adef9630ac7ed57d1dc6004892"/><file name="Generator.php" hash="69857ca1fc66e92307f67359b72e3829"/><dir name="Generator"><file name="Collection.php" hash="86a1c6999faf2020045667586916e130"/></dir><file name="Styles.php" hash="b07e8d82a20c92d6f62916704982fcec"/><file name="Template.php" hash="4deb8416dea904885abef3d109ffbc7b"/><dir name="Jobqueue"><file name="Collection.php" hash="64999a8db6dd96153a93ad380bee9f19"/></dir></dir><dir name="Config"><file name="Idtemplate.php" hash="618d60cb811b354ef9532efa8be85c93"/><file name="Arraytemplate.php" hash="8d21fab3662f01d36bf1b9aa8d3a6605"/><file name="Update.php" hash="18d66959f5d8ae26b11d914c3a7a4d57"/></dir><file name="Template.php" hash="d1cae1bf6c6d7fb9a69bb0c3441dce26"/><dir name="Renderer"><file name="Abstract.php" hash="11fdd5bef02c0396335419227a2432eb"/><file name="Pdf.php" hash="06f78c7157cc128fc1e2057498acc6ab"/></dir></dir><dir name="data"><file name="gfont.ser" hash="7d721f80d97ed2aab6147eeee742d295"/><dir name="css"><file name="default.css" hash="53b5f66df79eef855335f798ec903232"/></dir><dir name="shapelib"><file name="misc.json" hash="362692de0da72df10ec79e8cabf82ce1"/><file name="symbol.json" hash="3d6f4033be5c7e2c01584770a430445b"/><file name="arrow.json" hash="56b7a54d89a38b1ad8d90dbb49419375"/><file name="categories.json" hash="0780aa756b718a03369aa88effa4e027"/><file name="music.json" hash="30b05d18591754122736a56316e809b6"/><file name="dialog_balloon.json" hash="f42f1a9da4a6580cce5777a92d828fcc"/><file name="object.json" hash="79b64dfa23fd0da64bf6ce1d159fa2fc"/><file name="raphael_2.json" hash="5b3c3eea713927f637c416a786df2072"/><file name="game.json" hash="8bfeb3d78da91cd90d9b2da9258c279b"/><file name="flowchart.json" hash="bf4343c2c1fd618ce5e8aa04c1def32d"/><file name="basic.json" hash="9a0c84ac03d46a0e0ce40320f74f4a34"/><file name="math.json" hash="8c62b7fb36b1061f2d715485f1cb143b"/><file name="raphael_1.json" hash="d6b84c0eb724a4dea5bdf02b8fa669ab"/><file name="animal.json" hash="22d536b6151d6cba305728001b96e82b"/><file name="electronics.json" hash="0762432479510c8bbff58e631edfa156"/><file name="raphael.txt" hash="a4156780de6385427328cc9a7148abfb"/></dir></dir><dir name="Helper"><file name="Filemanager.php" hash="4bfe726daf69fcf3be5e0b037ba892e0"/><file name="Arrayconfig.php" hash="261f48cda93d07e5cf95cf15ce188b64"/><file name="Svg.php" hash="d915cac5d59df8e5c2819d74d52f8948"/><file name="Style.php" hash="b0f81e4af823647231915fdffdc490b5"/><file name="Export.php" hash="7deff30f32c60011c63347b704a022a7"/><file name="Config.php" hash="9e65977bb0f5bfce8aaee66e996e8561"/><file name="Data.php" hash="c4647b7e9713742d257a4a19874474e3"/><file name="Dirdirective.php" hash="caaa9333f32fe15fd0ac4f9ec68525db"/><file name="Font.php" hash="ade9858b9ad84466c5299fbab7c8aebe"/><file name="Pdf.php" hash="317dda998fbac1e5667779fdda958498"/></dir><dir name="etc"><file name="dir.directive.xml" hash="94abf565cf4a898a307c621ea141ad97"/><file name="adminhtml.xml" hash="9342841d6dbd2974b38eb55e4a6fab3e"/><file name="config.xml" hash="a0ad2f4741e7dee2430bc5b05d2c3a53"/><file name="history.xml" hash="382a1824dd4f690c6fb58c18d5792d5b"/><file name="system.xml" hash="8a4340b9e4cf3ae3ac1ff1fd72364839"/></dir><dir name="sql"><dir name="auit_publicationbasic_setup"><file name="install-1.8.0.1.php" hash="2e75c5675f55602e3efc435c9267f6da"/></dir></dir><dir name="controllers"><file name="ContentController.php" hash="5b87163c38eaecc691fd19af25a12b31"/><dir name="Admin"><file name="ImportController.php" hash="d54022e572a86260947a3125920b72fe"/><file name="JobqueueController.php" hash="a991e4ac21348a43bf50aeb806e9ca84"/><file name="FilemanagerController.php" hash="9576633f3a5cce0baf4cb4536b788df9"/><file name="ShapeController.php" hash="02644a3d8b74ed17a585d7eaab450b86"/><file name="PreviewController.php" hash="f193f06b74a51f3c63bde62003c1d662"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="99a88608e21dbd9dac12ec66ab77a71d"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><dir name="product"><file name="price_variants.phtml" hash="a550a619f97a095a183f4ecfae6933ad"/><file name="buttons.phtml" hash="5af8fc7a11ca8cd8dfdef3ac9d0f529a"/><file name="images.phtml" hash="763d0bc1eac2d942cdd02bececc07738"/><file name="price_variants2.phtml" hash="d3ac6a7014018f4e7ff6197afee2ba21"/></dir><file name="product_attribute.phtml" hash="5c86d9787594a833bf364aad4d46b47d"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="ae90fbb71cdbd28010538fb675997e6b"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><file name="filemanager.phtml" hash="b262367fe671b86edf91b222c0015aaa"/><file name="satzeditor.phtml" hash="849df5aa90a2960218fd5b90f63c058e"/><dir name="admin"><dir name="import"><dir name="form"><file name="after.phtml" hash="82f147959a1a63c97d7b8cfd5643a529"/><file name="before.phtml" hash="970bb388fff1aae7af2c3c5a537d6a54"/></dir><dir name="frame"><file name="result.phtml" hash="87f629974959d669e2e5c6cf05120aaf"/></dir></dir></dir><dir name="renderer"><file name="array.phtml" hash="d9b4eb7a36418ee84e80a6e1aaf215ab"/><file name="array_date.phtml" hash="1387ef94e7178d7f6d0ef150597d6fb2"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="XAuIt_PublicationBasic.xml" hash="ab7e6c3ffd1e5f1b4d509cb98df221b3"/></dir></target><target name="mageweb"><dir name="js"><dir name="auit"><dir name="publicationbasic"><dir name="gridster"><file name="jquery.gridster.js" hash="4be7c72d0a7e2ff1a730179dce40bc39"/><file name="jquery.gridster.min.css" hash="2de0aa9fdd3481d200eb4ee5c690f511"/><file name="jquery.gridster.min.js" hash="08f8fc5c488c874203c02b0791b4d0f2"/><file name="jquery.gridster.css" hash="d93274457763a13021d55d23b0adf783"/></dir><dir name="jquery"><file name="jquery-1.9.0.min.js" hash="bd86b25cf27379f0b5b765ac8d7b8123"/><file name="jquery-1.9.0.js" hash="573701cf4501819581a58cb4038a6f7d"/><file name="jquery-ui-1.10.0.custom.js" hash="2e06e419682502e57ef69573bc47efe1"/><file name="jquery.mousewheel.js" hash="e0dd9bfeb66850507cc25c35d9ffc55b"/><file name="jquery-noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><dir name="css"><dir name="smoothness"><file name="jquery-ui-1.10.0.custom.css" hash="29dc6f1a5896bded4c64e08870935ad0"/><dir name="images"><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="36d73421e98540eb9899dfdab1e4afaf"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="6069814bbf1621f2b4a7e7ca39eadaaf"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="1683f289128542b462cca77dc6b6d4bf"/><file name="ui-icons_cd0a0a_256x240.png" hash="0d3cb2a44a993bea91ce830b7b61e56a"/><file name="ui-icons_888888_256x240.png" hash="22d602a11b95c70cb1c13f58c6a44dd1"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="01b117d1785587a9424b1180d3798bf3"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="b3f841139c6604fa71b2a9f771be4df8"/><file name="ui-icons_454545_256x240.png" hash="0a4a9e848ae55bfd4e9839e6324c67e0"/><file name="ui-icons_222222_256x240.png" hash="854cfef6b6ca4944dd1ba7b025ca0c66"/><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="4e23f7f7ab8c99dac2325ff44a98eedf"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="237b38af07f918d30cd4a53f8ba201aa"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="4b401b58b5e65b0870a2d1c29f6b9c0d"/><file name="ui-icons_2e83ff_256x240.png" hash="d90630a0da6df0be512e5f789af72551"/></dir><file name="jquery-ui-1.10.0.custom.min.css" hash="7052370aa4e9878e7f76e473eccf4cf9"/></dir></dir><file name="jquery-ui-1.10.0.custom.min.js" hash="da1e608faf62dbb9502f0c364d7140e3"/><file name="jquery-ui-combobox.js" hash="4614c0e61a10c05e7c0cf15e1ab9874d"/></dir><dir name="editor"><file name="nicEdit.js" hash="99ea1507863613875084280e2366c7d6"/><file name="nicEditorIcons.gif" hash="814b0cbfa93e52bbd76e5b6a37338653"/></dir><dir name="lib"><file name="jquery.masonry.min.js" hash="dfce0167f5e3c4b592bd6d13b83522e6"/><file name="jquery.tmpl.js" hash="31da7368c57f2fd0d06b0b0109dcf91f"/><file name="jquery.sortable.js" hash="6624e24c09b9371c3b662eead77368a9"/><file name="jquery.ui.resizable.snap.ext.v1.7.js" hash="a3cacb37d9fc1c5109261e26caeef90e"/></dir><dir name="colorpicker"><file name="jquery.colorpicker.css" hash="91d7ba05f3ef8f591efd81a698fc9a14"/><file name="README" hash="a6dfb15e339826c75bc0aa2ddf585545"/><file name="index.html" hash="63b312e4903de349d6e3f83a5bf11710"/><dir name="i18n"><file name="jquery.ui.colorpicker-nl.js" hash="faed2ea5bb0dbcf361ae66474cc88a71"/><file name="jquery.ui.colorpicker-en.js" hash="3ec47d3611b63904066e0a090b678bd8"/><file name="jquery.ui.colorpicker-fr.js" hash="c54aa0375b01ea5d8220a6e42ead3e37"/></dir><file name="jquery.colorpicker.js" hash="b041e8eb7ee97798f740590089c4f524"/><file name="TODO" hash="1c9cbe87e6335acdc8d931652807e779"/><dir name="images"><file name="ui-colorpicker.png" hash="7f84e7fc66ed39527a51c97ce1e181f0"/><file name="map.png" hash="db163b6d98c20097ec791f4d7dd938fd"/><file name="preview-opacity.png" hash="ab27137e3f7161c011a7b8bb89782c73"/><file name="bar-pointer.png" hash="5fd83de4556ee0a6c2421cf4a82b33ff"/><file name="bar-opacity.png" hash="ca51657e035c8ec7101a2ba3e4fb027c"/><file name="bar-alpha.png" hash="5c5791930e0644f718c68296a62251cd"/><file name="map-opacity.png" hash="47d63ecea460265f78ab03b88d2b0b10"/><file name="map-pointer.png" hash="e980c6080dd47664329b219cc35cd79d"/><file name="bar.png" hash="fe1c7cbad0cbc0e2d90a0291658dbbcb"/></dir></dir><dir name="knockout"><file name="knockout-jquery-ui-widget.js" hash="c4a8fe0bebb53084fa3a2844e32d12a4"/><file name="knockout-latest.debug.js" hash="10009389a77872b5515acce22a2b013c"/><file name="knockout-sortable.js" hash="c38cc8f60b0b2ccd6b97bccdf0c98089"/><file name="knockout-3.1.0.js" hash="999f69b4d056ddefee31c71a357223f4"/><file name="knockout.mapping.js" hash="79c16fd9c4d13c674a827cd13993358c"/></dir><dir name="images"><file name="trash.svg" hash="6963c7ce996b7d7ef7252e1585fd47e8"/><file name="no-imagick.jpg" hash="6011a7db1633c0bf403363b05bd773ad"/><dir name="thumbnail"><file name="txt.png" hash="802eac23987c0e8ed44d94ece52d55ca"/><file name="gz.png" hash="36ec4db53b987983176a4824f7478e85"/><dir name="p16"><file name="txt.png" hash="79520d0ef237730c55eb5bcd50b78ea2"/><file name="swf.png" hash="1623343ec1b366081175a4d28feb66ae"/><file name="gz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="video.png" hash="9681c0591166287c6c3144837fdf1008"/><file name="zip.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="pdf.png" hash="f8dfa3fa0386adcd2370c6d509a0be91"/><file name="image.png" hash="66517d22e9c688e521951b3c2d4498e0"/><file name="tgz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/></dir><file name="zip.png" hash="36ec4db53b987983176a4824f7478e85"/><file name="empty.png" hash="4916f08cf952402163d8ece7a90c28a3"/><file name="pdf.png" hash="01275166b86b1dc6e863e7c74e31a4b4"/></dir><file name="empty_template.png" hash="7cb866b823cac2c686e686e876de397c"/><file name="ajax-loader.gif" hash="08a3028fda91d443f4d5e93307c96fcd"/><file name="loadinfo.gif" hash="66c1026d570b265736fc352f8cd7d0fa"/></dir><dir name="publication"><file name="validate.js" hash="4b0c925f64fb09085efc8acca90f9a68"/><file name="filemanager.js" hash="6a722bdfb3084e0591720a36e99581d1"/><file name="satzeditor.js" hash="d34ef9b18c1183b665233471464b1713"/><file name="fileupload.js" hash="5647a7a8e57130babbee9ac01328cc5a"/></dir><dir name="css"><file name="filemanager.css" hash="572befaf880ca68da8f0e29828ed7498"/><file name="basic.css" hash="33d94cc074d578630adfe93f65a82354"/><file name="satzeditor.css" hash="37bb263029b96f5e586f98a819d4d3ea"/></dir><dir name="filetree"><file name="jquery.jstree.js" hash="7fc98c0efedcdea06a695cb2ccaa18c2"/><dir name="_lib"><file name="jquery.js" hash="1043c71003dd56fb3417cca1f2048d44"/><file name="jquery.hotkeys.js" hash="e44a7f6c300f1cec9d4f3359d62d4525"/><file name="jquery.cookie.js" hash="ce56bb0d2daafc993b2866ccc1af86fc"/></dir><dir name="themes"><dir name="default-rtl"><file name="dots.gif" hash="3ce3f8853ef2c56f6aec2bf8dc1e58fe"/><file name="style.css" hash="d26c0f2c59237a6bdc1e9ca9a604075b"/><file name="d.png" hash="d6f62e7edafae482fc8abda429e692ce"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="e3fb5e0791a390693960697c569e5696"/></dir><dir name="default"><file name="style.css" hash="00575b10a2eb206a9838b5e592b0d2e2"/><file name="d.png" hash="0eb50798dca00f5cc8e153e6da9a87f9"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="25d6637406a2a3d42735b22d0f627639"/></dir><dir name="apple"><file name="bg.jpg" hash="eb12f0d34682685e9c0765c86f849230"/><file name="style.css" hash="972faf8c700639be6acd867274f6a9bb"/><file name="d.png" hash="84c5c7217fd02dc781c5bffd619e6f2a"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/></dir><dir name="classic"><file name="style.css" hash="5a529a18800bfbdc6c1691b4ab4c76f7"/><file name="d.png" hash="651903f05f01694e55fc3b9218a56d89"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/><file name="d.gif" hash="e59bf915dbc3b54de68f97fcc385e9c6"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies>
18
  <required>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>snm_pdfpublication_basic</name>
4
+ <version>1.8.0.2</version>
5
  <stability>stable</stability>
6
  <license>see snm-portal.com</license>
7
  <channel>community</channel>
10
  <description>snm_pdfpublication_basic extension from snm-portal.com</description>
11
  <notes>No Notes</notes>
12
  <authors><author><name>snm-portal</name><user>augsten</user><email>develop@snm-portal.com</email></author></authors>
13
+ <date>2014-07-26</date>
14
+ <time>13:18:42</time>
15
+ <contents><target name="magelib"><dir name="snm3"><dir name="tcpdf"><dir name="tools"><file name="convert_fonts_examples.txt" hash="01d1bb3c8c8bdb35f3837e2715dbe681"/><file name="tcpdf_addfont.php" hash="8a55d83a4002cf045b586982b64c8356"/><file name=".htaccess" hash="183e8e4abc660eaba3c3da4bb82b0bcf"/></dir><file name="tcpdf.php" hash="fd073bc49f7106c04b101e6c386120dd"/><file name="tcpdf_barcodes_2d.php" hash="17bfd10e3232de9145f5b74a6ef6afac"/><dir name="fonts"><file name="helveticai.php" hash="e0a7f23376f50de631db93814aff2e35"/><file name="zapfdingbats.php" hash="191b3c2e856e750c06c0ba7987f902fb"/><file name="helveticabi.php" hash="c22fdc8941f2956e0930b20105870468"/><file name="helveticab.php" hash="3daad3713df02c15beebd09ceecacacd"/><file name="helvetica.php" hash="2a315fa2593161154c319788f0ef2127"/></dir><file name="tcpdf_parser.php" hash="5c546b7f37191a754b6743a640c6a0cd"/><file name="tcpdf_autoconfig.php" hash="2ff9546965d6bc3e9a7f65552cd80c41"/><file name="CHANGELOG.TXT" hash="abf24925b600c9fffdaee35bb216e7bd"/><file name="tcpdf_import.php" hash="6bb88a8a3d69511d1bf9e7af12ab5f47"/><file name="tcpdf_barcodes_1d.php" hash="27f0f0c023d8775a7d970a0550caa3ef"/><file name="composer.json" hash="0e83d096a5529f0ce9034af6e20e22e8"/><file name="LICENSE.TXT" hash="5c87b66a5358ebcc495b03e0afcd342c"/><file name="README.TXT" hash="b0d263ba91ffc434ac633523fd75a42c"/><dir name="config"><dir name="lang"><file name="por.php" hash="4e5e4b97c58d71c3edcfeafa14951408"/><file name="bel.php" hash="aaa9c18becac50de78f3ed7167442df7"/><file name="ara.php" hash="88c3faeee02a1d61f0e4a3d3753e1345"/><file name="hat.php" hash="119c2452df924c74378b5c50d49bffe3"/><file name="hun.php" hash="7973e7f5b945479c7e8c0ac97058adb9"/><file name="zho.php" hash="ad33733922f50d05affe34413a924185"/><file name="cat.php" hash="3b1853da276cd8d642d75adadb0e3ff0"/><file name="far.php" hash="47a6541a450730616fc093c6739aeb70"/><file name="mlt.php" hash="49fe005624ad848581820b7c26ffec0d"/><file name="aze.php" hash="0d94296afd349a572e6afb8cdd2e767d"/><file name="mkd.php" hash="8719cb2ce7465fc69c36563a362df048"/><file name="bra.php" hash="2b9affb5500e8c421ecd506b70ee2330"/><file name="jpn.php" hash="5767e072fd091dff871996a3d012c3a3"/><file name="hye.php" hash="ae6dbe852b60660dcaeff404b2525fa8"/><file name="ces.php" hash="a21be64a536079b88dc064996df88f2d"/><file name="hrv.php" hash="ee77ae996bb0c83a78e5012542f7b973"/><file name="srp.php" hash="cbb390944537fe268f8b25f0df3b5fe0"/><file name="sqi.php" hash="8e2d65d8d0d6fd5117fffc2f2aed07e8"/><file name="ukr.php" hash="2f27ecba8e32022e40989f767f9c5ca3"/><file name="heb.php" hash="8b87f24cac90703fe51790de4369402f"/><file name="pol.php" hash="2a19c1be4a0218d39651e83550316108"/><file name="ita.php" hash="d74f2ef88fc933b7a24758c26cca5bb5"/><file name="urd.php" hash="db5c8e29e079fc30f0c0a19271b8cbfa"/><file name="rus.php" hash="9195119a0baa343354a9d9af538959d8"/><file name="ger.php" hash="8fbb25bbb83656e5f632413fe38f0ffb"/><file name="eus.php" hash="e0b1be60fb7b015ef11919efee02373f"/><file name="swa.php" hash="28ddcf894fa9e70305ab15653454dc04"/><file name="swe.php" hash="3426291e4f6d245f6bf945d9bf103c25"/><file name="glg.php" hash="aeedb99c68cac50d0730a2f9d15e7a11"/><file name="ron.php" hash="97a5d9ca1a84002c15f966fc828c6801"/><file name="dan.php" hash="0fe1af520d1ca49b7c001f6fd477c170"/><file name="spa.php" hash="d94a308b53e6bc441091daddfad4ebb7"/><file name="fra.php" hash="f056969e8f8afd9b93bb07e43a615925"/><file name="nld.php" hash="dc17db1ed58edb04ed38b38d0c4aeb67"/><file name="nob.php" hash="80c2c48943a01d3a4620a0d467a00494"/><file name="afr.php" hash="d2e3e7f95299aeb0a8cbd1a22124f806"/><file name="eng.php" hash="af8873cc6a43760e060a5bcf0e4b1160"/><file name="slv.php" hash="482e42ee876acd292d829778a763b679"/><file name="est.php" hash="3fa8a31d7c62a99f02ce179c0cfd48d4"/><file name="kor.php" hash="e52771743209216779f95253346e8dc0"/><file name="ind.php" hash="c13986f1929289ca2f31cc234193dfa2"/><file name="gle.php" hash="658bbc9cf255c9234f1fca1c5af6520c"/><file name="kat.php" hash="53f47408b56384d92ccf79004edd06a2"/><file name="chi.php" hash="d30bfd131b4442ec577865f9f7c6965d"/><file name="bul.php" hash="cffad12f128f2d602a41213425fda45b"/><file name="msa.php" hash="446fb5b43c31f44274497cabbd313d2f"/><file name="yid.php" hash="3514268a049f09590ad2b3eaa5a68cae"/><file name="cym.php" hash="8cb4da872b8e55077e2539ccb328856e"/></dir><file name="tcpdf_config.php" hash="09a8c58f2781725c0f4f6e4379b92c62"/></dir><dir name="include"><file name="tcpdf_static.php" hash="4f34cb94f62e7faa98ad79712a9f6b8e"/><file name="tcpdf_filters.php" hash="205fd4b7bc978688de8420087c161bcb"/><file name="sRGB.icc" hash="060e79448f1454582be37b3de490da2f"/><file name="tcpdf_font_data.php" hash="8f83bbc144d70505672f82679546c72d"/><file name="tcpdf_images.php" hash="42f2f6e2122319a302b2769011897b2a"/><file name="tcpdf_fonts.php" hash="75837274a0d67e19ee975aaef9e283ee"/><dir name="barcodes"><file name="qrcode.php" hash="edd56d70cac390ef63feeef7e9d71b3f"/><file name="datamatrix.php" hash="561027d7adbd2358225866cba60568d2"/><file name="pdf417.php" hash="0d24de61581243b069fb508efbc78a67"/></dir><file name="tcpdf_colors.php" hash="cacdbe68a428ae36151a3d1152b2b77b"/></dir></dir><dir name="auit"><file name="pdf.php" hash="2443e02fdb642c434f97e5fdc19c3a73"/><file name="barcode.php" hash="a09c2cdb5eebac6edb68a28ca2d66f5f"/></dir></dir></target><target name="magelocal"><dir name="AuIt"><dir name="PublicationBasic"><dir name="Block"><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Image.php" hash="61f2dffe0c519eec9f2a6ed6145885b4"/></dir></dir></dir><dir name="Form"><dir name="Element"><file name="Styles.phpXXX" hash="0fa4f3f555c2df4bf658fdf16104687d"/><file name="Publication.phpXXX" hash="d046ddd372a5316f84f54e172b5799a1"/><file name="Satzeditor.php" hash="8490dde3310c33a5a4b76942e3948df1"/><file name="Parameter.php" hash="1658131ba7279c768691aa7656e9d7d8"/></dir><dir name="Renderer"><file name="Parameter.php" hash="ae9c6243b97b044b57cb8e372242e73c"/></dir></dir></dir><dir name="Adminhtml"><file name="Versioninfo.php" hash="347b6ffa0dc95d6a07aed7c0a34bf398"/><dir name="Import"><dir name="Edit"><file name="Form.php" hash="867c61d7b2df316f1ae8217b72545cf9"/></dir><dir name="Frame"><file name="Result.php" hash="e955891d25b6022359ee69a5e50a6097"/></dir><file name="Edit.php" hash="19ca4720403eb0e20719e15c9c847acc"/></dir><file name="Info.php" hash="d6a6efe359cf0fe462c9b44706dffec2"/><file name="Jobqueue.php" hash="5f0d54978b5069d979a47d072d8d7870"/><file name="Items.php" hash="5cd6e34b698e6fd99bf0d8f3e70f93d9"/><file name="Projects.php" hash="1c4f4fc77ed96df5830cd211e9b7013e"/><dir name="Projects"><dir name="Edit"><file name="Tabs.php" hash="e72ef03619fc1579a35e4bb3ba22b5a2"/><dir name="Tab"><file name="Settings.php" hash="5b4fec7d6a05a120ab8929255a5355a9"/><file name="Layout.php" hash="ec00f751a35a79dc56e2cec40cc41091"/><file name="Main.php" hash="6f444f48f2b1aa7341867028f01fa98f"/></dir><file name="Form.php" hash="959740aab024cb1103670aea6fe81411"/></dir><file name="Grid.php" hash="b8dab256a5b34d586e989b2f4b09b5ae"/><file name="Edit.php" hash="b490f9be6d73822e61305fe72f59842d"/></dir><file name="Satzeditor.php" hash="96f49c918ad2b6c8b0aa67e0d9a3dcdf"/><dir name="Jobqueue"><dir name="Edit"><file name="Tabs.php" hash="72afcdbfeb612efc3b88e1286a89a289"/><dir name="Tab"><dir name="Products"><file name="Grid.php" hash="64e107053234cb0abb9ba3a0646dfe14"/><file name="Field.php" hash="723fe2a80c975ddb5d3248a373282157"/></dir><file name="Settings.php" hash="3aea2af6c20ddfd30f10191c6c12a58b"/><file name="Queue.php" hash="ee2375edb56f1343164bdd636e7b0e35"/><file name="Products.php" hash="a7ebaa0499c2596c7b587f3d7ed2fea1"/><file name="Print.php" hash="209d13f2a593c98c33c8338c167d82bd"/><file name="Epub3.php" hash="6551c28c7c19b205ca25a60e22a6aba3"/><file name="Main.php" hash="bae1d560e729caead0c15bfbfcf6572d"/></dir><file name="Form.php" hash="f982277390678e8c4464a129c10860bc"/></dir><file name="Grid.php" hash="a4ffc0f3af4c531029c95e6b326e5adc"/><file name="Edit.php" hash="9ff847a1b202e8066507c5c5064cffae"/><file name="Preview.php" hash="fc29b7a55f37677bb7e6f8a7ccbd3241"/></dir></dir><file name="Generator.php" hash="72e6ee5302c96a63a2a6b75eef638e43"/><dir name="Product"><file name="Buttons.php" hash="8808c384e1f61e4c2d639fa5cc8e9eac"/></dir><file name="Frame.php" hash="f5b8d0e11f6d3c1273e5a736767893fe"/></dir><dir name="Model"><dir name="Pdf"><file name="Base.php" hash="03c3b9a4a65028a2bef9838fb91acfad"/></dir><dir name="Filemanager"><file name="Storage.php" hash="b55328a17655b97a74b26d8e6eaf9b09"/><dir name="Storage"><file name="Collection.php" hash="bdc4a955e6d000e028f28189f15c78e0"/></dir></dir><dir name="Email"><dir name="Template"><file name="Helper.php" hash="67489e51133cdbf9c77263265848e691"/><file name="Filter.php" hash="14b1800c7916cf15fcbc80cbcec8b81f"/></dir></dir><file name="Jobqueue.php" hash="8d10cee0ba328dce5114eed8927e5258"/><dir name="Adminhtml"><file name="Idtemplate.php" hash="cb75c67a7df5b52fe2b162c9dd390d3d"/><file name="Arraytemplate.php" hash="5d3313fb14a1f0a747fce4688da0d0aa"/><dir name="System"><dir name="Config"><dir name="Product"><file name="Attribute.php" hash="19eb06ed676684be98bab52e87fde729"/></dir><file name="Producttemplates.php" hash="85dbe2b6b8a6dc9bdf4eb6ae41a0bf7e"/></dir></dir></dir><file name="Style.php" hash="4edfebf8ccc1aadbb1e5c370628c32c0"/><file name="Cron.php" hash="e0eb7767b10b488ebb817638e8f89190"/><file name="Project.php" hash="2c819537a71335a7ad8109d4fd31b75c"/><file name="Generator.php" hash="46e46ffdca417f02f06b86ee23c983a4"/><file name="Font.php" hash="c724c026c9cd0e0db6226b324ae7417a"/><file name="Styles.php" hash="038d8edd584f1dcc88760343a8d4e332"/><dir name="Resource"><dir name="Styles"><file name="Collection.php" hash="516757fa83e6f4f56a74cd98cfd043f5"/></dir><file name="Jobqueue.php" hash="69be09343a26ecb36be644dc4fcab1ae"/><dir name="Template"><file name="Collection.php" hash="bad352781f731b52a906b21ff4237482"/></dir><file name="Abstract.php" hash="177fdf20a7da55465fe7ba724cf42c78"/><dir name="Project"><file name="Collection.php" hash="ef39bb97211b2fb11f48fdc485fae86f"/></dir><file name="Project.php" hash="c485d7adef9630ac7ed57d1dc6004892"/><file name="Generator.php" hash="69857ca1fc66e92307f67359b72e3829"/><dir name="Generator"><file name="Collection.php" hash="86a1c6999faf2020045667586916e130"/></dir><file name="Styles.php" hash="b07e8d82a20c92d6f62916704982fcec"/><file name="Template.php" hash="4deb8416dea904885abef3d109ffbc7b"/><dir name="Jobqueue"><file name="Collection.php" hash="64999a8db6dd96153a93ad380bee9f19"/></dir></dir><dir name="Config"><file name="Idtemplate.php" hash="618d60cb811b354ef9532efa8be85c93"/><file name="Arraytemplate.php" hash="8d21fab3662f01d36bf1b9aa8d3a6605"/><file name="Update.php" hash="18d66959f5d8ae26b11d914c3a7a4d57"/></dir><file name="Template.php" hash="d1cae1bf6c6d7fb9a69bb0c3441dce26"/><dir name="Renderer"><file name="Abstract.php" hash="7368f4fa49a8e014bfb5d9fbf1818763"/><file name="Pdf.php" hash="0b229433230e2319e129d680eb05baa8"/></dir></dir><dir name="data"><file name="gfont.ser" hash="7d721f80d97ed2aab6147eeee742d295"/><dir name="css"><file name="default.css" hash="53b5f66df79eef855335f798ec903232"/></dir><dir name="shapelib"><file name="misc.json" hash="362692de0da72df10ec79e8cabf82ce1"/><file name="symbol.json" hash="3d6f4033be5c7e2c01584770a430445b"/><file name="arrow.json" hash="56b7a54d89a38b1ad8d90dbb49419375"/><file name="categories.json" hash="0780aa756b718a03369aa88effa4e027"/><file name="music.json" hash="30b05d18591754122736a56316e809b6"/><file name="dialog_balloon.json" hash="f42f1a9da4a6580cce5777a92d828fcc"/><file name="object.json" hash="79b64dfa23fd0da64bf6ce1d159fa2fc"/><file name="raphael_2.json" hash="5b3c3eea713927f637c416a786df2072"/><file name="game.json" hash="8bfeb3d78da91cd90d9b2da9258c279b"/><file name="flowchart.json" hash="bf4343c2c1fd618ce5e8aa04c1def32d"/><file name="basic.json" hash="9a0c84ac03d46a0e0ce40320f74f4a34"/><file name="math.json" hash="8c62b7fb36b1061f2d715485f1cb143b"/><file name="raphael_1.json" hash="d6b84c0eb724a4dea5bdf02b8fa669ab"/><file name="animal.json" hash="22d536b6151d6cba305728001b96e82b"/><file name="electronics.json" hash="0762432479510c8bbff58e631edfa156"/><file name="raphael.txt" hash="a4156780de6385427328cc9a7148abfb"/></dir></dir><dir name="Helper"><file name="Filemanager.php" hash="4bfe726daf69fcf3be5e0b037ba892e0"/><file name="Arrayconfig.php" hash="261f48cda93d07e5cf95cf15ce188b64"/><file name="Svg.php" hash="d915cac5d59df8e5c2819d74d52f8948"/><file name="Style.php" hash="b0f81e4af823647231915fdffdc490b5"/><file name="Export.php" hash="7deff30f32c60011c63347b704a022a7"/><file name="Config.php" hash="9e65977bb0f5bfce8aaee66e996e8561"/><file name="Data.php" hash="c4647b7e9713742d257a4a19874474e3"/><file name="Dirdirective.php" hash="caaa9333f32fe15fd0ac4f9ec68525db"/><file name="Font.php" hash="ade9858b9ad84466c5299fbab7c8aebe"/><file name="Pdf.php" hash="06950471da2acad64a11a67261f56b48"/></dir><dir name="etc"><file name="dir.directive.xml" hash="94abf565cf4a898a307c621ea141ad97"/><file name="adminhtml.xml" hash="9342841d6dbd2974b38eb55e4a6fab3e"/><file name="config.xml" hash="d7cc91ae5d4004329bd085ccd9a5c016"/><file name="history.xml" hash="382a1824dd4f690c6fb58c18d5792d5b"/><file name="system.xml" hash="8a4340b9e4cf3ae3ac1ff1fd72364839"/></dir><dir name="sql"><dir name="auit_publicationbasic_setup"><file name="install-1.8.0.1.php" hash="2e75c5675f55602e3efc435c9267f6da"/></dir></dir><dir name="controllers"><file name="ContentController.php" hash="5b87163c38eaecc691fd19af25a12b31"/><dir name="Admin"><file name="ImportController.php" hash="d54022e572a86260947a3125920b72fe"/><file name="JobqueueController.php" hash="a991e4ac21348a43bf50aeb806e9ca84"/><file name="FilemanagerController.php" hash="9576633f3a5cce0baf4cb4536b788df9"/><file name="ShapeController.php" hash="02644a3d8b74ed17a585d7eaab450b86"/><file name="PreviewController.php" hash="f193f06b74a51f3c63bde62003c1d662"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="99a88608e21dbd9dac12ec66ab77a71d"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><dir name="product"><file name="price_variants.phtml" hash="a550a619f97a095a183f4ecfae6933ad"/><file name="buttons.phtml" hash="5af8fc7a11ca8cd8dfdef3ac9d0f529a"/><file name="images.phtml" hash="763d0bc1eac2d942cdd02bececc07738"/><file name="price_variants2.phtml" hash="d3ac6a7014018f4e7ff6197afee2ba21"/></dir><file name="product_attribute.phtml" hash="5c86d9787594a833bf364aad4d46b47d"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="auit_publicationbasic.xml" hash="ae90fbb71cdbd28010538fb675997e6b"/></dir><dir name="template"><dir name="auit"><dir name="publicationbasic"><file name="filemanager.phtml" hash="b262367fe671b86edf91b222c0015aaa"/><file name="satzeditor.phtml" hash="849df5aa90a2960218fd5b90f63c058e"/><dir name="admin"><dir name="import"><dir name="form"><file name="after.phtml" hash="82f147959a1a63c97d7b8cfd5643a529"/><file name="before.phtml" hash="970bb388fff1aae7af2c3c5a537d6a54"/></dir><dir name="frame"><file name="result.phtml" hash="87f629974959d669e2e5c6cf05120aaf"/></dir></dir></dir><dir name="renderer"><file name="array.phtml" hash="d9b4eb7a36418ee84e80a6e1aaf215ab"/><file name="array_date.phtml" hash="1387ef94e7178d7f6d0ef150597d6fb2"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="XAuIt_PublicationBasic.xml" hash="ab7e6c3ffd1e5f1b4d509cb98df221b3"/></dir></target><target name="mageweb"><dir name="js"><dir name="auit"><dir name="publicationbasic"><dir name="gridster"><file name="jquery.gridster.js" hash="4be7c72d0a7e2ff1a730179dce40bc39"/><file name="jquery.gridster.min.css" hash="2de0aa9fdd3481d200eb4ee5c690f511"/><file name="jquery.gridster.min.js" hash="08f8fc5c488c874203c02b0791b4d0f2"/><file name="jquery.gridster.css" hash="d93274457763a13021d55d23b0adf783"/></dir><dir name="jquery"><file name="jquery-1.9.0.min.js" hash="bd86b25cf27379f0b5b765ac8d7b8123"/><file name="jquery-1.9.0.js" hash="573701cf4501819581a58cb4038a6f7d"/><file name="jquery-ui-1.10.0.custom.js" hash="2e06e419682502e57ef69573bc47efe1"/><file name="jquery.mousewheel.js" hash="e0dd9bfeb66850507cc25c35d9ffc55b"/><file name="jquery-noconflict.js" hash="3179f2255b046d5f2e9a71e365287bef"/><dir name="css"><dir name="smoothness"><file name="jquery-ui-1.10.0.custom.css" hash="29dc6f1a5896bded4c64e08870935ad0"/><dir name="images"><file name="ui-bg_highlight-soft_75_cccccc_1x100.png" hash="36d73421e98540eb9899dfdab1e4afaf"/><file name="ui-bg_glass_75_e6e6e6_1x400.png" hash="6069814bbf1621f2b4a7e7ca39eadaaf"/><file name="ui-bg_glass_95_fef1ec_1x400.png" hash="1683f289128542b462cca77dc6b6d4bf"/><file name="ui-icons_cd0a0a_256x240.png" hash="0d3cb2a44a993bea91ce830b7b61e56a"/><file name="ui-icons_888888_256x240.png" hash="22d602a11b95c70cb1c13f58c6a44dd1"/><file name="ui-bg_glass_55_fbf9ee_1x400.png" hash="01b117d1785587a9424b1180d3798bf3"/><file name="ui-bg_glass_75_dadada_1x400.png" hash="b3f841139c6604fa71b2a9f771be4df8"/><file name="ui-icons_454545_256x240.png" hash="0a4a9e848ae55bfd4e9839e6324c67e0"/><file name="ui-icons_222222_256x240.png" hash="854cfef6b6ca4944dd1ba7b025ca0c66"/><file name="ui-bg_flat_0_aaaaaa_40x100.png" hash="4e23f7f7ab8c99dac2325ff44a98eedf"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="237b38af07f918d30cd4a53f8ba201aa"/><file name="ui-bg_flat_75_ffffff_40x100.png" hash="4b401b58b5e65b0870a2d1c29f6b9c0d"/><file name="ui-icons_2e83ff_256x240.png" hash="d90630a0da6df0be512e5f789af72551"/></dir><file name="jquery-ui-1.10.0.custom.min.css" hash="7052370aa4e9878e7f76e473eccf4cf9"/></dir></dir><file name="jquery-ui-1.10.0.custom.min.js" hash="da1e608faf62dbb9502f0c364d7140e3"/><file name="jquery-ui-combobox.js" hash="4614c0e61a10c05e7c0cf15e1ab9874d"/></dir><dir name="editor"><file name="nicEdit.js" hash="99ea1507863613875084280e2366c7d6"/><file name="nicEditorIcons.gif" hash="814b0cbfa93e52bbd76e5b6a37338653"/></dir><dir name="lib"><file name="jquery.masonry.min.js" hash="dfce0167f5e3c4b592bd6d13b83522e6"/><file name="jquery.tmpl.js" hash="31da7368c57f2fd0d06b0b0109dcf91f"/><file name="jquery.sortable.js" hash="6624e24c09b9371c3b662eead77368a9"/><file name="jquery.ui.resizable.snap.ext.v1.7.js" hash="a3cacb37d9fc1c5109261e26caeef90e"/></dir><dir name="colorpicker"><file name="jquery.colorpicker.css" hash="91d7ba05f3ef8f591efd81a698fc9a14"/><file name="README" hash="a6dfb15e339826c75bc0aa2ddf585545"/><file name="index.html" hash="63b312e4903de349d6e3f83a5bf11710"/><dir name="i18n"><file name="jquery.ui.colorpicker-nl.js" hash="faed2ea5bb0dbcf361ae66474cc88a71"/><file name="jquery.ui.colorpicker-en.js" hash="3ec47d3611b63904066e0a090b678bd8"/><file name="jquery.ui.colorpicker-fr.js" hash="c54aa0375b01ea5d8220a6e42ead3e37"/></dir><file name="jquery.colorpicker.js" hash="b041e8eb7ee97798f740590089c4f524"/><file name="TODO" hash="1c9cbe87e6335acdc8d931652807e779"/><dir name="images"><file name="ui-colorpicker.png" hash="7f84e7fc66ed39527a51c97ce1e181f0"/><file name="map.png" hash="db163b6d98c20097ec791f4d7dd938fd"/><file name="preview-opacity.png" hash="ab27137e3f7161c011a7b8bb89782c73"/><file name="bar-pointer.png" hash="5fd83de4556ee0a6c2421cf4a82b33ff"/><file name="bar-opacity.png" hash="ca51657e035c8ec7101a2ba3e4fb027c"/><file name="bar-alpha.png" hash="5c5791930e0644f718c68296a62251cd"/><file name="map-opacity.png" hash="47d63ecea460265f78ab03b88d2b0b10"/><file name="map-pointer.png" hash="e980c6080dd47664329b219cc35cd79d"/><file name="bar.png" hash="fe1c7cbad0cbc0e2d90a0291658dbbcb"/></dir></dir><dir name="knockout"><file name="knockout-jquery-ui-widget.js" hash="c4a8fe0bebb53084fa3a2844e32d12a4"/><file name="knockout-latest.debug.js" hash="10009389a77872b5515acce22a2b013c"/><file name="knockout-sortable.js" hash="c38cc8f60b0b2ccd6b97bccdf0c98089"/><file name="knockout-3.1.0.js" hash="999f69b4d056ddefee31c71a357223f4"/><file name="knockout.mapping.js" hash="79c16fd9c4d13c674a827cd13993358c"/></dir><dir name="images"><file name="trash.svg" hash="6963c7ce996b7d7ef7252e1585fd47e8"/><file name="no-imagick.jpg" hash="6011a7db1633c0bf403363b05bd773ad"/><dir name="thumbnail"><file name="txt.png" hash="802eac23987c0e8ed44d94ece52d55ca"/><file name="gz.png" hash="36ec4db53b987983176a4824f7478e85"/><dir name="p16"><file name="txt.png" hash="79520d0ef237730c55eb5bcd50b78ea2"/><file name="swf.png" hash="1623343ec1b366081175a4d28feb66ae"/><file name="gz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="video.png" hash="9681c0591166287c6c3144837fdf1008"/><file name="zip.png" hash="ce15cafabf396370aac29085b3c1a5dd"/><file name="pdf.png" hash="f8dfa3fa0386adcd2370c6d509a0be91"/><file name="image.png" hash="66517d22e9c688e521951b3c2d4498e0"/><file name="tgz.png" hash="ce15cafabf396370aac29085b3c1a5dd"/></dir><file name="zip.png" hash="36ec4db53b987983176a4824f7478e85"/><file name="empty.png" hash="4916f08cf952402163d8ece7a90c28a3"/><file name="pdf.png" hash="01275166b86b1dc6e863e7c74e31a4b4"/></dir><file name="empty_template.png" hash="7cb866b823cac2c686e686e876de397c"/><file name="ajax-loader.gif" hash="08a3028fda91d443f4d5e93307c96fcd"/><file name="loadinfo.gif" hash="66c1026d570b265736fc352f8cd7d0fa"/></dir><dir name="publication"><file name="validate.js" hash="4b0c925f64fb09085efc8acca90f9a68"/><file name="filemanager.js" hash="6a722bdfb3084e0591720a36e99581d1"/><file name="satzeditor.js" hash="d34ef9b18c1183b665233471464b1713"/><file name="fileupload.js" hash="5647a7a8e57130babbee9ac01328cc5a"/></dir><dir name="css"><file name="filemanager.css" hash="572befaf880ca68da8f0e29828ed7498"/><file name="basic.css" hash="33d94cc074d578630adfe93f65a82354"/><file name="satzeditor.css" hash="37bb263029b96f5e586f98a819d4d3ea"/></dir><dir name="filetree"><file name="jquery.jstree.js" hash="7fc98c0efedcdea06a695cb2ccaa18c2"/><dir name="_lib"><file name="jquery.js" hash="1043c71003dd56fb3417cca1f2048d44"/><file name="jquery.hotkeys.js" hash="e44a7f6c300f1cec9d4f3359d62d4525"/><file name="jquery.cookie.js" hash="ce56bb0d2daafc993b2866ccc1af86fc"/></dir><dir name="themes"><dir name="default-rtl"><file name="dots.gif" hash="3ce3f8853ef2c56f6aec2bf8dc1e58fe"/><file name="style.css" hash="d26c0f2c59237a6bdc1e9ca9a604075b"/><file name="d.png" hash="d6f62e7edafae482fc8abda429e692ce"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="e3fb5e0791a390693960697c569e5696"/></dir><dir name="default"><file name="style.css" hash="00575b10a2eb206a9838b5e592b0d2e2"/><file name="d.png" hash="0eb50798dca00f5cc8e153e6da9a87f9"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="d.gif" hash="25d6637406a2a3d42735b22d0f627639"/></dir><dir name="apple"><file name="bg.jpg" hash="eb12f0d34682685e9c0765c86f849230"/><file name="style.css" hash="972faf8c700639be6acd867274f6a9bb"/><file name="d.png" hash="84c5c7217fd02dc781c5bffd619e6f2a"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/></dir><dir name="classic"><file name="style.css" hash="5a529a18800bfbdc6c1691b4ab4c76f7"/><file name="d.png" hash="651903f05f01694e55fc3b9218a56d89"/><file name="throbber.gif" hash="7b9776076d5fceef4993b55c9383dedd"/><file name="dot_for_ie.gif" hash="8c304279c4e1d2ff621937a27c636f68"/><file name="d.gif" hash="e59bf915dbc3b54de68f97fcc385e9c6"/></dir></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies>
18
  <required>