DHL_MeinPaket2 - Version 2.0.10

Version Notes

--

Download this release

Release Info

Developer DHL Vertriebs GmbH
Extension DHL_MeinPaket2
Version 2.0.10
Comparing to
See all releases


Code changes from version 2.0.9 to 2.0.10

app/code/community/Dhl/MeinPaket/Model/Observer.php CHANGED
@@ -552,9 +552,8 @@ class Dhl_MeinPaket_Model_Observer {
552
  $product->setStatus ( Mage_Catalog_Model_Product_Status::STATUS_DISABLED )->save ();
553
  }
554
 
555
- $catalogService = Mage::getSingleton ( 'meinpaket/service_catalog' ); // TODO:
556
  $catalogService->deleteProduct ( $product );
557
- $catalogService->deleteProductAsVariation ( $product );
558
  } catch ( Exception $ex ) {
559
  Mage::logException ( $ex );
560
  }
552
  $product->setStatus ( Mage_Catalog_Model_Product_Status::STATUS_DISABLED )->save ();
553
  }
554
 
555
+ $catalogService = Mage::getSingleton ( 'meinpaket/service_product_export' );
556
  $catalogService->deleteProduct ( $product );
 
557
  } catch ( Exception $ex ) {
558
  Mage::logException ( $ex );
559
  }
app/code/community/Dhl/MeinPaket/Model/Service/Product/Export.php CHANGED
@@ -54,6 +54,7 @@ class Dhl_MeinPaket_Model_Service_Product_Export extends Dhl_MeinPaket_Model_Ser
54
  if (! isset ( $seenMagentoProducts [$productId] )) {
55
  $seenMagentoProducts [$productId] = true;
56
 
 
57
  $product = Mage::getModel ( 'catalog/product' )->load ( $productId );
58
 
59
  $syncMode = $product->getData ( 'sync_with_dhl_mein_paket' );
@@ -86,27 +87,30 @@ class Dhl_MeinPaket_Model_Service_Product_Export extends Dhl_MeinPaket_Model_Ser
86
 
87
  if ($uploadRequest->isHasData()) {
88
  $response = $client->send ( $uploadRequest, true );
89
- $this->_markAsExported ();
90
  }
91
 
92
  return Mage::helper ( 'meinpaket/data' )->__ ( "Processed %d products", $count );
93
  }
94
 
95
  /**
96
- * Sets the was_exported_for_dhl_mein_paket attribute to "1" for the
97
- * products with the given product ids.
98
  *
99
- * @param array $productIds
100
- * @return void
101
  */
102
- protected function _markAsExported() {
103
-
104
- // $product = Mage::getModel ( 'catalog/product' );
 
 
 
 
 
105
 
106
- // foreach ( $this->_result->getOfferedProductIds () as $productId ) {
107
- // $product->load ( $productId );
108
- // $product->setData ( 'product_was_exported_for_dhl', 1 );
109
- // $product->getResource ()->saveAttribute ( $product, 'product_was_exported_for_dhl' );
110
- // }
111
  }
112
  }
54
  if (! isset ( $seenMagentoProducts [$productId] )) {
55
  $seenMagentoProducts [$productId] = true;
56
 
57
+ /* @var $product Mage_Catalog_Model_Product */
58
  $product = Mage::getModel ( 'catalog/product' )->load ( $productId );
59
 
60
  $syncMode = $product->getData ( 'sync_with_dhl_mein_paket' );
87
 
88
  if ($uploadRequest->isHasData()) {
89
  $response = $client->send ( $uploadRequest, true );
 
90
  }
91
 
92
  return Mage::helper ( 'meinpaket/data' )->__ ( "Processed %d products", $count );
93
  }
94
 
95
  /**
96
+ * Exports products.
 
97
  *
98
+ * @param Mage_Catalog_Model_Product $product
99
+ * @return Dhl_MeinPaket_Model_Service_Product_Export_Result
100
  */
101
+ public function deleteProduct(Mage_Catalog_Model_Product $product) {
102
+ /* @var $uploadRequest Dhl_MeinPaket_Model_Xml_Request_UploadRequest */
103
+ $uploadRequest = Mage::getModel ( 'meinpaket/xml_request_uploadRequest' );
104
+
105
+ /* @var $client Dhl_MeinPaket_Model_Client_XmlOverHttp */
106
+ $client = Mage::getModel ( 'meinpaket/client_xmlOverHttp' );
107
+
108
+ $uploadRequest->removeProduct($product);
109
 
110
+ if ($uploadRequest->isHasData()) {
111
+ $response = $client->send ( $uploadRequest, true );
112
+ }
113
+
114
+ return Mage::helper ( 'meinpaket/data' )->__ ( "Processed %d products", $count );
115
  }
116
  }
app/code/community/Dhl/MeinPaket/Model/Xml/AbstractXmlPartial.php CHANGED
@@ -162,7 +162,6 @@ abstract class Dhl_MeinPaket_Model_Xml_AbstractXmlPartial {
162
  }
163
  /**
164
  * Convert HTML entities to UTF- 8special chars while leaving the already existing special chars intact
165
- * TODO: Move to helper?
166
  * @param string $string
167
  * @return string
168
  */
162
  }
163
  /**
164
  * Convert HTML entities to UTF- 8special chars while leaving the already existing special chars intact
 
165
  * @param string $string
166
  * @return string
167
  */
app/code/community/Dhl/MeinPaket/Model/Xml/Request/UploadRequest.php CHANGED
@@ -69,7 +69,7 @@ class Dhl_MeinPaket_Model_Xml_Request_UploadRequest extends Dhl_MeinPaket_Model_
69
 
70
  /**
71
  *
72
- * @param Mage_Catalog_Model_Product $product
73
  * @return DOMNode|Ambigous <boolean, DOMElement>
74
  */
75
  public function addProductDescription(Mage_Catalog_Model_Product $product) {
@@ -137,7 +137,8 @@ class Dhl_MeinPaket_Model_Xml_Request_UploadRequest extends Dhl_MeinPaket_Model_
137
  /* @var $productDeletion DOMNode */
138
  $productDeletionNode = $this->getDocument ()->createElement ( 'productDeletion' );
139
  $this->getDeletions ()->appendChild ( $productDeletionNode );
140
- $productDeletionNode->appendChild ( $this->getDocument ()->createElement ( 'common:productId', $product->getId () ) );
 
141
  }
142
  }
143
  public function addCategory(Mage_Catalog_Model_Product $product) {
@@ -237,12 +238,7 @@ class Dhl_MeinPaket_Model_Xml_Request_UploadRequest extends Dhl_MeinPaket_Model_
237
  }
238
 
239
  if (! $product->getData ( 'sync_with_dhl_mein_paket' ) && $configurableProduct == null) {
240
- /* @var $productDeletion DOMNode */
241
- $productDeletion = $this->getDocument ()->createElement ( 'productDeletion' );
242
- $this->getDeletions ()->appendChild ( $productDeletion );
243
- $pId = $this->getDocument ()->createElement ( 'common:productId', $product->getId () );
244
- // TODO:
245
- // $productDeletion->appendChild ( $pId );
246
  return false;
247
  }
248
 
69
 
70
  /**
71
  *
72
+ * @param Mage_Catalog_Model_Product $product
73
  * @return DOMNode|Ambigous <boolean, DOMElement>
74
  */
75
  public function addProductDescription(Mage_Catalog_Model_Product $product) {
137
  /* @var $productDeletion DOMNode */
138
  $productDeletionNode = $this->getDocument ()->createElement ( 'productDeletion' );
139
  $this->getDeletions ()->appendChild ( $productDeletionNode );
140
+ $productIdNode = $this->getDocument ()->createElement ( 'common:productId', $product->getId () );
141
+ $productDeletionNode->appendChild ( $productIdNode );
142
  }
143
  }
144
  public function addCategory(Mage_Catalog_Model_Product $product) {
238
  }
239
 
240
  if (! $product->getData ( 'sync_with_dhl_mein_paket' ) && $configurableProduct == null) {
241
+ $this->removeProduct($product);
 
 
 
 
 
242
  return false;
243
  }
244
 
app/code/community/Dhl/MeinPaket/Model/Xml/Response/Partial/DataResponse/Confirmation.php CHANGED
@@ -12,8 +12,6 @@ class Dhl_MeinPaket_Model_Xml_Response_Partial_DataResponse_Confirmation extends
12
  parent::__construct ( $domElement );
13
  assert ( $domElement->localName == 'confirmation' );
14
 
15
- //TODO: Not implemented
16
-
17
  foreach ( $domElement->childNodes as $childNode ) {
18
  switch ($childNode->localName) {
19
  case 'customerId' :
12
  parent::__construct ( $domElement );
13
  assert ( $domElement->localName == 'confirmation' );
14
 
 
 
15
  foreach ( $domElement->childNodes as $childNode ) {
16
  switch ($childNode->localName) {
17
  case 'customerId' :
app/code/community/Dhl/MeinPaket/Model/Xml/Response/Partial/DataResponse/MerchantData.php CHANGED
@@ -12,8 +12,6 @@ class Dhl_MeinPaket_Model_Xml_Response_Partial_DataResponse_MerchantData extends
12
  parent::__construct ( $domElement );
13
  assert ( $domElement->localName == 'merchantData' );
14
 
15
- //TODO: Not implemented
16
-
17
  foreach ( $domElement->childNodes as $childNode ) {
18
  switch ($childNode->localName) {
19
  case 'customerId' :
12
  parent::__construct ( $domElement );
13
  assert ( $domElement->localName == 'merchantData' );
14
 
 
 
15
  foreach ( $domElement->childNodes as $childNode ) {
16
  switch ($childNode->localName) {
17
  case 'customerId' :
app/code/community/Dhl/MeinPaket/Model/Xml/Response/Partial/DataResponse/QuotaData.php CHANGED
@@ -12,7 +12,6 @@ class Dhl_MeinPaket_Model_Xml_Response_Partial_DataResponse_QuotaData extends Dh
12
  parent::__construct ( $domElement );
13
  assert ( $domElement->localName == 'quotaData' );
14
 
15
- //TODO: Not implemented
16
  foreach ( $domElement->childNodes as $childNode ) {
17
  switch ($childNode->localName) {
18
  case 'customerId' :
12
  parent::__construct ( $domElement );
13
  assert ( $domElement->localName == 'quotaData' );
14
 
 
15
  foreach ( $domElement->childNodes as $childNode ) {
16
  switch ($childNode->localName) {
17
  case 'customerId' :
app/code/community/Dhl/MeinPaket/Model/Xml/XmlRequestFactory.php CHANGED
@@ -47,7 +47,6 @@ class Dhl_MeinPaket_Model_Xml_XmlRequestFactory extends Varien_Object {
47
  return Mage::getModel ( 'meinpaket/xml_requets_uploadRequest' );
48
  }
49
 
50
-
51
  /**
52
  * Crates XML for a variant group upload.
53
  *
@@ -95,7 +94,6 @@ class Dhl_MeinPaket_Model_Xml_XmlRequestFactory extends Varien_Object {
95
  return $xml;
96
  }
97
 
98
-
99
  /**
100
  * Creates the XML for a product upload request.
101
  *
@@ -398,8 +396,7 @@ class Dhl_MeinPaket_Model_Xml_XmlRequestFactory extends Varien_Object {
398
  $comment = $creditMemo->getCommentsCollection ()->getFirstItem ()->getComment ();
399
  }
400
 
401
- $return->setDocument ( $document )->setOrderId ( $creditMemo->getOrder ()->getDhlMeinPaketOrderId () )->setReturnId ( $creditMemo->getId () )->setComment ( $comment )->setReimbursedDeliveryCosts ( $creditMemo->getShippingAmount () )->setReduction ( $creditMemo->getAdjustment () * (- 1) )-> // @todo check if this is correct
402
- build ();
403
 
404
  foreach ( $creditMemo->getItemsCollection () as $item ) {
405
  $returnEntry = Mage::getModel ( 'meinpaket/Xml_Partial_ReturnEntry' );
47
  return Mage::getModel ( 'meinpaket/xml_requets_uploadRequest' );
48
  }
49
 
 
50
  /**
51
  * Crates XML for a variant group upload.
52
  *
94
  return $xml;
95
  }
96
 
 
97
  /**
98
  * Creates the XML for a product upload request.
99
  *
396
  $comment = $creditMemo->getCommentsCollection ()->getFirstItem ()->getComment ();
397
  }
398
 
399
+ $return->setDocument ( $document )->setOrderId ( $creditMemo->getOrder ()->getDhlMeinPaketOrderId () )->setReturnId ( $creditMemo->getId () )->setComment ( $comment )->setReimbursedDeliveryCosts ( $creditMemo->getShippingAmount () )->setReduction ( $creditMemo->getAdjustment () * (- 1) )->build ();
 
400
 
401
  foreach ( $creditMemo->getItemsCollection () as $item ) {
402
  $returnEntry = Mage::getModel ( 'meinpaket/Xml_Partial_ReturnEntry' );
app/code/community/Dhl/MeinPaket/controllers/Adminhtml/CategoryImportController.php CHANGED
@@ -17,7 +17,7 @@ class Dhl_MeinPaket_Adminhtml_CategoryImportController extends Mage_Adminhtml_Co
17
  * @return Dhl_MeinPaket_Adminhtml_CategoryImportController
18
  */
19
  protected function _initAction() {
20
- $this->loadLayout ()->_setActiveMenu ( 'meinpaket' ); // TODO how to make this via configuration?
21
  $this->_title ( $this->__ ( 'MeinPaket.de' ) )->_title ( $this->__ ( 'Category Import' ) );
22
  return $this;
23
  }
17
  * @return Dhl_MeinPaket_Adminhtml_CategoryImportController
18
  */
19
  protected function _initAction() {
20
+ $this->loadLayout ()->_setActiveMenu ( 'meinpaket' );
21
  $this->_title ( $this->__ ( 'MeinPaket.de' ) )->_title ( $this->__ ( 'Category Import' ) );
22
  return $this;
23
  }
app/code/community/Dhl/MeinPaket/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Dhl_MeinPaket>
5
- <version>2.0.9</version>
6
  </Dhl_MeinPaket>
7
  </modules>
8
  <admin>
2
  <config>
3
  <modules>
4
  <Dhl_MeinPaket>
5
+ <version>2.0.10</version>
6
  </Dhl_MeinPaket>
7
  </modules>
8
  <admin>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DHL_MeinPaket2</name>
4
- <version>2.0.9</version>
5
  <stability>stable</stability>
6
  <license>--</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>The Extension connects your magento shop with DHL MeinPaket.</description>
11
  <notes>--</notes>
12
  <authors><author><name>DHL Vertriebs GmbH</name><user>--</user><email>support@meinpaket.de</email></author></authors>
13
- <date>2014-11-12</date>
14
- <time>11:19:44</time>
15
- <contents><target name="magecommunity"><dir><dir name="Dhl"><dir name="MeinPaket"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Async"><file name="Grid.php" hash="4b82203f22583909829d6e8ac0db3b48"/></dir><file name="Async.php" hash="ef4f9e97c51e89e0500c1716f78f137d"/><dir name="Backlog"><dir name="Product"><file name="Grid.php" hash="1e174969ba66fee012f821537c3ebcfe"/></dir><file name="Product.php" hash="d0fa6e92c7a2349cb2ef578eb1dad702"/></dir><dir name="BestPrice"><file name="Grid.php" hash="adb8a1085e086f3d1dc57a489619ff5d"/></dir><file name="BestPrice.php" hash="b4f9912d464830a48fd5154c45b0c040"/><dir name="Catalog"><dir name="Product"><dir name="Matching"><file name="Result.php" hash="135446bcf25b60bb017e29b15881daa8"/><file name="Tab.php" hash="6f27e6fb28ee96e9202361e7d6c43768"/></dir></dir></dir><dir name="CategoryImport"><file name="Import.php" hash="ff3d5bd990c083a3b301176c24362913"/><file name="Index.php" hash="4c5a08ddbb0690b1cfa0761d946d0438"/></dir><file name="LeftMenu.php" hash="841b0491f1c19c07448e112badba8931"/><dir name="Log"><file name="Grid.php" hash="bf9c49ad316749ef39f580a24dae0de0"/></dir><file name="Log.php" hash="8b8483b85d3fde61e1311735e259ff83"/><dir name="OrderImport"><file name="Index.php" hash="93fdf0e300f87fdf85dc41e6b881bb10"/></dir><dir name="ProductExport"><file name="Export.php" hash="e12ef6d9b52a9607820fbcd5e58e76ca"/><file name="Index.php" hash="7495cd0332c5ca82060ceba2e6113c87"/><file name="List.php" hash="4a32ced740d35ebb7a10d0fffa782223"/></dir><file name="Steps.php" hash="93a8cac6f58eba2d32b116b725099f1f"/></dir><dir name="Checkout"><file name="Abort.php" hash="0d26a20ad1bc999d4b77ac8a7fbb9d2e"/><file name="Error.php" hash="43852fdbf5efc3764258fb1984a15d2b"/><file name="Success.php" hash="0a5519df124dd0894634b59e41d6a4ef"/></dir></dir><dir name="Helper"><file name="Attribute.php" hash="36cf44cf54204426e3f50864381a6443"/><file name="Backlog.php" hash="51c08b4ef137799d0e7dbf900543ab3e"/><file name="Cron.php" hash="f9fadece6ceb35c90568bd68b5ee0ccd"/><file name="Data.php" hash="17b2ff0eaf887b371ab40b0bbb2ca439"/><file name="Order.php" hash="4d14caabf6a94f15a94ce570dfba82da"/><file name="Product.php" hash="42495296ac652656def68db51a966813"/><file name="Shipment.php" hash="9301fede718b839f2c0c2677e2fb3bf9"/></dir><dir name="Model"><file name="Async.php" hash="0a28e792075d101a619e49265f843fe1"/><dir name="Attribute"><file name="Mapping.php" hash="7d8a8d9e18f7c6019ae71a7032061ab7"/></dir><dir name="Backlog"><file name="Product.php" hash="a2d547dcfba28c80819155a73ff5cff4"/></dir><file name="BestPrice.php" hash="b75de965445df6125e115d0d89add52c"/><dir name="Carrier"><file name="Meinpaket.php" hash="ef4c1115bf11a3584896743e7dd8a8bf"/></dir><file name="Category.php" hash="6c809b62cf4688ac62b39c0aae224422"/><dir name="Client"><file name="BadHttpReturnCodeException.php" hash="9377dbcc046ab1465c70caa4ef3a5706"/><file name="HttpException.php" hash="e525b48fb4f7be4dac59058e64947319"/><file name="HttpTimeoutException.php" hash="4835db459423c36607cabfc0b63245ad"/><file name="XmlOverHttp.php" hash="8f1f26f8a39a2a87fc00f1e1b4e23413"/></dir><file name="Cron.php" hash="ccf8a1dd23a035caaf40bc4e98f059ac"/><dir name="Entity"><dir name="Attribute"><dir name="Frontend"><file name="LabelTranslation.php" hash="e46ff6aca592cbb643a64ecfe1042422"/></dir><dir name="Source"><file name="Carrier.php" hash="65770c58617deb2dce75d8e83e055d79"/><file name="MeinPaketCategory.php" hash="17f784c2d79bfd847dd6472dca661334"/><file name="ProductAttribute.php" hash="aba17fe2a9acb85d0483926c3d5ba9a8"/><file name="ProductSyncMode.php" hash="39db6c156e9100ab59384756ec9ac2c5"/><file name="Taxclass.php" hash="e54c0dcb118a1308d572a8c0e53b5853"/><file name="Taxrate.php" hash="a45e4f6a4bf33eb5b39a0cdc4d847868"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="e1b7bf3f0a4d3743ee42cbf4ce379ddb"/><file name="MissingDataException.php" hash="351f85425c276f434551caf3eafdc7db"/></dir><file name="Log.php" hash="5b2bb2ee0b779db8ddf8c90855012d13"/><dir name="Mysql4"><dir name="Async"><file name="Collection.php" hash="a6583bdf6b8276a95af5b81f5ff2dd8e"/></dir><file name="Async.php" hash="7182fca1fbb6bcf9ada0f9c53c2fc45c"/><dir name="Backlog"><dir name="Product"><file name="Collection.php" hash="2711f602d90e22ea72b773003cf38ef4"/></dir><file name="Product.php" hash="d46057bf2e8b93b32b23653222599316"/></dir><dir name="BestPrice"><file name="Collection.php" hash="fedcad4595269a646ff1c452bed87b00"/></dir><file name="BestPrice.php" hash="79399000e407b6a22489d0dbfedd6f34"/><dir name="Category"><file name="Collection.php" hash="d68d50e74632b2c664d3013dc936470a"/></dir><file name="Category.php" hash="e240b146ddfafa4aed1922f5f51dc877"/><dir name="Log"><file name="Collection.php" hash="7d42d5b7a3075b823a88b6e74c473e35"/></dir><file name="Log.php" hash="7d153ffb060adf03d92c178c40cf269f"/></dir><file name="Observer.php" hash="da29297864f61edc4a354e1f92b703b5"/><dir name="Payment"><dir name="Method"><file name="Meinpaket.php" hash="4d20cbcb9a017abcd068fc9099827525"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="b56c5cdf5ff7b19d7454c1c91d8eacdb"/></dir></dir></dir><dir name="Service"><file name="Abstract.php" hash="4776e034ff665b32dee0d74e3f0a25f5"/><file name="Async.php" hash="875339ec7c1161981dc880ae7b4fe79c"/><dir name="MarketplaceCategoryImport"><file name="ImportService.php" hash="c1fdf1ca621edfce001e04964d1d031d"/><file name="Result.php" hash="b2124bf2744a2c899cf4dd57b135937f"/></dir><dir name="Order"><dir name="CancellationService"><file name="Result.php" hash="13336bcccbd384487a7b36fb731825b2"/></dir><file name="CancellationService.php" hash="083d6cef1b1ba32f714ca1603575cba8"/><file name="ImportService.php" hash="b05477219c7ef58b133aeab1e706c74f"/><dir name="RefundExportService"><file name="Result.php" hash="799ca2f107c97fad3c9b1ff9e3c89c30"/></dir><file name="RefundExportService.php" hash="6d9039f6bac8c8b6237118082e0b88c5"/><dir name="ShipmentExportService"><file name="Result.php" hash="c11445ba185f598c338a55515c67b07b"/></dir><file name="ShipmentExportService.php" hash="017ec3ccd4776d7a09005f4ead97bb6c"/></dir><dir name="Product"><dir name="Export"><dir name="Exception"><file name="InvalidEan.php" hash="1a2a297dff79e2b563c135b5b5999ca9"/></dir></dir><file name="Export.php" hash="18dd5ba4201e28365171bd079e4728b9"/></dir><dir name="ProductData"><file name="RequestService.php" hash="c126a7ec932871340cf93b25bfab2912"/></dir><dir name="Result"><file name="Abstract.php" hash="5f828d781f44b20ff5db9abef0a2c9f8"/><file name="Upload.php" hash="aab1a35b3bdb3d1a02ae9f92250f8c90"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="e6cd11540ebf6bc87f4d949d81285703"/></dir></dir><file name="MemoryLimiter.php" hash="522bdd80d5e76e7c6fe7ae21a1c36436"/></dir><dir name="Validation"><file name="ValidationInterface.php" hash="ad30a76f3bf48ea8024ed0aa4d914608"/><dir name="Validator"><file name="CDATAContent.php" hash="5b87759291e6212352789cab04683c97"/><file name="Ean.php" hash="1bf0b2816803b34967064996b8cabd5c"/><file name="IntGreaterZero.php" hash="cba7eb6b0e55fbb95adb0adb170314f1"/><file name="NonEmptyString.php" hash="84d6f55c1cb4a7204ca0f9554dcb9444"/><file name="StringMaxLength.php" hash="f385739383b78a635d7aea934a56efe6"/><file name="Url.php" hash="77e55a2b1a49c16fb66a74e47314afad"/></dir><file name="ValidatorChain.php" hash="9abf53fa93ceb7580eee33dc0390048f"/><file name="ValidatorFactory.php" hash="efd64d609fbad93b33649973902c0a03"/><file name="ValidatorInterface.php" hash="952fd149292edfca02202dc05a5b9eca"/></dir><dir name="Xml"><file name="AbstractXmlPartial.php" hash="e1e70183337419918108ce0ce271da0e"/><file name="AbstractXmlRequest.php" hash="bcd0e4b3c1f0c5b772c3e9a30bc83191"/><file name="InvalidXmlException.php" hash="0ef6e07ea095b14f48f41cd2398e011c"/><dir name="Request"><file name="AsynchronousStatusRequest.php" hash="fd2a31247b41e490293c1cf23fdd0d55"/><file name="DataRequest.php" hash="2e4060aff376b619f6a1adce526dcf19"/><file name="DownloadRequest.php" hash="00c6d26edbe92e16b1a16f958a6ae45d"/><file name="NotificationRequest.php" hash="fa9d0839e6bd608bcc0b0fe957517e91"/><file name="QueryRequest.php" hash="a67a0d8ba1aafa76e14b1218f38066b2"/><file name="SubmitCartRequest.php" hash="0ec103744d136310e4ab8ec2ba7c65ee"/><file name="UploadRequest.php" hash="12ca5a724e26414caf4d0ce2f1822446"/></dir><dir name="Response"><file name="Abstract.php" hash="1645ed875ccd91dc6c7dc72aa0dbc7ef"/><file name="AsynchronousStatusResponse.php" hash="db49a17b1e9553626394a9d45841e3a0"/><file name="DataResponse.php" hash="2b7a4fb49939925e55c2f5d6a1a2bc09"/><file name="DownloadResponse.php" hash="48f724a3ccb54be8e360c49286d9c60f"/><file name="NotificationResponse.php" hash="b36f19e5eb85bcb182ca4ee1b3d2688d"/><dir name="Partial"><file name="Address.php" hash="acf4e17a370cdea81258b738d325988b"/><file name="Attribute.php" hash="6ea2780f911a9693044d24712fe75087"/><file name="Category.php" hash="02d29f2659be87cda96e10e1a125f4c6"/><file name="CategoryId.php" hash="d5218f01be4974e21782b3866a1dcdfb"/><dir name="DataResponse"><file name="BestPrice.php" hash="22d91bab5e172b2a388560af7bd24799"/><file name="Confirmation.php" hash="f984cf7c306f645f9a5900fb09be7fa4"/><file name="MerchantData.php" hash="104595efc0d99aaa78f13700526d8ef6"/><file name="ProductData.php" hash="ecd56a23225216a26688e37df13844e1"/><file name="QuotaData.php" hash="b902885c85421d5295c8c85da73958bb"/></dir><dir name="NotificationResponse"><file name="Confirmation.php" hash="288f9fa00b63d24934d473a9fddf0441"/><file name="Consignment.php" hash="2beda1a5785fc957edd3bdbf76181e8a"/><file name="Credit.php" hash="3d9541e0ce1a3afd5c8409b092929a8b"/><file name="Return.php" hash="6e3e83db65ac3d79d36996418e8eebb6"/></dir><dir name="Order"><file name="ContactData.php" hash="4669122c22318099d01c90423a48115b"/><file name="Entry.php" hash="e4a1ccc9b49a6312668bf05d450e2723"/></dir><file name="Order.php" hash="53c032abb427608fc729a2e9796df94c"/><file name="ProductId.php" hash="014f284435b3ea6469f2b0f445ee5495"/><file name="VariantConfiguration.php" hash="5686dac51ea5553336d6bfd983c05265"/></dir><file name="QueryResponse.php" hash="33b4e739ee7992602c345e8a0eb12255"/><file name="UploadResponse.php" hash="cb3c1aa7d8e1ef39596c2c0b99d716cb"/></dir><file name="XmlBuildException.php" hash="ece8e4ad0e6f139768cd2b42bfd81c88"/><file name="XmlRequestFactory.php" hash="a76bf5473ab681166bf3933d7780b83b"/><file name="XmlResponseParser.php" hash="1835f430af6dddd176f7ab429195e70c"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="AsyncController.php" hash="01c2d45ca561e8c73e0589da11bb1104"/><dir name="Backlog"><file name="ProductController.php" hash="bb1f8850442ff1950549b21a2dcf74c5"/></dir><file name="BestPriceController.php" hash="a0eafd1b7ec08351bf3c02bbf66509c6"/><file name="CategoryImportController.php" hash="979b3ec551dd2f337f5d0ee5ec4db86b"/><file name="LogController.php" hash="05bfc6f1d349f4545309040d5a0f34d6"/><file name="MatchingController.php" hash="f568a8a7d331264944d1586aa567e6ee"/><file name="OrderImportController.php" hash="5ccdb9bd5a81fda7bba4d9652d76e8ed"/><file name="ProductExportController.php" hash="43f09694db508d52a3065eb305fd23e0"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="22b7908e21fc75eaa58bbb8c2d353c6e"/><file name="config.xml" hash="700e325f678d688764ff37717962c5d5"/><file name="system.xml" hash="2d3d0f7bf87975c7090c6bd018b862c6"/></dir><dir name="sql"><dir name="meinpaket_setup"><file name="mysql4-install-1.0.0.php" hash="cf38e941731f2ccff85616aad45da252"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="98bf889d49c11c90ab53242be6fadc0d"/><file name="mysql4-upgrade-1.1.0-2.0.0.php" hash="ff60a264f8dc415dba8cee70832df69b"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Dhl_MeinPaket.xml" hash="cc761a0416eaf0808b4ed169e48da755"/></dir></dir></target><target name="mage"><dir><dir name="shell"><file name="dhlmeinpaket-category-import.php" hash="e1f1154494d78b9abba765e6fbea32a4"/><file name="dhlmeinpaket-order-import.php" hash="bc77461787366c328308cb2bf54778a1"/><file name="dhlmeinpaket-product-export.php" hash="c2d93a0d578d9f09deb0d44f7f3cd535"/><file name="dhlmeinpaket-request-bestprice.php" hash="5b7ff1e8762d1cf6146f1487ea8fe6f4"/></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/></dir><dir name="template"><dir name="dhl"><dir name="meinpaket"><dir name="checkout"><file name="abort.phtml" hash="b5c16625c1e2dcadf215ebe151dc81a2"/><file name="cartbutton.phtml" hash="a010510f79971d3317cd85e97ce8cc50"/><file name="error.phtml" hash="c831e14959f51118bd71fc25ca88ac53"/><file name="sidebarbutton.phtml" hash="a34f589280b8811163e5b1d1a96c03a4"/><file name="success.phtml" hash="c831e14959f51118bd71fc25ca88ac53"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="5b2c84737d953d5456efbd58b6f618fc"/></dir><dir name="template"><dir name="meinpaket"><dir><dir name="Attributemapping"><dir name="edit"><file name="attributes.phtml" hash="ba984f55c900ff0134236b8b89b9a2d1"/><file name="mapping.phtml" hash="7fd78e80c370cc8452b3e056949a4346"/><file name="valuemapping.phtml" hash="2f46ca0709dd318e1363b24689d4e9c4"/></dir><file name="edit.phtml" hash="d35789adf1fd828ac04cf26258d06fb0"/><file name="editform.phtml" hash="e689674c059bef3d5011e8b63b5d51f2"/><file name="index.phtml" hash="ac7f238e2ab37816647f11808c8a2fa4"/></dir><dir name="CategoryImport"><file name="import.phtml" hash="b5c85d896808a7595b530661c19a38fd"/><file name="index.phtml" hash="d315bbae053b89300c8b04a1adb661cb"/></dir><dir name="OrderImport"><file name="import.phtml" hash="edc25fa4eb5fdcc2b3e49cfee18590c1"/><file name="index.phtml" hash="f6bc797fc058db8199f03f7c2733cb57"/></dir><dir name="ProductExport"><file name="empty.phtml" hash="2b62d4c5dcd9d6784a7ba55aa99cfa0e"/><file name="export.phtml" hash="698442f3c05acaab870331b0177c3e16"/><file name="index.phtml" hash="0cb13ff868cba8f23aeb7bf51b7f8733"/><file name="list.phtml" hash="df123aeda1752fd313b6c4024f5ec0b2"/></dir><dir name="catalog"><dir name="product"><dir name="matching"><file name="result.phtml" hash="fcc1b10a90944f5657e7c39bda175d44"/><file name="tab.phtml" hash="bfa9945e79b7ebbf841b95ef99c1fc5d"/></dir></dir></dir><dir name="category"><dir name="import"><file name="import.phtml" hash="b5c85d896808a7595b530661c19a38fd"/><file name="index.phtml" hash="d315bbae053b89300c8b04a1adb661cb"/></dir></dir><dir name="category_import"><file name="import.phtml" hash="b5c85d896808a7595b530661c19a38fd"/><file name="index.phtml" hash="d315bbae053b89300c8b04a1adb661cb"/></dir></dir><file name="leftmenu.phtml" hash="4afb8d200ed8ceddf2f682c5911c565c"/><file name="productexport.phtml" hash="1c7ec782dcd405fd6a5a360f23bf0913"/><file name="steps.phtml" hash="8fcd5c06f70a00c18e325cf9b94693e6"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir><dir name="de_DE"><file name="Dhl_MeinPaket.csv" hash="9d562e495b66d92a1a6f3600a72b23e5"/></dir></dir></dir></target><target name="mageskin"><dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="meinpaket"><dir name="images"><file name="dhl_checkout_button.png" hash="cd33e91292c35a7056736813c43afe90"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="meinpaket"><file name="attributemapping.js" hash="1a4bde24fd6e7347372a3cd77de4389c"/><file name="common.css" hash="90ee229c9b60ea9450b05cec7769bd8b"/><file name="common.js" hash="68b329da9893e34099c7d8ad5cb9c940"/><dir name="images"><file name="1.png" hash="42488db618cc9b25226dc43fe8f24eec"/><file name="2.png" hash="0ca63d439b4a0e6f1578c155ed893fe7"/><file name="3.png" hash="813d4d0fd2051695785ac976b751143c"/><file name="Thumbs.db" hash="a40a4912cd54321346eb8113cd658277"/><file name="dhl_logo_kl.gif" hash="a8ca13c020d033cc487e7c5e7b30807d"/><file name="loader.gif" hash="466e0414bdf21d89645d169669b827ce"/><file name="meinpaket_logo.png" hash="0f7c7ac45b8606ea076dc1d06ea5e057"/><file name="shadowtopbg.png" hash="d8b88f456ebc93a6d11658f5ab14d590"/></dir><file name="module.css" hash="c0ad44ad9719ae396f9becbd183f5033"/><file name="module.js" hash="0ace146549dd0befdd83d23a3149f140"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>DHL_MeinPaket2</name>
4
+ <version>2.0.10</version>
5
  <stability>stable</stability>
6
  <license>--</license>
7
  <channel>community</channel>
10
  <description>The Extension connects your magento shop with DHL MeinPaket.</description>
11
  <notes>--</notes>
12
  <authors><author><name>DHL Vertriebs GmbH</name><user>--</user><email>support@meinpaket.de</email></author></authors>
13
+ <date>2014-11-13</date>
14
+ <time>12:30:36</time>
15
+ <contents><target name="magecommunity"><dir><dir name="Dhl"><dir name="MeinPaket"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Async"><file name="Grid.php" hash="4b82203f22583909829d6e8ac0db3b48"/></dir><file name="Async.php" hash="ef4f9e97c51e89e0500c1716f78f137d"/><dir name="Backlog"><dir name="Product"><file name="Grid.php" hash="1e174969ba66fee012f821537c3ebcfe"/></dir><file name="Product.php" hash="d0fa6e92c7a2349cb2ef578eb1dad702"/></dir><dir name="BestPrice"><file name="Grid.php" hash="adb8a1085e086f3d1dc57a489619ff5d"/></dir><file name="BestPrice.php" hash="b4f9912d464830a48fd5154c45b0c040"/><dir name="Catalog"><dir name="Product"><dir name="Matching"><file name="Result.php" hash="135446bcf25b60bb017e29b15881daa8"/><file name="Tab.php" hash="6f27e6fb28ee96e9202361e7d6c43768"/></dir></dir></dir><dir name="CategoryImport"><file name="Import.php" hash="ff3d5bd990c083a3b301176c24362913"/><file name="Index.php" hash="4c5a08ddbb0690b1cfa0761d946d0438"/></dir><file name="LeftMenu.php" hash="841b0491f1c19c07448e112badba8931"/><dir name="Log"><file name="Grid.php" hash="bf9c49ad316749ef39f580a24dae0de0"/></dir><file name="Log.php" hash="8b8483b85d3fde61e1311735e259ff83"/><dir name="OrderImport"><file name="Index.php" hash="93fdf0e300f87fdf85dc41e6b881bb10"/></dir><dir name="ProductExport"><file name="Export.php" hash="e12ef6d9b52a9607820fbcd5e58e76ca"/><file name="Index.php" hash="7495cd0332c5ca82060ceba2e6113c87"/><file name="List.php" hash="4a32ced740d35ebb7a10d0fffa782223"/></dir><file name="Steps.php" hash="93a8cac6f58eba2d32b116b725099f1f"/></dir><dir name="Checkout"><file name="Abort.php" hash="0d26a20ad1bc999d4b77ac8a7fbb9d2e"/><file name="Error.php" hash="43852fdbf5efc3764258fb1984a15d2b"/><file name="Success.php" hash="0a5519df124dd0894634b59e41d6a4ef"/></dir></dir><dir name="Helper"><file name="Attribute.php" hash="36cf44cf54204426e3f50864381a6443"/><file name="Backlog.php" hash="51c08b4ef137799d0e7dbf900543ab3e"/><file name="Cron.php" hash="f9fadece6ceb35c90568bd68b5ee0ccd"/><file name="Data.php" hash="17b2ff0eaf887b371ab40b0bbb2ca439"/><file name="Order.php" hash="4d14caabf6a94f15a94ce570dfba82da"/><file name="Product.php" hash="42495296ac652656def68db51a966813"/><file name="Shipment.php" hash="9301fede718b839f2c0c2677e2fb3bf9"/></dir><dir name="Model"><file name="Async.php" hash="0a28e792075d101a619e49265f843fe1"/><dir name="Attribute"><file name="Mapping.php" hash="7d8a8d9e18f7c6019ae71a7032061ab7"/></dir><dir name="Backlog"><file name="Product.php" hash="a2d547dcfba28c80819155a73ff5cff4"/></dir><file name="BestPrice.php" hash="b75de965445df6125e115d0d89add52c"/><dir name="Carrier"><file name="Meinpaket.php" hash="ef4c1115bf11a3584896743e7dd8a8bf"/></dir><file name="Category.php" hash="6c809b62cf4688ac62b39c0aae224422"/><dir name="Client"><file name="BadHttpReturnCodeException.php" hash="9377dbcc046ab1465c70caa4ef3a5706"/><file name="HttpException.php" hash="e525b48fb4f7be4dac59058e64947319"/><file name="HttpTimeoutException.php" hash="4835db459423c36607cabfc0b63245ad"/><file name="XmlOverHttp.php" hash="8f1f26f8a39a2a87fc00f1e1b4e23413"/></dir><file name="Cron.php" hash="ccf8a1dd23a035caaf40bc4e98f059ac"/><dir name="Entity"><dir name="Attribute"><dir name="Frontend"><file name="LabelTranslation.php" hash="e46ff6aca592cbb643a64ecfe1042422"/></dir><dir name="Source"><file name="Carrier.php" hash="65770c58617deb2dce75d8e83e055d79"/><file name="MeinPaketCategory.php" hash="17f784c2d79bfd847dd6472dca661334"/><file name="ProductAttribute.php" hash="aba17fe2a9acb85d0483926c3d5ba9a8"/><file name="ProductSyncMode.php" hash="39db6c156e9100ab59384756ec9ac2c5"/><file name="Taxclass.php" hash="e54c0dcb118a1308d572a8c0e53b5853"/><file name="Taxrate.php" hash="a45e4f6a4bf33eb5b39a0cdc4d847868"/></dir></dir></dir><dir name="Exception"><file name="InvalidDataException.php" hash="e1b7bf3f0a4d3743ee42cbf4ce379ddb"/><file name="MissingDataException.php" hash="351f85425c276f434551caf3eafdc7db"/></dir><file name="Log.php" hash="5b2bb2ee0b779db8ddf8c90855012d13"/><dir name="Mysql4"><dir name="Async"><file name="Collection.php" hash="a6583bdf6b8276a95af5b81f5ff2dd8e"/></dir><file name="Async.php" hash="7182fca1fbb6bcf9ada0f9c53c2fc45c"/><dir name="Backlog"><dir name="Product"><file name="Collection.php" hash="2711f602d90e22ea72b773003cf38ef4"/></dir><file name="Product.php" hash="d46057bf2e8b93b32b23653222599316"/></dir><dir name="BestPrice"><file name="Collection.php" hash="fedcad4595269a646ff1c452bed87b00"/></dir><file name="BestPrice.php" hash="79399000e407b6a22489d0dbfedd6f34"/><dir name="Category"><file name="Collection.php" hash="d68d50e74632b2c664d3013dc936470a"/></dir><file name="Category.php" hash="e240b146ddfafa4aed1922f5f51dc877"/><dir name="Log"><file name="Collection.php" hash="7d42d5b7a3075b823a88b6e74c473e35"/></dir><file name="Log.php" hash="7d153ffb060adf03d92c178c40cf269f"/></dir><file name="Observer.php" hash="bea9ef0f0b11394bb09d2bd1f686f4e8"/><dir name="Payment"><dir name="Method"><file name="Meinpaket.php" hash="4d20cbcb9a017abcd068fc9099827525"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="b56c5cdf5ff7b19d7454c1c91d8eacdb"/></dir></dir></dir><dir name="Service"><file name="Abstract.php" hash="4776e034ff665b32dee0d74e3f0a25f5"/><file name="Async.php" hash="875339ec7c1161981dc880ae7b4fe79c"/><dir name="MarketplaceCategoryImport"><file name="ImportService.php" hash="c1fdf1ca621edfce001e04964d1d031d"/><file name="Result.php" hash="b2124bf2744a2c899cf4dd57b135937f"/></dir><dir name="Order"><dir name="CancellationService"><file name="Result.php" hash="13336bcccbd384487a7b36fb731825b2"/></dir><file name="CancellationService.php" hash="083d6cef1b1ba32f714ca1603575cba8"/><file name="ImportService.php" hash="b05477219c7ef58b133aeab1e706c74f"/><dir name="RefundExportService"><file name="Result.php" hash="799ca2f107c97fad3c9b1ff9e3c89c30"/></dir><file name="RefundExportService.php" hash="6d9039f6bac8c8b6237118082e0b88c5"/><dir name="ShipmentExportService"><file name="Result.php" hash="c11445ba185f598c338a55515c67b07b"/></dir><file name="ShipmentExportService.php" hash="017ec3ccd4776d7a09005f4ead97bb6c"/></dir><dir name="Product"><dir name="Export"><dir name="Exception"><file name="InvalidEan.php" hash="1a2a297dff79e2b563c135b5b5999ca9"/></dir></dir><file name="Export.php" hash="83ec9147e672d6bcc836c98021b8fe6f"/></dir><dir name="ProductData"><file name="RequestService.php" hash="c126a7ec932871340cf93b25bfab2912"/></dir><dir name="Result"><file name="Abstract.php" hash="5f828d781f44b20ff5db9abef0a2c9f8"/><file name="Upload.php" hash="aab1a35b3bdb3d1a02ae9f92250f8c90"/></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="e6cd11540ebf6bc87f4d949d81285703"/></dir></dir><file name="MemoryLimiter.php" hash="522bdd80d5e76e7c6fe7ae21a1c36436"/></dir><dir name="Validation"><file name="ValidationInterface.php" hash="ad30a76f3bf48ea8024ed0aa4d914608"/><dir name="Validator"><file name="CDATAContent.php" hash="5b87759291e6212352789cab04683c97"/><file name="Ean.php" hash="1bf0b2816803b34967064996b8cabd5c"/><file name="IntGreaterZero.php" hash="cba7eb6b0e55fbb95adb0adb170314f1"/><file name="NonEmptyString.php" hash="84d6f55c1cb4a7204ca0f9554dcb9444"/><file name="StringMaxLength.php" hash="f385739383b78a635d7aea934a56efe6"/><file name="Url.php" hash="77e55a2b1a49c16fb66a74e47314afad"/></dir><file name="ValidatorChain.php" hash="9abf53fa93ceb7580eee33dc0390048f"/><file name="ValidatorFactory.php" hash="efd64d609fbad93b33649973902c0a03"/><file name="ValidatorInterface.php" hash="952fd149292edfca02202dc05a5b9eca"/></dir><dir name="Xml"><file name="AbstractXmlPartial.php" hash="26714a23984fd17d2aeeadccf87315f6"/><file name="AbstractXmlRequest.php" hash="bcd0e4b3c1f0c5b772c3e9a30bc83191"/><file name="InvalidXmlException.php" hash="0ef6e07ea095b14f48f41cd2398e011c"/><dir name="Request"><file name="AsynchronousStatusRequest.php" hash="fd2a31247b41e490293c1cf23fdd0d55"/><file name="DataRequest.php" hash="2e4060aff376b619f6a1adce526dcf19"/><file name="DownloadRequest.php" hash="00c6d26edbe92e16b1a16f958a6ae45d"/><file name="NotificationRequest.php" hash="fa9d0839e6bd608bcc0b0fe957517e91"/><file name="QueryRequest.php" hash="a67a0d8ba1aafa76e14b1218f38066b2"/><file name="SubmitCartRequest.php" hash="0ec103744d136310e4ab8ec2ba7c65ee"/><file name="UploadRequest.php" hash="8692efa0170ce9bd8d7a8ddc361cb9b4"/></dir><dir name="Response"><file name="Abstract.php" hash="1645ed875ccd91dc6c7dc72aa0dbc7ef"/><file name="AsynchronousStatusResponse.php" hash="db49a17b1e9553626394a9d45841e3a0"/><file name="DataResponse.php" hash="2b7a4fb49939925e55c2f5d6a1a2bc09"/><file name="DownloadResponse.php" hash="48f724a3ccb54be8e360c49286d9c60f"/><file name="NotificationResponse.php" hash="b36f19e5eb85bcb182ca4ee1b3d2688d"/><dir name="Partial"><file name="Address.php" hash="acf4e17a370cdea81258b738d325988b"/><file name="Attribute.php" hash="6ea2780f911a9693044d24712fe75087"/><file name="Category.php" hash="02d29f2659be87cda96e10e1a125f4c6"/><file name="CategoryId.php" hash="d5218f01be4974e21782b3866a1dcdfb"/><dir name="DataResponse"><file name="BestPrice.php" hash="22d91bab5e172b2a388560af7bd24799"/><file name="Confirmation.php" hash="93ea4d622a9f2cf616f6fa0be344a9b4"/><file name="MerchantData.php" hash="58967d0a3d4cd8621055b421335eb02e"/><file name="ProductData.php" hash="ecd56a23225216a26688e37df13844e1"/><file name="QuotaData.php" hash="76280d3c657ab0f922b38234b9cebee8"/></dir><dir name="NotificationResponse"><file name="Confirmation.php" hash="288f9fa00b63d24934d473a9fddf0441"/><file name="Consignment.php" hash="2beda1a5785fc957edd3bdbf76181e8a"/><file name="Credit.php" hash="3d9541e0ce1a3afd5c8409b092929a8b"/><file name="Return.php" hash="6e3e83db65ac3d79d36996418e8eebb6"/></dir><dir name="Order"><file name="ContactData.php" hash="4669122c22318099d01c90423a48115b"/><file name="Entry.php" hash="e4a1ccc9b49a6312668bf05d450e2723"/></dir><file name="Order.php" hash="53c032abb427608fc729a2e9796df94c"/><file name="ProductId.php" hash="014f284435b3ea6469f2b0f445ee5495"/><file name="VariantConfiguration.php" hash="5686dac51ea5553336d6bfd983c05265"/></dir><file name="QueryResponse.php" hash="33b4e739ee7992602c345e8a0eb12255"/><file name="UploadResponse.php" hash="cb3c1aa7d8e1ef39596c2c0b99d716cb"/></dir><file name="XmlBuildException.php" hash="ece8e4ad0e6f139768cd2b42bfd81c88"/><file name="XmlRequestFactory.php" hash="dc4405748853a5504294df5664fc9db8"/><file name="XmlResponseParser.php" hash="1835f430af6dddd176f7ab429195e70c"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="AsyncController.php" hash="01c2d45ca561e8c73e0589da11bb1104"/><dir name="Backlog"><file name="ProductController.php" hash="bb1f8850442ff1950549b21a2dcf74c5"/></dir><file name="BestPriceController.php" hash="a0eafd1b7ec08351bf3c02bbf66509c6"/><file name="CategoryImportController.php" hash="b5ceff8ed7b87db06edf5dc6db020979"/><file name="LogController.php" hash="05bfc6f1d349f4545309040d5a0f34d6"/><file name="MatchingController.php" hash="f568a8a7d331264944d1586aa567e6ee"/><file name="OrderImportController.php" hash="5ccdb9bd5a81fda7bba4d9652d76e8ed"/><file name="ProductExportController.php" hash="43f09694db508d52a3065eb305fd23e0"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="22b7908e21fc75eaa58bbb8c2d353c6e"/><file name="config.xml" hash="d1ee5ef1eb3ce2fb6aff34da5d829670"/><file name="system.xml" hash="2d3d0f7bf87975c7090c6bd018b862c6"/></dir><dir name="sql"><dir name="meinpaket_setup"><file name="mysql4-install-1.0.0.php" hash="cf38e941731f2ccff85616aad45da252"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="98bf889d49c11c90ab53242be6fadc0d"/><file name="mysql4-upgrade-1.1.0-2.0.0.php" hash="ff60a264f8dc415dba8cee70832df69b"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Dhl_MeinPaket.xml" hash="cc761a0416eaf0808b4ed169e48da755"/></dir></dir></target><target name="mage"><dir><dir name="shell"><file name="dhlmeinpaket-category-import.php" hash="e1f1154494d78b9abba765e6fbea32a4"/><file name="dhlmeinpaket-order-import.php" hash="bc77461787366c328308cb2bf54778a1"/><file name="dhlmeinpaket-product-export.php" hash="c2d93a0d578d9f09deb0d44f7f3cd535"/><file name="dhlmeinpaket-request-bestprice.php" hash="5b7ff1e8762d1cf6146f1487ea8fe6f4"/></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="3854556688b7e27a8e7eda0cdf2b6610"/></dir><dir name="template"><dir name="dhl"><dir name="meinpaket"><dir name="checkout"><file name="abort.phtml" hash="b5c16625c1e2dcadf215ebe151dc81a2"/><file name="cartbutton.phtml" hash="a010510f79971d3317cd85e97ce8cc50"/><file name="error.phtml" hash="c831e14959f51118bd71fc25ca88ac53"/><file name="sidebarbutton.phtml" hash="a34f589280b8811163e5b1d1a96c03a4"/><file name="success.phtml" hash="c831e14959f51118bd71fc25ca88ac53"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="meinpaket.xml" hash="5b2c84737d953d5456efbd58b6f618fc"/></dir><dir name="template"><dir name="meinpaket"><dir><dir name="Attributemapping"><dir name="edit"><file name="attributes.phtml" hash="ba984f55c900ff0134236b8b89b9a2d1"/><file name="mapping.phtml" hash="7fd78e80c370cc8452b3e056949a4346"/><file name="valuemapping.phtml" hash="2f46ca0709dd318e1363b24689d4e9c4"/></dir><file name="edit.phtml" hash="d35789adf1fd828ac04cf26258d06fb0"/><file name="editform.phtml" hash="e689674c059bef3d5011e8b63b5d51f2"/><file name="index.phtml" hash="ac7f238e2ab37816647f11808c8a2fa4"/></dir><dir name="CategoryImport"><file name="import.phtml" hash="b5c85d896808a7595b530661c19a38fd"/><file name="index.phtml" hash="d315bbae053b89300c8b04a1adb661cb"/></dir><dir name="OrderImport"><file name="import.phtml" hash="edc25fa4eb5fdcc2b3e49cfee18590c1"/><file name="index.phtml" hash="f6bc797fc058db8199f03f7c2733cb57"/></dir><dir name="ProductExport"><file name="empty.phtml" hash="2b62d4c5dcd9d6784a7ba55aa99cfa0e"/><file name="export.phtml" hash="698442f3c05acaab870331b0177c3e16"/><file name="index.phtml" hash="0cb13ff868cba8f23aeb7bf51b7f8733"/><file name="list.phtml" hash="df123aeda1752fd313b6c4024f5ec0b2"/></dir><dir name="catalog"><dir name="product"><dir name="matching"><file name="result.phtml" hash="fcc1b10a90944f5657e7c39bda175d44"/><file name="tab.phtml" hash="bfa9945e79b7ebbf841b95ef99c1fc5d"/></dir></dir></dir><dir name="category"><dir name="import"><file name="import.phtml" hash="b5c85d896808a7595b530661c19a38fd"/><file name="index.phtml" hash="d315bbae053b89300c8b04a1adb661cb"/></dir></dir><dir name="category_import"><file name="import.phtml" hash="b5c85d896808a7595b530661c19a38fd"/><file name="index.phtml" hash="d315bbae053b89300c8b04a1adb661cb"/></dir></dir><file name="leftmenu.phtml" hash="4afb8d200ed8ceddf2f682c5911c565c"/><file name="productexport.phtml" hash="1c7ec782dcd405fd6a5a360f23bf0913"/><file name="steps.phtml" hash="8fcd5c06f70a00c18e325cf9b94693e6"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir><dir name="de_DE"><file name="Dhl_MeinPaket.csv" hash="9d562e495b66d92a1a6f3600a72b23e5"/></dir></dir></dir></target><target name="mageskin"><dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="meinpaket"><dir name="images"><file name="dhl_checkout_button.png" hash="cd33e91292c35a7056736813c43afe90"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="meinpaket"><file name="attributemapping.js" hash="1a4bde24fd6e7347372a3cd77de4389c"/><file name="common.css" hash="90ee229c9b60ea9450b05cec7769bd8b"/><file name="common.js" hash="68b329da9893e34099c7d8ad5cb9c940"/><dir name="images"><file name="1.png" hash="42488db618cc9b25226dc43fe8f24eec"/><file name="2.png" hash="0ca63d439b4a0e6f1578c155ed893fe7"/><file name="3.png" hash="813d4d0fd2051695785ac976b751143c"/><file name="Thumbs.db" hash="a40a4912cd54321346eb8113cd658277"/><file name="dhl_logo_kl.gif" hash="a8ca13c020d033cc487e7c5e7b30807d"/><file name="loader.gif" hash="466e0414bdf21d89645d169669b827ce"/><file name="meinpaket_logo.png" hash="0f7c7ac45b8606ea076dc1d06ea5e057"/><file name="shadowtopbg.png" hash="d8b88f456ebc93a6d11658f5ab14d590"/></dir><file name="module.css" hash="c0ad44ad9719ae396f9becbd183f5033"/><file name="module.js" hash="0ace146549dd0befdd83d23a3149f140"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>