Created
August 5, 2015 09:04
-
-
Save raybogman/b7e8191e4d3ae7e74057 to your computer and use it in GitHub Desktop.
PATCH_SUPEE-6482_CE_1.9.2.0-1.9.2.1_v2-UPDATE.sh
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ruN app/code/core/Mage/Api/Model/Server/Adapter/Soap.php app/code/core/Mage/Api/Model/Server/Adapter/Soap.php | |
--- app/code/core/Mage/Api/Model/Server/Adapter/Soap.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Api/Model/Server/Adapter/Soap.php 2015-08-03 12:35:02.000000000 +0200 | |
@@ -233,9 +233,9 @@ | |
: $urlModel->getUrl('*/*/*'); | |
if ( $withAuth ) { | |
- $phpAuthUser = $this->getController()->getRequest()->getServer('PHP_AUTH_USER', false); | |
- $phpAuthPw = $this->getController()->getRequest()->getServer('PHP_AUTH_PW', false); | |
- $scheme = $this->getController()->getRequest()->getScheme(); | |
+ $phpAuthUser = rawurlencode($this->getController()->getRequest()->getServer('PHP_AUTH_USER', false)); | |
+ $phpAuthPw = rawurlencode($this->getController()->getRequest()->getServer('PHP_AUTH_PW', false)); | |
+ $scheme = rawurlencode($this->getController()->getRequest()->getScheme()); | |
if ($phpAuthUser && $phpAuthPw) { | |
$wsdlUrl = sprintf("%s://%s:%s@%s", $scheme, $phpAuthUser, $phpAuthPw, | |
diff -ruN app/code/core/Mage/Catalog/etc/api.xml app/code/core/Mage/Catalog/etc/api.xml | |
--- app/code/core/Mage/Catalog/etc/api.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Catalog/etc/api.xml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -163,7 +163,7 @@ | |
<title>Update product</title> | |
<acl>catalog/product/update</acl> | |
</update> | |
- <multiUpdate translate="title" module="Mage_Catalog"> | |
+ <multiUpdate translate="title" module="catalog"> | |
<title>Multi update product</title> | |
<acl>catalog/product/update</acl> | |
</multiUpdate> | |
diff -ruN app/code/core/Mage/Catalog/Helper/Product/Compare.php app/code/core/Mage/Catalog/Helper/Product/Compare.php | |
--- app/code/core/Mage/Catalog/Helper/Product/Compare.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Catalog/Helper/Product/Compare.php 2015-08-03 12:35:04.000000000 +0200 | |
@@ -161,7 +161,7 @@ | |
*/ | |
public function getAddUrl($product) | |
{ | |
- if ($this->_logCondition->isVisitorLogEnabled()) { | |
+ if ($this->_logCondition->isVisitorLogEnabled() || $this->_customerSession->isLoggedIn()) { | |
return $this->_getUrl('catalog/product_compare/add', $this->_getUrlParams($product)); | |
} | |
return ''; | |
diff -ruN app/code/core/Mage/Catalog/Model/Product/Api/V2.php app/code/core/Mage/Catalog/Model/Product/Api/V2.php | |
--- app/code/core/Mage/Catalog/Model/Product/Api/V2.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Catalog/Model/Product/Api/V2.php 2015-08-03 12:35:04.000000000 +0200 | |
@@ -108,7 +108,7 @@ | |
*/ | |
public function create($type, $set, $sku, $productData, $store = null) | |
{ | |
- if (!$type || !$set || !$sku) { | |
+ if (!$type || !$set || !$sku || !is_object($productData)) { | |
$this->_fault('data_invalid'); | |
} | |
@@ -243,6 +243,9 @@ | |
*/ | |
protected function _prepareDataForSave ($product, $productData) | |
{ | |
+ if (!is_object($productData)) { | |
+ $this->_fault('data_invalid'); | |
+ } | |
if (property_exists($productData, 'website_ids') && is_array($productData->website_ids)) { | |
$product->setWebsiteIds($productData->website_ids); | |
} | |
diff -ruN app/code/core/Mage/Cms/Block/Block.php app/code/core/Mage/Cms/Block/Block.php | |
--- app/code/core/Mage/Cms/Block/Block.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Cms/Block/Block.php 2015-08-03 12:35:02.000000000 +0200 | |
@@ -72,4 +72,24 @@ | |
} | |
return $html; | |
} | |
+ | |
+ /** | |
+ * Retrieve values of properties that unambiguously identify unique content | |
+ * | |
+ * @return array | |
+ */ | |
+ public function getCacheKeyInfo() | |
+ { | |
+ $blockId = $this->getBlockId(); | |
+ if ($blockId) { | |
+ $result = array( | |
+ 'CMS_BLOCK', | |
+ $blockId, | |
+ Mage::app()->getStore()->getCode(), | |
+ ); | |
+ } else { | |
+ $result = parent::getCacheKeyInfo(); | |
+ } | |
+ return $result; | |
+ } | |
} | |
diff -ruN app/code/core/Mage/Cms/Block/Widget/Block.php app/code/core/Mage/Cms/Block/Widget/Block.php | |
--- app/code/core/Mage/Cms/Block/Widget/Block.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Cms/Block/Widget/Block.php 2015-08-03 12:35:02.000000000 +0200 | |
@@ -82,10 +82,26 @@ | |
$helper = Mage::helper('cms'); | |
$processor = $helper->getBlockTemplateProcessor(); | |
$this->setText($processor->filter($block->getContent())); | |
+ $this->addModelTags($block); | |
} | |
} | |
unset(self::$_widgetUsageMap[$blockHash]); | |
return $this; | |
} | |
+ | |
+ /** | |
+ * Retrieve values of properties that unambiguously identify unique content | |
+ * | |
+ * @return array | |
+ */ | |
+ public function getCacheKeyInfo() | |
+ { | |
+ $result = parent::getCacheKeyInfo(); | |
+ $blockId = $this->getBlockId(); | |
+ if ($blockId) { | |
+ $result[] = $blockId; | |
+ } | |
+ return $result; | |
+ } | |
} | |
diff -ruN app/code/core/Mage/Core/Controller/Request/Http.php app/code/core/Mage/Core/Controller/Request/Http.php | |
--- app/code/core/Mage/Core/Controller/Request/Http.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Core/Controller/Request/Http.php 2015-08-03 12:35:04.000000000 +0200 | |
@@ -298,11 +298,19 @@ | |
if (!isset($_SERVER['HTTP_HOST'])) { | |
return false; | |
} | |
+ $host = $_SERVER['HTTP_HOST']; | |
if ($trimPort) { | |
- $host = explode(':', $_SERVER['HTTP_HOST']); | |
- return $host[0]; | |
+ $hostParts = explode(':', $_SERVER['HTTP_HOST']); | |
+ $host = $hostParts[0]; | |
} | |
- return $_SERVER['HTTP_HOST']; | |
+ | |
+ if (strpos($host, ',') !== false || strpos($host, ';') !== false) { | |
+ $response = new Zend_Controller_Response_Http(); | |
+ $response->setHttpResponseCode(400)->sendHeaders(); | |
+ exit(); | |
+ } | |
+ | |
+ return $host; | |
} | |
/** | |
diff -ruN app/code/core/Mage/Core/Model/Email/Queue.php app/code/core/Mage/Core/Model/Email/Queue.php | |
--- app/code/core/Mage/Core/Model/Email/Queue.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Core/Model/Email/Queue.php 2015-08-03 12:35:04.000000000 +0200 | |
@@ -41,9 +41,6 @@ | |
* @method Mage_Core_Model_Email_Queue setMessageParameters(array $value) | |
* @method Mage_Core_Model_Email_Queue setProcessedAt(string $value) | |
* @method array getMessageParameters() | |
- * | |
- * @category Mage | |
- * @package Mage_Core | |
*/ | |
class Mage_Core_Model_Email_Queue extends Mage_Core_Model_Abstract | |
{ | |
diff -ruN app/code/core/Mage/Log/Model/Resource/Visitor.php app/code/core/Mage/Log/Model/Resource/Visitor.php | |
--- app/code/core/Mage/Log/Model/Resource/Visitor.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Log/Model/Resource/Visitor.php 2015-08-03 12:35:04.000000000 +0200 | |
@@ -125,7 +125,7 @@ | |
return $this; | |
} | |
if ($visitor->getIsNewVisitor()) { | |
- if ($this->_urlLoggingCondition->isLogEnabled()) { | |
+ if ($this->_urlLoggingCondition->isVisitorLogEnabled()) { | |
$this->_saveVisitorInfo($visitor); | |
$visitor->setIsNewVisitor(false); | |
} | |
diff -ruN app/code/core/Mage/PageCache/etc/adminhtml.xml app/code/core/Mage/PageCache/etc/adminhtml.xml | |
--- app/code/core/Mage/PageCache/etc/adminhtml.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/PageCache/etc/adminhtml.xml 2015-08-03 12:35:02.000000000 +0200 | |
@@ -30,7 +30,7 @@ | |
<resources> | |
<admin> | |
<children> | |
- <page_cache translate="title" module="pageCache"> | |
+ <page_cache translate="title" module="pagecache"> | |
<title>External Page Cache</title> | |
<sort_order>0</sort_order> | |
</page_cache> | |
diff -ruN app/code/core/Mage/Paypal/Model/Express/Checkout.php app/code/core/Mage/Paypal/Model/Express/Checkout.php | |
--- app/code/core/Mage/Paypal/Model/Express/Checkout.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/code/core/Mage/Paypal/Model/Express/Checkout.php 2015-08-03 12:37:40.000000000 +0200 | |
@@ -430,15 +430,17 @@ | |
if (!$quote->getIsVirtual()) { | |
$shippingAddress = $quote->getShippingAddress(); | |
if ($shippingAddress) { | |
- if ($exportedShippingAddress | |
- && $quote->getPayment()->getAdditionalInformation(self::PAYMENT_INFO_BUTTON) == 1 | |
- ) { | |
+ if ($exportedShippingAddress) { | |
$this->_setExportedAddressData($shippingAddress, $exportedShippingAddress); | |
- // PayPal doesn't provide detailed shipping info: prefix, middlename, lastname, suffix | |
- $shippingAddress->setPrefix(null); | |
- $shippingAddress->setMiddlename(null); | |
- $shippingAddress->setLastname(null); | |
- $shippingAddress->setSuffix(null); | |
+ | |
+ if ($quote->getPayment()->getAdditionalInformation(self::PAYMENT_INFO_BUTTON) == 1) { | |
+ // PayPal doesn't provide detailed shipping info: prefix, middlename, lastname, suffix | |
+ $shippingAddress->setPrefix(null); | |
+ $shippingAddress->setMiddlename(null); | |
+ $shippingAddress->setLastname(null); | |
+ $shippingAddress->setSuffix(null); | |
+ } | |
+ | |
$shippingAddress->setCollectShippingRates(true); | |
$shippingAddress->setSameAsBilling(0); | |
} | |
diff -ruN app/design/adminhtml/default/default/template/page/js/calendar.phtml app/design/adminhtml/default/default/template/page/js/calendar.phtml | |
--- app/design/adminhtml/default/default/template/page/js/calendar.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/adminhtml/default/default/template/page/js/calendar.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -23,7 +23,6 @@ | |
* @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
-// no notice of license for now | |
?> | |
<?php | |
diff -ruN app/design/frontend/base/default/template/moneybookers/blank.phtml app/design/frontend/base/default/template/moneybookers/blank.phtml | |
--- app/design/frontend/base/default/template/moneybookers/blank.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/frontend/base/default/template/moneybookers/blank.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -20,7 +20,7 @@ | |
* | |
* @category design | |
* @package base_default | |
- * @copyright Copyright (c) 2009 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
+ * @copyright Copyright (c) 2015 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
?> | |
diff -ruN app/design/frontend/base/default/template/moneybookers/form.phtml app/design/frontend/base/default/template/moneybookers/form.phtml | |
--- app/design/frontend/base/default/template/moneybookers/form.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/frontend/base/default/template/moneybookers/form.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -20,7 +20,7 @@ | |
* | |
* @category design | |
* @package base_default | |
- * @copyright Copyright (c) 2009 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
+ * @copyright Copyright (c) 2015 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
?> | |
diff -ruN app/design/frontend/base/default/template/moneybookers/info.phtml app/design/frontend/base/default/template/moneybookers/info.phtml | |
--- app/design/frontend/base/default/template/moneybookers/info.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/frontend/base/default/template/moneybookers/info.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -20,7 +20,7 @@ | |
* | |
* @category design | |
* @package base_default | |
- * @copyright Copyright (c) 2009 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
+ * @copyright Copyright (c) 2015 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
?> | |
diff -ruN app/design/frontend/base/default/template/moneybookers/payment.phtml app/design/frontend/base/default/template/moneybookers/payment.phtml | |
--- app/design/frontend/base/default/template/moneybookers/payment.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/frontend/base/default/template/moneybookers/payment.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -20,7 +20,7 @@ | |
* | |
* @category design | |
* @package base_default | |
- * @copyright Copyright (c) 2009 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
+ * @copyright Copyright (c) 2015 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
?> | |
diff -ruN app/design/frontend/base/default/template/moneybookers/placeform.phtml app/design/frontend/base/default/template/moneybookers/placeform.phtml | |
--- app/design/frontend/base/default/template/moneybookers/placeform.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/frontend/base/default/template/moneybookers/placeform.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -20,7 +20,7 @@ | |
* | |
* @category design | |
* @package base_default | |
- * @copyright Copyright (c) 2009 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
+ * @copyright Copyright (c) 2015 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
?> | |
diff -ruN app/design/frontend/base/default/template/moneybookers/redirect.phtml app/design/frontend/base/default/template/moneybookers/redirect.phtml | |
--- app/design/frontend/base/default/template/moneybookers/redirect.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/frontend/base/default/template/moneybookers/redirect.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -20,7 +20,7 @@ | |
* | |
* @category design | |
* @package base_default | |
- * @copyright Copyright (c) 2009 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
+ * @copyright Copyright (c) 2015 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
?> | |
diff -ruN app/design/frontend/base/default/template/page/js/cookie.phtml app/design/frontend/base/default/template/page/js/cookie.phtml | |
--- app/design/frontend/base/default/template/page/js/cookie.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/design/frontend/base/default/template/page/js/cookie.phtml 2015-08-03 12:35:04.000000000 +0200 | |
@@ -34,7 +34,7 @@ | |
<script type="text/javascript"> | |
//<![CDATA[ | |
-Mage.Cookies.path = '<?php echo $this->getPath()?>'; | |
-Mage.Cookies.domain = '<?php echo $this->getDomain()?>'; | |
+Mage.Cookies.path = '<?php echo Mage::helper('core')->jsQuoteEscape($this->getPath()) ?>'; | |
+Mage.Cookies.domain = '<?php echo Mage::helper('core')->jsQuoteEscape($this->getDomain()) ?>'; | |
//]]> | |
</script> | |
diff -ruN app/locale/en_US/Mage_Adminhtml.csv app/locale/en_US/Mage_Adminhtml.csv | |
--- app/locale/en_US/Mage_Adminhtml.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Adminhtml.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -19,6 +19,7 @@ | |
"* Required Fields","* Required Fields" | |
"- Click on any of the time parts to increase it","- Click on any of the time parts to increase it" | |
"- Hold mouse button on any of the above buttons for faster selection.","- Hold mouse button on any of the above buttons for faster selection." | |
+"- Use the %s buttons to select month","- Use the %s buttons to select month" | |
"- Use the %s, %s buttons to select month","- Use the %s, %s buttons to select month" | |
"- Use the %s, %s buttons to select year","- Use the %s, %s buttons to select year" | |
"- or Shift-click to decrease it","- or Shift-click to decrease it" | |
@@ -76,6 +77,7 @@ | |
"Add URL Rewrite for a Category","Add URL Rewrite for a Category" | |
"Add URL Rewrite for a Product","Add URL Rewrite for a Product" | |
"Add after","Add after" | |
+"Add to category","Add to category" | |
"Additional Cache Management","Additional Cache Management" | |
"Address Type:","Address Type:" | |
"Admin","Admin" | |
@@ -89,6 +91,7 @@ | |
"All Files","All Files" | |
"All Reviews","All Reviews" | |
"All Store Views","All Store Views" | |
+"All Storefronts","All Storefronts" | |
"All Tags","All Tags" | |
"All Websites","All Websites" | |
"All countries","All countries" | |
@@ -96,6 +99,7 @@ | |
"All possible rates were fetched, please click on ""Save"" to apply","All possible rates were fetched, please click on ""Save"" to apply" | |
"All rates were fetched, please click on ""Save"" to apply","All rates were fetched, please click on ""Save"" to apply" | |
"All valid rates have been saved.","All valid rates have been saved." | |
+"Already in category","Already in category" | |
"Always (during development)","Always (during development)" | |
"Amounts","Amounts" | |
"An error has occured while syncronizing media storages.","An error has occured while syncronizing media storages." | |
@@ -182,6 +186,7 @@ | |
"Cache Management","Cache Management" | |
"Cache Type","Cache Type" | |
"Cancel","Cancel" | |
+"Cancel detach","Cancel detach" | |
"Cannot add new comment.","Cannot add new comment." | |
"Cannot add tracking number.","Cannot add tracking number." | |
"Cannot create an invoice without products.","Cannot create an invoice without products." | |
@@ -199,6 +204,7 @@ | |
"Cannot send shipment information.","Cannot send shipment information." | |
"Cannot update item quantity.","Cannot update item quantity." | |
"Cannot update the item\'s quantity.","Cannot update the item\'s quantity." | |
+"Card Verification Number","Card Verification Number" | |
"Catalog","Catalog" | |
"Catalog Price Rules","Catalog Price Rules" | |
"Catalog Rewrites","Catalog Rewrites" | |
@@ -236,7 +242,12 @@ | |
"Create New Attribute","Create New Attribute" | |
"Create URL Rewrite:","Create URL Rewrite:" | |
"Created At","Created At" | |
+"Creation date","Creation date" | |
"Credit Card %s","Credit Card %s" | |
+"Credit Card Number","Credit Card Number" | |
+"Credit Card Number: xxxx-%s","Credit Card Number: xxxx-%s" | |
+"Credit Card Type","Credit Card Type" | |
+"Credit Card Type: %s","Credit Card Type: %s" | |
"Credit Memo History","Credit Memo History" | |
"Credit Memo Totals","Credit Memo Totals" | |
"Credit Memos","Credit Memos" | |
@@ -302,6 +313,7 @@ | |
"Description","Description" | |
"Design","Design" | |
"Design Section","Design Section" | |
+"Detach from category","Detach from category" | |
"Details","Details" | |
"Developer Section","Developer Section" | |
"Direction:","Direction:" | |
@@ -313,6 +325,7 @@ | |
"Do you really want to KILL parallel process and start new indexing process?","Do you really want to KILL parallel process and start new indexing process?" | |
"Do you really want to proceed?","Do you really want to proceed?" | |
"Download","Download" | |
+"Download SKUs","Download SKUs" | |
"Downloads","Downloads" | |
"Drag to move","Drag to move" | |
"Drop-down","Drop-down" | |
@@ -338,13 +351,17 @@ | |
"Enable","Enable" | |
"Enabled","Enabled" | |
"Enclose Values In:","Enclose Values In:" | |
+"Enter a comma separated list of SKUs that will always be displayed at the top of your category","Enter a comma separated list of SKUs that will always be displayed at the top of your category" | |
"Entity Attributes","Entity Attributes" | |
"Entity Type","Entity Type" | |
"Entity type:","Entity type:" | |
"Error","Error" | |
"Excel XML","Excel XML" | |
"Excl. Tax","Excl. Tax" | |
+"Excl. Tax:","Excl. Tax:" | |
"Exclude media folder from backup","Exclude media folder from backup" | |
+"Expiration Date","Expiration Date" | |
+"Expiration Date: %s/%s","Expiration Date: %s/%s" | |
"Export","Export" | |
"Export CSV","Export CSV" | |
"Export Filters","Export Filters" | |
@@ -396,9 +413,11 @@ | |
"Global Record Search","Global Record Search" | |
"Global Search","Global Search" | |
"Go Today","Go Today" | |
+"Go to Top","Go to Top" | |
"Go to messages inbox","Go to messages inbox" | |
"Go to notifications","Go to notifications" | |
"Google Base","Google Base" | |
+"Google Content","Google Content" | |
"Google Sitemaps","Google Sitemaps" | |
"Grand Total","Grand Total" | |
"Grid (default) / List","Grid (default) / List" | |
@@ -410,6 +429,7 @@ | |
"Help Us Keep Magento Healthy - Report All Bugs","Help Us Keep Magento Healthy - Report All Bugs" | |
"Helper attributes should not be used in custom layout updates.","Helper attributes should not be used in custom layout updates." | |
"Helper for options rendering doesn't implement required interface.","Helper for options rendering doesn't implement required interface." | |
+"Hero Products","Hero Products" | |
"Home","Home" | |
"ID","ID" | |
"ID Path","ID Path" | |
@@ -435,6 +455,7 @@ | |
"In File:","In File:" | |
"Inactive","Inactive" | |
"Incl. Tax","Incl. Tax" | |
+"Incl. Tax:","Incl. Tax:" | |
"Incoming Message","Incoming Message" | |
"Insert Variable...","Insert Variable..." | |
"Interactive","Interactive" | |
@@ -536,6 +557,7 @@ | |
"Manage Tax Zones and Rates","Manage Tax Zones and Rates" | |
"Manage Titles (Size, Color, etc.)","Manage Titles (Size, Color, etc.)" | |
"Manual","Manual" | |
+"Mass Product Assignment","Mass Product Assignment" | |
"Matched Expression","Matched Expression" | |
"Maximum sender name length is 255. Please correct your settings.","Maximum sender name length is 255. Please correct your settings." | |
"Mb","Mb" | |
@@ -545,12 +567,16 @@ | |
"Month","Month" | |
"Most Viewed","Most Viewed" | |
"Most Viewed Products","Most Viewed Products" | |
+"Move to bottom","Move to bottom" | |
+"Move to top","Move to top" | |
"Multiple Select","Multiple Select" | |
"My Account","My Account" | |
"My Applications","My Applications" | |
"N/A","N/A" | |
"NOTICE","NOTICE" | |
"Name","Name" | |
+"Name on Card","Name on Card" | |
+"Name on the Card: %s","Name on the Card: %s" | |
"Name:","Name:" | |
"Never (production)","Never (production)" | |
"New ","New " | |
@@ -591,6 +617,7 @@ | |
"New User","New User" | |
"New Variable","New Variable" | |
"New Website","New Website" | |
+"New attribute set mapping","New attribute set mapping" | |
"New password field cannot be empty.","New password field cannot be empty." | |
"Newsletter","Newsletter" | |
"Newsletter Problems","Newsletter Problems" | |
@@ -601,7 +628,9 @@ | |
"Next year (hold for menu)","Next year (hold for menu)" | |
"No","No" | |
"No (price without tax)","No (price without tax)" | |
+"No Data","No Data" | |
"No Data Found","No Data Found" | |
+"No Products","No Products" | |
"No Templates Found","No Templates Found" | |
"No change","No change" | |
"No customer id defined.","No customer id defined." | |
@@ -637,6 +666,7 @@ | |
"Optional","Optional" | |
"Options","Options" | |
"Options is required","Options is required" | |
+"Options: ","Options: " | |
"Order","Order" | |
"Order #%s","Order #%s" | |
"Order #%s (%s)","Order #%s (%s)" | |
@@ -700,6 +730,7 @@ | |
"Please make sure that all global admin search modules are installed and activated.","Please make sure that all global admin search modules are installed and activated." | |
"Please make sure that your changes were saved before running the profile.","Please make sure that your changes were saved before running the profile." | |
"Please make sure your passwords match.","Please make sure your passwords match." | |
+"Please note, this category is set to automatically sort. Any drag-and-drop positions will be reset.","Please note, this category is set to automatically sort. Any drag-and-drop positions will be reset." | |
"Please select State/Province.","Please select State/Province." | |
"Please select a customer.","Please select a customer." | |
"Please select a store.","Please select a store." | |
@@ -722,6 +753,7 @@ | |
"Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed.","Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed." | |
"Please use only letters (a-z) or numbers (0-9) or spaces and # only in this field.","Please use only letters (a-z) or numbers (0-9) or spaces and # only in this field." | |
"Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.","Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006." | |
+"Please wait","Please wait" | |
"Please wait while the indexes are being refreshed.","Please wait while the indexes are being refreshed." | |
"Please wait, loading...","Please wait, loading..." | |
"Please wait...","Please wait..." | |
@@ -742,12 +774,14 @@ | |
"Price alert subscription was saved.","Price alert subscription was saved." | |
"Price:","Price:" | |
"Processed <strong>%s%% %s/%d</strong> records","Processed <strong>%s%% %s/%d</strong> records" | |
+"Processing","Processing" | |
"Product","Product" | |
"Product Name","Product Name" | |
"Product Reviews","Product Reviews" | |
"Product Tax Classes","Product Tax Classes" | |
"Product Thumbnail Itself","Product Thumbnail Itself" | |
"Product is not loaded.","Product is not loaded." | |
+"Product not available in this website","Product not available in this website" | |
"Product:","Product:" | |
"Products","Products" | |
"Products Bestsellers Report","Products Bestsellers Report" | |
@@ -857,6 +891,8 @@ | |
"Search Index","Search Index" | |
"Search Term","Search Term" | |
"Search Terms","Search Terms" | |
+"Search entire store here...","Search entire store here..." | |
+"Searching...","Searching..." | |
"Select","Select" | |
"Select All","Select All" | |
"Select Category","Select Category" | |
@@ -895,12 +931,14 @@ | |
"Some items in this order have different invoice and shipment types. You can create shipment only after the invoice is created.","Some items in this order have different invoice and shipment types. You can create shipment only after the invoice is created." | |
"Some of the ordered items do not exist in the catalog anymore and will be removed if you try to edit the order.","Some of the ordered items do not exist in the catalog anymore and will be removed if you try to edit the order." | |
"Sorry, this feature is coming soon...","Sorry, this feature is coming soon..." | |
+"Sort options","Sort options" | |
"Special Price:","Special Price:" | |
"Specific Countries","Specific Countries" | |
"Specified","Specified" | |
"Specified profile does not exist.","Specified profile does not exist." | |
"Spreadsheet Name:","Spreadsheet Name:" | |
"Start Date","Start Date" | |
+"Starting at:","Starting at:" | |
"Starting profile execution, please wait...","Starting profile execution, please wait..." | |
"State/Province:","State/Province:" | |
"Static Blocks","Static Blocks" | |
@@ -912,12 +950,18 @@ | |
"Store Email Addresses Section","Store Email Addresses Section" | |
"Store View","Store View" | |
"Store:","Store:" | |
+"Storefronts : ","Storefronts : " | |
"Stores","Stores" | |
"Subject","Subject" | |
"Submit","Submit" | |
"Subpackage cannot be conflicting.","Subpackage cannot be conflicting." | |
"Subtotal","Subtotal" | |
+"Switch/Solo card issue number: %s","Switch/Solo card issue number: %s" | |
+"Switch/Solo card start Date: %s/%s","Switch/Solo card start Date: %s/%s" | |
"Switch/Solo/Maestro Only","Switch/Solo/Maestro Only" | |
+"Switch/Solo/Maestro(UK Domestic) Only","Switch/Solo/Maestro(UK Domestic) Only" | |
+"Switch/Solo/Maestro(UK Domestic) card issue number: %s","Switch/Solo/Maestro(UK Domestic) card issue number: %s" | |
+"Switch/Solo/Maestro(UK Domestic) card start Date: %s/%s","Switch/Solo/Maestro(UK Domestic) card start Date: %s/%s" | |
"Symbol","Symbol" | |
"Synchronization is required.","Synchronization is required." | |
"Synchronization of media storages has been successfully completed.","Synchronization of media storages has been successfully completed." | |
@@ -1025,6 +1069,7 @@ | |
"This action cannot be undone.","This action cannot be undone." | |
"This attribute set does not have attributes which we can use for configurable product","This attribute set does not have attributes which we can use for configurable product" | |
"This attribute shares the same value in all the stores","This attribute shares the same value in all the stores" | |
+"This category is set to only include products matched by rules","This category is set to only include products matched by rules" | |
"This is a demo store. Any orders placed through this store will not be honored or fulfilled.","This is a demo store. Any orders placed through this store will not be honored or fulfilled." | |
"This is a required field.","This is a required field." | |
"This product is currently disabled.","This product is currently disabled." | |
@@ -1076,6 +1121,7 @@ | |
"Unable to initialize import model","Unable to initialize import model" | |
"Unable to refresh lifetime statistics.","Unable to refresh lifetime statistics." | |
"Unable to refresh recent statistics.","Unable to refresh recent statistics." | |
+"Unable to save Cron expression","Unable to save Cron expression" | |
"Unable to save the cron expression.","Unable to save the cron expression." | |
"Unable to save the invoice.","Unable to save the invoice." | |
"Unable to send the invoice email.","Unable to send the invoice email." | |
@@ -1116,6 +1162,7 @@ | |
"User Type Resources","User Type Resources" | |
"User name","User name" | |
"Users","Users" | |
+"Utilities","Utilities" | |
"VAT Number is Invalid","VAT Number is Invalid" | |
"VAT Number is Valid","VAT Number is Valid" | |
"Validation Results","Validation Results" | |
diff -ruN app/locale/en_US/Mage_Catalog.csv app/locale/en_US/Mage_Catalog.csv | |
--- app/locale/en_US/Mage_Catalog.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Catalog.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -58,6 +58,7 @@ | |
"Allow HTML Tags on Frontend","Allow HTML Tags on Frontend" | |
"Allowed File Extensions","Allowed File Extensions" | |
"Allowed file extensions to upload","Allowed file extensions to upload" | |
+"Amount","Amount" | |
"An error occurred while adding products to websites.","An error occurred while adding products to websites." | |
"An error occurred while clearing comparison list.","An error occurred while clearing comparison list." | |
"An error occurred while deleting this review.","An error occurred while deleting this review." | |
@@ -267,6 +268,7 @@ | |
"Double click on above image to view full picture","Double click on above image to view full picture" | |
"Downloadable Information","Downloadable Information" | |
"Duplicate","Duplicate" | |
+"Duplicate amount found.","Duplicate amount found." | |
"Duplicate website group price customer group.","Duplicate website group price customer group." | |
"Duplicate website tier price customer group and quantity.","Duplicate website tier price customer group and quantity." | |
"Duplicate website, country and state tax found.","Duplicate website, country and state tax found." | |
@@ -417,6 +419,7 @@ | |
"More Views","More Views" | |
"Move","Move" | |
"Move category in tree","Move category in tree" | |
+"Multi update product","Multi update product" | |
"Must be in the allowed values list.","Must be in the allowed values list." | |
"My Account","My Account" | |
"N/A","N/A" | |
@@ -471,11 +474,14 @@ | |
"Please click on the Close Window button if it is not closed automatically.","Please click on the Close Window button if it is not closed automatically." | |
"Please enter a new group name","Please enter a new group name" | |
"Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -> <a href=""%s"">Index Management</a>","Please refresh ""Catalog URL Rewrites"" and ""Product Attributes"" in System -> <a href=""%s"">Index Management</a>" | |
+"Please refresh ""Product Attributes"" in System -> <a href=""%s"">Index Management</a>","Please refresh ""Product Attributes"" in System -> <a href=""%s"">Index Management</a>" | |
"Please select a static block ...","Please select a static block ..." | |
"Please select items.","Please select items." | |
"Please select one or more attributes.","Please select one or more attributes." | |
"Please select product(s).","Please select product(s)." | |
"Please select products for attributes update","Please select products for attributes update" | |
+"Please set up merge date/time","Please set up merge date/time" | |
+"Please set up merge date/time later then present date","Please set up merge date/time later then present date" | |
"Please specify date required option(s).","Please specify date required option(s)." | |
"Please specify the number of products, that will not be divided into subintervals.","Please specify the number of products, that will not be divided into subintervals." | |
"Please specify the product required option(s)","Please specify the product required option(s)" | |
@@ -621,6 +627,7 @@ | |
"Search Information","Search Information" | |
"Search Query","Search Query" | |
"Search Term with such search query already exists.","Search Term with such search query already exists." | |
+"Search Weight","Search Weight" | |
"Searchable","Searchable" | |
"See price before order confirmation.","See price before order confirmation." | |
"Select Category...","Select Category..." | |
@@ -740,6 +747,7 @@ | |
"Top/Left","Top/Left" | |
"Top/Right","Top/Right" | |
"Total Qty Base Items","Total Qty Base Items" | |
+"Total Qty Content Items","Total Qty Content Items" | |
"Total incl. Tax: %1$s","Total incl. Tax: %1$s" | |
"Total of %d record(s) have been deleted.","Total of %d record(s) have been deleted." | |
"Total of %d record(s) have been updated.","Total of %d record(s) have been updated." | |
@@ -809,6 +817,8 @@ | |
"Watermark Position","Watermark Position" | |
"We Also Recommend","We Also Recommend" | |
"Website","Website" | |
+"Website Item Must be checked","Website Item Must be checked" | |
+"Website Store Must be checked","Website Store Must be checked" | |
"Websites","Websites" | |
"What's this?","What's this?" | |
"Whether to show ""All"" option in the ""Show X Per Page"" dropdown.","Whether to show ""All"" option in the ""Show X Per Page"" dropdown." | |
diff -ruN app/locale/en_US/Mage_CatalogRule.csv app/locale/en_US/Mage_CatalogRule.csv | |
--- app/locale/en_US/Mage_CatalogRule.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_CatalogRule.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -26,6 +26,7 @@ | |
"Edit Rule","Edit Rule" | |
"Edit Rule '%s'","Edit Rule '%s'" | |
"Enable Discount to Subproducts","Enable Discount to Subproducts" | |
+"Expiration Date","Expiration Date" | |
"From Date","From Date" | |
"General Information","General Information" | |
"ID","ID" | |
@@ -40,16 +41,19 @@ | |
"Rule Name","Rule Name" | |
"Save and Apply","Save and Apply" | |
"Save and Continue Edit","Save and Continue Edit" | |
+"Start Date","Start Date" | |
"Status","Status" | |
"Stop Further Rules Processing","Stop Further Rules Processing" | |
"The rule has been deleted.","The rule has been deleted." | |
"The rule has been saved.","The rule has been saved." | |
"The rules have been applied.","The rules have been applied." | |
+"There are rules that have been changed but were not applied. Only users with exclusive access can apply rules.","There are rules that have been changed but were not applied. Only users with exclusive access can apply rules." | |
"There are rules that have been changed but were not applied. Please, click Apply Rules in order to see immediate effect in the catalog.","There are rules that have been changed but were not applied. Please, click Apply Rules in order to see immediate effect in the catalog." | |
"This rule no longer exists.","This rule no longer exists." | |
"To Date","To Date" | |
"To Fixed Amount","To Fixed Amount" | |
"To Percentage of the Original Price","To Percentage of the Original Price" | |
+"Type","Type" | |
"Unable to apply rules.","Unable to apply rules." | |
"Unable to find a rule to delete.","Unable to find a rule to delete." | |
"Update Prices Using the Following Information","Update Prices Using the Following Information" | |
diff -ruN app/locale/en_US/Mage_Checkout.csv app/locale/en_US/Mage_Checkout.csv | |
--- app/locale/en_US/Mage_Checkout.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Checkout.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -185,6 +185,7 @@ | |
"My Cart","My Cart" | |
"My Cart (%s item)","My Cart (%s item)" | |
"My Cart (%s items)","My Cart (%s items)" | |
+"My Cart Extra Actions","My Cart Extra Actions" | |
"My Cart Link","My Cart Link" | |
"New Address","New Address" | |
"New Condition","New Condition" | |
diff -ruN app/locale/en_US/Mage_Cron.csv app/locale/en_US/Mage_Cron.csv | |
--- app/locale/en_US/Mage_Cron.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Cron.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -1,16 +1,24 @@ | |
+"10 minutes","10 minutes" | |
+"15 minutes","15 minutes" | |
+"20 minutes","20 minutes" | |
+"30 minutes","30 minutes" | |
+"5 minutes","5 minutes" | |
"Cron (Scheduled Tasks) - all the times are in minutes","Cron (Scheduled Tasks) - all the times are in minutes" | |
"Daily","Daily" | |
"Failure History Lifetime","Failure History Lifetime" | |
"For correct URLs generated during cron runs please make sure that Web > Secure and Unsecure Base URLs are explicitly set.","For correct URLs generated during cron runs please make sure that Web > Secure and Unsecure Base URLs are explicitly set." | |
"Generate Schedules Every","Generate Schedules Every" | |
"History Cleanup Every","History Cleanup Every" | |
+"Hourly","Hourly" | |
"Invalid callback: %s::%s does not exist","Invalid callback: %s::%s does not exist" | |
"Invalid model/method definition, expecting ""model/class::method"".","Invalid model/method definition, expecting ""model/class::method""." | |
+"Minute Intervals","Minute Intervals" | |
"Missed if Not Run Within","Missed if Not Run Within" | |
"Monthly","Monthly" | |
"No callbacks found","No callbacks found" | |
"Schedule Ahead for","Schedule Ahead for" | |
"Success History Lifetime","Success History Lifetime" | |
"Too late for the schedule.","Too late for the schedule." | |
+"Unable to delete the cron task.","Unable to delete the cron task." | |
"Unable to save the cron expression.","Unable to save the cron expression." | |
"Weekly","Weekly" | |
diff -ruN app/locale/en_US/Mage_Customer.csv app/locale/en_US/Mage_Customer.csv | |
--- app/locale/en_US/Mage_Customer.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Customer.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -1,3 +1,4 @@ | |
+" or "," or " | |
"'%value%' appears to be a DNS hostname but cannot extract TLD part","'%value%' appears to be a DNS hostname but cannot extract TLD part" | |
"'%value%' appears to be a DNS hostname but cannot match TLD against known list","'%value%' appears to be a DNS hostname but cannot match TLD against known list" | |
"'%value%' appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'","'%value%' appears to be a DNS hostname but cannot match against hostname schema for TLD '%tld%'" | |
@@ -413,6 +414,7 @@ | |
"To show VAT number on frontend, set Show VAT Number on Frontend option to Yes.","To show VAT number on frontend, set Show VAT Number on Frontend option to Yes." | |
"Total","Total" | |
"Type","Type" | |
+"Unable to save the customer.","Unable to save the customer." | |
"Unknown","Unknown" | |
"Unsubscribe from Newsletter","Unsubscribe from Newsletter" | |
"Update","Update" | |
@@ -469,3 +471,4 @@ | |
"Zip/Postal Code","Zip/Postal Code" | |
"n/a","n/a" | |
"or","or" | |
+"register","register" | |
diff -ruN app/locale/en_US/Mage_Dataflow.csv app/locale/en_US/Mage_Dataflow.csv | |
--- app/locale/en_US/Mage_Dataflow.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Dataflow.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -14,9 +14,11 @@ | |
"Found %d rows.","Found %d rows." | |
"Less than a minute","Less than a minute" | |
"Loaded successfully: ""%s"".","Loaded successfully: ""%s""." | |
+"Memory Used: %s","Memory Used: %s" | |
"Method ""%s"" not defined in adapter %s.","Method ""%s"" not defined in adapter %s." | |
"Method ""%s"" was not defined in adapter %s.","Method ""%s"" was not defined in adapter %s." | |
"Please declare ""adapter"" and ""method"" nodes first.","Please declare ""adapter"" and ""method"" nodes first." | |
+"Processed records: %s","Processed records: %s" | |
"Profile with the same name already exists.","Profile with the same name already exists." | |
"Saved successfully: ""%s"" [%d byte(s)].","Saved successfully: ""%s"" [%d byte(s)]." | |
"Sheet 1","Sheet 1" | |
diff -ruN app/locale/en_US/Mage_Directory.csv app/locale/en_US/Mage_Directory.csv | |
--- app/locale/en_US/Mage_Directory.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Directory.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -39,6 +39,7 @@ | |
"State is required for","State is required for" | |
"State/Province","State/Province" | |
"States Options","States Options" | |
+"Strikeiron Email Update Warnings","Strikeiron Email Update Warnings" | |
"Unable to initialize the import model.","Unable to initialize the import model." | |
"Undefined rate from ""%s-%s"".","Undefined rate from ""%s-%s""." | |
"WARNING:","WARNING:" | |
diff -ruN app/locale/en_US/Mage_Log.csv app/locale/en_US/Mage_Log.csv | |
--- app/locale/en_US/Mage_Log.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Log.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -5,6 +5,7 @@ | |
"Error Email Template","Error Email Template" | |
"Frequency","Frequency" | |
"Log","Log" | |
+"Log Cleaning","Log Cleaning" | |
"Log cleanup Warnings","Log cleanup Warnings" | |
"Save Log, Days","Save Log, Days" | |
"Start Time","Start Time" | |
diff -ruN app/locale/en_US/Mage_PageCache.csv app/locale/en_US/Mage_PageCache.csv | |
--- app/locale/en_US/Mage_PageCache.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_PageCache.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -3,6 +3,7 @@ | |
"Enable External Cache","Enable External Cache" | |
"External Cache Control","External Cache Control" | |
"External Full Page Cache Settings","External Full Page Cache Settings" | |
+"External Page Cache","External Page Cache" | |
"External full page cache.","External full page cache." | |
"Failed to load external cache control","Failed to load external cache control" | |
"Flush External Page Cache","Flush External Page Cache" | |
diff -ruN app/locale/en_US/Mage_Page.csv app/locale/en_US/Mage_Page.csv | |
--- app/locale/en_US/Mage_Page.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Page.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -1,5 +1,6 @@ | |
"%s Item(s)","%s Item(s)" | |
"%s-%s of %s","%s-%s of %s" | |
+"© 2013 Magento Demo Store. All Rights Reserved.","© 2013 Magento Demo Store. All Rights Reserved." | |
"© 2015 Magento Demo Store. All Rights Reserved.","© 2015 Magento Demo Store. All Rights Reserved." | |
"(Shift-)Click or drag to change value","(Shift-)Click or drag to change value" | |
"(ver. %s)","(ver. %s)" | |
diff -ruN app/locale/en_US/Mage_Payment.csv app/locale/en_US/Mage_Payment.csv | |
--- app/locale/en_US/Mage_Payment.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Payment.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -28,7 +28,9 @@ | |
"Centinel API URL","Centinel API URL" | |
"Check / Money Order","Check / Money Order" | |
"Credit Card Number","Credit Card Number" | |
+"Credit Card Number: xxxx-%s","Credit Card Number: xxxx-%s" | |
"Credit Card Type","Credit Card Type" | |
+"Credit Card Type: %s","Credit Card Type: %s" | |
"Credit Card Types","Credit Card Types" | |
"Credit card number mismatch with credit card type.","Credit card number mismatch with credit card type." | |
"Credit card type is not allowed for this payment method.","Credit card type is not allowed for this payment method." | |
@@ -39,6 +41,7 @@ | |
"Debug Mode","Debug Mode" | |
"Enabled","Enabled" | |
"Expiration Date","Expiration Date" | |
+"Expiration Date: %s/%s","Expiration Date: %s/%s" | |
"Full name of the person receiving the product or service paid for by the recurring payment.","Full name of the person receiving the product or service paid for by the recurring payment." | |
"Incorrect credit card expiration date.","Incorrect credit card expiration date." | |
"Initial Fee","Initial Fee" | |
@@ -60,11 +63,13 @@ | |
"N/A","N/A" | |
"Name on Card","Name on Card" | |
"Name on the Card","Name on the Card" | |
+"Name on the Card: %s","Name on the Card: %s" | |
"New Order Status","New Order Status" | |
"Number of billing periods that make up one billing cycle.","Number of billing periods that make up one billing cycle." | |
"Order action is not available.","Order action is not available." | |
"Overrides API URL that may be specified by a payment method.","Overrides API URL that may be specified by a payment method." | |
"Password","Password" | |
+"Payment ID: %s","Payment ID: %s" | |
"Payment Method","Payment Method" | |
"Payment Methods","Payment Methods" | |
"Payment Methods Section","Payment Methods Section" | |
diff -ruN app/locale/en_US/Mage_Paypal.csv app/locale/en_US/Mage_Paypal.csv | |
--- app/locale/en_US/Mage_Paypal.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Paypal.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -124,7 +124,9 @@ | |
"Authenticated, Good Result","Authenticated, Good Result" | |
"Authorization","Authorization" | |
"Authorization Honor Period (days)","Authorization Honor Period (days)" | |
+"Authorization expired.","Authorization expired." | |
"Authorization transaction is required to void.","Authorization transaction is required to void." | |
+"Authorization was voided by merchant.","Authorization was voided by merchant." | |
"Authorized amount of %s.","Authorized amount of %s." | |
"Authorizing amount of %s is pending approval on gateway.","Authorizing amount of %s is pending approval on gateway." | |
"Auto","Auto" | |
@@ -184,6 +186,7 @@ | |
"Configure","Configure" | |
"Connect your merchant account with a PCI-compliant gateway that lets customers pay without leaving your site.","Connect your merchant account with a PCI-compliant gateway that lets customers pay without leaving your site." | |
"Connect your merchant account with a fully customizable gateway that lets customers pay without leaving your site.","Connect your merchant account with a fully customizable gateway that lets customers pay without leaving your site." | |
+"Connecting to PayPal SFTP server to fetch new reports. Are you sure you want to proceed?","Connecting to PayPal SFTP server to fetch new reports. Are you sure you want to proceed?" | |
"Continue","Continue" | |
"Countries Payment Applicable From","Countries Payment Applicable From" | |
"Country","Country" | |
@@ -195,6 +198,8 @@ | |
"Custom Endpoint Hostname or IP-Address","Custom Endpoint Hostname or IP-Address" | |
"Custom Path","Custom Path" | |
"Customer did not include a confirmed address.","Customer did not include a confirmed address." | |
+"Customer failed to pay.","Customer failed to pay." | |
+"Customer used non-confirmed address.","Customer used non-confirmed address." | |
"Daily","Daily" | |
"Debit","Debit" | |
"Debit Card Cash Back","Debit Card Cash Back" | |
@@ -237,6 +242,7 @@ | |
"Exact Match. Address and Postal Code. International","Exact Match. Address and Postal Code. International" | |
"Exact Match. Address and Postal Code. UK-specific","Exact Match. Address and Postal Code. UK-specific" | |
"Exact Match. Address and nine-digit ZIP code","Exact Match. Address and nine-digit ZIP code" | |
+"Explanation: %s.","Explanation: %s." | |
"Express Checkout","Express Checkout" | |
"Express Checkout APIs","Express Checkout APIs" | |
"Express Checkout and Order have been canceled.","Express Checkout and Order have been canceled." | |
@@ -295,6 +301,7 @@ | |
"IPN ""%s"". %s Transaction amount %s. Transaction ID: ""%s""","IPN ""%s"". %s Transaction amount %s. Transaction ID: ""%s""" | |
"IPN ""%s"". A dispute has been resolved and closed. %s Transaction amount %s.","IPN ""%s"". A dispute has been resolved and closed. %s Transaction amount %s." | |
"IPN ""%s"". Case type ""%s"". Case ID ""%s"" %s","IPN ""%s"". Case type ""%s"". Case ID ""%s"" %s" | |
+"IPN verification ""%s"".","IPN verification ""%s""." | |
"If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement.","If empty, a default value will be used. Custom URL may be provided by CardinalCommerce agreement." | |
"If not specified, Default Country from General Config will be used","If not specified, Default Country from General Config will be used" | |
"If this option is enabled, customer can change shipping address and shipping method on PayPal website. In live mode works via HTTPS protocol only.","If this option is enabled, customer can change shipping address and shipping method on PayPal website. In live mode works via HTTPS protocol only." | |
@@ -326,11 +333,16 @@ | |
"Merchant Location","Merchant Location" | |
"Merchant Protection Eligibility","Merchant Protection Eligibility" | |
"Merchant Referral Bonus","Merchant Referral Bonus" | |
+"Merchant account doesn\'t have a withdrawal mechanism. Merchant must manually accept or deny this payment from your Account Overview.","Merchant account doesn\'t have a withdrawal mechanism. Merchant must manually accept or deny this payment from your Account Overview." | |
+"Merchant account is not verified.","Merchant account is not verified." | |
+"Merchant denied this pending payment.","Merchant denied this pending payment." | |
"Merchant holds a non-U.S. account and does not have a withdrawal mechanism.","Merchant holds a non-U.S. account and does not have a withdrawal mechanism." | |
+"Merchant must upgrade account to Business or Premier status.","Merchant must upgrade account to Business or Premier status." | |
"Merchant reference ID format is not supported.","Merchant reference ID format is not supported." | |
"Merchants need to apply to PayPal for enabling billing agreements feature. Do not enable this option until PayPal confirms that billing agreements are enabled for your merchant account.","Merchants need to apply to PayPal for enabling billing agreements feature. Do not enable this option until PayPal confirms that billing agreements are enabled for your merchant account." | |
"Mobile Optimized","Mobile Optimized" | |
"Mobile Payment (made via a mobile phone)","Mobile Payment (made via a mobile phone)" | |
+"Multi-currency issue. Merchant must manually accept or deny this payment from PayPal Account Overview.","Multi-currency issue. Merchant must manually accept or deny this payment from PayPal Account Overview." | |
"N/A","N/A" | |
"N/A. Address not checked, or acquirer had no response. Service not available","N/A. Address not checked, or acquirer had no response. Service not available" | |
"N/A. Global Unavailable","N/A. Global Unavailable" | |
@@ -432,7 +444,9 @@ | |
"Payment Method","Payment Method" | |
"Payment Refund initiated by merchant","Payment Refund initiated by merchant" | |
"Payment has been declined. Please try again.","Payment has been declined. Please try again." | |
+"Payment is being reviewed by PayPal for risk.","Payment is being reviewed by PayPal for risk." | |
"Payment transactions disallow storing objects.","Payment transactions disallow storing objects." | |
+"Payment was made to an email address that is not yet registered or confirmed.","Payment was made to an email address that is not yet registered or confirmed." | |
"Payments Advanced","Payments Advanced" | |
"Payments Advanced (Includes Express Checkout)","Payments Advanced (Includes Express Checkout)" | |
"Payments Pro (Includes Express Checkout)","Payments Pro (Includes Express Checkout)" | |
@@ -445,6 +459,7 @@ | |
"Pending PayPal","Pending PayPal" | |
"Place Order","Place Order" | |
"Please agree to all the terms and conditions before placing the order.","Please agree to all the terms and conditions before placing the order." | |
+"Please contact PayPal Customer Service.","Please contact PayPal Customer Service." | |
"Please do not refresh the page until you complete payment.","Please do not refresh the page until you complete payment." | |
"Please re-enable the previously enabled payment solutions.","Please re-enable the previously enabled payment solutions." | |
"Please select a shipping method...","Please select a shipping method..." | |
@@ -471,6 +486,7 @@ | |
"Reimbursement of Chargeback","Reimbursement of Chargeback" | |
"Report Date","Report Date" | |
"Reports","Reports" | |
+"Requested %s and configured %s merchant emails do not match.","Requested %s and configured %s merchant emails do not match." | |
"Require CVV Entry","Require CVV Entry" | |
"Require Customer's Billing Address","Require Customer's Billing Address" | |
"Required PayPal Settings","Required PayPal Settings" | |
@@ -589,6 +605,7 @@ | |
"Virtual PayPal Debit Card Transaction","Virtual PayPal Debit Card Transaction" | |
"Virtual Terminal Payment","Virtual Terminal Payment" | |
"Void","Void" | |
+"Waiting until Customer\'s eCheck will be cleared.","Waiting until Customer\'s eCheck will be cleared." | |
"We prefer PayPal (150 X 40)","We prefer PayPal (150 X 40)" | |
"We prefer PayPal (150 X 60)","We prefer PayPal (150 X 60)" | |
"Website Payments Plus","Website Payments Plus" | |
@@ -607,6 +624,7 @@ | |
"Will appear as a payment option only for customers who have at least one active billing agreement.","Will appear as a payment option only for customers who have at least one active billing agreement." | |
"WorldLink Withdrawal","WorldLink Withdrawal" | |
"Would you like to sign a billing agreement to streamline further purchases with PayPal?","Would you like to sign a billing agreement to streamline further purchases with PayPal?" | |
+"Wrong Order ID (%s) specified.","Wrong Order ID (%s) specified." | |
"Wrong PayPal Express Checkout Token specified.","Wrong PayPal Express Checkout Token specified." | |
"Yes","Yes" | |
"Yes (PayPal recommends this option)","Yes (PayPal recommends this option)" | |
@@ -617,4 +635,13 @@ | |
"You will be redirected to the PayPal website.","You will be redirected to the PayPal website." | |
"You will be required to enter your payment details after you place an order.","You will be required to enter your payment details after you place an order." | |
"Zip/Postal Code","Zip/Postal Code" | |
+"chargeback reimbursed","chargeback reimbursed" | |
+"chargeback settled","chargeback settled" | |
+"customer complaint","customer complaint" | |
+"customer triggered a chargeback","customer triggered a chargeback" | |
+"customer triggered money-back guarantee","customer triggered money-back guarantee" | |
"eBay Auction Payment","eBay Auction Payment" | |
+"merchant refunded payment","merchant refunded payment" | |
+"no reason","no reason" | |
+"reversal of an adjustment","reversal of an adjustment" | |
+"unknown reason","unknown reason" | |
diff -ruN app/locale/en_US/Mage_Review.csv app/locale/en_US/Mage_Review.csv | |
--- app/locale/en_US/Mage_Review.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Review.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -10,6 +10,7 @@ | |
"4 stars","4 stars" | |
"5 star","5 star" | |
"5 stars","5 stars" | |
+"<a href=""%1$s"" onclick=""this.target=\'blank\'"">%2$s %3$s</a> <a href=""mailto:%4$s"">(%4$s)</a>","<a href=""%1$s"" onclick=""this.target=\'blank\'"">%2$s %3$s</a> <a href=""mailto:%4$s"">(%4$s)</a>" | |
"<a href=""%1$s"" onclick=""this.target=\'blank\'"">%2$s</a> <a href=""mailto:%3$s"">(%3$s)</a>","<a href=""%1$s"" onclick=""this.target=\'blank\'"">%2$s</a> <a href=""mailto:%3$s"">(%3$s)</a>" | |
"Add New Review","Add New Review" | |
"Add Your Review","Add Your Review" | |
diff -ruN app/locale/en_US/Mage_Rule.csv app/locale/en_US/Mage_Rule.csv | |
--- app/locale/en_US/Mage_Rule.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Rule.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -19,12 +19,22 @@ | |
"by","by" | |
"contains","contains" | |
"does not contain","does not contain" | |
+"does not contains","does not contains" | |
"equals or greater than","equals or greater than" | |
"equals or less than","equals or less than" | |
+"for","for" | |
+"for greater than","for greater than" | |
+"for or greater than","for or greater than" | |
+"found","found" | |
+"from","from" | |
"greater than","greater than" | |
"is","is" | |
"is not","is not" | |
"is not one of","is not one of" | |
"is one of","is one of" | |
"less than","less than" | |
+"not found","not found" | |
+"not from","not from" | |
"to","to" | |
+"was","was" | |
+"was not","was not" | |
diff -ruN app/locale/en_US/Mage_Sales.csv app/locale/en_US/Mage_Sales.csv | |
--- app/locale/en_US/Mage_Sales.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Sales.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -155,6 +155,7 @@ | |
"Create New Order for New Customer","Create New Order for New Customer" | |
"Create New Order for New Customer in %s","Create New Order for New Customer in %s" | |
"Create New Status","Create New Status" | |
+"Create Order","Create Order" | |
"Create Packages","Create Packages" | |
"Create Shipment","Create Shipment" | |
"Create Shipping Label","Create Shipping Label" | |
@@ -259,6 +260,7 @@ | |
"Gift Message for the Entire Order","Gift Message for the Entire Order" | |
"Gift Message for this Order","Gift Message for this Order" | |
"Gift Options","Gift Options" | |
+"Gift Wrapping for the Entire Order","Gift Wrapping for the Entire Order" | |
"Girth","Girth" | |
"Go to Home Page","Go to Home Page" | |
"Grand Total","Grand Total" | |
@@ -776,6 +778,7 @@ | |
"There is no update for the payment.","There is no update for the payment." | |
"This message will be shown in shopping cart when subtotal after discount less than minimum amount.","This message will be shown in shopping cart when subtotal after discount less than minimum amount." | |
"This operation requires an existing transaction object.","This operation requires an existing transaction object." | |
+"This order contains (%s) items and therefore cannot be edited through the admin interface at this time, if you wish to continue editing the (%s) items will be removed, the order will be canceled and a new order will be placed.","This order contains (%s) items and therefore cannot be edited through the admin interface at this time, if you wish to continue editing the (%s) items will be removed, the order will be canceled and a new order will be placed." | |
"This order no longer exists.","This order no longer exists." | |
"This product does not have any configurable options","This product does not have any configurable options" | |
"This profile state cannot be changed to ""%s"".","This profile state cannot be changed to ""%s""." | |
diff -ruN app/locale/en_US/Mage_Shipping.csv app/locale/en_US/Mage_Shipping.csv | |
--- app/locale/en_US/Mage_Shipping.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Shipping.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -9,6 +9,7 @@ | |
"Close Window","Close Window" | |
"Condition","Condition" | |
"Country","Country" | |
+"Custom Value","Custom Value" | |
"Date","Date" | |
"Delivered on:","Delivered on:" | |
"Delivered to:","Delivered to:" | |
diff -ruN app/locale/en_US/Mage_Weee.csv app/locale/en_US/Mage_Weee.csv | |
--- app/locale/en_US/Mage_Weee.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Weee.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -21,3 +21,4 @@ | |
"Total Incl. Tax","Total Incl. Tax" | |
"Total excl. tax","Total excl. tax" | |
"Total incl. tax","Total incl. tax" | |
+"Total:","Total:" | |
diff -ruN app/locale/en_US/Mage_Wishlist.csv app/locale/en_US/Mage_Wishlist.csv | |
--- app/locale/en_US/Mage_Wishlist.csv 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/locale/en_US/Mage_Wishlist.csv 2015-08-03 12:35:02.000000000 +0200 | |
@@ -22,6 +22,7 @@ | |
"Can\'t save description %s","Can\'t save description %s" | |
"Can\'t update wishlist","Can\'t update wishlist" | |
"Cannot add item to shopping cart","Cannot add item to shopping cart" | |
+"Cannot add the following product(s) to shopping cart: %s.","Cannot add the following product(s) to shopping cart: %s." | |
"Cannot add the item to shopping cart.","Cannot add the item to shopping cart." | |
"Cannot add the selected product to shopping cart because the product was removed from the wishlist","Cannot add the selected product to shopping cart because the product was removed from the wishlist" | |
"Cannot configure product","Cannot configure product" | |
@@ -37,6 +38,7 @@ | |
"Comment:","Comment:" | |
"Configure Wishlist Item","Configure Wishlist Item" | |
"Configured Price:","Configured Price:" | |
+"Could not find such wishlist","Could not find such wishlist" | |
"Could not find wishlist","Could not find wishlist" | |
"Customer My Account My Wishlist","Customer My Account My Wishlist" | |
"Customer My Account Wishlist Sharing Form","Customer My Account Wishlist Sharing Form" | |
@@ -70,6 +72,7 @@ | |
"Product","Product" | |
"Product Details and Comment","Product Details and Comment" | |
"Product(s) %s have required options. Each of them can be added to cart separately only.","Product(s) %s have required options. Each of them can be added to cart separately only." | |
+"Product(s) %s have required options. Each product can only be added individually.","Product(s) %s have required options. Each product can only be added individually." | |
"Qty","Qty" | |
"RSS Feed","RSS Feed" | |
"RSS link to %s's wishlist","RSS link to %s's wishlist" | |
diff -ruN app/Mage.php app/Mage.php | |
--- app/Mage.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ app/Mage.php 2015-08-03 12:35:02.000000000 +0200 | |
@@ -171,7 +171,7 @@ | |
'major' => '1', | |
'minor' => '9', | |
'revision' => '2', | |
- 'patch' => '0', | |
+ 'patch' => '1', | |
'stability' => '', | |
'number' => '', | |
); | |
diff -ruN dev/tests/functional/composer.json dev/tests/functional/composer.json | |
--- dev/tests/functional/composer.json 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/composer.json 2015-08-03 12:35:00.000000000 +0200 | |
@@ -20,6 +20,7 @@ | |
"psr-4": { | |
"Magento\\": ["lib/Magento/", "vendor/magento/mtf/Magento/", "testsuites/Magento/"], | |
"Mage\\": ["generated/Mage/", "tests/app/Mage/"], | |
+ "Enterprise\\": ["generated/Enterprise/", "tests/app/Enterprise/"], | |
"Test\\": "generated/Test/" | |
} | |
} | |
diff -ruN dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php | |
--- dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/Admin/Test/Fixture/Role/RolesResources.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -134,6 +134,9 @@ | |
'sales/order/actions/create/reward_spend', | |
'sales/invoice', | |
'sales/shipment', | |
+ 'sales/enterprise_rma', | |
+ 'sales/enterprise_rma/rma_manage', | |
+ 'sales/enterprise_rma/rma_attribute', | |
'sales/creditmemo', | |
'sales/checkoutagreement', | |
'sales/transactions', | |
@@ -144,6 +147,10 @@ | |
'sales/billing_agreement/actions/view', | |
'sales/billing_agreement/actions/manage', | |
'sales/billing_agreement/actions/use', | |
+ 'sales/enterprise_checkout', | |
+ 'sales/enterprise_checkout/view', | |
+ 'sales/enterprise_checkout/update', | |
+ 'sales/enterprise_giftwrapping', | |
'sales/tax', | |
'sales/tax/classes_customer', | |
'sales/tax/classes_product', | |
diff -ruN dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php | |
--- dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php 1970-01-01 01:00:00.000000000 +0100 | |
+++ dev/tests/functional/tests/app/Mage/Adminhtml/Test/TestCase/CreateStoreEntityTest.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -0,0 +1,184 @@ | |
+<?php | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Open Software License (OSL 3.0) | |
+ * that is bundled with this package in the file LICENSE.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/osl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category Tests | |
+ * @package Tests_Functional | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ */ | |
+ | |
+namespace Mage\Adminhtml\Test\TestCase; | |
+ | |
+use Magento\Mtf\TestCase\Injectable; | |
+use Mage\Core\Test\Fixture\ConfigData; | |
+use Mage\Adminhtml\Test\Fixture\Store; | |
+use Mage\Adminhtml\Test\Page\Adminhtml\StoreIndex; | |
+use Mage\Adminhtml\Test\Page\Adminhtml\StoreNew; | |
+use Mage\Adminhtml\Test\Page\Adminhtml\EditStore; | |
+use Mage\Adminhtml\Test\Page\Adminhtml\DeleteStore; | |
+use Mage\Adminhtml\Test\Page\Adminhtml\EditGroup; | |
+use Mage\Adminhtml\Test\Page\Adminhtml\DeleteGroup; | |
+use Mage\Adminhtml\Test\Page\AdminLogout; | |
+ | |
+/** | |
+ * Test Creation for CreateStoreEntity (Store Management) | |
+ * | |
+ * Steps: | |
+ * 1. Open Backend | |
+ * 2. Go to System -> Manage Stores | |
+ * 3. Click "Create Store View" button | |
+ * 4. Fill data according to dataset | |
+ * 5. Perform all assertions | |
+ * | |
+ * @group Store_Management_(MX) | |
+ * @ZephyrId MPERF-6650 | |
+ */ | |
+class CreateStoreEntityTest extends Injectable | |
+{ | |
+ /** | |
+ * Page StoreIndex. | |
+ * | |
+ * @var StoreIndex | |
+ */ | |
+ protected $storeIndex; | |
+ | |
+ /** | |
+ * Page StoreNew. | |
+ * | |
+ * @var StoreNew | |
+ */ | |
+ protected $storeNew; | |
+ | |
+ /** | |
+ * Current Store View. | |
+ * | |
+ * @var Store | |
+ */ | |
+ protected $store; | |
+ | |
+ /** | |
+ * Page EditStore. | |
+ * | |
+ * @var EditStore | |
+ */ | |
+ protected $editStore; | |
+ | |
+ /** | |
+ * Page DeleteStore. | |
+ * | |
+ * @var DeleteStore | |
+ */ | |
+ protected $deleteStore; | |
+ | |
+ /** | |
+ * Page EditGroup. | |
+ * | |
+ * @var EditGroup | |
+ */ | |
+ protected $editGroup; | |
+ | |
+ /** | |
+ * Page DeleteGroup. | |
+ * | |
+ * @var DeleteGroup | |
+ */ | |
+ protected $deleteGroup; | |
+ | |
+ /** | |
+ * Admin logout page. | |
+ * | |
+ * @var AdminLogout | |
+ */ | |
+ protected $adminLogout; | |
+ | |
+ /** | |
+ * Preparing pages for test. | |
+ * | |
+ * @param StoreIndex $storeIndex | |
+ * @param StoreNew $storeNew | |
+ * @param EditStore $editStore | |
+ * @param DeleteStore $deleteStore | |
+ * @param EditGroup $editGroup | |
+ * @param DeleteGroup $deleteGroup | |
+ * @param AdminLogout $adminLogout | |
+ * @return void | |
+ */ | |
+ public function __inject( | |
+ StoreIndex $storeIndex, | |
+ StoreNew $storeNew, | |
+ EditStore $editStore, | |
+ DeleteStore $deleteStore, | |
+ EditGroup $editGroup, | |
+ DeleteGroup $deleteGroup, | |
+ AdminLogout $adminLogout | |
+ ) { | |
+ $this->storeIndex = $storeIndex; | |
+ $this->storeNew = $storeNew; | |
+ $this->editStore = $editStore; | |
+ $this->deleteStore = $deleteStore; | |
+ $this->editGroup = $editGroup; | |
+ $this->deleteGroup = $deleteGroup; | |
+ $this->adminLogout = $adminLogout; | |
+ } | |
+ | |
+ /** | |
+ * Run CreateStoreEntity test. | |
+ * | |
+ * @param Store $store | |
+ * @param ConfigData $config | |
+ * @return void | |
+ */ | |
+ public function test(Store $store, ConfigData $config) | |
+ { | |
+ // Preconditions | |
+ $this->store = $store; | |
+ $config->persist(); | |
+ $this->adminLogout->open(); | |
+ | |
+ // Steps | |
+ $this->storeIndex->open(); | |
+ $this->storeIndex->getGridPageActions()->addStoreView(); | |
+ $this->storeNew->getStoreForm()->fill($store); | |
+ $this->storeNew->getFormPageActions()->save(); | |
+ } | |
+ | |
+ /** | |
+ * Delete store. | |
+ * | |
+ * @return void | |
+ */ | |
+ public function tearDown() | |
+ { | |
+ $this->objectManager->create( | |
+ 'Mage\Core\Test\TestStep\SetupConfigurationStep', | |
+ ['configData' => 'store_view_local', 'rollback' => true] | |
+ )->run(); | |
+ $this->storeIndex->open(); | |
+ if ($this->store->getGroupId() === 'Main Website/Main Website Store') { | |
+ $this->storeIndex->getStoreGrid()->openStore($this->store); | |
+ $this->editStore->getFormPageActions()->delete(); | |
+ $this->deleteStore->getFormPageActions()->delete(); | |
+ } else { | |
+ $this->storeIndex->getStoreGrid()->openStoreGroup(explode('/', $this->store->getGroupId())[1]); | |
+ $this->editGroup->getFormPageActions()->delete(); | |
+ $this->deleteGroup->getFormPageActions()->delete(); | |
+ } | |
+ } | |
+} | |
diff -ruN dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/AddProductsToMultipleWishListTest.xml dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/AddProductsToMultipleWishListTest.xml | |
--- dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/AddProductsToMultipleWishListTest.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/AddProductsToMultipleWishListTest.xml 2015-08-03 12:35:00.000000000 +0200 | |
@@ -0,0 +1,40 @@ | |
+<?xml version="1.0"?> | |
+<!-- | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Open Software License (OSL 3.0) | |
+ * that is bundled with this package in the file LICENSE.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/osl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category Tests | |
+ * @package Tests_Functional | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ */ | |
+ --> | |
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/variations.xsd"> | |
+ <testCase name="Enterprise\Wishlist\Test\TestCase\AddProductsToMultipleWishListTest"> | |
+ <variation name="AddProductsToMultipleWishListTestVariation6"> | |
+ <data name="multipleWishlist/dataSet" xsi:type="string">wishlist_public</data> | |
+ <data name="products" xsi:type="string">bundleProduct::bundle_dynamic_product</data> | |
+ <data name="duplicate/0" xsi:type="boolean">false</data> | |
+ <data name="qtyToAction/0" xsi:type="string">1</data> | |
+ <constraint name="Mage\Wishlist\Test\Constraint\AssertAddProductsToWishlistSuccessMessage" /> | |
+ <constraint name="Enterprise\Wishlist\Test\Constraint\AssertProductsInCustomWishlist" /> | |
+ <constraint name="Mage\Wishlist\Test\Constraint\AssertProductsArePresentInCustomerBackendWishlist" /> | |
+ </variation> | |
+ </testCase> | |
+</config> | |
diff -ruN dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateRmaEntityOnBackendTest.xml dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateRmaEntityOnBackendTest.xml | |
--- dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateRmaEntityOnBackendTest.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ dev/tests/functional/tests/app/Mage/Bundle/Test/TestCase/CreateRmaEntityOnBackendTest.xml 2015-08-03 12:35:00.000000000 +0200 | |
@@ -0,0 +1,44 @@ | |
+<?xml version="1.0"?> | |
+<!-- | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Open Software License (OSL 3.0) | |
+ * that is bundled with this package in the file LICENSE.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/osl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category Tests | |
+ * @package Tests_Functional | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ */ | |
+--> | |
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/variations.xsd"> | |
+ <testCase name="Enterprise\Rma\Test\TestCase\CreateRmaEntityOnBackendTest"> | |
+ <variation name="CreateRmaEntityOnBackendTestVariation3"> | |
+ <data name="rma/data/order_id/dataSet" xsi:type="string">bundle_fixed</data> | |
+ <data name="rma/data/items/data/0/qty_requested" xsi:type="string">1</data> | |
+ <data name="rma/data/items/data/0/reason" xsi:type="string">Out of Service</data> | |
+ <data name="rma/data/items/data/0/condition" xsi:type="string">Unopened</data> | |
+ <data name="rma/data/items/data/0/resolution" xsi:type="string">Store Credit</data> | |
+ <data name="rma/data/contact_email" xsi:type="string">test%isolation%@example.com</data> | |
+ <data name="rma/data/comment/comment" xsi:type="string">comments %isolation%</data> | |
+ <data name="rma/data/comment/is_visible_on_front" xsi:type="string">Yes</data> | |
+ <data name="rma/data/status" xsi:type="string">Pending</data> | |
+ <constraint name="Enterprise\Rma\Test\Constraint\AssertRmaInGrid" /> | |
+ <constraint name="Enterprise\Rma\Test\Constraint\AssertRmaBundleOnFrontendForCustomer" /> | |
+ </variation> | |
+ </testCase> | |
+</config> | |
diff -ruN dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php | |
--- dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/Checkout/Test/Fixture/Cart/Items.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -46,6 +46,7 @@ | |
'simple' => 'Mage\Catalog\Test\Fixture\Cart\Item', | |
'configurable' => 'Mage\Catalog\Test\Fixture\ConfigurableProduct\Cart\Item', | |
'downloadable' => 'Mage\Downloadable\Test\Fixture\Cart\Item', | |
+ 'giftcard' => 'Enterprise\GiftCard\Test\Fixture\Cart\Item', | |
'virtual' => 'Mage\Catalog\Test\Fixture\Cart\Item', | |
'grouped' => 'Mage\Catalog\Test\Fixture\GroupedProduct\Cart\Item', | |
'bundle' => 'Mage\Bundle\Test\Fixture\Cart\Item' | |
diff -ruN dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/AddProductsToMultipleWishListTest.xml dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/AddProductsToMultipleWishListTest.xml | |
--- dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/AddProductsToMultipleWishListTest.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ dev/tests/functional/tests/app/Mage/Downloadable/Test/TestCase/AddProductsToMultipleWishListTest.xml 2015-08-03 12:35:00.000000000 +0200 | |
@@ -0,0 +1,40 @@ | |
+<?xml version="1.0"?> | |
+<!-- | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Open Software License (OSL 3.0) | |
+ * that is bundled with this package in the file LICENSE.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/osl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category Tests | |
+ * @package Tests_Functional | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ */ | |
+ --> | |
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/mtf/etc/variations.xsd"> | |
+ <testCase name="Enterprise\Wishlist\Test\TestCase\AddProductsToMultipleWishListTest"> | |
+ <variation name="AddProductsToMultipleWishListTestVariation5"> | |
+ <data name="multipleWishlist/dataSet" xsi:type="string">wishlist_public</data> | |
+ <data name="products" xsi:type="string">downloadableProduct::with_two_separately_links</data> | |
+ <data name="duplicate/0" xsi:type="boolean">false</data> | |
+ <data name="qtyToAction/0" xsi:type="string">1</data> | |
+ <constraint name="Mage\Wishlist\Test\Constraint\AssertAddProductsToWishlistSuccessMessage" /> | |
+ <constraint name="Enterprise\Wishlist\Test\Constraint\AssertProductsInCustomWishlist" /> | |
+ <constraint name="Mage\Wishlist\Test\Constraint\AssertProductsArePresentInCustomerBackendWishlist" /> | |
+ </variation> | |
+ </testCase> | |
+</config> | |
diff -ruN dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php | |
--- dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/Paypal/Test/Block/AbstractReview.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -90,7 +90,6 @@ | |
public function continueCheckout() | |
{ | |
$this->_rootElement->find($this->continue)->click(); | |
- $this->waitLoader(); | |
} | |
/** | |
diff -ruN dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php | |
--- dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/Paypal/Test/Block/Express/Review.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -80,14 +80,4 @@ | |
$this->_rootElement->find($this->shippingMethod, Locator::SELECTOR_CSS, 'optgroupselect') | |
->setValue($service . "/" . $method); | |
} | |
- | |
- /** | |
- * Check if 'Place Order' button is visible. | |
- * | |
- * @return bool | |
- */ | |
- public function isPlaceOrderVisible() | |
- { | |
- return $this->_rootElement->find($this->placeOrder)->isVisible(); | |
- } | |
} | |
diff -ruN dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.xml dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.xml | |
--- dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.xml 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/Paypal/Test/TestCase/TestCreationForExpressCheckoutWithinPayPalButtonTest.xml 2015-08-03 12:35:00.000000000 +0200 | |
@@ -32,7 +32,7 @@ | |
<data name="salesRule" xsi:type="string">active_sales_rule_for_all_groups</data> | |
<data name="configData" xsi:type="string">paypal_express_order_line_items_mark_require_billing_address</data> | |
<data name="shippingMethod" xsi:type="string">Flat Rate/Fixed</data> | |
- <data name="grandTotal" xsi:type="string">215</data> | |
+ <data name="grandTotal" xsi:type="string">115</data> | |
<data name="status" xsi:type="string">Processing</data> | |
<data name="transactionType" xsi:type="string">Authorization</data> | |
<data name="ipn" xsi:type="string">-</data> | |
@@ -68,7 +68,7 @@ | |
<data name="salesRule" xsi:type="string">active_sales_rule_for_all_groups</data> | |
<data name="configData" xsi:type="string">payflow_express_authorization_specificcountry_us</data> | |
<data name="shippingMethod" xsi:type="string">-</data> | |
- <data name="grandTotal" xsi:type="string">500</data> | |
+ <data name="grandTotal" xsi:type="string">400</data> | |
<data name="status" xsi:type="string">Processing</data> | |
<data name="transactionType" xsi:type="string">Authorization</data> | |
<data name="ipn" xsi:type="string">-</data> | |
@@ -106,7 +106,7 @@ | |
<data name="salesRule" xsi:type="string">-</data> | |
<data name="configData" xsi:type="string">payflow_express_sale_specificcountry_gb_line_items</data> | |
<data name="shippingMethod" xsi:type="string">Flat Rate/Fixed</data> | |
- <data name="grandTotal" xsi:type="string">205</data> | |
+ <data name="grandTotal" xsi:type="string">105</data> | |
<data name="status" xsi:type="string">Processing</data> | |
<data name="transactionType" xsi:type="string">Authorization</data> | |
<data name="ipn" xsi:type="string">Completed</data> | |
@@ -124,7 +124,7 @@ | |
<data name="salesRule" xsi:type="string">-</data> | |
<data name="configData" xsi:type="string">paypal_express_sale_specificcountry_us_shipping_options_mark</data> | |
<data name="shippingMethod" xsi:type="string">Flat Rate/Fixed</data> | |
- <data name="grandTotal" xsi:type="string">315</data> | |
+ <data name="grandTotal" xsi:type="string">215</data> | |
<data name="status" xsi:type="string">Processing</data> | |
<data name="transactionType" xsi:type="string">Authorization</data> | |
<data name="ipn" xsi:type="string">Completed</data> | |
@@ -142,7 +142,7 @@ | |
<data name="salesRule" xsi:type="string">active_sales_rule_for_all_groups</data> | |
<data name="configData" xsi:type="string">paypal_express_sale_specificcountry_us_shipping_options_mark</data> | |
<data name="shippingMethod" xsi:type="string">-</data> | |
- <data name="grandTotal" xsi:type="string">500</data> | |
+ <data name="grandTotal" xsi:type="string">400</data> | |
<data name="status" xsi:type="string">Processing</data> | |
<data name="transactionType" xsi:type="string">Authorization</data> | |
<data name="ipn" xsi:type="string">Completed</data> | |
diff -ruN dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php | |
--- dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/Paypal/Test/TestStep/ContinuePayPalCheckoutStep.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -29,7 +29,6 @@ | |
use Mage\Checkout\Test\Page\CheckoutOnepageSuccess; | |
use Mage\Paypal\Test\Fixture\PaypalCustomer; | |
use Mage\Paypal\Test\Page\Paypal; | |
-use Mage\Paypal\Test\Page\PaypalExpressReview; | |
use Magento\Mtf\TestStep\TestStepInterface; | |
use Mage\Paypal\Test\Block\AbstractReview; | |
@@ -53,13 +52,6 @@ | |
protected $checkoutOnepageSuccess; | |
/** | |
- * Pay Pal express review page. | |
- * | |
- * @var PaypalExpressReview | |
- */ | |
- protected $paypalExpressReview; | |
- | |
- /** | |
* PayPal customer. | |
* | |
* @var PaypalCustomer | |
@@ -77,17 +69,14 @@ | |
* @constructor | |
* @param Paypal $paypalPage | |
* @param CheckoutOnepageSuccess $checkoutOnepageSuccess | |
- * @param PaypalExpressReview $paypalExpressReview | |
* @param PaypalCustomer $paypalCustomer | |
*/ | |
public function __construct( | |
Paypal $paypalPage, | |
CheckoutOnepageSuccess $checkoutOnepageSuccess, | |
- PaypalExpressReview $paypalExpressReview, | |
PaypalCustomer $paypalCustomer | |
) { | |
$this->paypalPage = $paypalPage; | |
- $this->paypalExpressReview = $paypalExpressReview; | |
$this->checkoutOnepageSuccess = $checkoutOnepageSuccess; | |
$this->customer = $paypalCustomer; | |
} | |
@@ -104,12 +93,9 @@ | |
: $this->paypalPage->getOldReviewBlock(); | |
$this->selectCustomerAddress($this->customer); | |
$this->reviewBlock->continueCheckout(); | |
- $this->paypalExpressReview->getReviewBlock()->isPlaceOrderVisible(); | |
- $orderId = $this->paypalExpressReview->getReviewBlock()->isPlaceOrderVisible() | |
- ? null | |
- : $this->checkoutOnepageSuccess->getSuccessBlock()->getGuestOrderId(); | |
+ $successBlock = $this->checkoutOnepageSuccess->getSuccessBlock(); | |
- return ['orderId' => $orderId]; | |
+ return ['orderId' => $successBlock->isVisible() ? $successBlock->getGuestOrderId() : null]; | |
} | |
/** | |
diff -ruN dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php | |
--- dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/SalesRule/Test/Handler/SalesRule/Curl.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -93,6 +93,9 @@ | |
'aggregator' => 'all', | |
'value' => '1', | |
], | |
+ 'Customer Segment' => [ | |
+ 'type' => 'enterprise_customersegment/segment_condition_segment', | |
+ ], | |
'Category' => [ | |
'type' => 'salesrule/rule_condition_product', | |
'attribute' => 'category_ids', | |
diff -ruN dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget.xml dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget.xml | |
--- dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ dev/tests/functional/tests/app/Mage/Widget/Test/Fixture/Widget.xml 2015-08-03 12:35:00.000000000 +0200 | |
@@ -0,0 +1,77 @@ | |
+<?xml version="1.0"?> | |
+<!-- | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Open Software License (OSL 3.0) | |
+ * that is bundled with this package in the file LICENSE.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/osl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category Tests | |
+ * @package Tests_Functional | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ */ | |
+--> | |
+<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="../../../../../../vendor/magento/mtf/etc/fixture.xsd"> | |
+ <fixture name="widget" module="Mage_Widget" type="flat" entity_type="widget_instance" collection="Mage\Widget\Model\Resource\Widget\Instance\Collection" identifier="parameters" repository_class="Mage\Widget\Test\Repository\Widget" handler_interface="Mage\Widget\Test\Handler\Widget\WidgetInterface" class="Mage\Widget\Test\Fixture\Widget"> | |
+ <dataset name="default"> | |
+ <field name="type" xsi:type="string">Banner Rotator</field> | |
+ <field name="package_theme" xsi:type="string">rwd / enterprise</field> | |
+ <field name="title" xsi:type="string">Test Frontend App</field> | |
+ <field name="widget_instance" xsi:type="array"> | |
+ <item name="0" xsi:type="array"> | |
+ <item name="page_group" xsi:type="string">all_pages</item> | |
+ <item name="all_pages" xsi:type="array"> | |
+ <item name="layout_handle" xsi:type="string">default</item> | |
+ <item name="for" xsi:type="string">all</item> | |
+ <item name="block" xsi:type="string">content</item> | |
+ <item name="template" xsi:type="string">widget/block.phtml</item> | |
+ </item> | |
+ </item> | |
+ </field> | |
+ <field name="widgetOptions" xsi:type="array"> | |
+ <item name="0" xsi:type="array"> | |
+ <item name="type_id" xsi:type="string">bannerRotator</item> | |
+ </item> | |
+ </field> | |
+ </dataset> | |
+ <field name="instance_id" is_required="1"> | |
+ <default_value xsi:type="null" /> | |
+ </field> | |
+ <field name="instance_type" is_required="0"> | |
+ <default_value xsi:type="null" /> | |
+ </field> | |
+ <field name="package_theme" is_required="0" group="settings"> | |
+ <default_value xsi:type="null" /> | |
+ </field> | |
+ <field name="title" is_required="0" group="frontend_properties"> | |
+ <default_value xsi:type="null" /> | |
+ </field> | |
+ <field name="store_ids" source="Mage\Widget\Test\Fixture\Widget\StoreIds"/> | |
+ <field name="parameters" is_required="0"> | |
+ <default_value xsi:type="null" /> | |
+ </field> | |
+ <field name="sort_order" is_required="0"> | |
+ <default_value xsi:type="string">0</default_value> | |
+ </field> | |
+ <field name="type" group="settings"/> | |
+ <field name="widget_instance"/> | |
+ <field name="id"/> | |
+ <field name="page_id"/> | |
+ <field name="layout" group="layout_updates" source="Mage\Widget\Test\Fixture\Widget\LayoutUpdates"/> | |
+ <field name="widgetOptions" group="widget_options" source="Mage\Widget\Test\Fixture\Widget\WidgetOptions"/> | |
+ </fixture> | |
+</config> | |
diff -ruN dev/tests/functional/tests/app/Mage/Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml dev/tests/functional/tests/app/Mage/Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml | |
--- dev/tests/functional/tests/app/Mage/Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml 2015-06-26 10:53:36.000000000 +0200 | |
+++ dev/tests/functional/tests/app/Mage/Widget/Test/Page/Adminhtml/WidgetInstanceEdit.xml 2015-08-03 12:35:00.000000000 +0200 | |
@@ -28,6 +28,7 @@ | |
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../vendor/magento/mtf/etc/pages.xsd"> | |
<page name="WidgetInstanceEdit" area="Adminhtml" mca="widget_instance/edit" module="Mage_Widget"> | |
<block name="widgetForm" class="Mage\Widget\Test\Block\Adminhtml\Widget\Instance\Edit\WidgetForm" locator="[id='page:main-container']" strategy="css selector"/> | |
+ <block name="bannerGrid" class="Enterprise\Banner\Test\Block\Adminhtml\Banner\Grid" locator="#bannerGrid" strategy="css selector"/> | |
<block name="pageActionsBlock" class="Mage\Widget\Test\Block\Adminhtml\FormPageActions" locator=".form-buttons" strategy="css selector"/> | |
<block name="templateBlock" class="Mage\Adminhtml\Test\Block\Template" locator="body" strategy="css selector"/> | |
</page> | |
diff -ruN downloader/Maged/Controller.php downloader/Maged/Controller.php | |
--- downloader/Maged/Controller.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ downloader/Maged/Controller.php 2015-08-03 12:35:14.000000000 +0200 | |
@@ -1034,7 +1034,7 @@ | |
'major' => '1', | |
'minor' => '9', | |
'revision' => '2', | |
- 'patch' => '0', | |
+ 'patch' => '1', | |
'stability' => '', | |
'number' => '', | |
); | |
diff -ruN downloader/template/connect/packages_prepare.phtml downloader/template/connect/packages_prepare.phtml | |
--- downloader/template/connect/packages_prepare.phtml 2015-06-26 10:53:38.000000000 +0200 | |
+++ downloader/template/connect/packages_prepare.phtml 2015-08-03 12:35:14.000000000 +0200 | |
@@ -33,7 +33,6 @@ | |
Extension dependencies | |
<form action="<?php | |
echo $this->url('connectInstallPackagePost')?>" method="post" target="connect_iframe" onsubmit="onSubmit(this)"> | |
- <input type="hidden" name="install_package_id" value="<?php echo $this->get('package_id'); ?>"> | |
<input name="form_key" type="hidden" value="<?php echo $this->getFormKey() ?>" /> | |
<input type="hidden" name="install_package_id" value="<?php echo $this->escapeHtml($this->get('package_id')); ?>"> | |
<table cellspacing="0" cellpadding="0" width="100%"> | |
diff -ruN errors/design.xml errors/design.xml | |
--- errors/design.xml 2015-06-26 10:53:36.000000000 +0200 | |
+++ errors/design.xml 2015-08-03 12:35:00.000000000 +0200 | |
@@ -1,28 +1,10 @@ | |
<?xml version="1.0"?> | |
<!-- | |
/** | |
- * Magento Enterprise Edition | |
+ * {license_notice} | |
* | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Magento Enterprise Edition License | |
- * that is bundled with this package in the file LICENSE_EE.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://www.magentocommerce.com/license/enterprise-edition | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
- * | |
- * @category Mage | |
- * @package Errors | |
- * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com) | |
- * @license http://www.magentocommerce.com/license/enterprise-edition | |
+ * @copyright {copyright} | |
+ * @license {license_link} | |
*/ | |
--> | |
<config> | |
diff -ruN js/extjs/fix-defer-before.js js/extjs/fix-defer-before.js | |
--- js/extjs/fix-defer-before.js 2015-06-26 10:53:38.000000000 +0200 | |
+++ js/extjs/fix-defer-before.js 2015-08-03 12:35:14.000000000 +0200 | |
@@ -9,17 +9,17 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
* @category Mage | |
* @package js | |
- * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com) | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/*@cc_on | |
diff -ruN js/extjs/fix-defer.js js/extjs/fix-defer.js | |
--- js/extjs/fix-defer.js 2015-06-26 10:53:38.000000000 +0200 | |
+++ js/extjs/fix-defer.js 2015-08-03 12:35:14.000000000 +0200 | |
@@ -1,37 +1,37 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
- * | |
- * @category Mage | |
- * @package js | |
- * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
- | |
-(function(){ | |
- var eDefer = Function.prototype.defer; | |
- Function.prototype.defer = function() { | |
- var argLen = arguments.length; | |
- if (argLen==0 || (argLen==1 && arguments[0]==1)) { | |
- //common for Prototype Ajax requests | |
- return this.delay.curry(0.01).apply(this, arguments); | |
- } | |
- | |
- return eDefer.apply(this, arguments); | |
- } | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Academic Free License (AFL 3.0) | |
+ * that is bundled with this package in the file LICENSE_AFL.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/afl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category Mage | |
+ * @package js | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ */ | |
+ | |
+(function(){ | |
+ var eDefer = Function.prototype.defer; | |
+ Function.prototype.defer = function() { | |
+ var argLen = arguments.length; | |
+ if (argLen==0 || (argLen==1 && arguments[0]==1)) { | |
+ //common for Prototype Ajax requests | |
+ return this.delay.curry(0.01).apply(this, arguments); | |
+ } | |
+ | |
+ return eDefer.apply(this, arguments); | |
+ } | |
})(); | |
\ No newline at end of file | |
diff -ruN js/lib/jquery/noconflict.js js/lib/jquery/noconflict.js | |
--- js/lib/jquery/noconflict.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ js/lib/jquery/noconflict.js 2015-08-03 12:35:16.000000000 +0200 | |
@@ -9,17 +9,17 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @category design | |
- * @package rwd_default | |
- * @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com) | |
+ * @category Mage | |
+ * @package js | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
diff -ruN lib/flex/varien/varien/upload/Uploader.as lib/flex/varien/varien/upload/Uploader.as | |
--- lib/flex/varien/varien/upload/Uploader.as 2015-06-26 10:53:36.000000000 +0200 | |
+++ lib/flex/varien/varien/upload/Uploader.as 2015-08-03 12:35:02.000000000 +0200 | |
@@ -9,15 +9,17 @@ | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
+ * @category Mage | |
+ * @package Mage_Uploader | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
package varien.upload | |
diff -ruN lib/flex/varien/varien/upload/UploaderEvent.as lib/flex/varien/varien/upload/UploaderEvent.as | |
--- lib/flex/varien/varien/upload/UploaderEvent.as 2015-06-26 10:53:36.000000000 +0200 | |
+++ lib/flex/varien/varien/upload/UploaderEvent.as 2015-08-03 12:35:02.000000000 +0200 | |
@@ -9,15 +9,17 @@ | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
+ * @category Mage | |
+ * @package Mage_Uploader | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
package varien.upload | |
diff -ruN lib/flex/varien/varien/upload/UploaderSingle.as lib/flex/varien/varien/upload/UploaderSingle.as | |
--- lib/flex/varien/varien/upload/UploaderSingle.as 2015-06-26 10:53:36.000000000 +0200 | |
+++ lib/flex/varien/varien/upload/UploaderSingle.as 2015-08-03 12:35:02.000000000 +0200 | |
@@ -9,15 +9,17 @@ | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
+ * @category Mage | |
+ * @package Mage_Uploader | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
package varien.upload | |
diff -ruN pkginfo/.htaccess pkginfo/.htaccess | |
--- pkginfo/.htaccess 2015-06-26 10:53:38.000000000 +0200 | |
+++ pkginfo/.htaccess 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,2 +0,0 @@ | |
-Order deny,allow | |
-Deny from all | |
diff -ruN pkginfo/Mage_All_Latest.txt pkginfo/Mage_All_Latest.txt | |
--- pkginfo/Mage_All_Latest.txt 2015-06-26 10:53:38.000000000 +0200 | |
+++ pkginfo/Mage_All_Latest.txt 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,9 +0,0 @@ | |
-THIS IS A METAPACKAGE FOR CORE MAGENTO INSTALLATION | |
- | |
-IT DEPENDS ON FOLLOWING PACKAGES: | |
- | |
-* Mage_Core_Modules | |
-* Mage_Core_Adminhtml | |
-* Interface_Adminhtml_Default | |
-* Interface_Frontend_Default | |
-* Interface_Install_Default | |
\ No newline at end of file | |
diff -ruN pkginfo/Mage_All.txt pkginfo/Mage_All.txt | |
--- pkginfo/Mage_All.txt 2015-06-26 10:53:38.000000000 +0200 | |
+++ pkginfo/Mage_All.txt 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,12 +0,0 @@ | |
-THIS IS A METAPACKAGE FOR UPGRADE FROM 0.9 TO 1.0 | |
- | |
-IT PREVIOUSLY CONTAINED AND NOW DEPENDS ON FOLLOWING SUBPACKAGES: | |
- | |
-* Mage_Core_Modules | |
-* Mage_Core_Adminhtml | |
-* Lib_Google_Checkout | |
-* Lib_Js_Calendar | |
-* Lib_Js_Ext | |
-* Lib_Js_Mage | |
-* Lib_Js_Prototype | |
-* Lib_Js_Tinymce | |
\ No newline at end of file | |
diff -ruN RELEASE_NOTES.txt RELEASE_NOTES.txt | |
--- RELEASE_NOTES.txt 2015-06-26 10:53:38.000000000 +0200 | |
+++ RELEASE_NOTES.txt 2015-08-03 12:35:00.000000000 +0200 | |
@@ -1,3 +1,13 @@ | |
+==== 1.9.2.1 ==== | |
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
+] NOTE: Current Release Notes are maintained at: [ | |
+] [ | |
+] http://merch.docs.magento.com/ce/user_guide/Magento_Community_Edition_User_Guide.html#magento/release-notes-ce-1.9.2.html [ | |
+] [ | |
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
+ | |
==== 1.9.2.0 ==== | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
diff -ruN shell/abstract.php shell/abstract.php | |
--- shell/abstract.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ shell/abstract.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -10,18 +10,18 @@ | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
* @category Mage | |
* @package Mage_Shell | |
- * @copyright Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
/** | |
diff -ruN shell/compiler.php shell/compiler.php | |
--- shell/compiler.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ shell/compiler.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -10,18 +10,18 @@ | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
* @category Mage | |
* @package Mage_Shell | |
- * @copyright Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
require_once 'abstract.php'; | |
diff -ruN shell/indexer.php shell/indexer.php | |
--- shell/indexer.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ shell/indexer.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -10,18 +10,18 @@ | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
* @category Mage | |
* @package Mage_Shell | |
- * @copyright Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
require_once 'abstract.php'; | |
diff -ruN shell/log.php shell/log.php | |
--- shell/log.php 2015-06-26 10:53:38.000000000 +0200 | |
+++ shell/log.php 2015-08-03 12:35:00.000000000 +0200 | |
@@ -10,18 +10,18 @@ | |
* http://opensource.org/licenses/osl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
* @category Mage | |
* @package Mage_Shell | |
- * @copyright Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) | |
*/ | |
require_once 'abstract.php'; | |
diff -ruN skin/adminhtml/default/default/below_ie7.css skin/adminhtml/default/default/below_ie7.css | |
--- skin/adminhtml/default/default/below_ie7.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/below_ie7.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/* Set min-width */ | |
.wrapper { width:expression(document.body.clientWidth<1004?'1003px':'auto'); zoom:1; } | |
@@ -54,4 +56,4 @@ | |
.product-options .options-list li { zoom:1; } | |
/* Hover Fix */ | |
-iframe.hover-fix { position:absolute; left:-1px; top:-1px; z-index:-1; background:transparent; filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0); } | |
\ No newline at end of file | |
+iframe.hover-fix { position:absolute; left:-1px; top:-1px; z-index:-1; background:transparent; filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0); } | |
diff -ruN skin/adminhtml/default/default/boxes.css skin/adminhtml/default/default/boxes.css | |
--- skin/adminhtml/default/default/boxes.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/boxes.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/***************** WIDGETS ****************** | |
diff -ruN skin/adminhtml/default/default/custom.css skin/adminhtml/default/default/custom.css | |
--- skin/adminhtml/default/default/custom.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/custom.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,14 +9,17 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
+ | |
diff -ruN skin/adminhtml/default/default/ie7.css skin/adminhtml/default/default/ie7.css | |
--- skin/adminhtml/default/default/ie7.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/ie7.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,19 +9,21 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
.db-menu ul li a { background:transparent url(images/db-menu-bg-up.gif) repeat-x 0px 3px; height:26px; } | |
.db-menu ul li a:hover, .db-menu ul li a.hover { background:transparent url(images/db-menu-bg-hov.gif) repeat-x 0px 3px; } | |
.graph-block { height:auto; } | |
-.db-menu { width:947px; } | |
\ No newline at end of file | |
+.db-menu { width:947px; } | |
diff -ruN skin/adminhtml/default/default/iestyles.css skin/adminhtml/default/default/iestyles.css | |
--- skin/adminhtml/default/default/iestyles.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/iestyles.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/* Clearing */ | |
.message-popup .message-popup-head, | |
diff -ruN skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-catalog.css skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-catalog.css | |
--- skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-catalog.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-catalog.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,280 +1,304 @@ | |
-body { margin: 0; padding: 0 } | |
- | |
-.main-block | |
-{ | |
- width: 320px; | |
- height: 450px; | |
-} | |
-.header-sign-1 | |
-{ | |
- font: bold 12px arial; | |
- color: #e9e9e9; | |
- float: left; | |
- padding: 5px 0 3px 3px; | |
- height: 10px; | |
-} | |
-.top-header | |
-{ | |
- height: 20px | |
-} | |
- | |
-.battery | |
-{ | |
- height: 16px; | |
- width: 25px; | |
- float: right; | |
- margin: 0px 5px 5px 13px; | |
-} | |
- | |
-.volume | |
-{ | |
- height: 16px; | |
- width: 25px; | |
- float: left; | |
-} | |
- | |
-.antenna | |
-{ | |
- height: 16px; | |
- width: 18px; | |
- float: left; | |
- padding-left: 20px; | |
-} | |
-.time | |
-{ | |
- width: 50%; | |
- position:relative; | |
- top:3px; | |
- text-align: center; | |
- font: bold 12px arial; | |
- color: #e9e9e9; | |
- float: left; | |
-} | |
- | |
-.main-header | |
-{ | |
- width: 100%; | |
- height: 50px; | |
- color: #f3f3f3; | |
- text-align: center; | |
-} | |
-.main-header-text | |
-{ | |
- | |
-} | |
- | |
-.clearB | |
-{ | |
- clear: both; | |
- height: 1px; | |
-} | |
-.btn-l | |
-{ | |
- position:relative; | |
- left: 0px; | |
- top:7px; | |
- width: 70px; | |
- height: 32px; | |
- text-align: center; | |
- float: left; | |
- margin: 0 0 0 15px; | |
- background:url('btn-l.png') center center no-repeat; | |
-} | |
- | |
-.btn-r | |
-{ | |
- position:relative; | |
- right: 0px; | |
- top:7px; | |
- width: 72px; | |
- height: 32px; | |
- text-align: center; | |
- float: right; | |
- margin: 0 20px 0 0; | |
- background:url('btn-r.png') center center no-repeat; | |
-} | |
-.main-header-text | |
-{ | |
- width: 110px; | |
- height: 32px; | |
- text-align: center; | |
- float: left; | |
-} | |
- | |
- | |
- | |
-.btn-txt | |
-{ | |
- position:relative; | |
- top:8px; | |
-} | |
-.title | |
-{ | |
- position:relative; | |
- top:0px; | |
- font: bold 19px arial; | |
- color: #e9e9e9; | |
-} | |
-.filter-header | |
-{ | |
- height: 25px; | |
- text-align: center; | |
- vertical-align: middle; | |
-} | |
-.filter-applied | |
-{ | |
- position:relative; | |
- top:5px; | |
-} | |
-.filter-circle | |
-{ | |
- width: 18px; | |
- height: 18px; | |
- background:url('circle.png') center center no-repeat; | |
-} | |
-.filter-text | |
-{ | |
- padding: 0 0 0 5px; | |
- font-size: 11px; | |
-} | |
-.filter-lines | |
-{ | |
- float: right; | |
- width: 25px; | |
- height: 25px; | |
- padding: 0 25px 0 0; | |
- background:url('lines-h.png') center center no-repeat; | |
-} | |
-.sort-block | |
-{ | |
- height: 40px; | |
- text-align: center; | |
-} | |
-.sort-block-inner | |
-{ | |
- position:relative; | |
- top:7px; | |
-} | |
-.sort-block-inner-txt | |
-{ | |
- float: left; | |
- width: 75px; | |
- height: 26px; | |
- padding-top: 12px; | |
-} | |
- | |
-.sort-buttons | |
-{ | |
- text-align: center; | |
- font: bold 10px arial; | |
- float: right; | |
- padding: 0 5px 0 0; | |
-} | |
- | |
-.active | |
-{ | |
- color: #e9e9e9; | |
-} | |
- | |
-.inactive | |
-{ | |
- color: #333; | |
-} | |
- | |
-.item | |
-{ | |
- height: 91px; | |
-} | |
- | |
-.slider | |
-{ | |
- | |
-} | |
- | |
-.slider-item | |
-{ | |
- background: url('actionsBg.png') left center repeat-x; | |
- width: 20%; | |
- height: 100%; | |
- float: left; | |
- text-align: center; | |
-} | |
-.slider-image | |
-{ | |
- position: relative; | |
- top: 20px; | |
-} | |
- | |
-.slider-item-text | |
-{ | |
- position: relative; | |
- top: 30px; | |
-} | |
- | |
-.lines-v | |
-{ | |
- height: 91px; | |
- width: 20px; | |
- background: url('lines-v.png') center center no-repeat; | |
- float: left; | |
-} | |
-.arrow | |
-{ | |
- height: 91px; | |
- width: 20px; | |
- background: url('arrow.png') center center no-repeat; | |
- float: right; | |
-} | |
-.item-image | |
-{ | |
- padding: 10px 0 0 10px; | |
- float: left; | |
-} | |
-.item-info | |
-{ | |
- float: left; | |
- text-align: left; | |
- padding: 10px 0 0 20px; | |
-} | |
-.item-title | |
-{ | |
- padding: 0 0 10px 0; | |
-} | |
- | |
-.item-rate span | |
-{ | |
- position: relative; | |
- top: -2px; | |
- left: 0px; | |
- font: bold 12px arial; | |
- color: #333; | |
-} | |
- | |
-.item-rate | |
-{ | |
- float: left; | |
- display: block; | |
-} | |
- | |
-.bottom-buttons | |
-{ | |
- height: 50px; | |
- width: 320px; | |
- clear: left; | |
- margin-top: -30px; | |
-} | |
-.bottom-button | |
-{ | |
- width: 64px; | |
- height: 26px; | |
- margin-top: 5px; | |
- float: left; | |
-} | |
-.bottom-button p | |
-{ | |
- position:relative; | |
- top:20px; | |
- text-align: center; | |
- font: bold 11px arial; | |
- color: #e9e9e9; | |
-} | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Academic Free License (AFL 3.0) | |
+ * that is bundled with this package in the file LICENSE_AFL.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/afl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ */ | |
+body { margin: 0; padding: 0 } | |
+ | |
+.main-block | |
+{ | |
+ width: 320px; | |
+ height: 450px; | |
+} | |
+.header-sign-1 | |
+{ | |
+ font: bold 12px arial; | |
+ color: #e9e9e9; | |
+ float: left; | |
+ padding: 5px 0 3px 3px; | |
+ height: 10px; | |
+} | |
+.top-header | |
+{ | |
+ height: 20px | |
+} | |
+ | |
+.battery | |
+{ | |
+ height: 16px; | |
+ width: 25px; | |
+ float: right; | |
+ margin: 0px 5px 5px 13px; | |
+} | |
+ | |
+.volume | |
+{ | |
+ height: 16px; | |
+ width: 25px; | |
+ float: left; | |
+} | |
+ | |
+.antenna | |
+{ | |
+ height: 16px; | |
+ width: 18px; | |
+ float: left; | |
+ padding-left: 20px; | |
+} | |
+.time | |
+{ | |
+ width: 50%; | |
+ position:relative; | |
+ top:3px; | |
+ text-align: center; | |
+ font: bold 12px arial; | |
+ color: #e9e9e9; | |
+ float: left; | |
+} | |
+ | |
+.main-header | |
+{ | |
+ width: 100%; | |
+ height: 50px; | |
+ color: #f3f3f3; | |
+ text-align: center; | |
+} | |
+.main-header-text | |
+{ | |
+ | |
+} | |
+ | |
+.clearB | |
+{ | |
+ clear: both; | |
+ height: 1px; | |
+} | |
+.btn-l | |
+{ | |
+ position:relative; | |
+ left: 0px; | |
+ top:7px; | |
+ width: 70px; | |
+ height: 32px; | |
+ text-align: center; | |
+ float: left; | |
+ margin: 0 0 0 15px; | |
+ background:url('btn-l.png') center center no-repeat; | |
+} | |
+ | |
+.btn-r | |
+{ | |
+ position:relative; | |
+ right: 0px; | |
+ top:7px; | |
+ width: 72px; | |
+ height: 32px; | |
+ text-align: center; | |
+ float: right; | |
+ margin: 0 20px 0 0; | |
+ background:url('btn-r.png') center center no-repeat; | |
+} | |
+.main-header-text | |
+{ | |
+ width: 110px; | |
+ height: 32px; | |
+ text-align: center; | |
+ float: left; | |
+} | |
+ | |
+ | |
+ | |
+.btn-txt | |
+{ | |
+ position:relative; | |
+ top:8px; | |
+} | |
+.title | |
+{ | |
+ position:relative; | |
+ top:0px; | |
+ font: bold 19px arial; | |
+ color: #e9e9e9; | |
+} | |
+.filter-header | |
+{ | |
+ height: 25px; | |
+ text-align: center; | |
+ vertical-align: middle; | |
+} | |
+.filter-applied | |
+{ | |
+ position:relative; | |
+ top:5px; | |
+} | |
+.filter-circle | |
+{ | |
+ width: 18px; | |
+ height: 18px; | |
+ background:url('circle.png') center center no-repeat; | |
+} | |
+.filter-text | |
+{ | |
+ padding: 0 0 0 5px; | |
+ font-size: 11px; | |
+} | |
+.filter-lines | |
+{ | |
+ float: right; | |
+ width: 25px; | |
+ height: 25px; | |
+ padding: 0 25px 0 0; | |
+ background:url('lines-h.png') center center no-repeat; | |
+} | |
+.sort-block | |
+{ | |
+ height: 40px; | |
+ text-align: center; | |
+} | |
+.sort-block-inner | |
+{ | |
+ position:relative; | |
+ top:7px; | |
+} | |
+.sort-block-inner-txt | |
+{ | |
+ float: left; | |
+ width: 75px; | |
+ height: 26px; | |
+ padding-top: 12px; | |
+} | |
+ | |
+.sort-buttons | |
+{ | |
+ text-align: center; | |
+ font: bold 10px arial; | |
+ float: right; | |
+ padding: 0 5px 0 0; | |
+} | |
+ | |
+.active | |
+{ | |
+ color: #e9e9e9; | |
+} | |
+ | |
+.inactive | |
+{ | |
+ color: #333; | |
+} | |
+ | |
+.item | |
+{ | |
+ height: 91px; | |
+} | |
+ | |
+.slider | |
+{ | |
+ | |
+} | |
+ | |
+.slider-item | |
+{ | |
+ background: url('actionsBg.png') left center repeat-x; | |
+ width: 20%; | |
+ height: 100%; | |
+ float: left; | |
+ text-align: center; | |
+} | |
+.slider-image | |
+{ | |
+ position: relative; | |
+ top: 20px; | |
+} | |
+ | |
+.slider-item-text | |
+{ | |
+ position: relative; | |
+ top: 30px; | |
+} | |
+ | |
+.lines-v | |
+{ | |
+ height: 91px; | |
+ width: 20px; | |
+ background: url('lines-v.png') center center no-repeat; | |
+ float: left; | |
+} | |
+.arrow | |
+{ | |
+ height: 91px; | |
+ width: 20px; | |
+ background: url('arrow.png') center center no-repeat; | |
+ float: right; | |
+} | |
+.item-image | |
+{ | |
+ padding: 10px 0 0 10px; | |
+ float: left; | |
+} | |
+.item-info | |
+{ | |
+ float: left; | |
+ text-align: left; | |
+ padding: 10px 0 0 20px; | |
+} | |
+.item-title | |
+{ | |
+ padding: 0 0 10px 0; | |
+} | |
+ | |
+.item-rate span | |
+{ | |
+ position: relative; | |
+ top: -2px; | |
+ left: 0px; | |
+ font: bold 12px arial; | |
+ color: #333; | |
+} | |
+ | |
+.item-rate | |
+{ | |
+ float: left; | |
+ display: block; | |
+} | |
+ | |
+.bottom-buttons | |
+{ | |
+ height: 50px; | |
+ width: 320px; | |
+ clear: left; | |
+ margin-top: -30px; | |
+} | |
+.bottom-button | |
+{ | |
+ width: 64px; | |
+ height: 26px; | |
+ margin-top: 5px; | |
+ float: left; | |
+} | |
+.bottom-button p | |
+{ | |
+ position:relative; | |
+ top:20px; | |
+ text-align: center; | |
+ font: bold 11px arial; | |
+ color: #e9e9e9; | |
+} | |
diff -ruN skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-home.css skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-home.css | |
--- skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-home.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/images/xmlconnect/mobile_preview/mobile-home.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,181 +1,205 @@ | |
-body { margin: 0; padding: 0 } | |
- | |
-.main-block | |
-{ | |
- width: 320px; | |
- height: 490px; | |
-} | |
-.header-sign-1 | |
-{ | |
- position:relative; | |
- left:6px; | |
- top:3px; | |
- font: bold 12px arial; | |
- color: #e9e9e9; | |
- float: left; | |
- vertical-align: baseline; | |
- height: 16px; | |
-} | |
-.top-header | |
-{ | |
- height: 20px | |
-} | |
- | |
-.battery | |
-{ | |
- height: 16px; | |
- width: 25px; | |
- float: right; | |
- margin-right: 5px; | |
-} | |
- | |
-.volume | |
-{ | |
- height: 16px; | |
- width: 23px; | |
- float: left; | |
-} | |
- | |
-.antenna | |
-{ | |
- height: 16px; | |
- width: 18px; | |
- float: left; | |
- padding-left: 10px; | |
-} | |
-.time | |
-{ | |
- width: 50%; | |
- position:relative; | |
- top:3px; | |
- text-align: center; | |
- font: bold 12px arial; | |
- color: #e9e9e9; | |
- float: left; | |
-} | |
- | |
-.main-header | |
-{ | |
- height: 44px; | |
- text-align: center; | |
-} | |
-.clearB | |
-{ | |
- clear: both; | |
- height: 1px; | |
-} | |
- | |
-.info | |
-{ | |
- position: relative; | |
- top: 10px; | |
- left: 10px; | |
- float: left; | |
-} | |
-.logo-small | |
-{ | |
- display: inline; | |
- position: relative; | |
- top: 10px; | |
-} | |
- | |
-.login-btn | |
-{ | |
- float: right; | |
- height: 28px; | |
- font: bold 13px arial; | |
- color: #e9e9e9; | |
- padding: 7px 15px 0 0; | |
- | |
-} | |
-.login-body | |
-{ | |
- float: left; | |
- width: 50px; | |
- height: 100%; | |
- background:url('../img/login-btn.png') center center repeat-x; | |
-} | |
-.login-body span | |
-{ | |
- position: relative; | |
- top: 5px; | |
- left: 0px; | |
-} | |
-.login-left | |
-{ | |
- float: left; | |
- height: 100%; | |
- font: bold 3px arial; | |
- background:url('../img/login-btn-left.png') center center no-repeat; | |
-} | |
-.login-right | |
-{ | |
- float: left; | |
- height: 100%; | |
- font: bold 3px arial; | |
- background:url('../img/login-btn-right.png') center center no-repeat; | |
-} | |
-.title | |
-{ | |
- position:relative; | |
- top:10px; | |
- font: bold 19px arial; | |
- color: #e9e9e9; | |
-} | |
-.main-header-text | |
-{ | |
- width: 10px; | |
-} | |
- | |
-.big-logo | |
-{ | |
- text-align: center; | |
- padding: 5px 0 0 0; | |
-} | |
-.catalog | |
-{ | |
- height: 210px; | |
-} | |
-.item | |
-{ | |
- float: left; | |
- padding: 5px 0 0 5px; | |
- text-align: center; | |
- margin: 25px 7px 0 7px; | |
- width: 82px; | |
- height: 108; | |
-} | |
-.item-image | |
-{ | |
- padding: 10px 0 10px 0; | |
- text-align: center; | |
-} | |
- | |
-.item-text | |
-{ | |
- height: 18px; | |
- width: 82px; | |
- text-align: center; | |
-} | |
-.bottom-buttons | |
-{ | |
- height: 50px; | |
- position: relative; | |
- bottom: 50px; | |
- left: 0px; | |
-} | |
-.bottom-button | |
-{ | |
- width: 64px; | |
- height: 26px; | |
- margin-top: 5px; | |
- float: left; | |
-} | |
-.bottom-button p | |
-{ | |
- position:relative; | |
- top:20px; | |
- text-align: center; | |
- font: bold 11px arial; | |
- color: #e9e9e9; | |
-} | |
\ No newline at end of file | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Academic Free License (AFL 3.0) | |
+ * that is bundled with this package in the file LICENSE_AFL.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/afl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ */ | |
+body { margin: 0; padding: 0 } | |
+ | |
+.main-block | |
+{ | |
+ width: 320px; | |
+ height: 490px; | |
+} | |
+.header-sign-1 | |
+{ | |
+ position:relative; | |
+ left:6px; | |
+ top:3px; | |
+ font: bold 12px arial; | |
+ color: #e9e9e9; | |
+ float: left; | |
+ vertical-align: baseline; | |
+ height: 16px; | |
+} | |
+.top-header | |
+{ | |
+ height: 20px | |
+} | |
+ | |
+.battery | |
+{ | |
+ height: 16px; | |
+ width: 25px; | |
+ float: right; | |
+ margin-right: 5px; | |
+} | |
+ | |
+.volume | |
+{ | |
+ height: 16px; | |
+ width: 23px; | |
+ float: left; | |
+} | |
+ | |
+.antenna | |
+{ | |
+ height: 16px; | |
+ width: 18px; | |
+ float: left; | |
+ padding-left: 10px; | |
+} | |
+.time | |
+{ | |
+ width: 50%; | |
+ position:relative; | |
+ top:3px; | |
+ text-align: center; | |
+ font: bold 12px arial; | |
+ color: #e9e9e9; | |
+ float: left; | |
+} | |
+ | |
+.main-header | |
+{ | |
+ height: 44px; | |
+ text-align: center; | |
+} | |
+.clearB | |
+{ | |
+ clear: both; | |
+ height: 1px; | |
+} | |
+ | |
+.info | |
+{ | |
+ position: relative; | |
+ top: 10px; | |
+ left: 10px; | |
+ float: left; | |
+} | |
+.logo-small | |
+{ | |
+ display: inline; | |
+ position: relative; | |
+ top: 10px; | |
+} | |
+ | |
+.login-btn | |
+{ | |
+ float: right; | |
+ height: 28px; | |
+ font: bold 13px arial; | |
+ color: #e9e9e9; | |
+ padding: 7px 15px 0 0; | |
+ | |
+} | |
+.login-body | |
+{ | |
+ float: left; | |
+ width: 50px; | |
+ height: 100%; | |
+ background:url('../img/login-btn.png') center center repeat-x; | |
+} | |
+.login-body span | |
+{ | |
+ position: relative; | |
+ top: 5px; | |
+ left: 0px; | |
+} | |
+.login-left | |
+{ | |
+ float: left; | |
+ height: 100%; | |
+ font: bold 3px arial; | |
+ background:url('../img/login-btn-left.png') center center no-repeat; | |
+} | |
+.login-right | |
+{ | |
+ float: left; | |
+ height: 100%; | |
+ font: bold 3px arial; | |
+ background:url('../img/login-btn-right.png') center center no-repeat; | |
+} | |
+.title | |
+{ | |
+ position:relative; | |
+ top:10px; | |
+ font: bold 19px arial; | |
+ color: #e9e9e9; | |
+} | |
+.main-header-text | |
+{ | |
+ width: 10px; | |
+} | |
+ | |
+.big-logo | |
+{ | |
+ text-align: center; | |
+ padding: 5px 0 0 0; | |
+} | |
+.catalog | |
+{ | |
+ height: 210px; | |
+} | |
+.item | |
+{ | |
+ float: left; | |
+ padding: 5px 0 0 5px; | |
+ text-align: center; | |
+ margin: 25px 7px 0 7px; | |
+ width: 82px; | |
+ height: 108; | |
+} | |
+.item-image | |
+{ | |
+ padding: 10px 0 10px 0; | |
+ text-align: center; | |
+} | |
+ | |
+.item-text | |
+{ | |
+ height: 18px; | |
+ width: 82px; | |
+ text-align: center; | |
+} | |
+.bottom-buttons | |
+{ | |
+ height: 50px; | |
+ position: relative; | |
+ bottom: 50px; | |
+ left: 0px; | |
+} | |
+.bottom-button | |
+{ | |
+ width: 64px; | |
+ height: 26px; | |
+ margin-top: 5px; | |
+ float: left; | |
+} | |
+.bottom-button p | |
+{ | |
+ position:relative; | |
+ top:20px; | |
+ text-align: center; | |
+ font: bold 11px arial; | |
+ color: #e9e9e9; | |
+} | |
diff -ruN skin/adminhtml/default/default/lib/prototype/windows/themes/magento.css skin/adminhtml/default/default/lib/prototype/windows/themes/magento.css | |
--- skin/adminhtml/default/default/lib/prototype/windows/themes/magento.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/lib/prototype/windows/themes/magento.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,3 +1,27 @@ | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Academic Free License (AFL 3.0) | |
+ * that is bundled with this package in the file LICENSE_AFL.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/afl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ */ | |
.dialog { border:1px solid #555; } | |
.dialog .bot { display:none !important; } | |
.overlay_magento { background-color:#000; filter:alpha(opacity=60); -moz-opacity:.6; opacity:.6; -webkit-opacity:.6; } | |
diff -ruN skin/adminhtml/default/default/menu.css skin/adminhtml/default/default/menu.css | |
--- skin/adminhtml/default/default/menu.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/menu.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
.nav-bar { border-top:1px solid #2d444f; border-bottom:1px solid #2d444f; background:url(images/nav1_bg.gif) repeat-x 0 100% #666e73; padding:0 30px; } | |
@@ -96,4 +98,4 @@ | |
#nav li.over ul li.over ul ul { left:-10000px;} | |
#nav li.over ul li.over ul li.over ul { left:100px; } | |
-.nav-bar:after { content:"."; display:block; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; } | |
\ No newline at end of file | |
+.nav-bar:after { content:"."; display:block; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; } | |
diff -ruN skin/adminhtml/default/default/oauth-simple.css skin/adminhtml/default/default/oauth-simple.css | |
--- skin/adminhtml/default/default/oauth-simple.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/oauth-simple.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,17 +9,17 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
* @category design | |
- * @package base_default | |
- * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com) | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
diff -ruN skin/adminhtml/default/default/print.css skin/adminhtml/default/default/print.css | |
--- skin/adminhtml/default/default/print.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/print.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
* { background:none !important; text-align:left !important; } | |
@@ -36,4 +38,4 @@ | |
#sales_order_grid_massaction, | |
.content-header-floating, | |
.content-header .form-buttons, | |
-.footer { display:none !important; } | |
\ No newline at end of file | |
+.footer { display:none !important; } | |
diff -ruN skin/adminhtml/default/default/reset.css skin/adminhtml/default/default/reset.css | |
--- skin/adminhtml/default/default/reset.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/reset.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/******************************************/ | |
/***************** BASE *******************/ | |
@@ -70,4 +72,4 @@ | |
/* Size */ | |
small { font-size:.9em; } | |
-big { font-size:1.25em; } | |
\ No newline at end of file | |
+big { font-size:1.25em; } | |
diff -ruN skin/adminhtml/default/default/xmlconnect/boxes.css skin/adminhtml/default/default/xmlconnect/boxes.css | |
--- skin/adminhtml/default/default/xmlconnect/boxes.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/boxes.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2010 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
.mm_ctrl .m-arrows { width:42px; height:17px; text-indent:-2000em; background:url(../images/xmlconnect/r-arrow.gif) no-repeat 0 0; border:0; float:left; cursor:pointer; } | |
diff -ruN skin/adminhtml/default/default/xmlconnect/dropdown.css skin/adminhtml/default/default/xmlconnect/dropdown.css | |
--- skin/adminhtml/default/default/xmlconnect/dropdown.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/dropdown.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,3 +1,27 @@ | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Academic Free License (AFL 3.0) | |
+ * that is bundled with this package in the file LICENSE_AFL.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/afl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ */ | |
.dropdown { float:left; width:200px; border:1px solid #ccc; position:relative; } | |
.dropdown a { padding:3px 18px 3px 10px ; display:block; text-decoration:none; color:#000; position:relative; } | |
.dropdown a:hover { background:#ccc; } | |
@@ -6,4 +30,4 @@ | |
.dropdown li.ddtitle a:hover { background:url(../images/xmlconnect/dropdown-arrow.gif) 100% 8px no-repeat; } | |
.dropdown li.ddlist { background:#fff; left:0; position:absolute; border:1px solid #ccc; border-top:0; width:200px; margin:-1px 0 0 -1px !important; padding:1px 0 0 0; } | |
.dropdown li { zoom:1; } | |
-/* .accordion dt { background:red !important; } */ | |
\ No newline at end of file | |
+/* .accordion dt { background:red !important; } */ | |
diff -ruN skin/adminhtml/default/default/xmlconnect/iestyles.css skin/adminhtml/default/default/xmlconnect/iestyles.css | |
--- skin/adminhtml/default/default/xmlconnect/iestyles.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/iestyles.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2010 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
*+html .image-item, | |
diff -ruN skin/adminhtml/default/default/xmlconnect/mobile-android.css skin/adminhtml/default/default/xmlconnect/mobile-android.css | |
--- skin/adminhtml/default/default/xmlconnect/mobile-android.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/mobile-android.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2010 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
@font-face { | |
@@ -285,4 +287,4 @@ | |
.catalog-page .cat-list .col-2 .availability { | |
color:#222; | |
font-size:11px; | |
- } | |
\ No newline at end of file | |
+ } | |
diff -ruN skin/adminhtml/default/default/xmlconnect/mobile-catalog.css skin/adminhtml/default/default/xmlconnect/mobile-catalog.css | |
--- skin/adminhtml/default/default/xmlconnect/mobile-catalog.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/mobile-catalog.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2010 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
@font-face { | |
@@ -54,7 +56,7 @@ | |
.iphone-catalog .logo-small div { width:165px; height:41px; overflow:hidden; text-align:center; vertical-align:middle; } | |
.iphone-catalog .logo-small img { vertical-align:middle; } | |
.iphone-catalog .logo-small .sh-title { text-align:left; height:30px; vertical-align:middle; } | |
-.iphone-catalog .logo-small .sh-title1, | |
+.iphone-catalog .logo-small .sh-title1, | |
.iphone-catalog .logo-small .sh-title2 { font:bold 16px/44px arial !important; color:#000; position:relative; } | |
.iphone-catalog .logo-small .sh-title1 { display:inline-block; } | |
.iphone-catalog .logo-small .sh-title2 { color:#fff; position:absolute; top:-1px; left:-1px; } | |
@@ -80,7 +82,7 @@ | |
.iphone-catalog .sort-block .button-price { -moz-border-radius:0 5px 5px 0; -webkit-border-radius:0 5px 5px 0; border-radius:0 5px 5px 0; } | |
.iphone-catalog .sort-block .button img { vertical-align:middle; } | |
.iphone-catalog .active { color:#e9e9e9; } | |
-.iphone-catalog .inactive { color:#333; } | |
+.iphone-catalog .inactive { color:#333; } | |
.iphone-catalog .item { font-family:Helvetica, "Helvetica Neue", Arial, sans-serif; height:91px; position:relative; } | |
.iphone-catalog .item .gradient { height:88px; width:100%; position:absolute; bottom:0; background:url(../images/xmlconnect/mobile_preview/gradients/item-bg.png) 0 0 repeat-x; left:0; } | |
.iphone-catalog .slider { background:url('../images/xmlconnect/mobile_preview/actionsBg.png') left center repeat-x; } | |
@@ -104,7 +106,7 @@ | |
.iphone-catalog .item-rate .stars { font-family:stars; font-size:16px; vertical-align:middle; } | |
.iphone-catalog .item-rate .star { vertical-align:top; } | |
.iphone-catalog .item-rate strong { font-size:10px; line-height:16px; vertical-align:text-top; } | |
-.iphone-catalog .item-rate {} | |
+.iphone-catalog .item-rate {} | |
.iphone-catalog .bottom-buttons { height:48px; position:absolute; bottom:0; background:#060606; width:320px; } | |
.iphone-catalog .bottom-buttons .gradient { position:absolute; width:320px; background:url(../images/xmlconnect/mobile_preview/gradients/footer.png) 0 0 no-repeat !important; } | |
.iphone-catalog .bottom-button { height:26px; vertical-align:top; } | |
diff -ruN skin/adminhtml/default/default/xmlconnect/mobile-home.css skin/adminhtml/default/default/xmlconnect/mobile-home.css | |
--- skin/adminhtml/default/default/xmlconnect/mobile-home.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/mobile-home.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,18 +9,20 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2010 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
- | |
+ | |
.iphone-home .main-frame { background:url(../images/xmlconnect/mobile_preview/mm-frame.gif) 0 0 no-repeat; line-height:1; margin:0 0 10px; padding:4px; } | |
.iphone-home .main-block { position:relative; height:478px; width:320px; overflow:hidden; } | |
.iphone-home .header-sign-1 { font:bold 13px/19px arial !important; color:#e9e9e9; float:left; padding:0 15px 0 6px; } | |
@@ -41,7 +43,7 @@ | |
.iphone-home .logo-small div { width:200px; height:41px; overflow:hidden; text-align:center; vertical-align:middle; } | |
.iphone-home .logo-small img { vertical-align:middle; } | |
.iphone-home .logo-small .sh-title { text-align:left; height:30px; vertical-align:middle; } | |
-.iphone-home .logo-small .sh-title1, | |
+.iphone-home .logo-small .sh-title1, | |
.iphone-home .logo-small .sh-title2 { font:bold 16px/44px arial !important; color:#000; position:relative; } | |
.iphone-home .logo-small .sh-title1 { display:inline-block; } | |
.iphone-home .logo-small .sh-title2 { color:#fff; position:absolute; top:-1px; left:-1px; } | |
diff -ruN skin/adminhtml/default/default/xmlconnect/mobile-ipad-catalog.css skin/adminhtml/default/default/xmlconnect/mobile-ipad-catalog.css | |
--- skin/adminhtml/default/default/xmlconnect/mobile-ipad-catalog.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/mobile-ipad-catalog.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2010 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
@font-face { | |
@@ -284,4 +286,4 @@ | |
} | |
.ipad-catalog-landscape .sections .active { | |
background:#f2f2f2; | |
- } | |
\ No newline at end of file | |
+ } | |
diff -ruN skin/adminhtml/default/default/xmlconnect/mobile-ipad-home.css skin/adminhtml/default/default/xmlconnect/mobile-ipad-home.css | |
--- skin/adminhtml/default/default/xmlconnect/mobile-ipad-home.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/mobile-ipad-home.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2010 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
.ipad { | |
diff -ruN skin/adminhtml/default/default/xmlconnect/styles.css skin/adminhtml/default/default/xmlconnect/styles.css | |
--- skin/adminhtml/default/default/xmlconnect/styles.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/adminhtml/default/default/xmlconnect/styles.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,3 +1,27 @@ | |
+/** | |
+ * Magento | |
+ * | |
+ * NOTICE OF LICENSE | |
+ * | |
+ * This source file is subject to the Academic Free License (AFL 3.0) | |
+ * that is bundled with this package in the file LICENSE_AFL.txt. | |
+ * It is also available through the world-wide-web at this URL: | |
+ * http://opensource.org/licenses/afl-3.0.php | |
+ * If you did not receive a copy of the license and are unable to | |
+ * obtain it through the world-wide-web, please send an email | |
+ * to [email protected] so we can send you a copy immediately. | |
+ * | |
+ * DISCLAIMER | |
+ * | |
+ * Do not edit or add to this file if you wish to upgrade Magento to newer | |
+ * versions in the future. If you wish to customize Magento for your | |
+ * needs please refer to http://www.magento.com for more information. | |
+ * | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ */ | |
.wrapper { min-width:1150px !important; } | |
.theme_selector ul, | |
.theme_selector li { | |
diff -ruN skin/frontend/default/blue/css/styles.css skin/frontend/default/blue/css/styles.css | |
--- skin/frontend/default/blue/css/styles.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/default/blue/css/styles.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -18,7 +18,7 @@ | |
* needs please refer to http://www.magento.com for more information. | |
* | |
* @category design | |
- * @package default_default | |
+ * @package default_blue | |
* @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
diff -ruN skin/frontend/default/blue/css/styles-ie.css skin/frontend/default/blue/css/styles-ie.css | |
--- skin/frontend/default/blue/css/styles-ie.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/default/blue/css/styles-ie.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -18,7 +18,7 @@ | |
* needs please refer to http://www.magento.com for more information. | |
* | |
* @category design | |
- * @package default_default | |
+ * @package default_blue | |
* @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
diff -ruN skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevateZoom-3.0.8.min.js skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevateZoom-3.0.8.min.js | |
--- skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevateZoom-3.0.8.min.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevateZoom-3.0.8.min.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/* jQuery elevateZoom 3.0.8 - Demo's and documentation: - www.elevateweb.co.uk/image-zoom - Copyright (c) 2013 Andrew Eades - www.elevateweb.co.uk - Dual licensed under the LGPL licenses. - http://en.wikipedia.org/wiki/MIT_License - http://en.wikipedia.org/wiki/GNU_General_Public_License */ | |
"function"!==typeof Object.create&&(Object.create=function(d){function h(){}h.prototype=d;return new h}); | |
(function(d,h,l,m){var k={init:function(b,a){var c=this;c.elem=a;c.$elem=d(a);c.imageSrc=c.$elem.data("zoom-image")?c.$elem.data("zoom-image"):c.$elem.attr("src");c.options=d.extend({},d.fn.elevateZoom.options,b);c.options.tint&&(c.options.lensColour="none",c.options.lensOpacity="1");"inner"==c.options.zoomType&&(c.options.showLens=!1);c.$elem.parent().removeAttr("title").removeAttr("alt");c.zoomImage=c.imageSrc;c.refresh(1);d("#"+c.options.gallery+" a").click(function(a){c.options.galleryActiveClass&& | |
diff -ruN skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevatezoom.js skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevatezoom.js | |
--- skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevatezoom.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/elevatezoom/jquery.elevatezoom.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/* | |
* jQuery elevateZoom 3.0.8 | |
* Demo's and documentation: | |
diff -ruN skin/frontend/rwd/default/js/lib/enquire.js skin/frontend/rwd/default/js/lib/enquire.js | |
--- skin/frontend/rwd/default/js/lib/enquire.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/enquire.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/*! | |
* enquire.js v2.1.0 - Awesome Media Queries in JavaScript | |
* Copyright (c) 2013 Nick Williams - http://wicky.nillia.ms/enquire.js | |
diff -ruN skin/frontend/rwd/default/js/lib/fastclick.js skin/frontend/rwd/default/js/lib/fastclick.js | |
--- skin/frontend/rwd/default/js/lib/fastclick.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/fastclick.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,28 +1,4 @@ | |
/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
-/** | |
* @preserve FastClick: polyfill to remove click delays on browsers with touch UIs. | |
* | |
* @version 0.6.11 | |
diff -ruN skin/frontend/rwd/default/js/lib/imagesloaded.js skin/frontend/rwd/default/js/lib/imagesloaded.js | |
--- skin/frontend/rwd/default/js/lib/imagesloaded.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/imagesloaded.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/*! | |
* imagesLoaded PACKAGED v3.1.4 | |
* JavaScript is all like "You images are done yet or what?" | |
diff -ruN skin/frontend/rwd/default/js/lib/jquery.cycle2.min.js skin/frontend/rwd/default/js/lib/jquery.cycle2.min.js | |
--- skin/frontend/rwd/default/js/lib/jquery.cycle2.min.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/jquery.cycle2.min.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/*! | |
* jQuery Cycle2; build: v20131022 | |
* http://jquery.malsup.com/cycle2/ | |
diff -ruN skin/frontend/rwd/default/js/lib/jquery.cycle2.swipe.min.js skin/frontend/rwd/default/js/lib/jquery.cycle2.swipe.min.js | |
--- skin/frontend/rwd/default/js/lib/jquery.cycle2.swipe.min.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/jquery.cycle2.swipe.min.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,26 +1,2 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/*! Plugin for Cycle2; Copyright (c) 2012 M. Alsup; ver: 20121120 */ | |
(function(a){"use strict";var b="ontouchend"in document;a.event.special.swipe=a.event.special.swipe||{scrollSupressionThreshold:10,durationThreshold:1e3,horizontalDistanceThreshold:30,verticalDistanceThreshold:75,setup:function(){var b=a(this);b.bind("touchstart",function(c){function g(b){if(!f)return;var c=b.originalEvent.touches?b.originalEvent.touches[0]:b;e={time:(new Date).getTime(),coords:[c.pageX,c.pageY]},Math.abs(f.coords[0]-e.coords[0])>a.event.special.swipe.scrollSupressionThreshold&&b.preventDefault()}var d=c.originalEvent.touches?c.originalEvent.touches[0]:c,e,f={time:(new Date).getTime(),coords:[d.pageX,d.pageY],origin:a(c.target)};b.bind("touchmove",g).one("touchend",function(c){b.unbind("touchmove",g),f&&e&&e.time-f.time<a.event.special.swipe.durationThreshold&&Math.abs(f.coords[0]-e.coords[0])>a.event.special.swipe.horizontalDistanceThreshold&&Math.abs(f.coords[1]-e.coords[1])<a.event.special.swipe.verticalDistanceThreshold&&f.origin.trigger("swipe").trigger(f.coords[0]>e.coords[0]?"swipeleft":"swiperight"),f=e=undefined})})}},a.event.special.swipeleft=a.event.special.swipeleft||{setup:function(){a(this).bind("swipe",a.noop)}},a.event.special.swiperight=a.event.special.swiperight||a.event.special.swipeleft})(jQuery); | |
diff -ruN skin/frontend/rwd/default/js/lib/matchMedia.addListener.js skin/frontend/rwd/default/js/lib/matchMedia.addListener.js | |
--- skin/frontend/rwd/default/js/lib/matchMedia.addListener.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/matchMedia.addListener.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/*! matchMedia() polyfill addListener/removeListener extension. Author & copyright (c) 2012: Scott Jehl. Dual MIT/BSD license */ | |
(function(){ | |
// Bail out for browsers that have addListener support | |
diff -ruN skin/frontend/rwd/default/js/lib/matchMedia.js skin/frontend/rwd/default/js/lib/matchMedia.js | |
--- skin/frontend/rwd/default/js/lib/matchMedia.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/matchMedia.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas, David Knight. Dual MIT/BSD license */ | |
window.matchMedia || (window.matchMedia = function() { | |
diff -ruN skin/frontend/rwd/default/js/lib/modernizr.custom.min.js skin/frontend/rwd/default/js/lib/modernizr.custom.min.js | |
--- skin/frontend/rwd/default/js/lib/modernizr.custom.min.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/modernizr.custom.min.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/* Modernizr 2.6.2 (Custom Build) | MIT & BSD | |
* Build: http://modernizr.com/download/#-localstorage-touch-shiv-mq-cssclasses-teststyles-prefixes-load | |
*/ | |
diff -ruN skin/frontend/rwd/default/js/lib/selectivizr.js skin/frontend/rwd/default/js/lib/selectivizr.js | |
--- skin/frontend/rwd/default/js/lib/selectivizr.js 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/js/lib/selectivizr.js 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,27 +1,3 @@ | |
-/** | |
- * Magento | |
- * | |
- * NOTICE OF LICENSE | |
- * | |
- * This source file is subject to the Academic Free License (AFL 3.0) | |
- * that is bundled with this package in the file LICENSE_AFL.txt. | |
- * It is also available through the world-wide-web at this URL: | |
- * http://opensource.org/licenses/afl-3.0.php | |
- * If you did not receive a copy of the license and are unable to | |
- * obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
- * | |
- * DISCLAIMER | |
- * | |
- * Do not edit or add to this file if you wish to upgrade Magento to newer | |
- * versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magento.com for more information. | |
- * | |
- * @category design | |
- * @package default_default | |
- * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
- */ | |
/* | |
selectivizr v1.0.2 - (c) Keith Clark, freely distributable under the terms | |
of the MIT license. | |
diff -ruN skin/frontend/rwd/default/scss/vendor/_normalize.scss skin/frontend/rwd/default/scss/vendor/_normalize.scss | |
--- skin/frontend/rwd/default/scss/vendor/_normalize.scss 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/frontend/rwd/default/scss/vendor/_normalize.scss 2015-08-03 12:35:06.000000000 +0200 | |
@@ -1,28 +1,3 @@ | |
-// | |
-// Magento | |
-// | |
-// NOTICE OF LICENSE | |
-// | |
-// This source file is subject to the Academic Free License (AFL 3.0) | |
-// that is bundled with this package in the file LICENSE_AFL.txt. | |
-// It is also available through the world-wide-web at this URL: | |
-// http://opensource.org/licenses/afl-3.0.php | |
-// If you did not receive a copy of the license and are unable to | |
-// obtain it through the world-wide-web, please send an email | |
-// to [email protected] so we can send you a copy immediately. | |
-// | |
-// DISCLAIMER | |
-// | |
-// Do not edit or add to this file if you wish to upgrade Magento to newer | |
-// versions in the future. If you wish to customize Magento for your | |
-// needs please refer to http://www.magento.com for more information. | |
-// | |
-// @category design | |
-// @package rwd_default | |
-// @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
-// @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
-// | |
- | |
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
diff -ruN skin/install/default/default/css/boxes.css skin/install/default/default/css/boxes.css | |
--- skin/install/default/default/css/boxes.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/install/default/default/css/boxes.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/****************************************************/ | |
diff -ruN skin/install/default/default/css/clears.css skin/install/default/default/css/clears.css | |
--- skin/install/default/default/css/clears.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/install/default/default/css/clears.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/****************************************************/ | |
diff -ruN skin/install/default/default/css/ie7minus.css skin/install/default/default/css/ie7minus.css | |
--- skin/install/default/default/css/ie7minus.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/install/default/default/css/ie7minus.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
h1#logo { display:inline; } | |
diff -ruN skin/install/default/default/css/iestyles.css skin/install/default/default/css/iestyles.css | |
--- skin/install/default/default/css/iestyles.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/install/default/default/css/iestyles.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
.col2-set, | |
.col3-set, | |
diff -ruN skin/install/default/default/css/reset.css skin/install/default/default/css/reset.css | |
--- skin/install/default/default/css/reset.css 2015-06-26 10:53:36.000000000 +0200 | |
+++ skin/install/default/default/css/reset.css 2015-08-03 12:35:06.000000000 +0200 | |
@@ -9,16 +9,18 @@ | |
* http://opensource.org/licenses/afl-3.0.php | |
* If you did not receive a copy of the license and are unable to | |
* obtain it through the world-wide-web, please send an email | |
- * to [email protected] so we can send you a copy immediately. | |
+ * to [email protected] so we can send you a copy immediately. | |
* | |
* DISCLAIMER | |
* | |
* Do not edit or add to this file if you wish to upgrade Magento to newer | |
* versions in the future. If you wish to customize Magento for your | |
- * needs please refer to http://www.magentocommerce.com for more information. | |
+ * needs please refer to http://www.magento.com for more information. | |
* | |
- * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) | |
- * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
+ * @category design | |
+ * @package default_default | |
+ * @copyright Copyright (c) 2006-2015 X.commerce, Inc. (http://www.magento.com) | |
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | |
*/ | |
/******************************************/ | |
/***********[ Mage_CSS_A Reset ]***********/ | |
diff -ruN var/package/Cm_RedisSession-1.9.2.0.xml var/package/Cm_RedisSession-1.9.2.0.xml | |
--- var/package/Cm_RedisSession-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Cm_RedisSession-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Cm_RedisSession</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://framework.zend.com/license/new-bsd">New BSD</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Redis session</summary> | |
- <description>Redis seesion</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Colin Mollenhour</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:03</time> | |
- <contents><target name="magecommunity"><dir name="Cm"><dir name="RedisSession"><dir name="Model"><file name="Session.php" hash="8a751a32ac85da38237012f6c4ac9077"/></dir><dir name="etc"><file name="config.xml" hash="6b32aa3b331c4504c44a7c01a24a0d3d"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Cm_RedisSession.xml" hash="f36278d589fa562d20d5182c8864a3dd"/></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Credis</name><channel>community</channel><min>1.9.2.0</min><max>1.9.2.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Cm_RedisSession-1.9.2.1.xml var/package/Cm_RedisSession-1.9.2.1.xml | |
--- var/package/Cm_RedisSession-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Cm_RedisSession-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Cm_RedisSession</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://framework.zend.com/license/new-bsd">New BSD</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Redis session</summary> | |
+ <description>Redis seesion</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Colin Mollenhour</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:06</time> | |
+ <contents><target name="magecommunity"><dir name="Cm"><dir name="RedisSession"><dir name="Model"><file name="Session.php" hash="8a751a32ac85da38237012f6c4ac9077"/></dir><dir name="etc"><file name="config.xml" hash="6b32aa3b331c4504c44a7c01a24a0d3d"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Cm_RedisSession.xml" hash="f36278d589fa562d20d5182c8864a3dd"/></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Credis</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Interface_Adminhtml_Default-1.9.2.0.xml var/package/Interface_Adminhtml_Default-1.9.2.0.xml | |
--- var/package/Interface_Adminhtml_Default-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Interface_Adminhtml_Default-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Interface_Adminhtml_Default</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Default interface for Adminhtml</summary> | |
- <description>Default interface for Adminhtml</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:03</time> | |
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="etc"><file name="theme.xml" hash="b2a8d19b50efdccb7294cb2fe0640bd9"/></dir><dir name="layout"><file name="admin.xml" hash="d95b9ee3d60a5a4d1579e45a2037b40c"/><file name="adminnotification.xml" hash="85a3fddad5ac4c86c647af7fe9cb93aa"/><file name="api2.xml" hash="1553c8fc8975d4d3731d9ef1a980481c"/><file name="authorizenet.xml" hash="29398fbaa4aee1701b299030d1fdaa65"/><file name="bundle.xml" hash="a6f325767991615fb6f55b089f5cdb68"/><file name="captcha.xml" hash="773f4b12d14b8c15951f37379666a5d0"/><file name="catalog.xml" hash="cce43dab0c12d58cd0ffcb1d15e95265"/><file name="cms.xml" hash="5d53f0cea555323cea366c694b0b8b50"/><file name="connect.xml" hash="745dc82e3b474824618c0ec987d4c3cd"/><file name="currencysymbol.xml" hash="3b3f5366a1fa4071690c8aac7f7b0688"/><file name="customer.xml" hash="30a904f4f4c8115ad5bad942b1c5b35e"/><file name="dataflow.xml" hash="cd1cbca5ec5de17a6c1fcffd471de45a"/><file name="downloadable.xml" hash="40d181b85a0a3e2a96b932677ade5100"/><file name="giftmessage.xml" hash="4917df8ba7e9f4ac8e4c89cdca626952"/><file name="importexport.xml" hash="243a7394b4414e92cc79916a31a62b76"/><file name="index.xml" hash="c7090c9ed0e718692035ace720ba594c"/><file name="main.xml" hash="33327a2728bbab9fd5b5ebd8d6d95a35"/><file name="newsletter.xml" hash="eec98653b5a1697abd2427cc5765a3f2"/><file name="oauth.xml" hash="021b577a885658a30e7e214111673662"/><file name="pagecache.xml" hash="351f149efad7a2fd6855f78cb22d99e0"/><file name="promo.xml" hash="5de780df32953fa4196acc7d5945d594"/><file name="report.xml" hash="298eeb94c7fab08e5170be3044a2218b"/><file name="rss.xml" hash="11f7ad61a6454b6480bd6e61c45552fd"/><file name="sales.xml" hash="dfd156d90f1f41aa9bce30a2d00aef0f"/><file name="search.xml" hash="07c52129f77b32c5f8822612dc3a52f2"/><file name="tag.xml" hash="9115a18f7a5afb3ebe3282a00c6f5cc3"/><file name="tax.xml" hash="f26e2e81e90a4e1793f7a1c8f0384ca2"/><file name="widget.xml" hash="a8c277f25878e9abf97d3db9a328173d"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="735c9ec66d1309f1206294f075fdcdd1"/></dir></dir><dir name="template"><file name="access_denied.phtml" hash="8dbb6e9cd97de65e449307a722aadd7c"/><dir name="api"><file name="role_users_grid_js.phtml" hash="58b17ab917d3fbe0cf4d39efe1eff5a2"/><file name="roleinfo.phtml" hash="0d3e851caa0cfe495ed3c7583bcb0e9b"/><file name="roles.phtml" hash="34455eccb50176e4418a631cd58b13cc"/><file name="rolesedit.phtml" hash="a654b87bde63333de332a10dea633ee0"/><file name="rolesusers.phtml" hash="2d0bfd53f80587ede5076a09316730bc"/><file name="user_roles_grid_js.phtml" hash="d62e060ed6bc165a2dda7e925118fd33"/><file name="userinfo.phtml" hash="1da041adaeda5cf3fbffcda2c2fe8162"/><file name="usernroles.phtml" hash="518c15f5653d318d621fa009328e8ff4"/><file name="userroles.phtml" hash="8e1c821bfc5a304027aaab52b6fa6ad9"/><file name="users.phtml" hash="8870de77fdf9064b40199c3657409250"/></dir><dir name="api2"><dir name="attribute"><file name="buttons.phtml" hash="1d8c7fa3ecd2a34bb71d058c977807de"/><file name="resource.phtml" hash="6fa291254e6f5633438e073d4bbf476c"/></dir><dir name="permissions"><dir name="user"><dir name="edit"><dir name="tab"><dir name="roles"><file name="js.phtml" hash="23cbf23b2bd60241b3f2ba84037013d7"/></dir></dir></dir></dir></dir><dir name="role"><file name="buttons.phtml" hash="7977aedb0697363be95f111b1daac14f"/><file name="users_grid_js.phtml" hash="54ad901cfa9eec64e4b6fa5b906154c5"/></dir></dir><dir name="authorizenet"><dir name="directpost"><file name="iframe.phtml" hash="b60d2ae78aa8b51a6189f0ec2126ffb5"/><file name="info.phtml" hash="0576d40d650c271b1aeaa7afea925562"/></dir></dir><dir name="backup"><file name="dialogs.phtml" hash="b2be33d149636aa4202bd9484a4895be"/><file name="left.phtml" hash="941469c86247edb83906948620702dc8"/><file name="list.phtml" hash="4f9cabcf6ee200da26abca1863b8c8e5"/></dir><dir name="bundle"><dir name="product"><dir name="composite"><dir name="fieldset"><dir name="options"><file name="bundle.phtml" hash="3e68cf91a42b1d6fb8352a904be3e05c"/><dir name="type"><file name="checkbox.phtml" hash="29716d05f391ee379764b61ffea4a7af"/><file name="multi.phtml" hash="6442017f21afef7f88e3e1580c93c16c"/><file name="radio.phtml" hash="a2ee9d9c2ee7b5f49a0e55f5fb3bacd7"/><file name="select.phtml" hash="bb7efbaafc5fac7f08b6300999c65c26"/></dir></dir></dir></dir><dir name="edit"><dir name="bundle"><dir name="option"><file name="search.phtml" hash="174d6ce47791eb3af38a531097e0169c"/><file name="selection.phtml" hash="3a5e0b53a85d802f8f585f30d9d91b6c"/></dir><file name="option.phtml" hash="d5cf246d803062a0f2e389e609bf7d75"/></dir><file name="bundle.phtml" hash="b6b81d2ec1b4cbcf42b84177355c3e69"/></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="584d1e49407f54691ec39dbfb6753650"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="d7c3bd4fda964206bdf0e3f35ea2ca0b"/></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="092f6d7b581afb8318b3739e2ae4676a"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="25ff3d9c62580dc64633a83d00cbe837"/></dir></dir></dir><dir name="order"><dir name="view"><dir name="items"><file name="renderer.phtml" hash="0ac8d28e86364682468c0aa62a6556a0"/></dir></dir></dir><dir name="shipment"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="54900b64d810ea023e6cb7fd3047c478"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="23a1dbe1789bdea7f89828a522fa2e6d"/></dir></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="b9136f6fde3ca8db1910dba7164755e6"/></dir><dir name="catalog"><dir name="category"><dir name="checkboxes"><file name="tree.phtml" hash="fa73258285c3f5136eb2259c5e9c32ce"/></dir><dir name="edit"><file name="form.phtml" hash="da4caa491156e9ec93648e257676daf7"/></dir><file name="edit.phtml" hash="89720b660be938c17214d375efe1eac6"/><file name="tree.phtml" hash="03c888ab242fc217947f6be538352852"/><dir name="widget"><file name="tree.phtml" hash="7935d6ed9f73fe8ce65d459cee761e67"/></dir></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="2a8a73d131f5f2b814fa3eda859732b5"/></dir></dir></dir><dir name="product"><dir name="attribute"><file name="js.phtml" hash="87e87066a6672421f382939493730cdb"/><dir name="new"><file name="created.phtml" hash="c291386f1246516dabe303e6fba5f25a"/></dir><file name="options.phtml" hash="70c79d6d98b5a37d64977aff9f7ef070"/><dir name="set"><dir name="main"><dir name="tree"><file name="attribute.phtml" hash="a157d7da671fc65feccaf80828920af7"/><file name="group.phtml" hash="3e277218d8db83269704c78414149e8a"/></dir></dir><file name="main.phtml" hash="dbfe23d0e768b6917e00f57dfd77c376"/><dir name="toolbar"><file name="add.phtml" hash="77642e01f1d3d3ab5a8bc498e06196d4"/><file name="main.phtml" hash="f19159c8a6f042068c6adb244342da3a"/></dir></dir></dir><dir name="composite"><file name="configure.phtml" hash="df9c13c584cf69d114bab301b624a663"/><dir name="fieldset"><file name="configurable.phtml" hash="8b031155a3fd892a99002fb14d95f739"/><file name="grouped.phtml" hash="280fa7fa681fbdbcd906ac0eae252d34"/><dir name="options"><file name="js.phtml" hash="2e6606df0fc6a85e6830c4770727e9ab"/><dir name="type"><file name="date.phtml" hash="5d531f14f863441b18baed53eb843d06"/><file name="default.phtml" hash="f7023ea6e084a02acbc1967e113cfbdb"/><file name="file.phtml" hash="31ea434be8436027c52ee13121819d07"/><file name="select.phtml" hash="0ea9745d78b48989af24cce83d98086d"/><file name="text.phtml" hash="af5f02e802e2f0683e625acf2a7524f2"/></dir></dir><file name="options.phtml" hash="e446617e5bbb69e86808802bf5e74a94"/><file name="qty.phtml" hash="e50ce8515f9525e7002e3bd575598c48"/></dir></dir><file name="created.phtml" hash="44c428d1e480d560f854e4fded34fb7e"/><dir name="edit"><dir name="action"><file name="attribute.phtml" hash="038b9519cd81a2e0415f07d8ab44c324"/><file name="inventory.phtml" hash="e3f76e2aba03c8d99654c0ab13ede9a9"/><file name="websites.phtml" hash="022606c920bb19cfcf059e0d8aab2f42"/></dir><file name="categories.phtml" hash="9ddf60da59842cc2eada068668262c6f"/><dir name="options"><file name="option.phtml" hash="171b7d40a2c0384da6f80bc6464c4613"/><dir name="type"><file name="date.phtml" hash="46387e35a71e2db682d2667dd734da39"/><file name="file.phtml" hash="bc063b0c0648eda20a9fc6f2fb74f6b4"/><file name="select.phtml" hash="3d3b73db244d990365f654b0808d8aa3"/><file name="text.phtml" hash="7d4d97b724efdb0f8a722c8e5266b5e5"/></dir></dir><file name="options.phtml" hash="2fbbce0689d701afc08a8034d88f4df0"/><dir name="price"><file name="group.phtml" hash="aae224d67f0316e568acbc64ec437ee6"/><file name="tier.phtml" hash="25566f8552d2cc5901b5de64d3c32d0e"/></dir><file name="serializer.phtml" hash="7b4ec92b7931d8cb3275550b103ae67b"/><dir name="super"><file name="config.phtml" hash="478a64b5d0fbac6984dcc35057f86898"/></dir><file name="websites.phtml" hash="8cf36120d48b173cfe64562b58c0b078"/></dir><file name="edit.phtml" hash="2fcacd48a3d918a369b04edecc4fd711"/><dir name="helper"><file name="gallery.phtml" hash="3fd2327364752b437a9423671f127149"/></dir><file name="js.phtml" hash="8db2dfe0008ca19ff9c92477ce02c4b3"/><file name="price.phtml" hash="2a2a08d4b3a7f940cc691c65f1eb7f05"/><dir name="tab"><file name="alert.phtml" hash="9504feb264a7e9508c0ebb3b2b7d0d4c"/><file name="inventory.phtml" hash="107d0981170b03b0945fa1407e0d224c"/></dir><dir name="widget"><dir name="chooser"><file name="container.phtml" hash="f6df2480b1b2a231a825c588de46f950"/></dir></dir></dir><file name="product.phtml" hash="3417d9e8324e0a5177cb2607b3b80a3e"/><dir name="wysiwyg"><file name="js.phtml" hash="cd97c9fc1595ada331b1ab52b1e082b1"/></dir></dir><dir name="cms"><dir name="browser"><dir name="content"><file name="files.phtml" hash="27a67f8a7d84cd381888954c918ce49b"/><file name="newfolder.phtml" hash="79f5c4e6ea869183fadcae2f28a2ca98"/><file name="uploader.phtml" hash="8644b1acefb64b4eead9246f62512d5d"/></dir><file name="content.phtml" hash="4793e1a90ef3830bf7f0966db6b32dd2"/><file name="js.phtml" hash="648b7152e7b4928e0f5bf96969b1faa9"/><file name="tree.phtml" hash="0e35c8acf6a78f5b8d0ac0e3f51cb26f"/></dir><dir name="page"><dir name="edit"><dir name="form"><dir name="renderer"><file name="content.phtml" hash="1c668e7828761ef2e9b7502e77f024a9"/></dir></dir></dir></dir></dir><file name="coming.phtml" hash="9a9e3443216823df9b850a09746a693f"/><dir name="connect"><dir name="extension"><dir name="custom"><file name="authors.phtml" hash="3c07396912ba301635fea098d58db910"/><file name="contents.phtml" hash="70b8105701963239291cd9ade20560d1"/><file name="depends.phtml" hash="96cb091ca8dc3711a559646af1f05a87"/><file name="load.phtml" hash="69358a9869e5539f670c7919f2d3c9bd"/><file name="package.phtml" hash="9636d710c062379de2c79a31e6f55c35"/><file name="release.phtml" hash="cdb74462f1b92b4a7691c18b1f962242"/></dir></dir></dir><dir name="currencysymbol"><file name="grid.phtml" hash="0fbd928a449619caa1851a668208ee0c"/></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="f279dd3107bf597c070dbd2cf8575d4f"/><dir name="tab"><dir name="account"><dir name="form"><dir name="renderer"><file name="group.phtml" hash="bf9c409b08e3d4cbddae4549d25389fc"/></dir></dir></dir><dir name="view"><dir name="grid"><file name="item.phtml" hash="24761bd6239d6e15bd40c97ac97695f6"/></dir></dir></dir></dir><file name="online.phtml" hash="4b977f5f6011af8b1821ee0a137a7cc6"/><dir name="sales"><dir name="order"><dir name="create"><dir name="address"><dir name="form"><dir name="renderer"><file name="vat.phtml" hash="d64535d30e050d8076b9fdfa8e60245f"/></dir></dir></dir></dir></dir></dir><dir name="system"><dir name="config"><file name="validatevat.phtml" hash="72790f671038f5d6792f0ae6f562ccbd"/></dir></dir><dir name="tab"><file name="addresses.phtml" hash="dc8015dce2c7bed3dbd6c42b94d6ba78"/><file name="cart.phtml" hash="c6afbc059beda2934118179bd89c9694"/><file name="newsletter.phtml" hash="fb1a9455e4cf0e3630d63ef4fdf0d89f"/><dir name="view"><file name="sales.phtml" hash="7b9ac3b6cc20d6daf2a3e9d31ec97fb3"/></dir><file name="view.phtml" hash="b584ae9122c996c4814db5804a29ee83"/><file name="wishlist.phtml" hash="1f233e6ca971df7f52c870a1a4fc4e5b"/></dir></dir><dir name="dashboard"><dir name="graph"><file name="disabled.phtml" hash="18092101a40e6dcf67dd3eb139a058d5"/></dir><file name="graph.phtml" hash="80be9cf21076a06f3c69064d9a5b65ec"/><file name="grid.phtml" hash="21dec746d3b0cc0164a3d2ec46745705"/><file name="index.phtml" hash="69843e35012550256797a8cf10a6ed21"/><file name="salebar.phtml" hash="b404c2a4f40491d94768898e335801a8"/><file name="searches.phtml" hash="6254c3a5c6e3c5c2b1c433b6fd09eb55"/><dir name="store"><file name="switcher.phtml" hash="2cd8a97f1276ddad0dc3b4cbc7030554"/></dir><file name="totalbar.phtml" hash="95e23bc92daf5cd12393e48bd8af12ec"/></dir><dir name="directory"><dir name="js"><file name="optional_zip_countries.phtml" hash="53eaa267c9b2fd6fa6a53009d8f17010"/></dir></dir><dir name="downloadable"><dir name="product"><dir name="composite"><dir name="fieldset"><file name="downloadable.phtml" hash="5c3f62e8e08f270c271825af6f3d4ee3"/></dir></dir><dir name="edit"><dir name="downloadable"><file name="links.phtml" hash="4c4c76f7b420914552e367e156cfb1f3"/><file name="samples.phtml" hash="238b5442b588cfaefc2987f5d76abe6d"/></dir><file name="downloadable.phtml" hash="0163aee7b9f802c339d26a0dc023ee54"/></dir></dir><dir name="sales"><dir name="items"><dir name="column"><dir name="downloadable"><dir name="creditmemo"><file name="name.phtml" hash="c4611218e11c936a3624a6f4cbbc9254"/></dir><dir name="invoice"><file name="name.phtml" hash="dd49d4ef21ec21e7ff0310978c3e985c"/></dir><file name="name.phtml" hash="d68d9f1a03cc6f9d9545799bc0f109c7"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="e7899062fca699d8cd6855681f0f642b"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="cc85dc116c67d384803366d811b659d7"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="646b8325a080e54c3b01a5a21ee1fa64"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="75f191a185c82115f0f285d6c094a8f3"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="200b68f81046fa75745c97783aa1c1e4"/></dir></dir></dir></dir></dir></dir><dir name="eav"><dir name="attribute"><dir name="edit"><file name="js.phtml" hash="a157d7da671fc65feccaf80828920af7"/></dir><file name="options.phtml" hash="414f83241511cb480959025492b93c97"/></dir></dir><dir name="email"><dir name="order"><file name="items.phtml" hash="39a3265dd1f23e43869b1a6487dbb837"/></dir></dir><file name="empty.phtml" hash="dc11dfd0a5513f204d8e64a0dd59b524"/><file name="example.phtml" hash="61e7365b1f6244769c3d2adc7fff6eac"/><file name="forgotpassword.phtml" hash="f1af60dd28db0cb0f481dd03a6b79017"/><file name="formkey.phtml" hash="a8780d1ab5742c2638ef088348e1cd40"/><dir name="giftmessage"><file name="form.phtml" hash="f05444a74cdde5113d58f703206ad53a"/><file name="giftoptionsform.phtml" hash="5ebeee5470c2f2da347b698c880358d1"/><file name="helper.phtml" hash="7159c25a0de65125e827de94b6299184"/><file name="popup.phtml" hash="b9ca836a9c200ee818b894bdc229e8ae"/><dir name="sales"><dir name="order"><dir name="create"><file name="giftoptions.phtml" hash="ad7a91503f97c8de1a5c254274cabaa9"/><file name="items.phtml" hash="afdca0d2b223201f34953862ea418eca"/></dir><dir name="view"><file name="giftoptions.phtml" hash="b3a39ac91dcbf4a78518ac7f9f1dc9fa"/><file name="items.phtml" hash="ad31a2367a8cad6018501e330ab63cb5"/></dir></dir></dir></dir><dir name="googlebase"><file name="captcha.phtml" hash="3cdec2b2ca6475de28f26004fc6de41f"/><file name="items.phtml" hash="207706cb901b8a7609d87d26c5951885"/><dir name="types"><dir name="edit"><file name="attributes.phtml" hash="a748071be3b4f0d6e8008e8be6ef532d"/></dir></dir></dir><dir name="importexport"><file name="busy.phtml" hash="3116333a8dd1b8b80346a5386d0694ec"/><dir name="export"><dir name="form"><file name="after.phtml" hash="9ff8469c60617ad8a569db6407cc7209"/><file name="before.phtml" hash="9bc3ccd96ce6f1799c4341343dd667a3"/></dir></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="02b8ccd08d418a4a89f01fbb7cf8eb03"/><file name="before.phtml" hash="d438c8353286ae30aa866a1991e7c6b5"/></dir><dir name="frame"><file name="result.phtml" hash="76baced1d8506842c9e87427c11dcdf1"/></dir></dir></dir><dir name="index"><file name="notifications.phtml" hash="224cb079bcb09cc517da8247d1a7da1c"/></dir><file name="login.phtml" hash="0642ed2ee75e4bb2a5549905750d570c"/><dir name="media"><file name="editor.phtml" hash="658547871bb249cb0fcae2a9d05e97f9"/><file name="uploader.phtml" hash="4aed2efa2ed120d967f6cf339d6beaf8"/></dir><dir name="newsletter"><dir name="preview"><file name="iframeswitcher.phtml" hash="663f87fcf437290d05e90e0adccfca26"/><file name="store.phtml" hash="72e36ce86d6fe641a2b6e0fdf675ca79"/></dir><dir name="problem"><file name="list.phtml" hash="7e516288963bd5d49595b84614d4ec65"/></dir><dir name="queue"><file name="edit.phtml" hash="115fbefb8b54415db43b38522e28d4c4"/><file name="list.phtml" hash="d1e4b20f8ab5224a4c8e08bf7cdceb2e"/><file name="preview.phtml" hash="323c45a711ac6be32aa6e2ca36ff4551"/></dir><dir name="subscriber"><file name="list.phtml" hash="ddabfee01da30c7311f1d4c98fbeccf4"/></dir><dir name="template"><file name="edit.phtml" hash="9f8a908476e5a7a5af4f3e03c13e6e8e"/><file name="list.phtml" hash="09dcd6515f2a46e0854d108f83d35339"/><file name="preview.phtml" hash="323c45a711ac6be32aa6e2ca36ff4551"/></dir></dir><dir name="notification"><file name="baseurl.phtml" hash="cacaef919143ecd32187d389b08e762e"/><file name="security.phtml" hash="b8784f8ed7672a18cd4ba26e7f9eb74f"/><file name="survey.phtml" hash="4c2e781aaa7109468dc89047159ea3d4"/><file name="toolbar.phtml" hash="51d0d5f4bdbbe4ecc6359536fdb02382"/><file name="window.phtml" hash="5c5ce2129c39758ccd09ae9116a930bb"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="117aced81051bd60de9718237634e66b"/><file name="button.phtml" hash="76264c7d8704103847c58765aa931e14"/><file name="confirm-simple.phtml" hash="6a1638b84aadb8368aef8f4919c3dbec"/><file name="confirm.phtml" hash="f7da9d938f3efdd4d8e3d3a56c0cf583"/><dir name="form"><file name="login-simple.phtml" hash="4b2578daba5463fc530110d5c62cd741"/><file name="login.phtml" hash="e66084f2c20ac508c468eeedb0d6026a"/></dir><file name="head-simple.phtml" hash="9a3abd6e496e054ed315eb278e329a04"/><file name="reject-simple.phtml" hash="1e0067172b8595c6d0001fac93672b97"/><file name="reject.phtml" hash="91a7d29534f38376ac357141bfb02efd"/></dir></dir><file name="overlay_popup.phtml" hash="a5404331cced7214f15524c415c0c5db"/><dir name="page"><file name="footer.phtml" hash="80a45ed883e7bc2a01fe59d106cd2599"/><file name="head.phtml" hash="9ba28cfed2dabd3c35fac9b2d1dc0827"/><file name="header.phtml" hash="4fe6ff37a9fd4db9258e2dd23143513c"/><dir name="js"><file name="calendar.phtml" hash="fd620d778aaa1bbb0621ab6bc6328234"/><file name="translate.phtml" hash="ff25b364ee31cc27bc623b4d7d6e2b06"/></dir><file name="menu.phtml" hash="3ac62270650d6146471e331768b9e8d1"/><file name="notices.phtml" hash="a7fa8fba6776316f9be17fa808b6e9e9"/></dir><file name="page.phtml" hash="05333e0c9d770cd1bc3787c1ba4f9a06"/><dir name="pagecache"><dir name="cache"><file name="additional.phtml" hash="90f0eb69aad30bdaceb49cfd6a1df59d"/></dir></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="ef0f6c5d2282f924c722fb295ecd07f8"/></dir><dir name="info"><file name="cc.phtml" hash="3fc02bf7bd7eac20457fc8de2c9457cc"/><file name="pdf.phtml" hash="558564125d66c00d4c6fb79f28895225"/></dir></dir><dir name="payment"><dir name="form"><file name="banktransfer.phtml" hash="ef4ac65f20269428e95d9f16bf306fe5"/><file name="cashondelivery.phtml" hash="70ba292ccc49e87d3448a69d1887df2c"/><file name="cc.phtml" hash="98db95948ddad5e27dc76535eea40eca"/><file name="ccsave.phtml" hash="3a13ba9f67915e1f5873086d4172b9f9"/><file name="checkmo.phtml" hash="9e833f944a08df5c5ff9b04bfd8d9c94"/><file name="purchaseorder.phtml" hash="6f148958ad67d5cc599a955b0e9285d0"/></dir><dir name="info"><file name="banktransfer.phtml" hash="c7f76af0b328dc41128869c9d1b3195c"/><file name="checkmo.phtml" hash="161bdb06bd62d3cfad35f985cc887b3b"/><file name="default.phtml" hash="b12db53fe3c2461ac5963e5d05863a2f"/><dir name="pdf"><file name="checkmo.phtml" hash="a7d1ca034ca4238f9829e4f2c3ab4cbb"/><file name="default.phtml" hash="5574388a4d3f40e642b8cc3ea10e4a42"/><file name="purchaseorder.phtml" hash="03a3ea70c575cb9d4415994c99c2e020"/></dir><file name="purchaseorder.phtml" hash="2bc26c9700709063ede40b916118f676"/></dir></dir><dir name="paypal"><dir name="system"><dir name="config"><file name="api_wizard.phtml" hash="e9690ef79e6b23f95bbdf96e40721f14"/><file name="bml_api_wizard.phtml" hash="cbe794ee0f082aaed569c4780b504f2d"/><dir name="fieldset"><file name="global.phtml" hash="0ce4f7d47c8a867a9ce909e261eb8205"/><file name="hint.phtml" hash="31d746b96738bb5e15ee3f9f6c613517"/><file name="store.phtml" hash="182f87a672c9a25902be7cd793a3ac05"/></dir><dir name="payflowlink"><file name="advanced.phtml" hash="f81c1a9c50dc38f2833a85acacf7b2be"/><file name="info.phtml" hash="7b47740279105badcd1e08c71dfe81d3"/></dir></dir></dir></dir><dir name="permissions"><file name="role_users_grid_js.phtml" hash="215f2ffd5872108b7159e5a35634d4b8"/><file name="roleinfo.phtml" hash="b8a7b2fdc45edc6d177be148e93f0e2f"/><file name="roles.phtml" hash="53bc9a1b7ee14d98f0b72fcc6a7491fe"/><file name="rolesedit.phtml" hash="cdac83e055a7da96de2cb243316125b3"/><file name="rolesusers.phtml" hash="2d0bfd53f80587ede5076a09316730bc"/><file name="user_roles_grid_js.phtml" hash="726a22972e5ec79f593c8871f50fcfa6"/><file name="userinfo.phtml" hash="1da041adaeda5cf3fbffcda2c2fe8162"/><file name="usernroles.phtml" hash="518c15f5653d318d621fa009328e8ff4"/><file name="userroles.phtml" hash="8e1c821bfc5a304027aaab52b6fa6ad9"/><file name="users.phtml" hash="8870de77fdf9064b40199c3657409250"/></dir><dir name="poll"><dir name="answers"><file name="list.phtml" hash="4999a949e32f39087f8975b399a08751"/></dir></dir><file name="popup.phtml" hash="a069010c0f0311f9d6e6322750023866"/><dir name="promo"><file name="fieldset.phtml" hash="83ac20ed14982decf61d6e65bb07619f"/><file name="form.phtml" hash="d2a18f9e2b5578edde09e3707404c1fc"/><file name="js.phtml" hash="fc01078068f318f1aee5bde2530407f9"/><file name="salesrulejs.phtml" hash="5eeb2669c75573ef0112c87abd34098e"/></dir><dir name="rating"><file name="detailed.phtml" hash="b1ebb6c9a4c2d08568daa47e33cb4280"/><file name="options.phtml" hash="e90d63a2fcc078931683fa1c700083f9"/><dir name="stars"><file name="detailed.phtml" hash="bb8772c93d4419861af3c57e6ad2ad82"/><file name="summary.phtml" hash="878eadadd04ce7206a5c8c1ad90ab902"/></dir></dir><dir name="report"><dir name="grid"><file name="container.phtml" hash="24e8cfe8d80c71f3430a26a44df39f97"/></dir><file name="grid.phtml" hash="193fc15705373736c4118270f79ad9c0"/><dir name="refresh"><file name="statistics.phtml" hash="472946c951ae6d965cc34ee1d52ca17d"/></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="35aab2de64b3417d549581e016df7f35"/></dir><file name="switcher.phtml" hash="51040ebe87541ee796d5f51cbd8cdd9d"/></dir><file name="wishlist.phtml" hash="1b5ed25c6834e7f5ff656c47408aa487"/></dir><file name="resetforgottenpassword.phtml" hash="c01ef130305d45399a7ad4a1958c72a5"/><dir name="review"><file name="add.phtml" hash="fb1e779aad372d7435b41226042cacbd"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="form.phtml" hash="d0a3e2443090d3dca66cfef73b31d2a8"/><dir name="view"><file name="form.phtml" hash="d6cc19317501ecd1d67ae6299a7e7188"/><dir name="tab"><file name="info.phtml" hash="41525e41dd9e3fe641c2a4b70f722ff5"/></dir></dir></dir></dir><dir name="items"><dir name="column"><file name="name.phtml" hash="8e9b5ff7f0acc1eb06b802a866043cf8"/><file name="qty.phtml" hash="96d1fbdc48f5a6cfb6879f6015ea62ee"/></dir><dir name="renderer"><file name="default.phtml" hash="c26cd43ec2cd2ff54209db73e17ee171"/></dir></dir><dir name="order"><dir name="address"><file name="form.phtml" hash="44a18fffebbec3ebab7493489cf48b5a"/></dir><dir name="comments"><file name="view.phtml" hash="2aa276a623a6f309136a63cb971d9c1b"/></dir><dir name="create"><file name="abstract.phtml" hash="87668e6cc7397218af85de2b9e770570"/><dir name="billing"><dir name="method"><file name="form.phtml" hash="930b2738464a3a5b5da779b0125b88a0"/></dir></dir><file name="comment.phtml" hash="0dfebe1ea6ec32ff596c0e91dc1f8d9a"/><dir name="coupons"><file name="form.phtml" hash="beca380a8170e69071c7bdcdc6f06c19"/></dir><file name="data.phtml" hash="7db4f7332721ef625847d2ce3d6861b5"/><dir name="form"><file name="account.phtml" hash="9c17cb854e65deaf8f7605c0262ac826"/><file name="address.phtml" hash="a39f4d9908495608e142fcfc62d88eee"/></dir><file name="form.phtml" hash="9066acccf338a81cd84b2afb0ae9f656"/><file name="giftmessage.phtml" hash="b82f727379470052a926bca46dfbcf26"/><dir name="items"><file name="grid.phtml" hash="a0a9130cd73597c00db6b16d62a60eac"/></dir><file name="items.phtml" hash="e6f666ef1fadecf339cddb56b9a4a22e"/><file name="js.phtml" hash="070905621cc5e005aee00185787e6596"/><dir name="newsletter"><file name="form.phtml" hash="fda1dfda324e3504007885f02e70e415"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="75ca0c223dce8f4dd6f3a82d0e160c08"/></dir></dir><dir name="sidebar"><file name="items.phtml" hash="cbe0b83ed35975bbdaeac1c901a0f8cf"/></dir><file name="sidebar.phtml" hash="ca43f47d8ad22cd90991e3ddf40da8d2"/><dir name="store"><file name="select.phtml" hash="5c5cd4bc086ac1cc3d4a99fdbe8ae0fc"/></dir><dir name="totals"><file name="default.phtml" hash="d50e95571ba6e599160b0269b4c1936d"/><file name="grandtotal.phtml" hash="dd83cae73f716fa26f50d3f52eb533d5"/><file name="shipping.phtml" hash="f688ddab52d23e3d056b95637d999283"/><file name="subtotal.phtml" hash="15650eb3269d23bad4761b6c05f515be"/><file name="tax.phtml" hash="d403970281e8c0f41cb656726f5bdf20"/></dir><file name="totals.phtml" hash="1f84c9377b5102fca3231cd51fb48008"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="fd31573fd94b63f13bf3d5d350c21401"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="ffb752bf6f32409396be59434a965bc2"/><file name="default.phtml" hash="adb50020439923a0232445cc33b58003"/></dir></dir><file name="items.phtml" hash="1e677bf2d70e2eaa494aeb2fdfbe211d"/><dir name="totals"><file name="adjustments.phtml" hash="fa445704929d5bb0f3e2465584e89f24"/></dir></dir><dir name="view"><file name="form.phtml" hash="d873be3310e2f1524430368d6eb2a7fa"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="34bf19c4063a40eaf849080f303cfb10"/><file name="default.phtml" hash="b6c87fe470f369940c8c1a03d927243c"/></dir></dir><file name="items.phtml" hash="a057ec966b7022ec8e3ea20952e2b738"/></dir></dir><file name="giftoptions.phtml" hash="74ebf2c0d71d23f1c2c8d91175ad4df3"/><dir name="invoice"><dir name="create"><file name="form.phtml" hash="926bef890025d9b248112a23949a6750"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="02f58599963fae9d27a34552f6abb294"/><file name="default.phtml" hash="f4065d2d8ea1a9850e830eb26388c0a6"/></dir></dir><file name="items.phtml" hash="6dcaf7f5f7734e88116c435fc71004e0"/><file name="tracking.phtml" hash="566631df2b5d5a16f67249b61f9d21b7"/></dir><dir name="view"><file name="form.phtml" hash="1d69647f7a5a2c89efaadc8dbebbdc3e"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="7d6e204bcda72334dd5c0f622d1c535f"/><file name="default.phtml" hash="aa7640104e8a4a80be8e6ffb7e8bab9c"/></dir></dir><file name="items.phtml" hash="651f3646b367feaafdc6d70fc283abcf"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="77393d34182eb3f5aa2257996a2ca9c8"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="a9510c86033a30c28782d503b9c8df94"/><file name="default.phtml" hash="ba641caca82c5fa00c1a3b8717647e39"/></dir></dir><file name="items.phtml" hash="7a5a4534ca8f727ced59507cddc7855b"/><file name="tracking.phtml" hash="2d34c20f28e5be469228f3da6c1327d9"/></dir><dir name="packaging"><file name="grid.phtml" hash="ad13677e15f6481a0bda2ba8ab928a80"/><file name="packed.phtml" hash="ba7f36367b2854c98a7f0098d7219d60"/><file name="popup.phtml" hash="597d1d138f060d158b497948399cc036"/></dir><dir name="tracking"><file name="info.phtml" hash="2aec3d18414878b753ec00d1d26e0e05"/></dir><dir name="view"><file name="form.phtml" hash="442dd7140c7f31a9bbb225298e97c803"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="54c457d7901696737ff5906525a69506"/><file name="default.phtml" hash="c04ca11fb71b0642b4ae069621044e26"/></dir></dir><file name="items.phtml" hash="8d47f0716c2c080099a2a86c31cd52a6"/><file name="tracking.phtml" hash="93ead449bb36daa60060a472e1d42449"/></dir></dir><file name="totalbar.phtml" hash="5f553203db2750af47abd5e330c91c9a"/><dir name="totals"><file name="discount.phtml" hash="793dbeb633c82d96a9cd92fc32cb9370"/><file name="due.phtml" hash="64d06e23b183849d233aee89d8e37a71"/><file name="footer.phtml" hash="59238c18df4dabf46daebbd9329f3407"/><file name="grand.phtml" hash="396bfac5f835909cc895a85e80604591"/><file name="item.phtml" hash="975aac85e2766d73bb4e78fbdc123709"/><file name="main.phtml" hash="caaf7b05d5077f53592fccb0742b6caa"/><file name="paid.phtml" hash="3f42df36e0c4135e1794669f4291faa3"/><file name="refunded.phtml" hash="8e1b7650d3072ac5aeb0fad19dcad94a"/><file name="shipping.phtml" hash="dad1657c7897b74d3a077644e92267d3"/><file name="subtotal.phtml" hash="fb1f2b69dd118429786fc085b278e061"/><file name="tax.phtml" hash="0add32eb968e2a22757fb488b52ebaf9"/></dir><file name="totals.phtml" hash="2bc4905f6a18eaa8f16a7a267d1d7bc0"/><dir name="view"><file name="form.phtml" hash="884140eea2a8a201e3d539679c74bd4e"/><file name="giftmessage.phtml" hash="7e2b6103ca41ad0cfa94857c842b3e4e"/><file name="history.phtml" hash="20495fd35df40d30f5cd4f47116ff179"/><file name="info.phtml" hash="d5f3d7b3a34acd6437c93b217071b6d1"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="4290d9fc416005e6444f1463a41c1797"/></dir></dir><file name="items.phtml" hash="a586817b7d4f5b8aa4d60e9f607460d0"/><dir name="tab"><file name="history.phtml" hash="15c9939b4e5fc15fd6649c30e5257732"/><file name="info.phtml" hash="0bb126376322b50b5d32e44252325d3e"/></dir><file name="tracking.phtml" hash="3aa2a781868975b8615b5007ffe09f3f"/></dir></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="2e8b1322d4a929079328f7be68251d71"/></dir></dir></dir><dir name="recurring"><dir name="profile"><dir name="view"><file name="info.phtml" hash="853feb45734a4e7e868397f1adcd8212"/></dir><file name="view.phtml" hash="e8b4d1332f373b5e0b763c74cee132c4"/></dir></dir><dir name="transactions"><file name="detail.phtml" hash="38ff7fc99ab3e84b2e21088fbb06ba67"/></dir></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="680de650bc4085e8f144829ef2d52fde"/><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="bbcffed4e9742cb62a82c1c8922848fb"/></dir><file name="fieldset.phtml" hash="aeac068e6fcb9d4f83a3cf69a7d217ae"/></dir></dir></dir><file name="switcher.phtml" hash="8bccfeb8fbe9550667d68c59ffd88a6a"/></dir><dir name="system"><file name="autocomplete.phtml" hash="5116487eadd3c9abf768c53a510e8a0c"/><dir name="cache"><file name="additional.phtml" hash="1e324c3bd984986e1cd5e4b2407b0a65"/><file name="edit.phtml" hash="0b52b9e2f71bc243c13a28fe2f3dc44d"/><file name="notifications.phtml" hash="3cb6f19a2447b8762e0b37ccf9d3f9ef"/></dir><dir name="config"><file name="edit.phtml" hash="b5c5c0f45db92ea28ebef52ecab443ab"/><dir name="form"><dir name="field"><file name="array.phtml" hash="4056bba6c2d7052908496cde812b3ad7"/></dir></dir><file name="js.phtml" hash="4c803af5e8d4cceaef2d9a024544aaa3"/><file name="switcher.phtml" hash="71957dfe39d3c9d407f2e2dde60ee627"/><dir name="system"><dir name="storage"><dir name="media"><file name="synchronize.phtml" hash="642fdd06a98e60c022b17a2c21d6c150"/></dir></dir></dir><file name="tabs.phtml" hash="b2a0b0d6e6ef78a3331058d436c85d58"/></dir><dir name="convert"><dir name="profile"><file name="process.phtml" hash="c264449f64200faafd23f13ee4c280a8"/><file name="run.phtml" hash="1385574623381ae6190a5036a5f6c494"/><file name="upload.phtml" hash="490ae85dbc033921f9d4dfb6bcddbda0"/><file name="wizard.phtml" hash="406af7e65822d682792bb67c7ba46b46"/></dir></dir><dir name="currency"><dir name="rate"><file name="matrix.phtml" hash="3b7d6dcc201d3c410134549d031a13cf"/><file name="services.phtml" hash="3f02ebcd0453499120d53cf6ed5605c8"/></dir><file name="rates.phtml" hash="d4817348c3546f2de375693680c1d5f3"/></dir><dir name="design"><file name="edit.phtml" hash="c372c796fdb2c2df861466d0683db4bb"/><file name="index.phtml" hash="07b64f5b045f5f7a21d62c33cc941b08"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="449b79b474e8162cf60e5d87bbc05d62"/><file name="list.phtml" hash="a58d24b14b0c605666004e8686fc4db4"/><file name="preview.phtml" hash="161d807801ee3f54f6bb374a2d3320f0"/></dir></dir><file name="info.phtml" hash="058d4471564fd61cdcd209841a64559c"/><dir name="shipping"><file name="applicable_country.phtml" hash="4054118945c82eb4d62020d5835faf16"/><file name="ups.phtml" hash="954ed961b8b5afeb767d05dc42fbd5a0"/></dir><dir name="store"><file name="cell.phtml" hash="5e536a3648f041e5266fe304b20f1973"/><file name="container.phtml" hash="c193a3659949c7a3853c485c317d17c0"/><file name="tree.phtml" hash="2dfe92243c31aede2f59b803a477682f"/></dir><dir name="variable"><file name="js.phtml" hash="60bfbb9a1d34993f49848fd66810dcd4"/></dir></dir><dir name="tag"><dir name="edit"><file name="container.phtml" hash="6f1ed70983a5e0e962dd143fc9d888c2"/></dir><file name="index.phtml" hash="1d13f70f97adf04129914dddd20fb21d"/></dir><dir name="tax"><dir name="class"><dir name="page"><file name="edit.phtml" hash="79fa2f76476b4e4d83fd14f5b58ef2ba"/></dir></dir><file name="importExport.phtml" hash="c64e789dbfde6e988b2e7a552300f3c3"/><file name="notifications.phtml" hash="400027105fb5d2dc50fe3b53160f99e8"/><dir name="rate"><file name="form.phtml" hash="3a01fc7ae1295acd9344b028b464fbdc"/><file name="title.phtml" hash="cd2580f98a026221b90dd9dc9072f7b6"/></dir><dir name="toolbar"><dir name="class"><file name="add.phtml" hash="902868a4362beaaa4429a382d50a94b6"/><file name="save.phtml" hash="c8114ea2171a06a4298d3f5a47468362"/></dir><dir name="rate"><file name="add.phtml" hash="1b9e3098f50d7032d9bf261f822f234c"/><file name="save.phtml" hash="43046c416cc95a85983b07625c819e0f"/></dir><dir name="rule"><file name="add.phtml" hash="50b8df0f2174ea2e7dbea6a32273cd9a"/><file name="save.phtml" hash="a8e4768185ded9a788ebbaf2539ea9ee"/></dir></dir></dir><dir name="urlrewrite"><file name="categories.phtml" hash="f4745e0c1f3ed8592155425fb167ee72"/><file name="edit.phtml" hash="aeeb3d475b577c2e94d72276fd7b173d"/><file name="selector.phtml" hash="8464a51d50b6a9d34504e51d0637c62c"/></dir><dir name="usa"><dir name="dhl"><file name="unitofmeasure.phtml" hash="e023266efeaa2447d84205387b010dd0"/></dir></dir><dir name="weee"><dir name="renderer"><file name="tax.phtml" hash="3ddf217b5c08adbf68229497ced24f1d"/></dir></dir><dir name="widget"><file name="accordion.phtml" hash="7eebf8248a85fab5e6c105c85aeca828"/><file name="breadcrumbs.phtml" hash="4dcf1e68d9e86398c0838b6088c5259d"/><dir name="form"><file name="container.phtml" hash="9571f84ae785e22c936b2e0a34f5dc53"/><dir name="element"><file name="gallery.phtml" hash="dae0d464587c7d0b51945fb98a05d710"/></dir><file name="element.phtml" hash="3e7a4f6485d35baf57b28ae242eed5aa"/><dir name="renderer"><file name="element.phtml" hash="b528817c5810af724758a22e8456db4c"/><dir name="fieldset"><file name="element.phtml" hash="56c51c40d97220912c1e29567bcfe54e"/></dir><file name="fieldset.phtml" hash="3c9a1ea4b4d297d52a17082ffcb2ded1"/></dir></dir><file name="form.phtml" hash="233a22bfa09819c4a2f6c7c9ac6df1ba"/><dir name="grid"><file name="container.phtml" hash="c193a3659949c7a3853c485c317d17c0"/><file name="massaction.phtml" hash="be2d3dfdb7315621f7384785c110e5d0"/><file name="serializer.phtml" hash="53dc425f39abc542fe08cac9bd5aeb89"/></dir><file name="grid.phtml" hash="0f037697e1fd988112cb995bd871f7b2"/><dir name="instance"><dir name="edit"><file name="layout.phtml" hash="117fe57fc7a179da8c049b1eef8d4244"/></dir><file name="js.phtml" hash="297a6f76398e0565ead47c4acbd93028"/></dir><file name="tabs.phtml" hash="86399d7972f4f6d7fa75b1a477b8de6d"/><file name="tabshoriz.phtml" hash="c28ed0f33f7ed4e417044fb67d2eefdf"/><file name="tabsleft.phtml" hash="6908e52aec15512a0d0d23230dcbe9e6"/><dir name="view"><file name="container.phtml" hash="5ed3bd2509e46ab2f282084a1f1b39b0"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="below_ie7.css" hash="b2bf3a91f389f2ea7912765a814ce10f"/><file name="boxes.css" hash="ba8dd746c8468bfd1cff5c77eadc71a4"/><file name="custom.css" hash="30ed634c4e5d7521cf9961c880c3cba4"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="ie7.css" hash="15db0c436a5438265a91b2c1e4ac4626"/><file name="iestyles.css" hash="89403be830634339c69a155aa824300d"/><dir name="images"><file name="accordion_close.gif" hash="875409122fc82f5f6705e20dd801fd3d"/><file name="accordion_close.png" hash="6213698b5f69bb2907a5c7bb94b5fe8d"/><file name="accordion_open.gif" hash="d9d50e220b0b676094c6134a9708194e"/><file name="accordion_open.png" hash="9fbc3aba23ce5e0465e4d1cf3f6a7aee"/><file name="add_btn_icon-disabled.gif" hash="c8f6a5cfb455ef121efb56a747821f82"/><file name="add_btn_icon.gif" hash="7300097305b577ee564dc49102822d16"/><file name="address_list_li.gif" hash="79b917b514e35ce0a7833a5e268fd9f7"/><file name="address_list_on_arrow.gif" hash="3a2884ddcc87ebd48883662530b9de1b"/><file name="address_list_over_arrow.gif" hash="e826883c71b1184bd4f29433e39c18ad"/><file name="address_list_over_bg.gif" hash="56291480cc89de9d817205a5f23b66dd"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="arrow_sort_move.gif" hash="f5ac151a2b0cb1f07d6e771b8aee0ea7"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_create_order_totals.gif" hash="ff6ab75c050b959c539cc6a6fdff2934"/><file name="bg_notifications.gif" hash="a365594725a83585d989f722b3d8c458"/><file name="bg_window_mask.png" hash="93d6efad062d24c94c105802b138b6a5"/><file name="bkg_btn-close.gif" hash="df3f2332f0bad01e031deb22b81f630c"/><file name="bkg_btn-close2.gif" hash="822457d78fb3c21dc12e9777d83eb4f1"/><file name="bkg_config-advanced.png" hash="b898594a9f1849bf386c06979ef613a8"/><file name="bkg_config-nested.png" hash="7b0fdbf98746c3c916b432c37321ccc4"/><file name="bkg_config-shaddow.png" hash="9ee4318e3f4afc446d26e7f66d01cfbd"/><file name="bkg_tooltip.png" hash="56cfed3ed8a65b19f8de88946d1a0a01"/><file name="blank.gif" hash="5722d7bd0f1e1379d0a2005a0a9ea401"/><file name="box_bg.gif" hash="4c501bd6db9d361c18780f106a809b03"/><file name="breadcrumb_bg.gif" hash="72c4adf6c75b4640ca8f7cadffa42266"/><file name="btn_add-image_icon.gif" hash="1d42210fd29fc534d9ed6b41e811d40f"/><file name="btn_add-variable_icon.gif" hash="a2db02e318d107d5b57b444c8d80b8f8"/><file name="btn_add-widget_icon.gif" hash="b4f66ca7f6097fbafd672e0b3f076ef4"/><file name="btn_add-widget_icon2.gif" hash="467acd3a14fb8be37191f5d2ec5a5b13"/><file name="btn_back_bg.gif" hash="8be512788b8044fe31aa8d00cc16ba7b"/><file name="btn_bare_bg.gif" hash="ddbbab8c0d201c3e502d50e7d4a3d64b"/><file name="btn_bg-disabled.gif" hash="079971a9d2c385fe353d35716ec9f26b"/><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="btn_bg.png" hash="6e3b7003381f919e8f6533444afaa978"/><file name="btn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="btn_delete_bg.gif" hash="ad740d0c16f2f6603c8ef023004d6539"/><file name="btn_go.gif" hash="1bd787868713767cc205e2ee25e41f62"/><file name="btn_gr_bg.gif" hash="6cc324b79a512150fee24fb3517d22cb"/><file name="btn_gr_on.gif" hash="820c134df02f7bc12efa5a9ac3b4d3dd"/><file name="btn_gr_over.gif" hash="d4c8b807d64c1f493d17c6c9d2bab69a"/><file name="btn_loading-icon.gif" hash="45f500105be432a12c78fed2b4592cf9"/><file name="btn_login.gif" hash="79fa32d49d3f4e39d3fbf8327f9229e1"/><file name="btn_on_bg.gif" hash="709cf5b0be137db1ef8427688503bf37"/><file name="btn_over_bg.gif" hash="f91641168454c03d1fa72731ec97a2b3"/><file name="btn_show-hide_icon.gif" hash="0238c509b33ba56c25df9513bb48f804"/><file name="btn_task_bg.gif" hash="5e0594bd9cbfcc1e32ffa918d7f9c812"/><file name="button-close.png" hash="04d0907b2d7fc3240693497b199f64f5"/><file name="cancel_btn_active_bg.gif" hash="91ce403d286eef2b4e0c13733875882f"/><file name="cancel_btn_bg.gif" hash="26749cf4949ac27c30f597434d3bde65"/><file name="cancel_btn_icon.gif" hash="97e0cd94ed31d6f2a1181f627e60e9a3"/><file name="cancel_btn_over_bg.gif" hash="45eb4e883b17375961672f5390387c31"/><file name="cancel_icon.gif" hash="70a23b78353f0a7b9b118a937fcb7ea9"/><file name="config_tab_dt_bg.gif" hash="a33f71077ca4078caa794cae01d9fca7"/><file name="dashboard-close.gif" hash="5ae5afd61e937fcd2d5b84641255ee4d"/><file name="db-graph-bg.gif" hash="5d76efb7c3244f5684df2566782124ea"/><file name="db-graph-bottom-bg.gif" hash="b58ced87a38a10891106329ae882aa1c"/><file name="db-graph-line-bg.gif" hash="f16bb08e040c2c0a3e23b3f35c54b79b"/><file name="db-graph-line2-bg.gif" hash="744ebfdba20d050f4d252afc216394be"/><file name="db-graph-x-bg.png" hash="d5c26510718a78d22083916d80ef7a22"/><file name="db-header-bg.png" hash="3976cb6351e167686a501a85cf3a68e9"/><file name="db-menu-bg-hov.gif" hash="34ea76a6d105d90fcb63bf105aadb8f7"/><file name="db-menu-bg-up.gif" hash="b0f754872dff5f2f0dc57ba193fdfa4c"/><file name="db-menu-bg.gif" hash="ea534c3c09bb309e566b6ae876655e13"/><file name="db-menu-sep-last.gif" hash="a01fe34854e1187e466fd58d462c4106"/><file name="db-menu-sep.gif" hash="7c5ae1cd59a189261cc3244358d5c1ad"/><file name="db-menu-start.gif" hash="aa5cac2194d937cc7fa904ccfce70ecc"/><file name="db-scroll-bg.gif" hash="06d2411e3b5f350ab21b625439d2d69d"/><file name="db-scroll-but-bot-roll.png" hash="6bc5e482f3f6d8fb1fc5014ddea43706"/><file name="db-scroll-but-bot.png" hash="25c0181e76ff8ceb3c0ec59071b8c72c"/><file name="db-scroll-but-top-roll.png" hash="b7961f2a3b5b641694a9b0b30d58e46b"/><file name="db-scroll-but-top.png" hash="de7df96e961596be9ff556924259b98b"/><file name="db-scroll-roller.png" hash="e01dde7bd096c52179acf29a425a29e5"/><file name="db-tab-bottom-left-bg.gif" hash="124388d44ac58b029377c6311a4782d5"/><file name="db-tab-bottom-mid-bg.gif" hash="9c48f33aa8907cfcb227bc779c2e1dce"/><file name="db-tab-bottom-right-bg.gif" hash="1db45e6fd8abc67d59f96a676607b412"/><file name="db-tab-footer.gif" hash="cac8928acba75bc1edd73186ced78e5c"/><file name="db-tab-header-sep.gif" hash="580312af7441b6a62f7e32081c40fb0f"/><file name="db-tab-header.gif" hash="fdf493b9477fcff7e7be98405effc33d"/><file name="db-tab-left.gif" hash="3fe3c55267dbbdd1db2ff959ccc9e0be"/><file name="db-tab-right.gif" hash="b7a32c8b03efe2fbdb63215d0446e3be"/><file name="dotted_divider_dark.gif" hash="8bf1de196d9ea048bfb25155cedd2e9e"/><file name="dotted_divider_light.gif" hash="92e562bf2070110f6b0a15e29b845445"/><file name="edit_icon.gif" hash="dbda31751c78d964c04394e9d8533187"/><file name="entry_edit_head_arrow_down.gif" hash="985c3ce4439fbf8bb2216fc7e73a3f0b"/><file name="entry_edit_head_arrow_down2.gif" hash="d68dd0fbc2819858a26ea2835c05df77"/><file name="entry_edit_head_arrow_up.gif" hash="d2b90a1823fff9f3917f19b427410144"/><file name="entry_edit_head_bg.gif" hash="1086b7196e8b33c4f46e49fecef0f35f"/><file name="error-msg.png" hash="3cd27b642416dacdc28907c89d934886"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_account.gif" hash="c910fd1ff41b940d71b0835e02fc143e"/><file name="fam_application_form_delete.png" hash="972c2d998fc19572dd64af6b5e2e898e"/><file name="fam_application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="fam_asterisk_orange.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="fam_bin.gif" hash="2fb388bc9f1d32d3802db8e91dc238bc"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_bullet_disk.gif" hash="9fe82691d960c18d3d315c3f9164af4f"/><file name="fam_bullet_error.gif" hash="008802f44288b732b59cfe9fdbfecefe"/><file name="fam_bullet_success.gif" hash="465a056a3ba3d94367f51c3c0b751391"/><file name="fam_calendar.gif" hash="0614207ce4e3e0a9bd631b39e7692e3c"/><file name="fam_cart.gif" hash="1f2fd2c8ac6574488ea78302b6856191"/><file name="fam_comment.gif" hash="5138f9a4b6019a5b14b8ff9a32a3cb89"/><file name="fam_creditcards.gif" hash="b75b8ce2f4fceb58f8082c48344560c7"/><file name="fam_folder_database.gif" hash="e86175ff0f389ade1fc7bf15e03346eb"/><file name="fam_folder_palette.gif" hash="c0941b9145e06d53cc0d17ac4c151764"/><file name="fam_folder_table.gif" hash="e2914ba75944acd2a9e2d338fa339e16"/><file name="fam_group.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="fam_help.gif" hash="2b5ed4c13a8e24456207b757826c7b2c"/><file name="fam_house.gif" hash="8eb2d580c5a40b7974f4263ca64fb94a"/><file name="fam_layout.gif" hash="5366a5f02260d3a860ef0c4787282ad6"/><file name="fam_leaf.png" hash="078d4f24683331b4557356a59e67b125"/><file name="fam_link.gif" hash="78590d5d8375d1baabe7b66d7b9ceb7d"/><file name="fam_lorry.gif" hash="174e86e45e76e7008fa3510cefa85047"/><file name="fam_money.gif" hash="6996bad465222fb6487cab94b4607846"/><file name="fam_money_add.gif" hash="70ceed401fe9913305f2362f7e26225d"/><file name="fam_monitor.gif" hash="f3bc806ff9d0907320b03018ba2d00ea"/><file name="fam_newspaper.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="fam_newspaper_delete.gif" hash="41acabfc19102be92d3ccbc66d1fede3"/><file name="fam_newspaper_error.gif" hash="009bfa425298e1d2e44e38e58cd97938"/><file name="fam_newspaper_go.gif" hash="eb43105f8e13e3a752d7ca33bb086831"/><file name="fam_package.gif" hash="bf9be09ef64d006455baa211b7c03983"/><file name="fam_package_go.gif" hash="e4f8d380c2f8e5a7345e360293433764"/><file name="fam_page_white.gif" hash="26940eb67826c5af72b6048c7c5a8335"/><file name="fam_page_white_edit.gif" hash="a4f88300b74ad592a5c47ed54ff07af9"/><file name="fam_rainbow.gif" hash="e8b04cc945b3582a181d4ddbc2d2325f"/><file name="fam_refresh.gif" hash="01bbef614023c0890812e76bc7ecf7e0"/><file name="fam_server_database.gif" hash="7901fa06ffd68ed730cf43bb560756fd"/><file name="fam_status_online.gif" hash="a80019ffa3a573f709772ed1099343fc"/><file name="fam_tag_orange.gif" hash="6ce735a0e590bda040b6e1614c42e58a"/><file name="fam_user.gif" hash="63bbdd6d9d7a27591907a7b87898e259"/><file name="fam_user_comment.gif" hash="014dfd31d9af40e3d5960b2b0d900da3"/><file name="fam_user_edit.gif" hash="f5b36e803060c6b82e639a4fad57b9f7"/><file name="filter_row_bg.gif" hash="013a0929a7b2ddc6823bdda17d08acc0"/><file name="footer_bg.gif" hash="7724711d3ca07a5e46a6030e86743a71"/><file name="gift-message-collapse.gif" hash="5b710f5faa9c7352a39c10e3ebbee6fc"/><file name="gift-message-expand.gif" hash="fd53a70cbb1ea048754657a63787e9cb"/><file name="gift-message-grid-column-bg.gif" hash="97a8a9b8cc4ab68e7404ccf1320f50a6"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="grid_sort_asc.gif" hash="b78c3a1a27ac9672a31b7d1bbac60322"/><file name="grid_sort_desc.gif" hash="d958b946eba3dba863d724530a0dba1a"/><file name="grid_th_bg.gif" hash="8f4349fac728858374e17edf03390977"/><file name="grid_th_onclick_bg.gif" hash="7bf331e2a41e5331c4210bdc6adc4383"/><file name="grouped_to_order_icon.png" hash="4bdae9a6199655027b8b8aeee8f80ce4"/><file name="header_bg.gif" hash="cbe510856afa5cb0c32642c1f9a8eceb"/><file name="header_top_bg.gif" hash="8440b04c5cb6b1451bb886bfbef260a5"/><file name="horiz_tabs_ul_bg.gif" hash="58dbd9c45f76993346c2bb788896248e"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_question-mark.png" hash="23201b7ac207eebd9be0776ea44098a4"/><file name="ico_success.gif" hash="0afb20898a704a106cb4c598868abf32"/><file name="icon-enabled.png" hash="5fa7c06b312cbea3675e844686e434af"/><file name="icon-tooltip.png" hash="5767601cd66b23d0b6fe8defc10dd48d"/><file name="icon_btn_add.gif" hash="7300097305b577ee564dc49102822d16"/><file name="icon_btn_back.gif" hash="89ed97cede3f68241446a62c96e3ce4c"/><file name="icon_btn_delete.gif" hash="dbde0b76d36cfd624bf0de166d0a265e"/><file name="icon_btn_save.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="icon_edit_address.gif" hash="d1ca2bb3a5c86afd379f25d9fc4352e3"/><file name="icon_export.gif" hash="9a13f20c6a17b41b9c357545c2da5636"/><file name="icon_export.png" hash="fb299dd13df666516eabe16f59193383"/><file name="icon_feed.gif" hash="0366583ed6e285d028442fcdebb05072"/><file name="icon_feed.png" hash="8537f6f88fcff4aac793247143d14e42"/><file name="icon_note_list.gif" hash="8d25ba225ca09b687a78bff510df5d10"/><file name="icon_remove_address.gif" hash="2de2b3d02c19adfb93e9e43a392db178"/><file name="login_box_bg.gif" hash="e4654826eaa8d5ebc0ab18e9bee71e1d"/><file name="login_box_bg.jpg" hash="404e37f4ee9f4ff9bfcb638741c7581d"/><file name="login_box_bg_auth.jpg" hash="d90a81db1064ec37b0cc92436725c24b"/><file name="login_box_bottom.jpg" hash="038f15261e74bc381484f2fcfa45a73b"/><file name="login_box_legal_bg.gif" hash="528ac4dd480c4fc00ac808bf17394c05"/><file name="login_logo.gif" hash="9cc90e7aa1210883000fe5319862ce14"/><file name="logo-large.gif" hash="5c77654c424b0a35cc24d28df5166dc4"/><file name="logo.gif" hash="c7e9f290d965f707e4c4a61bfdab58cb"/><file name="logo_email.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><file name="logo_print.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><file name="massaction_bg.gif" hash="8b5f4db3ab3ea09cd5bd0164d67c4f0d"/><file name="massaction_button_bg.gif" hash="4c8262817e48d007237124ce0e7f4d18"/><file name="massaction_links_delimiter.gif" hash="9a0337183b5b67c0eed75993d7f14d10"/><file name="middle_bg.gif" hash="ba4f176d2c553201ebab4aba5c6d3d20"/><file name="more_arrow.gif" hash="38bb4c0e9270250151486d0bb36c476f"/><file name="nav1_active.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_bg.gif" hash="a1d4ef5b590ce0a425dc04e45ed06cbe"/><file name="nav1_off.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav1_on.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_over.gif" hash="2c70d6175f1c965c27dda0598a67e63c"/><file name="nav1_sep.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav2_last_li_bg.png" hash="279935c9799679fc5894337eaabc7cf0"/><file name="nav2_last_li_over_bg.png" hash="39536f00824293d11242888a76f40a5f"/><file name="nav2_li_bg.gif" hash="0a4f34b0e4436c519d31203f19503b83"/><file name="nav2_li_bg.png" hash="2fad219d162324e9a19f2745d5b6d562"/><file name="nav2_li_over_bg.png" hash="dc37c4a4aab40ea2ae44dea5ea133a9d"/><file name="nav2_link_bg.gif" hash="dce00ddad351e72e83bc87274cbaa54a"/><file name="nav2_parent_arrow.gif" hash="60e012a14a077bd2257343facc369c0c"/><file name="nav3_bg.png" hash="2bc7af80ad8886013da38401b63ab6df"/><file name="nav_bg.gif" hash="1b857c7d35f35ef9f6cae9e03a4e3dff"/><file name="nav_list_bg.gif" hash="7a4e2bdb887c12d8a1152bbcc8c02a3c"/><file name="nav_nest_link_bg.gif" hash="1d0c6b374bf02ac4b5aa012955c431de"/><file name="nav_nest_link_over_bg.gif" hash="fae3c579a4d432503b1f4f929d070609"/><file name="nav_on_bg.gif" hash="ac624b580cae5a76f6c92abc5a44191d"/><file name="nav_parent_arrow.gif" hash="3a95559263e569dc1c8065cb2d9b3f2c"/><file name="note_bg.gif" hash="105967d7c15ab4610726eea52d862a97"/><file name="note_cell_bg.gif" hash="71e656d42f8ba8c2d477c6866c499b71"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="notice-msg.png" hash="9cd1dfebccec8a2123d543fa49b17bd7"/><file name="pager_arrow_left.gif" hash="6e44f608dac8eb8be1d1ebee5a3285aa"/><file name="pager_arrow_left_off.gif" hash="30f5e56195ab3546b36f4016db5254be"/><file name="pager_arrow_right.gif" hash="cc79526156b7e0c8abce61fad3d53f77"/><file name="pager_arrow_right_off.gif" hash="f01b7dad9acf0180b5c62edbd7ea9939"/><dir name="paypal"><file name="logo-paypal.png" hash="d032551b47e48dced277c4fa344ac7f6"/><file name="pp-allinone.png" hash="c457fe4bfe28a18c90d0abd36fe3f880"/><file name="pp-alt.png" hash="37a166931ca15c465bd86311d15e0422"/><file name="pp-gateways.png" hash="90acb72c2f46fa131351efe0492d52cf"/><file name="pp-uk.png" hash="e0830ccb14533051b8b0340471744228"/></dir><file name="paypal_logo.gif" hash="871e205a64292121f4c893373acfb581"/><file name="paypal_section.png" hash="d032551b47e48dced277c4fa344ac7f6"/><file name="paypal_tick.gif" hash="e8685c1fb7c4c106ae4fd24e9bbf5a27"/><dir name="placeholder"><file name="thumbnail.jpg" hash="5c73b5aa515b1719f7b398f5131f91a8"/></dir><file name="process_spinner.gif" hash="345b30b4d0b6088d0151ecfbdf48c036"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><file name="rule-ajax-loader.gif" hash="32dc1f5901143d36fbd7a6df3950819f"/><file name="rule_chooser_trigger.gif" hash="9c498e789c3ce734f5301c2475e2a04c"/><file name="rule_component_add.gif" hash="7914e57701ca26f5c8bf23c6bc3e1f25"/><file name="rule_component_apply.gif" hash="3f9b9025551da6963a9ecf8d184a204a"/><file name="rule_component_remove.gif" hash="4d785bcecfbe716fa4d749d20738a8f0"/><file name="save_btn_icon.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="sec_nav_bg.gif" hash="99c6741591cdb2a2a128668a1d32d668"/><file name="section_menu_bg.gif" hash="f9edd44c92743a0c9ae9535a7992d6b1"/><file name="section_menu_bottom.gif" hash="167d2ef46ff80158c807b4b916501b28"/><file name="section_menu_link_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="section_menu_link_over_bg.gif" hash="7da7e56567633aab279cf3aec6f49d8d"/><file name="section_menu_over_span_bg.gif" hash="f5ea5292f15ed62b99f0f51d9fff2c66"/><file name="section_menu_span_bg.gif" hash="dbf3916358e794ee809b4cf33903af2c"/><file name="section_menu_ul_bg.gif" hash="3aea6e5452f548438ca34e17954a9d6b"/><file name="side_col_bg.gif" hash="b3691fd62663457af39eaf71dd8cda5a"/><file name="simple_container_bg.gif" hash="56f1ac91169eb4896b8c91384fc8bf15"/><file name="sort-arrow-down.gif" hash="fc2cd9f756ce510c4470478d720f81cd"/><file name="sort-arrow-down.png" hash="dc65160d9d4d6cdd6bfe1b397a931975"/><file name="sort-arrow-up.gif" hash="39026b0ff1f0c18091caa60384491163"/><file name="sort-arrow-up.png" hash="da54e5306bdce67551aa415f5d7f7ea7"/><file name="sort_heading_bg.gif" hash="6066d09f237f556b0a4770e4788e7598"/><file name="sort_on_bg.gif" hash="0cb36788ed4fbf19e657acbc75a3f1b8"/><file name="sort_row_bg.gif" hash="f2e1c5cb26b9f5211419b99d30745244"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="sub_button_bg.gif" hash="e3f66dd60510f9f7e937e2e55442c30a"/><file name="success-msg.png" hash="c64cb2acc3d0eeba48fdea83620913ed"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="tabs_link_bg.gif" hash="34447929f5e6591ba9b5795b983fdfd4"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="tag_blue_edit.gif" hash="b2163ac3baf7d822b48593342846645a"/><file name="tn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="tooltip_bg.gif" hash="0aa4b866fc067a75f27ab749c1dabf74"/><file name="tooltip_corner.gif" hash="71146534671d5e0751505640b7c59859"/><file name="tooltip_top.gif" hash="032ff52a6ff5714cbdf6c1f62abaf7e5"/><dir name="tree_icons"><file name="join.gif" hash="4d5d614e0da056df815a4306d6368692"/><file name="joinbottom.gif" hash="4b3daa7f2cc584f1aac0d142275d7cba"/><file name="line.gif" hash="63ab38a6203262f15ca46c631232ea2c"/><file name="minus.gif" hash="d647fbbd0ec410b8f3bb3357b62eedcf"/><file name="minusbottom.gif" hash="b09d684cca7135ef728141aaf2464baa"/><file name="nolines_minus.gif" hash="eb2243a354ffcfac93ba0fe948f7167d"/><file name="nolines_plus.gif" hash="ec92b634b63608fb4b0dbf114e3b89e1"/></dir><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><file name="varien_logo.gif" hash="6f10d0fe572cb012947c164217e9e428"/><file name="warning_msg_icon.gif" hash="4cf6ec7f59ab09f9c18b3a4301714c6d"/><dir name="widget"><file name="catalog__category_widget_link.gif" hash="8435943009f1f774bbd6a4809c719eb8"/><file name="catalog__product_widget_link.gif" hash="62f2d7020143f98ba7514469eb612a7f"/><file name="catalog__product_widget_new.gif" hash="37a5af9f98ae73e180ad0cca05c95324"/><file name="cms__widget_block.gif" hash="b7b0b1517cc38b18b92841b33b312190"/><file name="cms__widget_page_link.gif" hash="b839dee210e61850a5858cc8634cbccd"/><file name="default.gif" hash="684143ae5531aa6ba22215f4fadeea6c"/><file name="reports__product_widget_compared.gif" hash="bd3e5a5015eb2c5c64f1d11835166dc4"/><file name="reports__product_widget_viewed.gif" hash="44d5cd71e4fb7235f9cff0c7e2b2f531"/></dir><file name="widget_placeholder.gif" hash="2bd8d72cf12f8d7d0a6a3268f97786ff"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/><file name="window_content.png" hash="08361df29783d46a2493cf0d8ad733a7"/><file name="window_top.png" hash="555a8db5efa3a252c2ead3d3dadd1075"/><dir name="wysiwyg"><file name="skin_image.png" hash="a521b0c60b001de4a3405e73c4a6cd4a"/></dir></dir><dir name="lib"><dir name="prototype"><dir name="windows"><dir name="themes"><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="a0b153cee7655dad31ee2923657cc08a"/></dir></dir></dir></dir><dir name="media"><file name="flex.swf" hash="60a8c242ca2ff0e70ed9a038749f4cc1"/><file name="uploader.swf" hash="129aac01ec216156dab3173b1a7af7c4"/><file name="uploaderSingle.swf" hash="8f45fb6a95fa985c1131795d97ee2876"/></dir><file name="menu.css" hash="6f39c760b70b8250c193c5311885193a"/><file name="oauth-simple.css" hash="c8ba6fccc85ce28f4360b10b5b59adb9"/><file name="print.css" hash="db77a54f0e6a7146cad6566eb200a0d5"/><file name="reset.css" hash="d45948716e2dd828a40715b9a43e2115"/></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Adminhtml</name><channel>community</channel><min>1.9.2.0</min><max>1.9.2.0</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.7.0.0</min><max>1.7.0.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Interface_Adminhtml_Default-1.9.2.1.xml var/package/Interface_Adminhtml_Default-1.9.2.1.xml | |
--- var/package/Interface_Adminhtml_Default-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Interface_Adminhtml_Default-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Interface_Adminhtml_Default</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Default interface for Adminhtml</summary> | |
+ <description>Default interface for Adminhtml</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:06</time> | |
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="etc"><file name="theme.xml" hash="b2a8d19b50efdccb7294cb2fe0640bd9"/></dir><dir name="layout"><file name="admin.xml" hash="d95b9ee3d60a5a4d1579e45a2037b40c"/><file name="adminnotification.xml" hash="85a3fddad5ac4c86c647af7fe9cb93aa"/><file name="api2.xml" hash="1553c8fc8975d4d3731d9ef1a980481c"/><file name="authorizenet.xml" hash="29398fbaa4aee1701b299030d1fdaa65"/><file name="bundle.xml" hash="a6f325767991615fb6f55b089f5cdb68"/><file name="captcha.xml" hash="773f4b12d14b8c15951f37379666a5d0"/><file name="catalog.xml" hash="cce43dab0c12d58cd0ffcb1d15e95265"/><file name="cms.xml" hash="5d53f0cea555323cea366c694b0b8b50"/><file name="connect.xml" hash="745dc82e3b474824618c0ec987d4c3cd"/><file name="currencysymbol.xml" hash="3b3f5366a1fa4071690c8aac7f7b0688"/><file name="customer.xml" hash="30a904f4f4c8115ad5bad942b1c5b35e"/><file name="dataflow.xml" hash="cd1cbca5ec5de17a6c1fcffd471de45a"/><file name="downloadable.xml" hash="40d181b85a0a3e2a96b932677ade5100"/><file name="giftmessage.xml" hash="4917df8ba7e9f4ac8e4c89cdca626952"/><file name="importexport.xml" hash="243a7394b4414e92cc79916a31a62b76"/><file name="index.xml" hash="c7090c9ed0e718692035ace720ba594c"/><file name="main.xml" hash="33327a2728bbab9fd5b5ebd8d6d95a35"/><file name="newsletter.xml" hash="eec98653b5a1697abd2427cc5765a3f2"/><file name="oauth.xml" hash="021b577a885658a30e7e214111673662"/><file name="pagecache.xml" hash="351f149efad7a2fd6855f78cb22d99e0"/><file name="promo.xml" hash="5de780df32953fa4196acc7d5945d594"/><file name="report.xml" hash="298eeb94c7fab08e5170be3044a2218b"/><file name="rss.xml" hash="11f7ad61a6454b6480bd6e61c45552fd"/><file name="sales.xml" hash="dfd156d90f1f41aa9bce30a2d00aef0f"/><file name="search.xml" hash="07c52129f77b32c5f8822612dc3a52f2"/><file name="tag.xml" hash="9115a18f7a5afb3ebe3282a00c6f5cc3"/><file name="tax.xml" hash="f26e2e81e90a4e1793f7a1c8f0384ca2"/><file name="widget.xml" hash="a8c277f25878e9abf97d3db9a328173d"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="735c9ec66d1309f1206294f075fdcdd1"/></dir></dir><dir name="template"><file name="access_denied.phtml" hash="8dbb6e9cd97de65e449307a722aadd7c"/><dir name="api"><file name="role_users_grid_js.phtml" hash="58b17ab917d3fbe0cf4d39efe1eff5a2"/><file name="roleinfo.phtml" hash="0d3e851caa0cfe495ed3c7583bcb0e9b"/><file name="roles.phtml" hash="34455eccb50176e4418a631cd58b13cc"/><file name="rolesedit.phtml" hash="a654b87bde63333de332a10dea633ee0"/><file name="rolesusers.phtml" hash="2d0bfd53f80587ede5076a09316730bc"/><file name="user_roles_grid_js.phtml" hash="d62e060ed6bc165a2dda7e925118fd33"/><file name="userinfo.phtml" hash="1da041adaeda5cf3fbffcda2c2fe8162"/><file name="usernroles.phtml" hash="518c15f5653d318d621fa009328e8ff4"/><file name="userroles.phtml" hash="8e1c821bfc5a304027aaab52b6fa6ad9"/><file name="users.phtml" hash="8870de77fdf9064b40199c3657409250"/></dir><dir name="api2"><dir name="attribute"><file name="buttons.phtml" hash="1d8c7fa3ecd2a34bb71d058c977807de"/><file name="resource.phtml" hash="6fa291254e6f5633438e073d4bbf476c"/></dir><dir name="permissions"><dir name="user"><dir name="edit"><dir name="tab"><dir name="roles"><file name="js.phtml" hash="23cbf23b2bd60241b3f2ba84037013d7"/></dir></dir></dir></dir></dir><dir name="role"><file name="buttons.phtml" hash="7977aedb0697363be95f111b1daac14f"/><file name="users_grid_js.phtml" hash="54ad901cfa9eec64e4b6fa5b906154c5"/></dir></dir><dir name="authorizenet"><dir name="directpost"><file name="iframe.phtml" hash="b60d2ae78aa8b51a6189f0ec2126ffb5"/><file name="info.phtml" hash="0576d40d650c271b1aeaa7afea925562"/></dir></dir><dir name="backup"><file name="dialogs.phtml" hash="b2be33d149636aa4202bd9484a4895be"/><file name="left.phtml" hash="941469c86247edb83906948620702dc8"/><file name="list.phtml" hash="4f9cabcf6ee200da26abca1863b8c8e5"/></dir><dir name="bundle"><dir name="product"><dir name="composite"><dir name="fieldset"><dir name="options"><file name="bundle.phtml" hash="3e68cf91a42b1d6fb8352a904be3e05c"/><dir name="type"><file name="checkbox.phtml" hash="29716d05f391ee379764b61ffea4a7af"/><file name="multi.phtml" hash="6442017f21afef7f88e3e1580c93c16c"/><file name="radio.phtml" hash="a2ee9d9c2ee7b5f49a0e55f5fb3bacd7"/><file name="select.phtml" hash="bb7efbaafc5fac7f08b6300999c65c26"/></dir></dir></dir></dir><dir name="edit"><dir name="bundle"><dir name="option"><file name="search.phtml" hash="174d6ce47791eb3af38a531097e0169c"/><file name="selection.phtml" hash="3a5e0b53a85d802f8f585f30d9d91b6c"/></dir><file name="option.phtml" hash="d5cf246d803062a0f2e389e609bf7d75"/></dir><file name="bundle.phtml" hash="b6b81d2ec1b4cbcf42b84177355c3e69"/></dir></dir><dir name="sales"><dir name="creditmemo"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="584d1e49407f54691ec39dbfb6753650"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="d7c3bd4fda964206bdf0e3f35ea2ca0b"/></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="092f6d7b581afb8318b3739e2ae4676a"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="25ff3d9c62580dc64633a83d00cbe837"/></dir></dir></dir><dir name="order"><dir name="view"><dir name="items"><file name="renderer.phtml" hash="0ac8d28e86364682468c0aa62a6556a0"/></dir></dir></dir><dir name="shipment"><dir name="create"><dir name="items"><file name="renderer.phtml" hash="54900b64d810ea023e6cb7fd3047c478"/></dir></dir><dir name="view"><dir name="items"><file name="renderer.phtml" hash="23a1dbe1789bdea7f89828a522fa2e6d"/></dir></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="b9136f6fde3ca8db1910dba7164755e6"/></dir><dir name="catalog"><dir name="category"><dir name="checkboxes"><file name="tree.phtml" hash="fa73258285c3f5136eb2259c5e9c32ce"/></dir><dir name="edit"><file name="form.phtml" hash="da4caa491156e9ec93648e257676daf7"/></dir><file name="edit.phtml" hash="89720b660be938c17214d375efe1eac6"/><file name="tree.phtml" hash="03c888ab242fc217947f6be538352852"/><dir name="widget"><file name="tree.phtml" hash="7935d6ed9f73fe8ce65d459cee761e67"/></dir></dir><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="2a8a73d131f5f2b814fa3eda859732b5"/></dir></dir></dir><dir name="product"><dir name="attribute"><file name="js.phtml" hash="87e87066a6672421f382939493730cdb"/><dir name="new"><file name="created.phtml" hash="c291386f1246516dabe303e6fba5f25a"/></dir><file name="options.phtml" hash="70c79d6d98b5a37d64977aff9f7ef070"/><dir name="set"><dir name="main"><dir name="tree"><file name="attribute.phtml" hash="a157d7da671fc65feccaf80828920af7"/><file name="group.phtml" hash="3e277218d8db83269704c78414149e8a"/></dir></dir><file name="main.phtml" hash="dbfe23d0e768b6917e00f57dfd77c376"/><dir name="toolbar"><file name="add.phtml" hash="77642e01f1d3d3ab5a8bc498e06196d4"/><file name="main.phtml" hash="f19159c8a6f042068c6adb244342da3a"/></dir></dir></dir><dir name="composite"><file name="configure.phtml" hash="df9c13c584cf69d114bab301b624a663"/><dir name="fieldset"><file name="configurable.phtml" hash="8b031155a3fd892a99002fb14d95f739"/><file name="grouped.phtml" hash="280fa7fa681fbdbcd906ac0eae252d34"/><dir name="options"><file name="js.phtml" hash="2e6606df0fc6a85e6830c4770727e9ab"/><dir name="type"><file name="date.phtml" hash="5d531f14f863441b18baed53eb843d06"/><file name="default.phtml" hash="f7023ea6e084a02acbc1967e113cfbdb"/><file name="file.phtml" hash="31ea434be8436027c52ee13121819d07"/><file name="select.phtml" hash="0ea9745d78b48989af24cce83d98086d"/><file name="text.phtml" hash="af5f02e802e2f0683e625acf2a7524f2"/></dir></dir><file name="options.phtml" hash="e446617e5bbb69e86808802bf5e74a94"/><file name="qty.phtml" hash="e50ce8515f9525e7002e3bd575598c48"/></dir></dir><file name="created.phtml" hash="44c428d1e480d560f854e4fded34fb7e"/><dir name="edit"><dir name="action"><file name="attribute.phtml" hash="038b9519cd81a2e0415f07d8ab44c324"/><file name="inventory.phtml" hash="e3f76e2aba03c8d99654c0ab13ede9a9"/><file name="websites.phtml" hash="022606c920bb19cfcf059e0d8aab2f42"/></dir><file name="categories.phtml" hash="9ddf60da59842cc2eada068668262c6f"/><dir name="options"><file name="option.phtml" hash="171b7d40a2c0384da6f80bc6464c4613"/><dir name="type"><file name="date.phtml" hash="46387e35a71e2db682d2667dd734da39"/><file name="file.phtml" hash="bc063b0c0648eda20a9fc6f2fb74f6b4"/><file name="select.phtml" hash="3d3b73db244d990365f654b0808d8aa3"/><file name="text.phtml" hash="7d4d97b724efdb0f8a722c8e5266b5e5"/></dir></dir><file name="options.phtml" hash="2fbbce0689d701afc08a8034d88f4df0"/><dir name="price"><file name="group.phtml" hash="aae224d67f0316e568acbc64ec437ee6"/><file name="tier.phtml" hash="25566f8552d2cc5901b5de64d3c32d0e"/></dir><file name="serializer.phtml" hash="7b4ec92b7931d8cb3275550b103ae67b"/><dir name="super"><file name="config.phtml" hash="478a64b5d0fbac6984dcc35057f86898"/></dir><file name="websites.phtml" hash="8cf36120d48b173cfe64562b58c0b078"/></dir><file name="edit.phtml" hash="2fcacd48a3d918a369b04edecc4fd711"/><dir name="helper"><file name="gallery.phtml" hash="3fd2327364752b437a9423671f127149"/></dir><file name="js.phtml" hash="8db2dfe0008ca19ff9c92477ce02c4b3"/><file name="price.phtml" hash="2a2a08d4b3a7f940cc691c65f1eb7f05"/><dir name="tab"><file name="alert.phtml" hash="9504feb264a7e9508c0ebb3b2b7d0d4c"/><file name="inventory.phtml" hash="107d0981170b03b0945fa1407e0d224c"/></dir><dir name="widget"><dir name="chooser"><file name="container.phtml" hash="f6df2480b1b2a231a825c588de46f950"/></dir></dir></dir><file name="product.phtml" hash="3417d9e8324e0a5177cb2607b3b80a3e"/><dir name="wysiwyg"><file name="js.phtml" hash="cd97c9fc1595ada331b1ab52b1e082b1"/></dir></dir><dir name="cms"><dir name="browser"><dir name="content"><file name="files.phtml" hash="27a67f8a7d84cd381888954c918ce49b"/><file name="newfolder.phtml" hash="79f5c4e6ea869183fadcae2f28a2ca98"/><file name="uploader.phtml" hash="8644b1acefb64b4eead9246f62512d5d"/></dir><file name="content.phtml" hash="4793e1a90ef3830bf7f0966db6b32dd2"/><file name="js.phtml" hash="648b7152e7b4928e0f5bf96969b1faa9"/><file name="tree.phtml" hash="0e35c8acf6a78f5b8d0ac0e3f51cb26f"/></dir><dir name="page"><dir name="edit"><dir name="form"><dir name="renderer"><file name="content.phtml" hash="1c668e7828761ef2e9b7502e77f024a9"/></dir></dir></dir></dir></dir><file name="coming.phtml" hash="9a9e3443216823df9b850a09746a693f"/><dir name="connect"><dir name="extension"><dir name="custom"><file name="authors.phtml" hash="3c07396912ba301635fea098d58db910"/><file name="contents.phtml" hash="70b8105701963239291cd9ade20560d1"/><file name="depends.phtml" hash="96cb091ca8dc3711a559646af1f05a87"/><file name="load.phtml" hash="69358a9869e5539f670c7919f2d3c9bd"/><file name="package.phtml" hash="9636d710c062379de2c79a31e6f55c35"/><file name="release.phtml" hash="cdb74462f1b92b4a7691c18b1f962242"/></dir></dir></dir><dir name="currencysymbol"><file name="grid.phtml" hash="0fbd928a449619caa1851a668208ee0c"/></dir><dir name="customer"><dir name="edit"><file name="js.phtml" hash="f279dd3107bf597c070dbd2cf8575d4f"/><dir name="tab"><dir name="account"><dir name="form"><dir name="renderer"><file name="group.phtml" hash="bf9c409b08e3d4cbddae4549d25389fc"/></dir></dir></dir><dir name="view"><dir name="grid"><file name="item.phtml" hash="24761bd6239d6e15bd40c97ac97695f6"/></dir></dir></dir></dir><file name="online.phtml" hash="4b977f5f6011af8b1821ee0a137a7cc6"/><dir name="sales"><dir name="order"><dir name="create"><dir name="address"><dir name="form"><dir name="renderer"><file name="vat.phtml" hash="d64535d30e050d8076b9fdfa8e60245f"/></dir></dir></dir></dir></dir></dir><dir name="system"><dir name="config"><file name="validatevat.phtml" hash="72790f671038f5d6792f0ae6f562ccbd"/></dir></dir><dir name="tab"><file name="addresses.phtml" hash="dc8015dce2c7bed3dbd6c42b94d6ba78"/><file name="cart.phtml" hash="c6afbc059beda2934118179bd89c9694"/><file name="newsletter.phtml" hash="fb1a9455e4cf0e3630d63ef4fdf0d89f"/><dir name="view"><file name="sales.phtml" hash="7b9ac3b6cc20d6daf2a3e9d31ec97fb3"/></dir><file name="view.phtml" hash="b584ae9122c996c4814db5804a29ee83"/><file name="wishlist.phtml" hash="1f233e6ca971df7f52c870a1a4fc4e5b"/></dir></dir><dir name="dashboard"><dir name="graph"><file name="disabled.phtml" hash="18092101a40e6dcf67dd3eb139a058d5"/></dir><file name="graph.phtml" hash="80be9cf21076a06f3c69064d9a5b65ec"/><file name="grid.phtml" hash="21dec746d3b0cc0164a3d2ec46745705"/><file name="index.phtml" hash="69843e35012550256797a8cf10a6ed21"/><file name="salebar.phtml" hash="b404c2a4f40491d94768898e335801a8"/><file name="searches.phtml" hash="6254c3a5c6e3c5c2b1c433b6fd09eb55"/><dir name="store"><file name="switcher.phtml" hash="2cd8a97f1276ddad0dc3b4cbc7030554"/></dir><file name="totalbar.phtml" hash="95e23bc92daf5cd12393e48bd8af12ec"/></dir><dir name="directory"><dir name="js"><file name="optional_zip_countries.phtml" hash="53eaa267c9b2fd6fa6a53009d8f17010"/></dir></dir><dir name="downloadable"><dir name="product"><dir name="composite"><dir name="fieldset"><file name="downloadable.phtml" hash="5c3f62e8e08f270c271825af6f3d4ee3"/></dir></dir><dir name="edit"><dir name="downloadable"><file name="links.phtml" hash="4c4c76f7b420914552e367e156cfb1f3"/><file name="samples.phtml" hash="238b5442b588cfaefc2987f5d76abe6d"/></dir><file name="downloadable.phtml" hash="0163aee7b9f802c339d26a0dc023ee54"/></dir></dir><dir name="sales"><dir name="items"><dir name="column"><dir name="downloadable"><dir name="creditmemo"><file name="name.phtml" hash="c4611218e11c936a3624a6f4cbbc9254"/></dir><dir name="invoice"><file name="name.phtml" hash="dd49d4ef21ec21e7ff0310978c3e985c"/></dir><file name="name.phtml" hash="d68d9f1a03cc6f9d9545799bc0f109c7"/></dir></dir></dir><dir name="order"><dir name="creditmemo"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="e7899062fca699d8cd6855681f0f642b"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="cc85dc116c67d384803366d811b659d7"/></dir></dir></dir></dir><dir name="invoice"><dir name="create"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="646b8325a080e54c3b01a5a21ee1fa64"/></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="75f191a185c82115f0f285d6c094a8f3"/></dir></dir></dir></dir><dir name="view"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="200b68f81046fa75745c97783aa1c1e4"/></dir></dir></dir></dir></dir></dir><dir name="eav"><dir name="attribute"><dir name="edit"><file name="js.phtml" hash="a157d7da671fc65feccaf80828920af7"/></dir><file name="options.phtml" hash="414f83241511cb480959025492b93c97"/></dir></dir><dir name="email"><dir name="order"><file name="items.phtml" hash="39a3265dd1f23e43869b1a6487dbb837"/></dir></dir><file name="empty.phtml" hash="dc11dfd0a5513f204d8e64a0dd59b524"/><file name="example.phtml" hash="61e7365b1f6244769c3d2adc7fff6eac"/><file name="forgotpassword.phtml" hash="f1af60dd28db0cb0f481dd03a6b79017"/><file name="formkey.phtml" hash="a8780d1ab5742c2638ef088348e1cd40"/><dir name="giftmessage"><file name="form.phtml" hash="f05444a74cdde5113d58f703206ad53a"/><file name="giftoptionsform.phtml" hash="5ebeee5470c2f2da347b698c880358d1"/><file name="helper.phtml" hash="7159c25a0de65125e827de94b6299184"/><file name="popup.phtml" hash="b9ca836a9c200ee818b894bdc229e8ae"/><dir name="sales"><dir name="order"><dir name="create"><file name="giftoptions.phtml" hash="ad7a91503f97c8de1a5c254274cabaa9"/><file name="items.phtml" hash="afdca0d2b223201f34953862ea418eca"/></dir><dir name="view"><file name="giftoptions.phtml" hash="b3a39ac91dcbf4a78518ac7f9f1dc9fa"/><file name="items.phtml" hash="ad31a2367a8cad6018501e330ab63cb5"/></dir></dir></dir></dir><dir name="googlebase"><file name="captcha.phtml" hash="3cdec2b2ca6475de28f26004fc6de41f"/><file name="items.phtml" hash="207706cb901b8a7609d87d26c5951885"/><dir name="types"><dir name="edit"><file name="attributes.phtml" hash="a748071be3b4f0d6e8008e8be6ef532d"/></dir></dir></dir><dir name="importexport"><file name="busy.phtml" hash="3116333a8dd1b8b80346a5386d0694ec"/><dir name="export"><dir name="form"><file name="after.phtml" hash="9ff8469c60617ad8a569db6407cc7209"/><file name="before.phtml" hash="9bc3ccd96ce6f1799c4341343dd667a3"/></dir></dir><dir name="import"><dir name="form"><file name="after.phtml" hash="02b8ccd08d418a4a89f01fbb7cf8eb03"/><file name="before.phtml" hash="d438c8353286ae30aa866a1991e7c6b5"/></dir><dir name="frame"><file name="result.phtml" hash="76baced1d8506842c9e87427c11dcdf1"/></dir></dir></dir><dir name="index"><file name="notifications.phtml" hash="224cb079bcb09cc517da8247d1a7da1c"/></dir><file name="login.phtml" hash="0642ed2ee75e4bb2a5549905750d570c"/><dir name="media"><file name="editor.phtml" hash="658547871bb249cb0fcae2a9d05e97f9"/><file name="uploader.phtml" hash="4aed2efa2ed120d967f6cf339d6beaf8"/></dir><dir name="newsletter"><dir name="preview"><file name="iframeswitcher.phtml" hash="663f87fcf437290d05e90e0adccfca26"/><file name="store.phtml" hash="72e36ce86d6fe641a2b6e0fdf675ca79"/></dir><dir name="problem"><file name="list.phtml" hash="7e516288963bd5d49595b84614d4ec65"/></dir><dir name="queue"><file name="edit.phtml" hash="115fbefb8b54415db43b38522e28d4c4"/><file name="list.phtml" hash="d1e4b20f8ab5224a4c8e08bf7cdceb2e"/><file name="preview.phtml" hash="323c45a711ac6be32aa6e2ca36ff4551"/></dir><dir name="subscriber"><file name="list.phtml" hash="ddabfee01da30c7311f1d4c98fbeccf4"/></dir><dir name="template"><file name="edit.phtml" hash="9f8a908476e5a7a5af4f3e03c13e6e8e"/><file name="list.phtml" hash="09dcd6515f2a46e0854d108f83d35339"/><file name="preview.phtml" hash="323c45a711ac6be32aa6e2ca36ff4551"/></dir></dir><dir name="notification"><file name="baseurl.phtml" hash="cacaef919143ecd32187d389b08e762e"/><file name="security.phtml" hash="b8784f8ed7672a18cd4ba26e7f9eb74f"/><file name="survey.phtml" hash="4c2e781aaa7109468dc89047159ea3d4"/><file name="toolbar.phtml" hash="51d0d5f4bdbbe4ecc6359536fdb02382"/><file name="window.phtml" hash="5c5ce2129c39758ccd09ae9116a930bb"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="117aced81051bd60de9718237634e66b"/><file name="button.phtml" hash="76264c7d8704103847c58765aa931e14"/><file name="confirm-simple.phtml" hash="6a1638b84aadb8368aef8f4919c3dbec"/><file name="confirm.phtml" hash="f7da9d938f3efdd4d8e3d3a56c0cf583"/><dir name="form"><file name="login-simple.phtml" hash="4b2578daba5463fc530110d5c62cd741"/><file name="login.phtml" hash="e66084f2c20ac508c468eeedb0d6026a"/></dir><file name="head-simple.phtml" hash="9a3abd6e496e054ed315eb278e329a04"/><file name="reject-simple.phtml" hash="1e0067172b8595c6d0001fac93672b97"/><file name="reject.phtml" hash="91a7d29534f38376ac357141bfb02efd"/></dir></dir><file name="overlay_popup.phtml" hash="a5404331cced7214f15524c415c0c5db"/><dir name="page"><file name="footer.phtml" hash="80a45ed883e7bc2a01fe59d106cd2599"/><file name="head.phtml" hash="9ba28cfed2dabd3c35fac9b2d1dc0827"/><file name="header.phtml" hash="4fe6ff37a9fd4db9258e2dd23143513c"/><dir name="js"><file name="calendar.phtml" hash="3cbee9d7437830be4e8f9e41960b8680"/><file name="translate.phtml" hash="ff25b364ee31cc27bc623b4d7d6e2b06"/></dir><file name="menu.phtml" hash="3ac62270650d6146471e331768b9e8d1"/><file name="notices.phtml" hash="a7fa8fba6776316f9be17fa808b6e9e9"/></dir><file name="page.phtml" hash="05333e0c9d770cd1bc3787c1ba4f9a06"/><dir name="pagecache"><dir name="cache"><file name="additional.phtml" hash="90f0eb69aad30bdaceb49cfd6a1df59d"/></dir></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="ef0f6c5d2282f924c722fb295ecd07f8"/></dir><dir name="info"><file name="cc.phtml" hash="3fc02bf7bd7eac20457fc8de2c9457cc"/><file name="pdf.phtml" hash="558564125d66c00d4c6fb79f28895225"/></dir></dir><dir name="payment"><dir name="form"><file name="banktransfer.phtml" hash="ef4ac65f20269428e95d9f16bf306fe5"/><file name="cashondelivery.phtml" hash="70ba292ccc49e87d3448a69d1887df2c"/><file name="cc.phtml" hash="98db95948ddad5e27dc76535eea40eca"/><file name="ccsave.phtml" hash="3a13ba9f67915e1f5873086d4172b9f9"/><file name="checkmo.phtml" hash="9e833f944a08df5c5ff9b04bfd8d9c94"/><file name="purchaseorder.phtml" hash="6f148958ad67d5cc599a955b0e9285d0"/></dir><dir name="info"><file name="banktransfer.phtml" hash="c7f76af0b328dc41128869c9d1b3195c"/><file name="checkmo.phtml" hash="161bdb06bd62d3cfad35f985cc887b3b"/><file name="default.phtml" hash="b12db53fe3c2461ac5963e5d05863a2f"/><dir name="pdf"><file name="checkmo.phtml" hash="a7d1ca034ca4238f9829e4f2c3ab4cbb"/><file name="default.phtml" hash="5574388a4d3f40e642b8cc3ea10e4a42"/><file name="purchaseorder.phtml" hash="03a3ea70c575cb9d4415994c99c2e020"/></dir><file name="purchaseorder.phtml" hash="2bc26c9700709063ede40b916118f676"/></dir></dir><dir name="paypal"><dir name="system"><dir name="config"><file name="api_wizard.phtml" hash="e9690ef79e6b23f95bbdf96e40721f14"/><file name="bml_api_wizard.phtml" hash="cbe794ee0f082aaed569c4780b504f2d"/><dir name="fieldset"><file name="global.phtml" hash="0ce4f7d47c8a867a9ce909e261eb8205"/><file name="hint.phtml" hash="31d746b96738bb5e15ee3f9f6c613517"/><file name="store.phtml" hash="182f87a672c9a25902be7cd793a3ac05"/></dir><dir name="payflowlink"><file name="advanced.phtml" hash="f81c1a9c50dc38f2833a85acacf7b2be"/><file name="info.phtml" hash="7b47740279105badcd1e08c71dfe81d3"/></dir></dir></dir></dir><dir name="permissions"><file name="role_users_grid_js.phtml" hash="215f2ffd5872108b7159e5a35634d4b8"/><file name="roleinfo.phtml" hash="b8a7b2fdc45edc6d177be148e93f0e2f"/><file name="roles.phtml" hash="53bc9a1b7ee14d98f0b72fcc6a7491fe"/><file name="rolesedit.phtml" hash="cdac83e055a7da96de2cb243316125b3"/><file name="rolesusers.phtml" hash="2d0bfd53f80587ede5076a09316730bc"/><file name="user_roles_grid_js.phtml" hash="726a22972e5ec79f593c8871f50fcfa6"/><file name="userinfo.phtml" hash="1da041adaeda5cf3fbffcda2c2fe8162"/><file name="usernroles.phtml" hash="518c15f5653d318d621fa009328e8ff4"/><file name="userroles.phtml" hash="8e1c821bfc5a304027aaab52b6fa6ad9"/><file name="users.phtml" hash="8870de77fdf9064b40199c3657409250"/></dir><dir name="poll"><dir name="answers"><file name="list.phtml" hash="4999a949e32f39087f8975b399a08751"/></dir></dir><file name="popup.phtml" hash="a069010c0f0311f9d6e6322750023866"/><dir name="promo"><file name="fieldset.phtml" hash="83ac20ed14982decf61d6e65bb07619f"/><file name="form.phtml" hash="d2a18f9e2b5578edde09e3707404c1fc"/><file name="js.phtml" hash="fc01078068f318f1aee5bde2530407f9"/><file name="salesrulejs.phtml" hash="5eeb2669c75573ef0112c87abd34098e"/></dir><dir name="rating"><file name="detailed.phtml" hash="b1ebb6c9a4c2d08568daa47e33cb4280"/><file name="options.phtml" hash="e90d63a2fcc078931683fa1c700083f9"/><dir name="stars"><file name="detailed.phtml" hash="bb8772c93d4419861af3c57e6ad2ad82"/><file name="summary.phtml" hash="878eadadd04ce7206a5c8c1ad90ab902"/></dir></dir><dir name="report"><dir name="grid"><file name="container.phtml" hash="24e8cfe8d80c71f3430a26a44df39f97"/></dir><file name="grid.phtml" hash="193fc15705373736c4118270f79ad9c0"/><dir name="refresh"><file name="statistics.phtml" hash="472946c951ae6d965cc34ee1d52ca17d"/></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="35aab2de64b3417d549581e016df7f35"/></dir><file name="switcher.phtml" hash="51040ebe87541ee796d5f51cbd8cdd9d"/></dir><file name="wishlist.phtml" hash="1b5ed25c6834e7f5ff656c47408aa487"/></dir><file name="resetforgottenpassword.phtml" hash="c01ef130305d45399a7ad4a1958c72a5"/><dir name="review"><file name="add.phtml" hash="fb1e779aad372d7435b41226042cacbd"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="form.phtml" hash="d0a3e2443090d3dca66cfef73b31d2a8"/><dir name="view"><file name="form.phtml" hash="d6cc19317501ecd1d67ae6299a7e7188"/><dir name="tab"><file name="info.phtml" hash="41525e41dd9e3fe641c2a4b70f722ff5"/></dir></dir></dir></dir><dir name="items"><dir name="column"><file name="name.phtml" hash="8e9b5ff7f0acc1eb06b802a866043cf8"/><file name="qty.phtml" hash="96d1fbdc48f5a6cfb6879f6015ea62ee"/></dir><dir name="renderer"><file name="default.phtml" hash="c26cd43ec2cd2ff54209db73e17ee171"/></dir></dir><dir name="order"><dir name="address"><file name="form.phtml" hash="44a18fffebbec3ebab7493489cf48b5a"/></dir><dir name="comments"><file name="view.phtml" hash="2aa276a623a6f309136a63cb971d9c1b"/></dir><dir name="create"><file name="abstract.phtml" hash="87668e6cc7397218af85de2b9e770570"/><dir name="billing"><dir name="method"><file name="form.phtml" hash="930b2738464a3a5b5da779b0125b88a0"/></dir></dir><file name="comment.phtml" hash="0dfebe1ea6ec32ff596c0e91dc1f8d9a"/><dir name="coupons"><file name="form.phtml" hash="beca380a8170e69071c7bdcdc6f06c19"/></dir><file name="data.phtml" hash="7db4f7332721ef625847d2ce3d6861b5"/><dir name="form"><file name="account.phtml" hash="9c17cb854e65deaf8f7605c0262ac826"/><file name="address.phtml" hash="a39f4d9908495608e142fcfc62d88eee"/></dir><file name="form.phtml" hash="9066acccf338a81cd84b2afb0ae9f656"/><file name="giftmessage.phtml" hash="b82f727379470052a926bca46dfbcf26"/><dir name="items"><file name="grid.phtml" hash="a0a9130cd73597c00db6b16d62a60eac"/></dir><file name="items.phtml" hash="e6f666ef1fadecf339cddb56b9a4a22e"/><file name="js.phtml" hash="070905621cc5e005aee00185787e6596"/><dir name="newsletter"><file name="form.phtml" hash="fda1dfda324e3504007885f02e70e415"/></dir><dir name="shipping"><dir name="method"><file name="form.phtml" hash="75ca0c223dce8f4dd6f3a82d0e160c08"/></dir></dir><dir name="sidebar"><file name="items.phtml" hash="cbe0b83ed35975bbdaeac1c901a0f8cf"/></dir><file name="sidebar.phtml" hash="ca43f47d8ad22cd90991e3ddf40da8d2"/><dir name="store"><file name="select.phtml" hash="5c5cd4bc086ac1cc3d4a99fdbe8ae0fc"/></dir><dir name="totals"><file name="default.phtml" hash="d50e95571ba6e599160b0269b4c1936d"/><file name="grandtotal.phtml" hash="dd83cae73f716fa26f50d3f52eb533d5"/><file name="shipping.phtml" hash="f688ddab52d23e3d056b95637d999283"/><file name="subtotal.phtml" hash="15650eb3269d23bad4761b6c05f515be"/><file name="tax.phtml" hash="d403970281e8c0f41cb656726f5bdf20"/></dir><file name="totals.phtml" hash="1f84c9377b5102fca3231cd51fb48008"/></dir><dir name="creditmemo"><dir name="create"><file name="form.phtml" hash="fd31573fd94b63f13bf3d5d350c21401"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="ffb752bf6f32409396be59434a965bc2"/><file name="default.phtml" hash="adb50020439923a0232445cc33b58003"/></dir></dir><file name="items.phtml" hash="1e677bf2d70e2eaa494aeb2fdfbe211d"/><dir name="totals"><file name="adjustments.phtml" hash="fa445704929d5bb0f3e2465584e89f24"/></dir></dir><dir name="view"><file name="form.phtml" hash="d873be3310e2f1524430368d6eb2a7fa"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="34bf19c4063a40eaf849080f303cfb10"/><file name="default.phtml" hash="b6c87fe470f369940c8c1a03d927243c"/></dir></dir><file name="items.phtml" hash="a057ec966b7022ec8e3ea20952e2b738"/></dir></dir><file name="giftoptions.phtml" hash="74ebf2c0d71d23f1c2c8d91175ad4df3"/><dir name="invoice"><dir name="create"><file name="form.phtml" hash="926bef890025d9b248112a23949a6750"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="02f58599963fae9d27a34552f6abb294"/><file name="default.phtml" hash="f4065d2d8ea1a9850e830eb26388c0a6"/></dir></dir><file name="items.phtml" hash="6dcaf7f5f7734e88116c435fc71004e0"/><file name="tracking.phtml" hash="566631df2b5d5a16f67249b61f9d21b7"/></dir><dir name="view"><file name="form.phtml" hash="1d69647f7a5a2c89efaadc8dbebbdc3e"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="7d6e204bcda72334dd5c0f622d1c535f"/><file name="default.phtml" hash="aa7640104e8a4a80be8e6ffb7e8bab9c"/></dir></dir><file name="items.phtml" hash="651f3646b367feaafdc6d70fc283abcf"/></dir></dir><dir name="shipment"><dir name="create"><file name="form.phtml" hash="77393d34182eb3f5aa2257996a2ca9c8"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="a9510c86033a30c28782d503b9c8df94"/><file name="default.phtml" hash="ba641caca82c5fa00c1a3b8717647e39"/></dir></dir><file name="items.phtml" hash="7a5a4534ca8f727ced59507cddc7855b"/><file name="tracking.phtml" hash="2d34c20f28e5be469228f3da6c1327d9"/></dir><dir name="packaging"><file name="grid.phtml" hash="ad13677e15f6481a0bda2ba8ab928a80"/><file name="packed.phtml" hash="ba7f36367b2854c98a7f0098d7219d60"/><file name="popup.phtml" hash="597d1d138f060d158b497948399cc036"/></dir><dir name="tracking"><file name="info.phtml" hash="2aec3d18414878b753ec00d1d26e0e05"/></dir><dir name="view"><file name="form.phtml" hash="442dd7140c7f31a9bbb225298e97c803"/><dir name="items"><dir name="renderer"><file name="configurable.phtml" hash="54c457d7901696737ff5906525a69506"/><file name="default.phtml" hash="c04ca11fb71b0642b4ae069621044e26"/></dir></dir><file name="items.phtml" hash="8d47f0716c2c080099a2a86c31cd52a6"/><file name="tracking.phtml" hash="93ead449bb36daa60060a472e1d42449"/></dir></dir><file name="totalbar.phtml" hash="5f553203db2750af47abd5e330c91c9a"/><dir name="totals"><file name="discount.phtml" hash="793dbeb633c82d96a9cd92fc32cb9370"/><file name="due.phtml" hash="64d06e23b183849d233aee89d8e37a71"/><file name="footer.phtml" hash="59238c18df4dabf46daebbd9329f3407"/><file name="grand.phtml" hash="396bfac5f835909cc895a85e80604591"/><file name="item.phtml" hash="975aac85e2766d73bb4e78fbdc123709"/><file name="main.phtml" hash="caaf7b05d5077f53592fccb0742b6caa"/><file name="paid.phtml" hash="3f42df36e0c4135e1794669f4291faa3"/><file name="refunded.phtml" hash="8e1b7650d3072ac5aeb0fad19dcad94a"/><file name="shipping.phtml" hash="dad1657c7897b74d3a077644e92267d3"/><file name="subtotal.phtml" hash="fb1f2b69dd118429786fc085b278e061"/><file name="tax.phtml" hash="0add32eb968e2a22757fb488b52ebaf9"/></dir><file name="totals.phtml" hash="2bc4905f6a18eaa8f16a7a267d1d7bc0"/><dir name="view"><file name="form.phtml" hash="884140eea2a8a201e3d539679c74bd4e"/><file name="giftmessage.phtml" hash="7e2b6103ca41ad0cfa94857c842b3e4e"/><file name="history.phtml" hash="20495fd35df40d30f5cd4f47116ff179"/><file name="info.phtml" hash="d5f3d7b3a34acd6437c93b217071b6d1"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="4290d9fc416005e6444f1463a41c1797"/></dir></dir><file name="items.phtml" hash="a586817b7d4f5b8aa4d60e9f607460d0"/><dir name="tab"><file name="history.phtml" hash="15c9939b4e5fc15fd6649c30e5257732"/><file name="info.phtml" hash="0bb126376322b50b5d32e44252325d3e"/></dir><file name="tracking.phtml" hash="3aa2a781868975b8615b5007ffe09f3f"/></dir></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="2e8b1322d4a929079328f7be68251d71"/></dir></dir></dir><dir name="recurring"><dir name="profile"><dir name="view"><file name="info.phtml" hash="853feb45734a4e7e868397f1adcd8212"/></dir><file name="view.phtml" hash="e8b4d1332f373b5e0b763c74cee132c4"/></dir></dir><dir name="transactions"><file name="detail.phtml" hash="38ff7fc99ab3e84b2e21088fbb06ba67"/></dir></dir><dir name="store"><dir name="switcher"><file name="enhanced.phtml" hash="680de650bc4085e8f144829ef2d52fde"/><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="bbcffed4e9742cb62a82c1c8922848fb"/></dir><file name="fieldset.phtml" hash="aeac068e6fcb9d4f83a3cf69a7d217ae"/></dir></dir></dir><file name="switcher.phtml" hash="8bccfeb8fbe9550667d68c59ffd88a6a"/></dir><dir name="system"><file name="autocomplete.phtml" hash="5116487eadd3c9abf768c53a510e8a0c"/><dir name="cache"><file name="additional.phtml" hash="1e324c3bd984986e1cd5e4b2407b0a65"/><file name="edit.phtml" hash="0b52b9e2f71bc243c13a28fe2f3dc44d"/><file name="notifications.phtml" hash="3cb6f19a2447b8762e0b37ccf9d3f9ef"/></dir><dir name="config"><file name="edit.phtml" hash="b5c5c0f45db92ea28ebef52ecab443ab"/><dir name="form"><dir name="field"><file name="array.phtml" hash="4056bba6c2d7052908496cde812b3ad7"/></dir></dir><file name="js.phtml" hash="4c803af5e8d4cceaef2d9a024544aaa3"/><file name="switcher.phtml" hash="71957dfe39d3c9d407f2e2dde60ee627"/><dir name="system"><dir name="storage"><dir name="media"><file name="synchronize.phtml" hash="642fdd06a98e60c022b17a2c21d6c150"/></dir></dir></dir><file name="tabs.phtml" hash="b2a0b0d6e6ef78a3331058d436c85d58"/></dir><dir name="convert"><dir name="profile"><file name="process.phtml" hash="c264449f64200faafd23f13ee4c280a8"/><file name="run.phtml" hash="1385574623381ae6190a5036a5f6c494"/><file name="upload.phtml" hash="490ae85dbc033921f9d4dfb6bcddbda0"/><file name="wizard.phtml" hash="406af7e65822d682792bb67c7ba46b46"/></dir></dir><dir name="currency"><dir name="rate"><file name="matrix.phtml" hash="3b7d6dcc201d3c410134549d031a13cf"/><file name="services.phtml" hash="3f02ebcd0453499120d53cf6ed5605c8"/></dir><file name="rates.phtml" hash="d4817348c3546f2de375693680c1d5f3"/></dir><dir name="design"><file name="edit.phtml" hash="c372c796fdb2c2df861466d0683db4bb"/><file name="index.phtml" hash="07b64f5b045f5f7a21d62c33cc941b08"/></dir><dir name="email"><dir name="template"><file name="edit.phtml" hash="449b79b474e8162cf60e5d87bbc05d62"/><file name="list.phtml" hash="a58d24b14b0c605666004e8686fc4db4"/><file name="preview.phtml" hash="161d807801ee3f54f6bb374a2d3320f0"/></dir></dir><file name="info.phtml" hash="058d4471564fd61cdcd209841a64559c"/><dir name="shipping"><file name="applicable_country.phtml" hash="4054118945c82eb4d62020d5835faf16"/><file name="ups.phtml" hash="954ed961b8b5afeb767d05dc42fbd5a0"/></dir><dir name="store"><file name="cell.phtml" hash="5e536a3648f041e5266fe304b20f1973"/><file name="container.phtml" hash="c193a3659949c7a3853c485c317d17c0"/><file name="tree.phtml" hash="2dfe92243c31aede2f59b803a477682f"/></dir><dir name="variable"><file name="js.phtml" hash="60bfbb9a1d34993f49848fd66810dcd4"/></dir></dir><dir name="tag"><dir name="edit"><file name="container.phtml" hash="6f1ed70983a5e0e962dd143fc9d888c2"/></dir><file name="index.phtml" hash="1d13f70f97adf04129914dddd20fb21d"/></dir><dir name="tax"><dir name="class"><dir name="page"><file name="edit.phtml" hash="79fa2f76476b4e4d83fd14f5b58ef2ba"/></dir></dir><file name="importExport.phtml" hash="c64e789dbfde6e988b2e7a552300f3c3"/><file name="notifications.phtml" hash="400027105fb5d2dc50fe3b53160f99e8"/><dir name="rate"><file name="form.phtml" hash="3a01fc7ae1295acd9344b028b464fbdc"/><file name="title.phtml" hash="cd2580f98a026221b90dd9dc9072f7b6"/></dir><dir name="toolbar"><dir name="class"><file name="add.phtml" hash="902868a4362beaaa4429a382d50a94b6"/><file name="save.phtml" hash="c8114ea2171a06a4298d3f5a47468362"/></dir><dir name="rate"><file name="add.phtml" hash="1b9e3098f50d7032d9bf261f822f234c"/><file name="save.phtml" hash="43046c416cc95a85983b07625c819e0f"/></dir><dir name="rule"><file name="add.phtml" hash="50b8df0f2174ea2e7dbea6a32273cd9a"/><file name="save.phtml" hash="a8e4768185ded9a788ebbaf2539ea9ee"/></dir></dir></dir><dir name="urlrewrite"><file name="categories.phtml" hash="f4745e0c1f3ed8592155425fb167ee72"/><file name="edit.phtml" hash="aeeb3d475b577c2e94d72276fd7b173d"/><file name="selector.phtml" hash="8464a51d50b6a9d34504e51d0637c62c"/></dir><dir name="usa"><dir name="dhl"><file name="unitofmeasure.phtml" hash="e023266efeaa2447d84205387b010dd0"/></dir></dir><dir name="weee"><dir name="renderer"><file name="tax.phtml" hash="3ddf217b5c08adbf68229497ced24f1d"/></dir></dir><dir name="widget"><file name="accordion.phtml" hash="7eebf8248a85fab5e6c105c85aeca828"/><file name="breadcrumbs.phtml" hash="4dcf1e68d9e86398c0838b6088c5259d"/><dir name="form"><file name="container.phtml" hash="9571f84ae785e22c936b2e0a34f5dc53"/><dir name="element"><file name="gallery.phtml" hash="dae0d464587c7d0b51945fb98a05d710"/></dir><file name="element.phtml" hash="3e7a4f6485d35baf57b28ae242eed5aa"/><dir name="renderer"><file name="element.phtml" hash="b528817c5810af724758a22e8456db4c"/><dir name="fieldset"><file name="element.phtml" hash="56c51c40d97220912c1e29567bcfe54e"/></dir><file name="fieldset.phtml" hash="3c9a1ea4b4d297d52a17082ffcb2ded1"/></dir></dir><file name="form.phtml" hash="233a22bfa09819c4a2f6c7c9ac6df1ba"/><dir name="grid"><file name="container.phtml" hash="c193a3659949c7a3853c485c317d17c0"/><file name="massaction.phtml" hash="be2d3dfdb7315621f7384785c110e5d0"/><file name="serializer.phtml" hash="53dc425f39abc542fe08cac9bd5aeb89"/></dir><file name="grid.phtml" hash="0f037697e1fd988112cb995bd871f7b2"/><dir name="instance"><dir name="edit"><file name="layout.phtml" hash="117fe57fc7a179da8c049b1eef8d4244"/></dir><file name="js.phtml" hash="297a6f76398e0565ead47c4acbd93028"/></dir><file name="tabs.phtml" hash="86399d7972f4f6d7fa75b1a477b8de6d"/><file name="tabshoriz.phtml" hash="c28ed0f33f7ed4e417044fb67d2eefdf"/><file name="tabsleft.phtml" hash="6908e52aec15512a0d0d23230dcbe9e6"/><dir name="view"><file name="container.phtml" hash="5ed3bd2509e46ab2f282084a1f1b39b0"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="below_ie7.css" hash="cb94754d826a7bd8d6fe7435579aa6b6"/><file name="boxes.css" hash="61e47784d7254e531bb6ce3991d68487"/><file name="custom.css" hash="40095d2ee98ecdd23440a1f27fedd9f3"/><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><file name="ie7.css" hash="76b475317e098b285a618222c01ff522"/><file name="iestyles.css" hash="c13d42c55498f77922c4c4ca583cba3a"/><dir name="images"><file name="accordion_close.gif" hash="875409122fc82f5f6705e20dd801fd3d"/><file name="accordion_close.png" hash="6213698b5f69bb2907a5c7bb94b5fe8d"/><file name="accordion_open.gif" hash="d9d50e220b0b676094c6134a9708194e"/><file name="accordion_open.png" hash="9fbc3aba23ce5e0465e4d1cf3f6a7aee"/><file name="add_btn_icon-disabled.gif" hash="c8f6a5cfb455ef121efb56a747821f82"/><file name="add_btn_icon.gif" hash="7300097305b577ee564dc49102822d16"/><file name="address_list_li.gif" hash="79b917b514e35ce0a7833a5e268fd9f7"/><file name="address_list_on_arrow.gif" hash="3a2884ddcc87ebd48883662530b9de1b"/><file name="address_list_over_arrow.gif" hash="e826883c71b1184bd4f29433e39c18ad"/><file name="address_list_over_bg.gif" hash="56291480cc89de9d817205a5f23b66dd"/><file name="ajax-loader-tr.gif" hash="1ae32bc8232ff2527c627e5b38eb319a"/><file name="ajax-loader.gif" hash="e2a38f1e23288e315af3c55416bc1ce7"/><file name="application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="arrow_sort_move.gif" hash="f5ac151a2b0cb1f07d6e771b8aee0ea7"/><file name="bg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bg_create_order_totals.gif" hash="ff6ab75c050b959c539cc6a6fdff2934"/><file name="bg_notifications.gif" hash="a365594725a83585d989f722b3d8c458"/><file name="bg_window_mask.png" hash="93d6efad062d24c94c105802b138b6a5"/><file name="bkg_btn-close.gif" hash="df3f2332f0bad01e031deb22b81f630c"/><file name="bkg_btn-close2.gif" hash="822457d78fb3c21dc12e9777d83eb4f1"/><file name="bkg_config-advanced.png" hash="b898594a9f1849bf386c06979ef613a8"/><file name="bkg_config-nested.png" hash="7b0fdbf98746c3c916b432c37321ccc4"/><file name="bkg_config-shaddow.png" hash="9ee4318e3f4afc446d26e7f66d01cfbd"/><file name="bkg_tooltip.png" hash="56cfed3ed8a65b19f8de88946d1a0a01"/><file name="blank.gif" hash="5722d7bd0f1e1379d0a2005a0a9ea401"/><file name="box_bg.gif" hash="4c501bd6db9d361c18780f106a809b03"/><file name="breadcrumb_bg.gif" hash="72c4adf6c75b4640ca8f7cadffa42266"/><file name="btn_add-image_icon.gif" hash="1d42210fd29fc534d9ed6b41e811d40f"/><file name="btn_add-variable_icon.gif" hash="a2db02e318d107d5b57b444c8d80b8f8"/><file name="btn_add-widget_icon.gif" hash="b4f66ca7f6097fbafd672e0b3f076ef4"/><file name="btn_add-widget_icon2.gif" hash="467acd3a14fb8be37191f5d2ec5a5b13"/><file name="btn_back_bg.gif" hash="8be512788b8044fe31aa8d00cc16ba7b"/><file name="btn_bare_bg.gif" hash="ddbbab8c0d201c3e502d50e7d4a3d64b"/><file name="btn_bg-disabled.gif" hash="079971a9d2c385fe353d35716ec9f26b"/><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="btn_bg.png" hash="6e3b7003381f919e8f6533444afaa978"/><file name="btn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="btn_delete_bg.gif" hash="ad740d0c16f2f6603c8ef023004d6539"/><file name="btn_go.gif" hash="1bd787868713767cc205e2ee25e41f62"/><file name="btn_gr_bg.gif" hash="6cc324b79a512150fee24fb3517d22cb"/><file name="btn_gr_on.gif" hash="820c134df02f7bc12efa5a9ac3b4d3dd"/><file name="btn_gr_over.gif" hash="d4c8b807d64c1f493d17c6c9d2bab69a"/><file name="btn_loading-icon.gif" hash="45f500105be432a12c78fed2b4592cf9"/><file name="btn_login.gif" hash="79fa32d49d3f4e39d3fbf8327f9229e1"/><file name="btn_on_bg.gif" hash="709cf5b0be137db1ef8427688503bf37"/><file name="btn_over_bg.gif" hash="f91641168454c03d1fa72731ec97a2b3"/><file name="btn_show-hide_icon.gif" hash="0238c509b33ba56c25df9513bb48f804"/><file name="btn_task_bg.gif" hash="5e0594bd9cbfcc1e32ffa918d7f9c812"/><file name="button-close.png" hash="04d0907b2d7fc3240693497b199f64f5"/><file name="cancel_btn_active_bg.gif" hash="91ce403d286eef2b4e0c13733875882f"/><file name="cancel_btn_bg.gif" hash="26749cf4949ac27c30f597434d3bde65"/><file name="cancel_btn_icon.gif" hash="97e0cd94ed31d6f2a1181f627e60e9a3"/><file name="cancel_btn_over_bg.gif" hash="45eb4e883b17375961672f5390387c31"/><file name="cancel_icon.gif" hash="70a23b78353f0a7b9b118a937fcb7ea9"/><file name="config_tab_dt_bg.gif" hash="a33f71077ca4078caa794cae01d9fca7"/><file name="dashboard-close.gif" hash="5ae5afd61e937fcd2d5b84641255ee4d"/><file name="db-graph-bg.gif" hash="5d76efb7c3244f5684df2566782124ea"/><file name="db-graph-bottom-bg.gif" hash="b58ced87a38a10891106329ae882aa1c"/><file name="db-graph-line-bg.gif" hash="f16bb08e040c2c0a3e23b3f35c54b79b"/><file name="db-graph-line2-bg.gif" hash="744ebfdba20d050f4d252afc216394be"/><file name="db-graph-x-bg.png" hash="d5c26510718a78d22083916d80ef7a22"/><file name="db-header-bg.png" hash="3976cb6351e167686a501a85cf3a68e9"/><file name="db-menu-bg-hov.gif" hash="34ea76a6d105d90fcb63bf105aadb8f7"/><file name="db-menu-bg-up.gif" hash="b0f754872dff5f2f0dc57ba193fdfa4c"/><file name="db-menu-bg.gif" hash="ea534c3c09bb309e566b6ae876655e13"/><file name="db-menu-sep-last.gif" hash="a01fe34854e1187e466fd58d462c4106"/><file name="db-menu-sep.gif" hash="7c5ae1cd59a189261cc3244358d5c1ad"/><file name="db-menu-start.gif" hash="aa5cac2194d937cc7fa904ccfce70ecc"/><file name="db-scroll-bg.gif" hash="06d2411e3b5f350ab21b625439d2d69d"/><file name="db-scroll-but-bot-roll.png" hash="6bc5e482f3f6d8fb1fc5014ddea43706"/><file name="db-scroll-but-bot.png" hash="25c0181e76ff8ceb3c0ec59071b8c72c"/><file name="db-scroll-but-top-roll.png" hash="b7961f2a3b5b641694a9b0b30d58e46b"/><file name="db-scroll-but-top.png" hash="de7df96e961596be9ff556924259b98b"/><file name="db-scroll-roller.png" hash="e01dde7bd096c52179acf29a425a29e5"/><file name="db-tab-bottom-left-bg.gif" hash="124388d44ac58b029377c6311a4782d5"/><file name="db-tab-bottom-mid-bg.gif" hash="9c48f33aa8907cfcb227bc779c2e1dce"/><file name="db-tab-bottom-right-bg.gif" hash="1db45e6fd8abc67d59f96a676607b412"/><file name="db-tab-footer.gif" hash="cac8928acba75bc1edd73186ced78e5c"/><file name="db-tab-header-sep.gif" hash="580312af7441b6a62f7e32081c40fb0f"/><file name="db-tab-header.gif" hash="fdf493b9477fcff7e7be98405effc33d"/><file name="db-tab-left.gif" hash="3fe3c55267dbbdd1db2ff959ccc9e0be"/><file name="db-tab-right.gif" hash="b7a32c8b03efe2fbdb63215d0446e3be"/><file name="dotted_divider_dark.gif" hash="8bf1de196d9ea048bfb25155cedd2e9e"/><file name="dotted_divider_light.gif" hash="92e562bf2070110f6b0a15e29b845445"/><file name="edit_icon.gif" hash="dbda31751c78d964c04394e9d8533187"/><file name="entry_edit_head_arrow_down.gif" hash="985c3ce4439fbf8bb2216fc7e73a3f0b"/><file name="entry_edit_head_arrow_down2.gif" hash="d68dd0fbc2819858a26ea2835c05df77"/><file name="entry_edit_head_arrow_up.gif" hash="d2b90a1823fff9f3917f19b427410144"/><file name="entry_edit_head_bg.gif" hash="1086b7196e8b33c4f46e49fecef0f35f"/><file name="error-msg.png" hash="3cd27b642416dacdc28907c89d934886"/><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="fam_account.gif" hash="c910fd1ff41b940d71b0835e02fc143e"/><file name="fam_application_form_delete.png" hash="972c2d998fc19572dd64af6b5e2e898e"/><file name="fam_application_view_tile.gif" hash="f595a133bf466cb91be23d9686fe6281"/><file name="fam_asterisk_orange.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="fam_bin.gif" hash="2fb388bc9f1d32d3802db8e91dc238bc"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="fam_bullet_disk.gif" hash="9fe82691d960c18d3d315c3f9164af4f"/><file name="fam_bullet_error.gif" hash="008802f44288b732b59cfe9fdbfecefe"/><file name="fam_bullet_success.gif" hash="465a056a3ba3d94367f51c3c0b751391"/><file name="fam_calendar.gif" hash="0614207ce4e3e0a9bd631b39e7692e3c"/><file name="fam_cart.gif" hash="1f2fd2c8ac6574488ea78302b6856191"/><file name="fam_comment.gif" hash="5138f9a4b6019a5b14b8ff9a32a3cb89"/><file name="fam_creditcards.gif" hash="b75b8ce2f4fceb58f8082c48344560c7"/><file name="fam_folder_database.gif" hash="e86175ff0f389ade1fc7bf15e03346eb"/><file name="fam_folder_palette.gif" hash="c0941b9145e06d53cc0d17ac4c151764"/><file name="fam_folder_table.gif" hash="e2914ba75944acd2a9e2d338fa339e16"/><file name="fam_group.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="fam_help.gif" hash="2b5ed4c13a8e24456207b757826c7b2c"/><file name="fam_house.gif" hash="8eb2d580c5a40b7974f4263ca64fb94a"/><file name="fam_layout.gif" hash="5366a5f02260d3a860ef0c4787282ad6"/><file name="fam_leaf.png" hash="078d4f24683331b4557356a59e67b125"/><file name="fam_link.gif" hash="78590d5d8375d1baabe7b66d7b9ceb7d"/><file name="fam_lorry.gif" hash="174e86e45e76e7008fa3510cefa85047"/><file name="fam_money.gif" hash="6996bad465222fb6487cab94b4607846"/><file name="fam_money_add.gif" hash="70ceed401fe9913305f2362f7e26225d"/><file name="fam_monitor.gif" hash="f3bc806ff9d0907320b03018ba2d00ea"/><file name="fam_newspaper.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="fam_newspaper_delete.gif" hash="41acabfc19102be92d3ccbc66d1fede3"/><file name="fam_newspaper_error.gif" hash="009bfa425298e1d2e44e38e58cd97938"/><file name="fam_newspaper_go.gif" hash="eb43105f8e13e3a752d7ca33bb086831"/><file name="fam_package.gif" hash="bf9be09ef64d006455baa211b7c03983"/><file name="fam_package_go.gif" hash="e4f8d380c2f8e5a7345e360293433764"/><file name="fam_page_white.gif" hash="26940eb67826c5af72b6048c7c5a8335"/><file name="fam_page_white_edit.gif" hash="a4f88300b74ad592a5c47ed54ff07af9"/><file name="fam_rainbow.gif" hash="e8b04cc945b3582a181d4ddbc2d2325f"/><file name="fam_refresh.gif" hash="01bbef614023c0890812e76bc7ecf7e0"/><file name="fam_server_database.gif" hash="7901fa06ffd68ed730cf43bb560756fd"/><file name="fam_status_online.gif" hash="a80019ffa3a573f709772ed1099343fc"/><file name="fam_tag_orange.gif" hash="6ce735a0e590bda040b6e1614c42e58a"/><file name="fam_user.gif" hash="63bbdd6d9d7a27591907a7b87898e259"/><file name="fam_user_comment.gif" hash="014dfd31d9af40e3d5960b2b0d900da3"/><file name="fam_user_edit.gif" hash="f5b36e803060c6b82e639a4fad57b9f7"/><file name="filter_row_bg.gif" hash="013a0929a7b2ddc6823bdda17d08acc0"/><file name="footer_bg.gif" hash="7724711d3ca07a5e46a6030e86743a71"/><file name="gift-message-collapse.gif" hash="5b710f5faa9c7352a39c10e3ebbee6fc"/><file name="gift-message-expand.gif" hash="fd53a70cbb1ea048754657a63787e9cb"/><file name="gift-message-grid-column-bg.gif" hash="97a8a9b8cc4ab68e7404ccf1320f50a6"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="grid_sort_asc.gif" hash="b78c3a1a27ac9672a31b7d1bbac60322"/><file name="grid_sort_desc.gif" hash="d958b946eba3dba863d724530a0dba1a"/><file name="grid_th_bg.gif" hash="8f4349fac728858374e17edf03390977"/><file name="grid_th_onclick_bg.gif" hash="7bf331e2a41e5331c4210bdc6adc4383"/><file name="grouped_to_order_icon.png" hash="4bdae9a6199655027b8b8aeee8f80ce4"/><file name="header_bg.gif" hash="cbe510856afa5cb0c32642c1f9a8eceb"/><file name="header_top_bg.gif" hash="8440b04c5cb6b1451bb886bfbef260a5"/><file name="horiz_tabs_ul_bg.gif" hash="58dbd9c45f76993346c2bb788896248e"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_question-mark.png" hash="23201b7ac207eebd9be0776ea44098a4"/><file name="ico_success.gif" hash="0afb20898a704a106cb4c598868abf32"/><file name="icon-enabled.png" hash="5fa7c06b312cbea3675e844686e434af"/><file name="icon-tooltip.png" hash="5767601cd66b23d0b6fe8defc10dd48d"/><file name="icon_btn_add.gif" hash="7300097305b577ee564dc49102822d16"/><file name="icon_btn_back.gif" hash="89ed97cede3f68241446a62c96e3ce4c"/><file name="icon_btn_delete.gif" hash="dbde0b76d36cfd624bf0de166d0a265e"/><file name="icon_btn_save.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="icon_edit_address.gif" hash="d1ca2bb3a5c86afd379f25d9fc4352e3"/><file name="icon_export.gif" hash="9a13f20c6a17b41b9c357545c2da5636"/><file name="icon_export.png" hash="fb299dd13df666516eabe16f59193383"/><file name="icon_feed.gif" hash="0366583ed6e285d028442fcdebb05072"/><file name="icon_feed.png" hash="8537f6f88fcff4aac793247143d14e42"/><file name="icon_note_list.gif" hash="8d25ba225ca09b687a78bff510df5d10"/><file name="icon_remove_address.gif" hash="2de2b3d02c19adfb93e9e43a392db178"/><file name="login_box_bg.gif" hash="e4654826eaa8d5ebc0ab18e9bee71e1d"/><file name="login_box_bg.jpg" hash="404e37f4ee9f4ff9bfcb638741c7581d"/><file name="login_box_bg_auth.jpg" hash="d90a81db1064ec37b0cc92436725c24b"/><file name="login_box_bottom.jpg" hash="038f15261e74bc381484f2fcfa45a73b"/><file name="login_box_legal_bg.gif" hash="528ac4dd480c4fc00ac808bf17394c05"/><file name="login_logo.gif" hash="9cc90e7aa1210883000fe5319862ce14"/><file name="logo-large.gif" hash="5c77654c424b0a35cc24d28df5166dc4"/><file name="logo.gif" hash="c7e9f290d965f707e4c4a61bfdab58cb"/><file name="logo_email.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><file name="logo_print.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><file name="massaction_bg.gif" hash="8b5f4db3ab3ea09cd5bd0164d67c4f0d"/><file name="massaction_button_bg.gif" hash="4c8262817e48d007237124ce0e7f4d18"/><file name="massaction_links_delimiter.gif" hash="9a0337183b5b67c0eed75993d7f14d10"/><file name="middle_bg.gif" hash="ba4f176d2c553201ebab4aba5c6d3d20"/><file name="more_arrow.gif" hash="38bb4c0e9270250151486d0bb36c476f"/><file name="nav1_active.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_bg.gif" hash="a1d4ef5b590ce0a425dc04e45ed06cbe"/><file name="nav1_off.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav1_on.gif" hash="a7f9ec7689a65c6b796f0d9b97582d01"/><file name="nav1_over.gif" hash="2c70d6175f1c965c27dda0598a67e63c"/><file name="nav1_sep.gif" hash="5286cbd5ac9ec1b6c027d5b48a74bdab"/><file name="nav2_last_li_bg.png" hash="279935c9799679fc5894337eaabc7cf0"/><file name="nav2_last_li_over_bg.png" hash="39536f00824293d11242888a76f40a5f"/><file name="nav2_li_bg.gif" hash="0a4f34b0e4436c519d31203f19503b83"/><file name="nav2_li_bg.png" hash="2fad219d162324e9a19f2745d5b6d562"/><file name="nav2_li_over_bg.png" hash="dc37c4a4aab40ea2ae44dea5ea133a9d"/><file name="nav2_link_bg.gif" hash="dce00ddad351e72e83bc87274cbaa54a"/><file name="nav2_parent_arrow.gif" hash="60e012a14a077bd2257343facc369c0c"/><file name="nav3_bg.png" hash="2bc7af80ad8886013da38401b63ab6df"/><file name="nav_bg.gif" hash="1b857c7d35f35ef9f6cae9e03a4e3dff"/><file name="nav_list_bg.gif" hash="7a4e2bdb887c12d8a1152bbcc8c02a3c"/><file name="nav_nest_link_bg.gif" hash="1d0c6b374bf02ac4b5aa012955c431de"/><file name="nav_nest_link_over_bg.gif" hash="fae3c579a4d432503b1f4f929d070609"/><file name="nav_on_bg.gif" hash="ac624b580cae5a76f6c92abc5a44191d"/><file name="nav_parent_arrow.gif" hash="3a95559263e569dc1c8065cb2d9b3f2c"/><file name="note_bg.gif" hash="105967d7c15ab4610726eea52d862a97"/><file name="note_cell_bg.gif" hash="71e656d42f8ba8c2d477c6866c499b71"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="notice-msg.png" hash="9cd1dfebccec8a2123d543fa49b17bd7"/><file name="pager_arrow_left.gif" hash="6e44f608dac8eb8be1d1ebee5a3285aa"/><file name="pager_arrow_left_off.gif" hash="30f5e56195ab3546b36f4016db5254be"/><file name="pager_arrow_right.gif" hash="cc79526156b7e0c8abce61fad3d53f77"/><file name="pager_arrow_right_off.gif" hash="f01b7dad9acf0180b5c62edbd7ea9939"/><dir name="paypal"><file name="logo-paypal.png" hash="d032551b47e48dced277c4fa344ac7f6"/><file name="pp-allinone.png" hash="c457fe4bfe28a18c90d0abd36fe3f880"/><file name="pp-alt.png" hash="37a166931ca15c465bd86311d15e0422"/><file name="pp-gateways.png" hash="90acb72c2f46fa131351efe0492d52cf"/><file name="pp-uk.png" hash="e0830ccb14533051b8b0340471744228"/></dir><file name="paypal_logo.gif" hash="871e205a64292121f4c893373acfb581"/><file name="paypal_section.png" hash="d032551b47e48dced277c4fa344ac7f6"/><file name="paypal_tick.gif" hash="e8685c1fb7c4c106ae4fd24e9bbf5a27"/><dir name="placeholder"><file name="thumbnail.jpg" hash="5c73b5aa515b1719f7b398f5131f91a8"/></dir><file name="process_spinner.gif" hash="345b30b4d0b6088d0151ecfbdf48c036"/><file name="product_rating_blank_star.gif" hash="5e20a299c0ff16168be38b6dde580eda"/><file name="product_rating_full_star.gif" hash="dd5aae332178d928a7f49dea7691b5f6"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><file name="rule-ajax-loader.gif" hash="32dc1f5901143d36fbd7a6df3950819f"/><file name="rule_chooser_trigger.gif" hash="9c498e789c3ce734f5301c2475e2a04c"/><file name="rule_component_add.gif" hash="7914e57701ca26f5c8bf23c6bc3e1f25"/><file name="rule_component_apply.gif" hash="3f9b9025551da6963a9ecf8d184a204a"/><file name="rule_component_remove.gif" hash="4d785bcecfbe716fa4d749d20738a8f0"/><file name="save_btn_icon.gif" hash="f5da95ac65efff5f5cf9c8830202764d"/><file name="sec_nav_bg.gif" hash="99c6741591cdb2a2a128668a1d32d668"/><file name="section_menu_bg.gif" hash="f9edd44c92743a0c9ae9535a7992d6b1"/><file name="section_menu_bottom.gif" hash="167d2ef46ff80158c807b4b916501b28"/><file name="section_menu_link_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="section_menu_link_over_bg.gif" hash="7da7e56567633aab279cf3aec6f49d8d"/><file name="section_menu_over_span_bg.gif" hash="f5ea5292f15ed62b99f0f51d9fff2c66"/><file name="section_menu_span_bg.gif" hash="dbf3916358e794ee809b4cf33903af2c"/><file name="section_menu_ul_bg.gif" hash="3aea6e5452f548438ca34e17954a9d6b"/><file name="side_col_bg.gif" hash="b3691fd62663457af39eaf71dd8cda5a"/><file name="simple_container_bg.gif" hash="56f1ac91169eb4896b8c91384fc8bf15"/><file name="sort-arrow-down.gif" hash="fc2cd9f756ce510c4470478d720f81cd"/><file name="sort-arrow-down.png" hash="dc65160d9d4d6cdd6bfe1b397a931975"/><file name="sort-arrow-up.gif" hash="39026b0ff1f0c18091caa60384491163"/><file name="sort-arrow-up.png" hash="da54e5306bdce67551aa415f5d7f7ea7"/><file name="sort_heading_bg.gif" hash="6066d09f237f556b0a4770e4788e7598"/><file name="sort_on_bg.gif" hash="0cb36788ed4fbf19e657acbc75a3f1b8"/><file name="sort_row_bg.gif" hash="f2e1c5cb26b9f5211419b99d30745244"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="sub_button_bg.gif" hash="e3f66dd60510f9f7e937e2e55442c30a"/><file name="success-msg.png" hash="c64cb2acc3d0eeba48fdea83620913ed"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="tabs_link_bg.gif" hash="34447929f5e6591ba9b5795b983fdfd4"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/><file name="tag_blue_edit.gif" hash="b2163ac3baf7d822b48593342846645a"/><file name="tn_cancel_bg.gif" hash="fcb3506858fcfa8d1778b0683dc89f54"/><file name="tooltip_bg.gif" hash="0aa4b866fc067a75f27ab749c1dabf74"/><file name="tooltip_corner.gif" hash="71146534671d5e0751505640b7c59859"/><file name="tooltip_top.gif" hash="032ff52a6ff5714cbdf6c1f62abaf7e5"/><dir name="tree_icons"><file name="join.gif" hash="4d5d614e0da056df815a4306d6368692"/><file name="joinbottom.gif" hash="4b3daa7f2cc584f1aac0d142275d7cba"/><file name="line.gif" hash="63ab38a6203262f15ca46c631232ea2c"/><file name="minus.gif" hash="d647fbbd0ec410b8f3bb3357b62eedcf"/><file name="minusbottom.gif" hash="b09d684cca7135ef728141aaf2464baa"/><file name="nolines_minus.gif" hash="eb2243a354ffcfac93ba0fe948f7167d"/><file name="nolines_plus.gif" hash="ec92b634b63608fb4b0dbf114e3b89e1"/></dir><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><file name="varien_logo.gif" hash="6f10d0fe572cb012947c164217e9e428"/><file name="warning_msg_icon.gif" hash="4cf6ec7f59ab09f9c18b3a4301714c6d"/><dir name="widget"><file name="catalog__category_widget_link.gif" hash="8435943009f1f774bbd6a4809c719eb8"/><file name="catalog__product_widget_link.gif" hash="62f2d7020143f98ba7514469eb612a7f"/><file name="catalog__product_widget_new.gif" hash="37a5af9f98ae73e180ad0cca05c95324"/><file name="cms__widget_block.gif" hash="b7b0b1517cc38b18b92841b33b312190"/><file name="cms__widget_page_link.gif" hash="b839dee210e61850a5858cc8634cbccd"/><file name="default.gif" hash="684143ae5531aa6ba22215f4fadeea6c"/><file name="reports__product_widget_compared.gif" hash="bd3e5a5015eb2c5c64f1d11835166dc4"/><file name="reports__product_widget_viewed.gif" hash="44d5cd71e4fb7235f9cff0c7e2b2f531"/></dir><file name="widget_placeholder.gif" hash="2bd8d72cf12f8d7d0a6a3268f97786ff"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/><file name="window_content.png" hash="08361df29783d46a2493cf0d8ad733a7"/><file name="window_top.png" hash="555a8db5efa3a252c2ead3d3dadd1075"/><dir name="wysiwyg"><file name="skin_image.png" hash="a521b0c60b001de4a3405e73c4a6cd4a"/></dir></dir><dir name="lib"><dir name="prototype"><dir name="windows"><dir name="themes"><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="04ea76d6226ef8df9808cc267259a1aa"/></dir></dir></dir></dir><dir name="media"><file name="flex.swf" hash="60a8c242ca2ff0e70ed9a038749f4cc1"/><file name="uploader.swf" hash="129aac01ec216156dab3173b1a7af7c4"/><file name="uploaderSingle.swf" hash="8f45fb6a95fa985c1131795d97ee2876"/></dir><file name="menu.css" hash="487cd530247aa092f218bf77be2a6fdf"/><file name="oauth-simple.css" hash="39f173d243a7ef52c29ad10c4a4592a3"/><file name="print.css" hash="5819af5af430d4fa9abc99002d6d0f8d"/><file name="reset.css" hash="fcb2f39bbab2bc367dc37e62fc5c5971"/></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Adminhtml</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package><package><name>Lib_Js_Ext</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Interface_Frontend_Base_Default-1.9.2.0.xml var/package/Interface_Frontend_Base_Default-1.9.2.0.xml | |
--- var/package/Interface_Frontend_Base_Default-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Interface_Frontend_Base_Default-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Interface_Frontend_Base_Default</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>This is a Magento themes base</summary> | |
- <description>This is a Magento themes base</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:04</time> | |
- <contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="etc"><file name="theme.xml" hash="cb15d7d843605505e5d58557f789b5b5"/><file name="widget.xml" hash="7c90d742393ad24b83c8984e45c9afb2"/></dir><dir name="layout"><file name="authorizenet.xml" hash="9b43ec1a3ab7e51226ec20fc9471cc0f"/><file name="bml.xml" hash="7308daeb41b482df29491a7d52fb8471"/><file name="bundle.xml" hash="4108c1c75f2eec7c53ff8a38e4f383a8"/><file name="captcha.xml" hash="18d5e650991b3f7c0822600a797a2835"/><file name="catalog.xml" hash="9c383975a47cde57dda70c55b73f16b2"/><file name="catalog_msrp.xml" hash="4aa0b4f0733b261c49a03ee86f8748b0"/><file name="cataloginventory.xml" hash="69fe52378a85805a0952a2b1908f2828"/><file name="catalogsearch.xml" hash="e34de289421b1a456b396402f704ff84"/><file name="checkout.xml" hash="1b37f8dc6e0a56f778e0414209e1f7c3"/><file name="cms.xml" hash="a5af520b4a47b8548bcf168fd09165e0"/><file name="contacts.xml" hash="4378fcbf196ab46e7446b6bc6a891dae"/><file name="core.xml" hash="74712a169176f8f505d21fae0b748afb"/><file name="customer.xml" hash="f19d26fcf54c986cfc0f74e8a9ec086a"/><file name="directory.xml" hash="55f934d2f1f17b3ddb1b3d659d391b86"/><file name="downloadable.xml" hash="d63b8d0085ea27f984615635a2eec1a2"/><file name="googleanalytics.xml" hash="6a771dc81c58491423e48c32522c32f9"/><file name="newsletter.xml" hash="8135d4342f613c00f10079abd441ff2f"/><file name="oauth.xml" hash="101bd169a40bdbbd4e86edbef3845d50"/><file name="page.xml" hash="d35964dd5907509bf614a040d28f9394"/><file name="pagecache.xml" hash="4f5af67cd7dc741262893975cdb7c975"/><file name="payment.xml" hash="6d1b1ef0e334ddd06ae081bc52d0fec6"/><file name="paypal.xml" hash="be2296e47120c1ee987d64fabc161575"/><file name="paypaluk.xml" hash="848d95046abc769a76454863bd6be355"/><file name="persistent.xml" hash="630f737bb39a9373b9d88e352edb76bc"/><file name="poll.xml" hash="fc1b9888131c2ca7fe3d979e32195ff9"/><file name="productalert.xml" hash="5f3358b7d00c9e3c16e1dab9e95c0a4e"/><file name="reports.xml" hash="e6cf7af18c38dcc5ab289b2a21697228"/><file name="review.xml" hash="6891b15e9bd9806c57bd37cf98902c75"/><file name="rss.xml" hash="ee5b7b8665b6281551180f6dae293a3e"/><dir name="sales"><file name="billing_agreement.xml" hash="3bb6b8cabd82076aa81da485354e7504"/><file name="recurring_profile.xml" hash="07c5cf1f6e252585ff148592ac64d799"/></dir><file name="sales.xml" hash="d0ce0e5135d7e5cadee565a0ea6a5791"/><file name="sendfriend.xml" hash="751c3ddfbe0d1192b534f573faaebf1d"/><file name="shipping.xml" hash="bc25e5d870c8f42fffd320d024c29cfc"/><file name="tag.xml" hash="507cf1830b70d4aa4ba548e14f50e962"/><file name="weee.xml" hash="a7a825ac307f4746a25ed3194280a191"/><file name="wishlist.xml" hash="bac8a033ab79991f97f4b12bf273dbf8"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="675af0fc77da432302d993cba713e42c"/><file name="iframe.phtml" hash="cad12e7af9070ad97b7a0d3a8cb3f46e"/><file name="info.phtml" hash="3b505c2281b44a95a9416ec948d48c19"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="list"><file name="partof.phtml" hash="c312478997aa130687ba6d99cbdecd04"/></dir><file name="price.phtml" hash="536bba9dfc772347f912289891e028a5"/><dir name="view"><file name="option_tierprices.phtml" hash="e23de273f835bcdeb5106dfe912c33d0"/><dir name="options"><file name="notice.phtml" hash="3aaa7da292ce864f257bc8951d04bb1d"/></dir><file name="price.phtml" hash="1f300b0114243160082f039cc18cb831"/><file name="tierprices.phtml" hash="0d6822783c1c193155855206772a76c2"/><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="cf7c70e1c6f95266d527a75fbfb4d3d2"/><file name="multi.phtml" hash="14ae0a03d33d4cf96921f63c3b8b80ad"/><file name="radio.phtml" hash="3f6efd84f38e6daf926d38026e4c6fc8"/><file name="select.phtml" hash="75c096977c2573c8e0f7f8ffe8e3a825"/></dir><file name="options.phtml" hash="fcf0d2312cb6409c9fe87331e8ed812a"/></dir><file name="bundle.phtml" hash="699cf212a5845991d218c290605057ce"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="0ebd275d9fd1250369cb296642329aef"/></dir><dir name="invoice"><file name="default.phtml" hash="35a47799faad39f930bdcab1f7bddd20"/></dir><dir name="order"><file name="default.phtml" hash="abd062ff9789076c430c975db2c13ee5"/></dir><dir name="shipment"><file name="default.phtml" hash="91a551c533f425c37b150db126ffc3b9"/></dir></dir></dir></dir><dir name="rss"><dir name="catalog"><dir name="product"><file name="price.phtml" hash="3acc1f7d981e2d69f517577734cef48a"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="9cab5ff8ee6f397be3fea1bb8b1f6dfb"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="2667129b9522036ba54c6e679f863852"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="b2371c4f222823db77dcebde9ef3736e"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="84efc62c4e7965f45806be8095bb80e9"/></dir></dir></dir></dir></dir><dir name="callouts"><file name="left_col.phtml" hash="e42166f6dd76cc2eb76b8aef287784a2"/><file name="right_col.phtml" hash="e42166f6dd76cc2eb76b8aef287784a2"/></dir><dir name="captcha"><file name="zend.phtml" hash="9310fbe6eaa858ebdb5308b49f6b845e"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="bb6f57c1300ff8cce698944a20693158"/><file name="view.phtml" hash="b393612d0c0a8c91310e3e09f6f82d37"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="97f1fb1fb08eedf72bbad2cc21a4e368"/><file name="link_inline.phtml" hash="b1be1359eac9a775e241228e9edad6ff"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="db3ab7d6d6ff60f738f83d8e39b5e573"/><file name="state.phtml" hash="cb4e1a9e019ef2d20bec4692f3732109"/><file name="view.phtml" hash="257a34a5feaa047a22a9324e1c584564"/></dir><dir name="msrp"><file name="popup.phtml" hash="637ecaadbb9e758942c29a41b4a3ddc2"/></dir><dir name="navigation"><file name="left.phtml" hash="9febc1ddff257023ef568ed3f0e76b67"/><file name="top.phtml" hash="9c866ce66ddb423ac85ddc32ae2a2c7b"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="f8ef7699f3877698e860396374f29283"/><file name="sidebar.phtml" hash="96f251935c99c6ed2c2b4ad0796669b6"/></dir><file name="gallery.phtml" hash="684ddad4304e9c757992b9724ab34376"/><dir name="list"><file name="related.phtml" hash="fcb657d4a97625c324471d92f9de5f42"/><file name="toolbar.phtml" hash="49808497f7b604b2e25135bb93915b3d"/><file name="upsell.phtml" hash="bc067353d480fa960f04e656045a06b3"/></dir><file name="list.phtml" hash="607f1fdfcd12ff8da05e656a6383158c"/><file name="new.phtml" hash="819203ab84c283e542ebec79d9427dcc"/><file name="price.phtml" hash="55795fbb6f2b62ddb4b4e4926400b3f2"/><file name="price_msrp.phtml" hash="6e5c5f54444a50c733dc880155e616b5"/><file name="price_msrp_item.phtml" hash="9b458ae2ae9bd0ebdf29064047d26e7c"/><file name="price_msrp_noform.phtml" hash="73c40737abcadff3d1a4abd64ef51886"/><file name="price_msrp_rss.phtml" hash="8ebdef3f6de012eb03ec92344dbe0cf8"/><dir name="view"><file name="additional.phtml" hash="527ae1a664b1906d8c01956cf640dff3"/><file name="addto.phtml" hash="f895117d77add30fe6103536da6176d2"/><file name="addtocart.phtml" hash="ff31f4b455c68fb43f9f4294233cadad"/><file name="attributes.phtml" hash="58872c8a2970492dce4e17d6581efcd5"/><file name="description.phtml" hash="7f21f35fcf81ac91d99940a7062e3dcd"/><file name="media.phtml" hash="66ffe5b5a9c6463607297025a754f720"/><dir name="options"><file name="js.phtml" hash="8b1b18f53ad027dd1c3e872ef28b18dd"/><dir name="type"><file name="date.phtml" hash="f11c4d1d7c0605cd597f43e73b511e04"/><file name="default.phtml" hash="bfda656d7ac7ab4966143d2ad25439d0"/><file name="file.phtml" hash="8f59cdb546924d4ce68baf49a622e493"/><file name="select.phtml" hash="df3d0d15468a1d13407f255fd9497891"/><file name="text.phtml" hash="12caeff494da87a6c878cc9f3c5fe60a"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="952d89bec89ed906cdbae021441560cb"/></dir><file name="wrapper.phtml" hash="b7a4a0933767d62a0fd69adc14b796ad"/></dir><file name="options.phtml" hash="d47affa574c4dcf8bc94739c85af3b96"/><file name="price.phtml" hash="d5ad760d4eb36bbfe599a7d46f2c1932"/><file name="price_clone.phtml" hash="15bb70ea6bced116ec6af906167f80b9"/><file name="tierprices.phtml" hash="88aac101bafa81fc161ed7af0af09652"/><dir name="type"><file name="configurable.phtml" hash="21c103b5067d5d689e1e3a19063b0ecb"/><file name="default.phtml" hash="919aca6f31f11d41e32eea62ea74cfaf"/><file name="grouped.phtml" hash="51fe9e447eecca458ba1dfa28ca99e21"/><dir name="options"><file name="configurable.phtml" hash="4667c89a042cc4821e8e205cc9abc122"/></dir><file name="simple.phtml" hash="21c103b5067d5d689e1e3a19063b0ecb"/><file name="virtual.phtml" hash="21c103b5067d5d689e1e3a19063b0ecb"/></dir></dir><file name="view.phtml" hash="a54536536c9d7f28a409ac48c555daad"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="875e1b2076f72b939479e4da2a1687af"/><file name="link_inline.phtml" hash="88a34290644cd7534b88f58543f8a9c4"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="94b34bb7203939697bc3aef1fe115556"/><file name="new_images_list.phtml" hash="c94b6517478eb33cb97b56930461d1a0"/><file name="new_names_list.phtml" hash="b79d1c340a030b2b30f722254fe1dbf8"/></dir><dir name="content"><file name="new_grid.phtml" hash="91695ccfd0e874c5a91f528c55195f8b"/><file name="new_list.phtml" hash="c3d16a1d30c1b1c7edd7290978812d93"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="9d5064b78181f548219e841bf8f4f735"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="e0af060eed2cc92b8d198e2fde58d303"/></dir><file name="sitemap.phtml" hash="35948de2346cd34e99159f73e4eb802c"/><file name="tree.phtml" hash="ec525bd86bbe2770bc4f597454a98405"/></dir></dir><dir name="cataloginventory"><file name="qtyincrements.phtml" hash="893622cc441e708bb78588710d207ce1"/><dir name="stockqty"><file name="composite.phtml" hash="6155f58739a49b624211a104f8df668b"/><file name="default.phtml" hash="7369ccc7c5a23a9b12df16b0a002e77a"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="f0a38a6783df0575fa6a32318a4f5f1a"/><file name="result.phtml" hash="82a3e85fd8b51646b46f8d318d68b237"/></dir><file name="form.mini.phtml" hash="062d1ee3f16c7ea32bffbdc221c4da42"/><file name="result.phtml" hash="7a0a3527c13c08a904775c61557d4cfd"/><file name="term.phtml" hash="bbe7ccd2fe827ea0c48bc2a445b3320a"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="5f57f8e204cf512f13f31a4fd7ba8746"/><file name="crosssell.phtml" hash="bcf5a9f6e03ceacdb3b8d6d32ad477e0"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="9fd551e8c1aac1cf1d16dc9e6617cead"/></dir><file name="default.phtml" hash="b1abf940587301a0fef07d2170262146"/></dir><file name="noItems.phtml" hash="a92becd716cec4ad2148bfb742855fee"/><dir name="render"><file name="default.phtml" hash="874241920aca94033deafea7c0707f24"/><file name="simple.phtml" hash="53e4229e1a7a00650d69272dd190b4e4"/></dir><file name="shipping.phtml" hash="c4fd1e94c902160d9614dabdd591adee"/><dir name="sidebar"><file name="default.phtml" hash="317f41c1259a37e576827ead92683945"/></dir><file name="sidebar.phtml" hash="1324c07adc3ceb719e910add0e613e18"/><file name="totals.phtml" hash="a9dc915f0c1a06c688a4a0e2548a359d"/></dir><file name="cart.phtml" hash="2064cbd4632d32289921b29c3e8674eb"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="46376246810847477fa57ff0791b4579"/></dir><file name="addresses.phtml" hash="a5d65753e641bd11f0b45c68f5f22546"/><file name="agreements.phtml" hash="1b2de056cfca34aa9983e34eb740fe66"/><dir name="billing"><file name="items.phtml" hash="5dca82a962d278cf78c085854cebf10f"/></dir><file name="billing.phtml" hash="81d255a69c01e46b968b1444253bb0ab"/><dir name="item"><file name="default.phtml" hash="b4a553382bc807ff150b8e4481967dbd"/></dir><file name="link.phtml" hash="b09d873e654563e76455def17c263cb3"/><dir name="overview"><file name="item.phtml" hash="101c09142f53bb41ca582b12ae73e729"/></dir><file name="overview.phtml" hash="e82ca51e60ef7ef8f7870495e2239d14"/><file name="shipping.phtml" hash="0d0304e6f1a83bbbc637a6e4476b6e1d"/><file name="state.phtml" hash="6667bd9bb5b18ee7895c542f71324c4a"/><file name="success.phtml" hash="198baad8d7b9a31af7f0a81fb4388c93"/></dir><dir name="onepage"><file name="agreements.phtml" hash="fd159b75e3886a8c1211dc082f6038a9"/><file name="billing.phtml" hash="5f955d2d5aa91620fe4cbac3a798575e"/><file name="failure.phtml" hash="1479ba21592e4872ebb6b84ab63e55c3"/><file name="link.phtml" hash="c8e11b2f9699d95754533144e802a1da"/><file name="login.phtml" hash="4df4b62a55137e6ac3a2e6bbdf02883b"/><dir name="payment"><file name="info.phtml" hash="26bb640843ee3fb6e72b4f2739f0a111"/><file name="methods.phtml" hash="8f877bd055dc782c60fb4972c603115d"/></dir><file name="payment.phtml" hash="1dbcbfd24e0166b212514926e1953629"/><dir name="progress"><file name="billing.phtml" hash="c06e12741addacd560a19ccd7ca905ba"/><file name="payment.phtml" hash="9721d97eeba66f9a770fef5e5611e1d3"/><file name="shipping.phtml" hash="da10e274a474b9077991ccd73b438107"/><file name="shipping_method.phtml" hash="da72538919498704eb7c843702daface"/></dir><file name="progress.phtml" hash="c94a75e0c3a07cef70f8509a8f76d230"/><dir name="review"><file name="button.phtml" hash="aa355d166b5e2ef41a530cd38ad7bfa1"/><file name="info.phtml" hash="dbd0bfb07cb05938aea57a2d81ad4d46"/><file name="item.phtml" hash="6d3fd9e7e0fe9e83c2e9b17d683ce741"/><file name="totals.phtml" hash="eb054bae49687e421d0d7a99ad1395e1"/></dir><file name="review.phtml" hash="d2494b8faac5833e747a5d329ee4fab7"/><file name="shipping.phtml" hash="b3f76dbbec793a164adbf4a8049c15b2"/><dir name="shipping_method"><file name="additional.phtml" hash="5b40c047594e6bc64493bd0c9f070606"/><file name="available.phtml" hash="38c7b5af800735a273ed4300f6259700"/></dir><file name="shipping_method.phtml" hash="f709b5ab2b82acfea0379814ef0a0f8d"/></dir><file name="onepage.phtml" hash="2ab0d7efcfaa12666945c6fb6683634d"/><file name="success.phtml" hash="7bd2f09c084aaf5940ff1473eedfe259"/><dir name="total"><file name="default.phtml" hash="f14f728417f7d3e4469c22ac396d2996"/><file name="nominal.phtml" hash="201f568085d2381ce24372f31d135c3c"/><file name="tax.phtml" hash="caf415127cdb983c4db20cdaaa5d62db"/></dir></dir><dir name="cms"><file name="content.phtml" hash="047502566c3fe8b4f93d043e7c6ca7b5"/><file name="content_heading.phtml" hash="038b25f957a664940b6c44053041912c"/><dir name="default"><file name="home.phtml" hash="11c840f59024821bc16d609aaf84655b"/><file name="no-route.phtml" hash="7f730281d216fb8e2b9cf1c613a58482"/></dir><file name="meta.phtml" hash="5995926c3ef19c539fdcf766ee8b125a"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="fd98755f4354dcd5caef0b6e4c2a275c"/><file name="link_inline.phtml" hash="5d1b2f86bd10253d61347ac8b70fa363"/></dir><dir name="static_block"><file name="default.phtml" hash="b1d683caf67a2fe3e3a518e540ab0f8e"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="9c26788fba79068771527a3b55d26764"/></dir><dir name="core"><file name="formkey.phtml" hash="b483e152453aea655abd6b32e6cea51c"/><file name="link.phtml" hash="cd0b34977d0610129733714da63e5b3a"/><file name="messages.phtml" hash="a1270fef9dc17d55ef3355e53aadd49d"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="48474f750c4d06249e33a45cb3594f69"/><file name="hello.phtml" hash="75ba03f927822df90452471acfbc6d44"/><file name="info.phtml" hash="a769d17cf054553e62de61576e8fad6b"/><file name="newsletter.phtml" hash="9660207d1e1edb0a5aaf406c774c8f79"/></dir><file name="dashboard.phtml" hash="d193fd711052be429ca1399181a02b49"/><dir name="link"><file name="back.phtml" hash="1bc59121d95399210fd9605194a75504"/></dir><file name="navigation.phtml" hash="eecaabce0bad80bebb96f4328b9cadbb"/></dir><dir name="address"><file name="book.phtml" hash="8e397b723e33925e84c172787f96cf7f"/><file name="edit.phtml" hash="bca8070bd437884fe5fb287f3ac0f218"/></dir><file name="address.phtml" hash="d796424be4a5f0b78aa6fbb812dc54da"/><file name="balance.phtml" hash="64ee629de88f7c62810811aef91ff3a3"/><dir name="form"><file name="address.phtml" hash="e779470b565b5672804da05ecbfd34c7"/><file name="changepassword.phtml" hash="18081c977c4b609e549e2457ea721e17"/><file name="confirmation.phtml" hash="41d6d54c2479fc05fa543d4da95f14fd"/><file name="edit.phtml" hash="1480fe9d00458c52188f59a011f08a6e"/><file name="forgotpassword.phtml" hash="a8f674ce438eca25f73212582869305b"/><file name="login.phtml" hash="089374498c798ec477d913eca5cccf09"/><file name="mini.login.phtml" hash="af0ae17cb6f5cbe8f9fe4f047960ccd4"/><file name="newsletter.phtml" hash="9609611108727eb0da3caa1fc55ebe73"/><file name="register.phtml" hash="e59b5950e1be95eead82944e0d4e7957"/><file name="resetforgottenpassword.phtml" hash="49cd1ab9da2ba7fcef3dd87a10cf5dac"/></dir><file name="logout.phtml" hash="d722f44c13c93d5c7e7e8e661a8b25b2"/><file name="orders.phtml" hash="fee18b4c642a6872d85e230b1cf6aa2d"/><dir name="widget"><file name="dob.phtml" hash="d26bb6bdf6255a546bc0d0feadd07c5b"/><file name="gender.phtml" hash="e1c1e84526e0d828138d691fea66a69f"/><file name="name.phtml" hash="cdfd22c844178bd844268bc24711fd9f"/><file name="taxvat.phtml" hash="38a30e3597d82df1312eb5d96b7f60c1"/></dir><file name="wishlist.phtml" hash="1a7b837a1e0bca3ea52f3e045cc1d4d8"/></dir><dir name="directory"><dir name="currency"><file name="switch.phtml" hash="ad9d5270ecf99d4317c39f150cfee178"/></dir><file name="currency.phtml" hash="fe855e48d16739f02a8619f2ff0e1786"/><dir name="js"><file name="optional_zip_countries.phtml" hash="98beaa8fcc825322bdb658040a74c53b"/></dir></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="links.phtml" hash="3cc2aa5af9a3ef0599dbdb6a432067c0"/><file name="samples.phtml" hash="f3fcb6acf13d9494f6e03fb9c43ca789"/><file name="type.phtml" hash="2cd550caa6ad4fa8ad5a85fe866c85cd"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="df68bf59d6c309e740fc5d2c20529239"/></dir></dir><dir name="multishipping"><dir name="item"><file name="downloadable.phtml" hash="da30307e4094015c6bb0636743b0bef1"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="afa9337e189779fa488a16596f0613c9"/></dir></dir><file name="success.phtml" hash="8dcd2684f45ebe6a1c0c5721b4fde0d8"/></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="bd641989c4f15ffba6979e5543077fb6"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="8fcb56ba5ed072b66df774fc3ee3b3ad"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="18d8e386380612810de9b0ed58b94e55"/></dir><dir name="order"><file name="downloadable.phtml" hash="c284ffaf47aa57aa16d8c2300bcf5781"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="3919ec62cf0503ac47e29c63a50ffa43"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="c0154d4a0b457d0b0653cfad202de903"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="3fcd2acdf626890f1f3728a0302a9834"/></dir></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="6b8f9fd9d90516f905e77ae4d67079db"/></dir><dir name="invoice"><file name="items.phtml" hash="2015671f2b0783f31eb4c9cf23d298f0"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="301bb568dd49d23e64b4e27f37ed83b0"/></dir><dir name="invoice"><file name="default.phtml" hash="301bb568dd49d23e64b4e27f37ed83b0"/></dir><dir name="order"><file name="default.phtml" hash="0733cfb5bb20dab48aea5bf9d0b9d3dc"/></dir><dir name="shipment"><file name="default.phtml" hash="2a9f70fb9930544e088dd1c46fb88555"/></dir></dir><file name="items.phtml" hash="30ccc7a37a1a1785f64f1d5adc757bdc"/><dir name="shipment"><file name="items.phtml" hash="30dfb58464adf8b1375f418ca50612ba"/><file name="track.phtml" hash="c511504e3fc306b2b789b394bdbe456f"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="ab302e6de3cbbcebd15af1c4379465b8"/><file name="stock.phtml" hash="40ace473d1befa8c414eab76e528c179"/></dir></dir><dir name="giftmessage"><file name="inline.phtml" hash="efdd071094ec99f5eeca9937bf27b146"/></dir><dir name="googleanalytics"><file name="ga.phtml" hash="7256ba2ae247ee4c903830be0244ca89"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="a3599cb0ebdf93e01c26af390c745409"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="c912f262fb0a5b772ea65019abfbba85"/><file name="button.phtml" hash="b4dd099c7dddb6df029dcfaf3d821e74"/><file name="confirm-simple.phtml" hash="a9d444ade84c4ca75f268b9f7a05a67e"/><file name="confirm.phtml" hash="0a08da9c67864936218aab98ddb0aabd"/><dir name="form"><file name="login-simple.phtml" hash="c7423dee573dcef917c9b59a592f2dbb"/><file name="login.phtml" hash="0465f09d1089ec96a3d0175508d81105"/></dir><file name="head-simple.phtml" hash="b190bfd39d2bb2e9b3c2c8dc0df24cfe"/><file name="reject-simple.phtml" hash="97cc65037d339995c492056c746a8018"/><file name="reject.phtml" hash="8e2cbeb15837570bfb42bbca434e6d94"/></dir><dir name="customer"><dir name="token"><file name="list.phtml" hash="d2bc0e29bdf2263728fbecf94c961449"/></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="c6219fae7d5f414d9fb0a1ba856584d8"/><file name="2columns-left.phtml" hash="e22f4f8f009092ce042ba8ab752db82b"/><file name="2columns-right.phtml" hash="944445f22d58cd0689c4c2a992bb7f17"/><file name="3columns.phtml" hash="7aa8d11250007bb56d579a48858eb1b1"/><file name="empty.phtml" hash="b9e97e4579f3e212dccdd3f8f8032057"/><dir name="html"><file name="breadcrumbs.phtml" hash="abed58278fe993d00c697ce965fa79d3"/><file name="cookienotice.phtml" hash="52209b72e23b4db7b618face13b9bec6"/><file name="footer.phtml" hash="a85920178318e9d788f5802389c963e6"/><file name="head.phtml" hash="f8efa3eb87fbd40e60d758374c006368"/><file name="header.phtml" hash="084da06182c80432294fcd56228910e3"/><file name="notices.phtml" hash="98c290beab42ced33cf24b0ab060ed6d"/><file name="pager.phtml" hash="3fc0b7538a2ae3a3b40c226877ea2b17"/><file name="top.links.phtml" hash="1f2514e5b87c3bf6a677a5b48b37b696"/><file name="topmenu.phtml" hash="53ae5d2eaae7a7b40040e5816571dabf"/><file name="wrapper.phtml" hash="a5f22a8791fe43f4e131a77b524ec395"/></dir><dir name="js"><file name="calendar.phtml" hash="c8758318d8db21932436ccd32559da53"/><file name="cookie.phtml" hash="91f87c57d860b8bd81a2521d81d9df7a"/></dir><file name="popup.phtml" hash="40b0611964124786557529cf1bbdb8e8"/><file name="print.phtml" hash="872e595bdb4472b8aaad0c8bd6c02b80"/><file name="redirect.phtml" hash="d8d4c798d7c4a39b0dc791413f761a77"/><dir name="switch"><file name="flags.phtml" hash="f9772b018b3bc21ffb53fbeb482faf7c"/><file name="languages.phtml" hash="096e89825eaa3ac0ef1edd17d603fb4c"/><file name="stores.phtml" hash="84b7cb6a64c1efd3e13ef01974951fc5"/></dir><dir name="template"><file name="container.phtml" hash="57e4e285221afc02cd6262920bad8638"/><file name="links.phtml" hash="24d8014ab0335abeba6d8cdcb2e3f9c1"/><file name="linksblock.phtml" hash="f4e8028923e0b370b31cf4f4ad65ce93"/></dir></dir><dir name="pagecache"><file name="cookie.phtml" hash="faa2b8867ce2af8e652e6fc659ae9da2"/></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="c5a9eddade3b3ebf82d550a291fa518e"/></dir><dir name="info"><file name="cc.phtml" hash="63064f2ac4d856a3926da7bcc1b66902"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="b0567be2497e1e49202d0efe4b42c36d"/><file name="schedule.phtml" hash="e4a6dbe9361aa0d5b7c34675bd5555ec"/></dir></dir></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="13dac89396ee15234944727abc54a4ca"/><file name="cashondelivery.phtml" hash="d6d9a34353c06df206f030e6f089b46c"/><file name="cc.phtml" hash="f912496e69f09380d69fcb415b203f6e"/><file name="ccsave.phtml" hash="3942fb97026a167b21e7781353968f06"/><file name="checkmo.phtml" hash="475a68d5c6bb4440f80be7d7522d452c"/><file name="purchaseorder.phtml" hash="d039229d0ef10e00b87ac44a8d687156"/></dir><dir name="info"><file name="banktransfer.phtml" hash="8c023d3d83cdd246e44662db5a2a1658"/><file name="checkmo.phtml" hash="939b9abf501b5abe296e314e95ecfeba"/><file name="default.phtml" hash="b60c813ebcc41abe40fcdce2fca1ea95"/><file name="purchaseorder.phtml" hash="43e6a9a75b6c04cc1087006e330f3066"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="8cd5b2a279fa6eab4b863bcb48441df0"/><dir name="express"><dir name="review"><file name="details.phtml" hash="5bf8dfc321932ffc3a32fcbe4dea2630"/><dir name="shipping"><file name="method.phtml" hash="fe617b23edb958508076b885091429ff"/></dir></dir><file name="review.phtml" hash="289493af5a2612f796b635740caea18d"/><file name="shortcut.phtml" hash="612db88906e00b82e6994b3bf11af3eb"/></dir><dir name="hss"><file name="form.phtml" hash="4dd1c4d63c88c326464059a2ba6833b1"/><file name="iframe.phtml" hash="f80f5c97933a541f10bff51fb9a2556f"/><file name="info.phtml" hash="8ee1a1cd5be756754ff0a3919651f156"/><file name="js.phtml" hash="afb50ce2acdfd3606056b5572e8e40d7"/><file name="redirect.phtml" hash="6a841311df6620bb4083a29e9799fd0e"/><dir name="review"><file name="button.phtml" hash="4ebb24ca6314327727838685de94f014"/></dir></dir><dir name="partner"><file name="logo.phtml" hash="ef1c4cd388f2d3015aa075c801f641df"/><file name="us_logo.phtml" hash="a293aa285ab156e56fc40a4c6e9badec"/></dir><dir name="payflowadvanced"><file name="iframe.phtml" hash="8a0618b30b8fe145a4b70fce0862c6fe"/><file name="info.phtml" hash="bbea0b3e617bcb1f99bc52da4f48dd60"/><file name="redirect.phtml" hash="df9a4cf4ea565409be6ce0abfa27a7ac"/></dir><dir name="payflowlink"><file name="iframe.phtml" hash="b7334fc968ad26635c954bc4646b901a"/><file name="info.phtml" hash="9d7d65ff0f4e81ca029a297b65cf53f2"/><file name="redirect.phtml" hash="255622341302357553c2d336351702c5"/></dir><dir name="payment"><file name="mark.phtml" hash="ad9e7b6aed53f70427a3b53434795dab"/><file name="redirect.phtml" hash="4439e94cd9d7f9ac7d7f260c354a6d14"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="a16823e5ae4028eda18a3d2764d7ba72"/><file name="login.phtml" hash="79b7b9f4c7ff93f3cd5dda3bb23ce162"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="64e5393b02f4ffa1a2b75e180b421a0f"/><file name="register.phtml" hash="cd1b7e688acb19d208e745ea07fe4710"/></dir></dir><file name="remember_me.phtml" hash="8c24521c0be510c1f4b00b3e2a8990d0"/><file name="remember_me_tooltip.phtml" hash="3245c94bfba248fa538aaf474139c797"/></dir><dir name="poll"><file name="active.phtml" hash="c8ae9f928f2422f713fb8ca8529d3af4"/><file name="result.phtml" hash="1104118b32a68d81b124f6f6a4c00838"/></dir><dir name="productalert"><file name="price.phtml" hash="8955f01fd0d809ba3e082f5bb2148570"/><dir name="product"><file name="view.phtml" hash="dfd543b25592732312ea60a5f0981c3d"/></dir><file name="stock.phtml" hash="8955f01fd0d809ba3e082f5bb2148570"/></dir><dir name="rating"><file name="detailed.phtml" hash="0f18784e9e391ee0f6c6e46cbedb8c98"/><file name="empty.phtml" hash="af102ec561aed67b8e10af2333a9e9d6"/></dir><dir name="reports"><file name="home_product_compared.phtml" hash="a4c113629b88a88a848c7463b11bd69d"/><file name="home_product_viewed.phtml" hash="2f6289cb5eb81d37793845cb4a671a49"/><file name="product_compared.phtml" hash="6efc7c3a05b430e1267a802590313deb"/><file name="product_viewed.phtml" hash="5c2aeaf081dc207eb442cf353e7e9a3f"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="8f4dc3fb547c1ede1317e683033b5065"/><file name="compared_images_list.phtml" hash="9e4aba44ef3814842ab9909035c4e377"/><file name="compared_names_list.phtml" hash="61187b1bfa06590895e2244c5e627408"/></dir><dir name="content"><file name="compared_grid.phtml" hash="118a2dcc14e530ca545d2ebc3572a4c6"/><file name="compared_list.phtml" hash="f6689eec42ad2ef38a1aff29a6a36013"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="449beafa8c2b7f19c1b4a171b531b530"/><file name="viewed_images_list.phtml" hash="964e87c3b4305560cb9979e251f684b7"/><file name="viewed_names_list.phtml" hash="21fa749e379df134083d3599853fc3e6"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="f5367281a3cb0a4ed0d5c4c4ba411d85"/><file name="viewed_list.phtml" hash="f50b2a2b2eef5710d129789f687b7467"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="97b142ce5b96aff3fb0ccc7d124e51d1"/><file name="recent.phtml" hash="e191691dcd2348daf9c03b349a611704"/><file name="view.phtml" hash="3d4e3b78d4e2803d44609aaaf52427fe"/></dir><file name="form.phtml" hash="9a9a10d4fada4c9dfe13cd6a67c6086a"/><dir name="helper"><file name="summary.phtml" hash="d252b54235705488a51deb3975c906a7"/><file name="summary_short.phtml" hash="76c530b821205c0231c90aad07f43f21"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="9dc77fc557d050415deb9a34841ed481"/><file name="list.phtml" hash="0afc05442e49bf61e546f4110cc4a3b8"/><file name="other.phtml" hash="498cf7b3ebe3e63b44423bb6ff7e5837"/></dir></dir><file name="view.phtml" hash="26584f68b240e9b4b497bc09af7704f8"/></dir><dir name="rss"><file name="list.phtml" hash="bb38db8ae793f424480552bb0062fc0f"/><file name="nofeed.phtml" hash="bcbad86e87ba8d8e383af663ab2add4a"/><dir name="order"><file name="details.phtml" hash="3ef080e4c4294d1c126085816be57920"/></dir></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="eee0c7de5eff96204bc85ee219a38a8e"/></dir><file name="agreements.phtml" hash="a3d21f536d2563baa8f43dff1f2bbbdd"/></dir><dir name="guest"><file name="form.phtml" hash="dc9521f68dae3cc50c5bf1924db6856b"/></dir><dir name="order"><file name="comments.phtml" hash="b24e72576471b858a98954728419832d"/><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="ff678b441b3907323d6ee79f590f009b"/></dir></dir><file name="items.phtml" hash="2935ba2044b93b19ac0387aa8776c44f"/></dir><file name="creditmemo.phtml" hash="6697414464051abbba91760c76a52994"/><file name="details.phtml" hash="3634e89096b28d7da3fa7bb31c248dc3"/><file name="history.phtml" hash="04f64bbbea99bc220aa44254408199c5"/><dir name="info"><file name="buttons.phtml" hash="dc597f7c3702b49beb2f0205005edee0"/></dir><file name="info.phtml" hash="deb1f431a246fdb8f9ab59f07db85210"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="8d3f98f1b23f4d336b24b1f2082cfa11"/></dir></dir><file name="items.phtml" hash="580798867451d2be895577e9df917d4d"/></dir><file name="invoice.phtml" hash="222559585e587c3c59b390df442d17e0"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="b59f4b96d584b4998d2d56e8b0d32336"/></dir></dir><file name="items.phtml" hash="b234f18ba7cb1b809bd79c2db6318ee0"/><dir name="print"><file name="creditmemo.phtml" hash="0cbade8f5bb48b4cda2713a548646446"/><file name="invoice.phtml" hash="ffbff984bec0130b59f1429113b24215"/><file name="shipment.phtml" hash="281ad1f819b38b8add1963935c67e4d0"/></dir><file name="print.phtml" hash="cdcf1a2d80c0a24e77358f9e305ecb63"/><file name="recent.phtml" hash="d7e587f30151a738ad3dc45942b2753f"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="334c76cf6fd53e38dde3a0a1adbcb594"/></dir></dir><file name="items.phtml" hash="aed0e6571b805f3e506072c7e096aee6"/></dir><file name="shipment.phtml" hash="4e47258f03ce9b3bb23fec10142383c4"/><file name="totals.phtml" hash="b4c4b90f73a7f2e78db6596a2f130362"/><file name="trackinginfo.phtml" hash="79c0d787679d7c08afe45fe8d7bec969"/><file name="view.phtml" hash="42520ef5354319a0c2a870e42011c077"/></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="dfba34995a96ad0130296e80822307f8"/></dir></dir></dir><dir name="recurring"><file name="grid.phtml" hash="a1ee0b42fdcf31a323ced56894e18c2c"/><dir name="profile"><dir name="view"><file name="info.phtml" hash="bbfb4560c0a12b7ae92bbf8a3c5ede13"/></dir><file name="view.phtml" hash="3d06e65f6ef00713639ebb63a1d20f45"/></dir><file name="profiles.phtml" hash="f871b656b1e3c4cd62d90ec4a82b0c4d"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="2de6fe3f5509bb471469746121e13286"/></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="d7737aa66069e5ba89d307ea5cbc78e7"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="545b1b085e925534fb57b7f0d9b2e1a7"/></dir><dir name="shipping"><dir name="tracking"><file name="ajax.phtml" hash="b3887982434363295b85ce5b6a9d5727"/><file name="popup.phtml" hash="d359f4a437ee65cbec37fe2bdf6ddee9"/></dir></dir><dir name="tag"><file name="cloud.phtml" hash="1064353c96441927c8cc5974fe86faad"/><dir name="customer"><file name="recent.phtml" hash="e6aa119fdced00f05c504f596ef74411"/><file name="tags.phtml" hash="31f66a60b2829a66a6b7085aa988abf9"/><file name="view.phtml" hash="7beeff9f94502373da1efa3c13d00792"/></dir><file name="list.phtml" hash="aad5490d857e0963b38d0597aa81b01b"/><file name="popular.phtml" hash="8cc87fd94313050d1f12afa5e4fa92a1"/></dir><dir name="tax"><dir name="checkout"><file name="discount.phtml" hash="9990886f9bdb861e69693dd5d5049c21"/><file name="grandtotal.phtml" hash="c9ce7e777e344a4a54dff5c223f867e6"/><file name="shipping.phtml" hash="e6939fdbb296ae139ebfe3ed9b1d8003"/><file name="subtotal.phtml" hash="eae01eae62bc88429e10f0075edc0a50"/><file name="tax.phtml" hash="bb6c5782fc36aa978c3427586cabbebb"/></dir><dir name="order"><file name="tax.phtml" hash="289b28549b5db31f4f78e2a0505ff8ee"/></dir></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="7d357329a8e63669533ffae58e2a9ea2"/><file name="tocart.phtml" hash="65e612fb7759208b448f0ec479354e4b"/><file name="update.phtml" hash="606592b211219af4629c8bdd0dab1133"/></dir><dir name="email"><file name="items.phtml" hash="08d36c72bcb1431ae25ebf31c8054519"/><file name="rss.phtml" hash="a5d26ad90a36388843107ce99ebcd57d"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="763a44d7d805edde0047e53c7a73fbb8"/><file name="image.phtml" hash="0ccb12256a9e9c42a5459cb3d8d8f9af"/><file name="info.phtml" hash="ce485afb798f89ad2844ef2043d84d51"/><file name="remove.phtml" hash="2bd046bdd9db0c7ae124af76c6648587"/></dir><dir name="configure"><file name="addto.phtml" hash="593c7fa73668e0077776b905a8359cbe"/></dir><file name="list.phtml" hash="b7e65fb738d20dec68d04e96f0e12250"/></dir><file name="options_list.phtml" hash="c82d0d5305de4b555c85e5955df9c472"/><dir name="render"><dir name="item"><file name="price.phtml" hash="036c3bb4ffc21669e53a61b20c3a28ca"/><file name="price_msrp_item.phtml" hash="d85dfb2ff9041f2384c302156c2a61a3"/><file name="price_msrp_rss.phtml" hash="5d4a5b9ab382ba0c04a616cb54721c69"/></dir></dir><file name="shared.phtml" hash="8024a2edfef4cdcb86f5546610093829"/><file name="sharing.phtml" hash="0ccd4b19e43b3b582fad51e299d5f245"/><file name="sidebar.phtml" hash="4f329b8e4584e88c6b789d8993715457"/><file name="view.phtml" hash="b072b63099b8f7d583af3ee66ec355bb"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="email-inline.css" hash="ed63c4b0607b5f3f7077f70d2362cfc4"/><file name="email-non-inline.css" hash="bc5ea1e8344f0daf2dd5691a981a2e86"/><file name="widgets.css" hash="ed3ba13dd93e7695d9c8072ebfc83732"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir></dir><dir name="js"><file name="bundle.js" hash="f0762fb8bf9ded546d5f2da29a3e4404"/><dir name="checkout"><file name="review.js" hash="65d792db44438e7181803c6398f492ab"/></dir><file name="giftmessage.js" hash="a5697ed33590050bb2582cec39f29df2"/><file name="ie6.js" hash="a28f2c74f4ba1b73e95200f195a69f3e"/><file name="msrp.js" hash="2077610ec1f7e9e5f38b7474540919e4"/><file name="opcheckout.js" hash="d77144aa2e47850b2b59903615a894ce"/></dir><dir name="lib"><dir name="prototype"><dir name="windows"><dir name="themes"><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="26094605a693e4c7e647ae2df4554048"/></dir></dir></dir></dir></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.0</min><max>1.9.2.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Interface_Frontend_Base_Default-1.9.2.1.xml var/package/Interface_Frontend_Base_Default-1.9.2.1.xml | |
--- var/package/Interface_Frontend_Base_Default-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Interface_Frontend_Base_Default-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Interface_Frontend_Base_Default</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>This is a Magento themes base</summary> | |
+ <description>This is a Magento themes base</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:08</time> | |
+ <contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="etc"><file name="theme.xml" hash="cb15d7d843605505e5d58557f789b5b5"/><file name="widget.xml" hash="7c90d742393ad24b83c8984e45c9afb2"/></dir><dir name="layout"><file name="authorizenet.xml" hash="9b43ec1a3ab7e51226ec20fc9471cc0f"/><file name="bml.xml" hash="7308daeb41b482df29491a7d52fb8471"/><file name="bundle.xml" hash="4108c1c75f2eec7c53ff8a38e4f383a8"/><file name="captcha.xml" hash="18d5e650991b3f7c0822600a797a2835"/><file name="catalog.xml" hash="9c383975a47cde57dda70c55b73f16b2"/><file name="catalog_msrp.xml" hash="4aa0b4f0733b261c49a03ee86f8748b0"/><file name="cataloginventory.xml" hash="69fe52378a85805a0952a2b1908f2828"/><file name="catalogsearch.xml" hash="e34de289421b1a456b396402f704ff84"/><file name="checkout.xml" hash="1b37f8dc6e0a56f778e0414209e1f7c3"/><file name="cms.xml" hash="a5af520b4a47b8548bcf168fd09165e0"/><file name="contacts.xml" hash="4378fcbf196ab46e7446b6bc6a891dae"/><file name="core.xml" hash="74712a169176f8f505d21fae0b748afb"/><file name="customer.xml" hash="f19d26fcf54c986cfc0f74e8a9ec086a"/><file name="directory.xml" hash="55f934d2f1f17b3ddb1b3d659d391b86"/><file name="downloadable.xml" hash="d63b8d0085ea27f984615635a2eec1a2"/><file name="googleanalytics.xml" hash="6a771dc81c58491423e48c32522c32f9"/><file name="newsletter.xml" hash="8135d4342f613c00f10079abd441ff2f"/><file name="oauth.xml" hash="101bd169a40bdbbd4e86edbef3845d50"/><file name="page.xml" hash="d35964dd5907509bf614a040d28f9394"/><file name="pagecache.xml" hash="4f5af67cd7dc741262893975cdb7c975"/><file name="payment.xml" hash="6d1b1ef0e334ddd06ae081bc52d0fec6"/><file name="paypal.xml" hash="be2296e47120c1ee987d64fabc161575"/><file name="paypaluk.xml" hash="848d95046abc769a76454863bd6be355"/><file name="persistent.xml" hash="630f737bb39a9373b9d88e352edb76bc"/><file name="poll.xml" hash="fc1b9888131c2ca7fe3d979e32195ff9"/><file name="productalert.xml" hash="5f3358b7d00c9e3c16e1dab9e95c0a4e"/><file name="reports.xml" hash="e6cf7af18c38dcc5ab289b2a21697228"/><file name="review.xml" hash="6891b15e9bd9806c57bd37cf98902c75"/><file name="rss.xml" hash="ee5b7b8665b6281551180f6dae293a3e"/><dir name="sales"><file name="billing_agreement.xml" hash="3bb6b8cabd82076aa81da485354e7504"/><file name="recurring_profile.xml" hash="07c5cf1f6e252585ff148592ac64d799"/></dir><file name="sales.xml" hash="d0ce0e5135d7e5cadee565a0ea6a5791"/><file name="sendfriend.xml" hash="751c3ddfbe0d1192b534f573faaebf1d"/><file name="shipping.xml" hash="bc25e5d870c8f42fffd320d024c29cfc"/><file name="tag.xml" hash="507cf1830b70d4aa4ba548e14f50e962"/><file name="weee.xml" hash="a7a825ac307f4746a25ed3194280a191"/><file name="wishlist.xml" hash="bac8a033ab79991f97f4b12bf273dbf8"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="675af0fc77da432302d993cba713e42c"/><file name="iframe.phtml" hash="cad12e7af9070ad97b7a0d3a8cb3f46e"/><file name="info.phtml" hash="3b505c2281b44a95a9416ec948d48c19"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="list"><file name="partof.phtml" hash="c312478997aa130687ba6d99cbdecd04"/></dir><file name="price.phtml" hash="536bba9dfc772347f912289891e028a5"/><dir name="view"><file name="option_tierprices.phtml" hash="e23de273f835bcdeb5106dfe912c33d0"/><dir name="options"><file name="notice.phtml" hash="3aaa7da292ce864f257bc8951d04bb1d"/></dir><file name="price.phtml" hash="1f300b0114243160082f039cc18cb831"/><file name="tierprices.phtml" hash="0d6822783c1c193155855206772a76c2"/><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="cf7c70e1c6f95266d527a75fbfb4d3d2"/><file name="multi.phtml" hash="14ae0a03d33d4cf96921f63c3b8b80ad"/><file name="radio.phtml" hash="3f6efd84f38e6daf926d38026e4c6fc8"/><file name="select.phtml" hash="75c096977c2573c8e0f7f8ffe8e3a825"/></dir><file name="options.phtml" hash="fcf0d2312cb6409c9fe87331e8ed812a"/></dir><file name="bundle.phtml" hash="699cf212a5845991d218c290605057ce"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="0ebd275d9fd1250369cb296642329aef"/></dir><dir name="invoice"><file name="default.phtml" hash="35a47799faad39f930bdcab1f7bddd20"/></dir><dir name="order"><file name="default.phtml" hash="abd062ff9789076c430c975db2c13ee5"/></dir><dir name="shipment"><file name="default.phtml" hash="91a551c533f425c37b150db126ffc3b9"/></dir></dir></dir></dir><dir name="rss"><dir name="catalog"><dir name="product"><file name="price.phtml" hash="3acc1f7d981e2d69f517577734cef48a"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="9cab5ff8ee6f397be3fea1bb8b1f6dfb"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="2667129b9522036ba54c6e679f863852"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="b2371c4f222823db77dcebde9ef3736e"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="84efc62c4e7965f45806be8095bb80e9"/></dir></dir></dir></dir></dir><dir name="callouts"><file name="left_col.phtml" hash="e42166f6dd76cc2eb76b8aef287784a2"/><file name="right_col.phtml" hash="e42166f6dd76cc2eb76b8aef287784a2"/></dir><dir name="captcha"><file name="zend.phtml" hash="9310fbe6eaa858ebdb5308b49f6b845e"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="bb6f57c1300ff8cce698944a20693158"/><file name="view.phtml" hash="b393612d0c0a8c91310e3e09f6f82d37"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="97f1fb1fb08eedf72bbad2cc21a4e368"/><file name="link_inline.phtml" hash="b1be1359eac9a775e241228e9edad6ff"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="db3ab7d6d6ff60f738f83d8e39b5e573"/><file name="state.phtml" hash="cb4e1a9e019ef2d20bec4692f3732109"/><file name="view.phtml" hash="257a34a5feaa047a22a9324e1c584564"/></dir><dir name="msrp"><file name="popup.phtml" hash="637ecaadbb9e758942c29a41b4a3ddc2"/></dir><dir name="navigation"><file name="left.phtml" hash="9febc1ddff257023ef568ed3f0e76b67"/><file name="top.phtml" hash="9c866ce66ddb423ac85ddc32ae2a2c7b"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="f8ef7699f3877698e860396374f29283"/><file name="sidebar.phtml" hash="96f251935c99c6ed2c2b4ad0796669b6"/></dir><file name="gallery.phtml" hash="684ddad4304e9c757992b9724ab34376"/><dir name="list"><file name="related.phtml" hash="fcb657d4a97625c324471d92f9de5f42"/><file name="toolbar.phtml" hash="49808497f7b604b2e25135bb93915b3d"/><file name="upsell.phtml" hash="bc067353d480fa960f04e656045a06b3"/></dir><file name="list.phtml" hash="607f1fdfcd12ff8da05e656a6383158c"/><file name="new.phtml" hash="819203ab84c283e542ebec79d9427dcc"/><file name="price.phtml" hash="55795fbb6f2b62ddb4b4e4926400b3f2"/><file name="price_msrp.phtml" hash="6e5c5f54444a50c733dc880155e616b5"/><file name="price_msrp_item.phtml" hash="9b458ae2ae9bd0ebdf29064047d26e7c"/><file name="price_msrp_noform.phtml" hash="73c40737abcadff3d1a4abd64ef51886"/><file name="price_msrp_rss.phtml" hash="8ebdef3f6de012eb03ec92344dbe0cf8"/><dir name="view"><file name="additional.phtml" hash="527ae1a664b1906d8c01956cf640dff3"/><file name="addto.phtml" hash="f895117d77add30fe6103536da6176d2"/><file name="addtocart.phtml" hash="ff31f4b455c68fb43f9f4294233cadad"/><file name="attributes.phtml" hash="58872c8a2970492dce4e17d6581efcd5"/><file name="description.phtml" hash="7f21f35fcf81ac91d99940a7062e3dcd"/><file name="media.phtml" hash="66ffe5b5a9c6463607297025a754f720"/><dir name="options"><file name="js.phtml" hash="8b1b18f53ad027dd1c3e872ef28b18dd"/><dir name="type"><file name="date.phtml" hash="f11c4d1d7c0605cd597f43e73b511e04"/><file name="default.phtml" hash="bfda656d7ac7ab4966143d2ad25439d0"/><file name="file.phtml" hash="8f59cdb546924d4ce68baf49a622e493"/><file name="select.phtml" hash="df3d0d15468a1d13407f255fd9497891"/><file name="text.phtml" hash="12caeff494da87a6c878cc9f3c5fe60a"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="952d89bec89ed906cdbae021441560cb"/></dir><file name="wrapper.phtml" hash="b7a4a0933767d62a0fd69adc14b796ad"/></dir><file name="options.phtml" hash="d47affa574c4dcf8bc94739c85af3b96"/><file name="price.phtml" hash="d5ad760d4eb36bbfe599a7d46f2c1932"/><file name="price_clone.phtml" hash="15bb70ea6bced116ec6af906167f80b9"/><file name="tierprices.phtml" hash="88aac101bafa81fc161ed7af0af09652"/><dir name="type"><file name="configurable.phtml" hash="21c103b5067d5d689e1e3a19063b0ecb"/><file name="default.phtml" hash="919aca6f31f11d41e32eea62ea74cfaf"/><file name="grouped.phtml" hash="51fe9e447eecca458ba1dfa28ca99e21"/><dir name="options"><file name="configurable.phtml" hash="4667c89a042cc4821e8e205cc9abc122"/></dir><file name="simple.phtml" hash="21c103b5067d5d689e1e3a19063b0ecb"/><file name="virtual.phtml" hash="21c103b5067d5d689e1e3a19063b0ecb"/></dir></dir><file name="view.phtml" hash="a54536536c9d7f28a409ac48c555daad"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="875e1b2076f72b939479e4da2a1687af"/><file name="link_inline.phtml" hash="88a34290644cd7534b88f58543f8a9c4"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="94b34bb7203939697bc3aef1fe115556"/><file name="new_images_list.phtml" hash="c94b6517478eb33cb97b56930461d1a0"/><file name="new_names_list.phtml" hash="b79d1c340a030b2b30f722254fe1dbf8"/></dir><dir name="content"><file name="new_grid.phtml" hash="91695ccfd0e874c5a91f528c55195f8b"/><file name="new_list.phtml" hash="c3d16a1d30c1b1c7edd7290978812d93"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="9d5064b78181f548219e841bf8f4f735"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="e0af060eed2cc92b8d198e2fde58d303"/></dir><file name="sitemap.phtml" hash="35948de2346cd34e99159f73e4eb802c"/><file name="tree.phtml" hash="ec525bd86bbe2770bc4f597454a98405"/></dir></dir><dir name="cataloginventory"><file name="qtyincrements.phtml" hash="893622cc441e708bb78588710d207ce1"/><dir name="stockqty"><file name="composite.phtml" hash="6155f58739a49b624211a104f8df668b"/><file name="default.phtml" hash="7369ccc7c5a23a9b12df16b0a002e77a"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="f0a38a6783df0575fa6a32318a4f5f1a"/><file name="result.phtml" hash="82a3e85fd8b51646b46f8d318d68b237"/></dir><file name="form.mini.phtml" hash="062d1ee3f16c7ea32bffbdc221c4da42"/><file name="result.phtml" hash="7a0a3527c13c08a904775c61557d4cfd"/><file name="term.phtml" hash="bbe7ccd2fe827ea0c48bc2a445b3320a"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="5f57f8e204cf512f13f31a4fd7ba8746"/><file name="crosssell.phtml" hash="bcf5a9f6e03ceacdb3b8d6d32ad477e0"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="9fd551e8c1aac1cf1d16dc9e6617cead"/></dir><file name="default.phtml" hash="b1abf940587301a0fef07d2170262146"/></dir><file name="noItems.phtml" hash="a92becd716cec4ad2148bfb742855fee"/><dir name="render"><file name="default.phtml" hash="874241920aca94033deafea7c0707f24"/><file name="simple.phtml" hash="53e4229e1a7a00650d69272dd190b4e4"/></dir><file name="shipping.phtml" hash="c4fd1e94c902160d9614dabdd591adee"/><dir name="sidebar"><file name="default.phtml" hash="317f41c1259a37e576827ead92683945"/></dir><file name="sidebar.phtml" hash="1324c07adc3ceb719e910add0e613e18"/><file name="totals.phtml" hash="a9dc915f0c1a06c688a4a0e2548a359d"/></dir><file name="cart.phtml" hash="2064cbd4632d32289921b29c3e8674eb"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="46376246810847477fa57ff0791b4579"/></dir><file name="addresses.phtml" hash="a5d65753e641bd11f0b45c68f5f22546"/><file name="agreements.phtml" hash="1b2de056cfca34aa9983e34eb740fe66"/><dir name="billing"><file name="items.phtml" hash="5dca82a962d278cf78c085854cebf10f"/></dir><file name="billing.phtml" hash="81d255a69c01e46b968b1444253bb0ab"/><dir name="item"><file name="default.phtml" hash="b4a553382bc807ff150b8e4481967dbd"/></dir><file name="link.phtml" hash="b09d873e654563e76455def17c263cb3"/><dir name="overview"><file name="item.phtml" hash="101c09142f53bb41ca582b12ae73e729"/></dir><file name="overview.phtml" hash="e82ca51e60ef7ef8f7870495e2239d14"/><file name="shipping.phtml" hash="0d0304e6f1a83bbbc637a6e4476b6e1d"/><file name="state.phtml" hash="6667bd9bb5b18ee7895c542f71324c4a"/><file name="success.phtml" hash="198baad8d7b9a31af7f0a81fb4388c93"/></dir><dir name="onepage"><file name="agreements.phtml" hash="fd159b75e3886a8c1211dc082f6038a9"/><file name="billing.phtml" hash="5f955d2d5aa91620fe4cbac3a798575e"/><file name="failure.phtml" hash="1479ba21592e4872ebb6b84ab63e55c3"/><file name="link.phtml" hash="c8e11b2f9699d95754533144e802a1da"/><file name="login.phtml" hash="4df4b62a55137e6ac3a2e6bbdf02883b"/><dir name="payment"><file name="info.phtml" hash="26bb640843ee3fb6e72b4f2739f0a111"/><file name="methods.phtml" hash="8f877bd055dc782c60fb4972c603115d"/></dir><file name="payment.phtml" hash="1dbcbfd24e0166b212514926e1953629"/><dir name="progress"><file name="billing.phtml" hash="c06e12741addacd560a19ccd7ca905ba"/><file name="payment.phtml" hash="9721d97eeba66f9a770fef5e5611e1d3"/><file name="shipping.phtml" hash="da10e274a474b9077991ccd73b438107"/><file name="shipping_method.phtml" hash="da72538919498704eb7c843702daface"/></dir><file name="progress.phtml" hash="c94a75e0c3a07cef70f8509a8f76d230"/><dir name="review"><file name="button.phtml" hash="aa355d166b5e2ef41a530cd38ad7bfa1"/><file name="info.phtml" hash="dbd0bfb07cb05938aea57a2d81ad4d46"/><file name="item.phtml" hash="6d3fd9e7e0fe9e83c2e9b17d683ce741"/><file name="totals.phtml" hash="eb054bae49687e421d0d7a99ad1395e1"/></dir><file name="review.phtml" hash="d2494b8faac5833e747a5d329ee4fab7"/><file name="shipping.phtml" hash="b3f76dbbec793a164adbf4a8049c15b2"/><dir name="shipping_method"><file name="additional.phtml" hash="5b40c047594e6bc64493bd0c9f070606"/><file name="available.phtml" hash="38c7b5af800735a273ed4300f6259700"/></dir><file name="shipping_method.phtml" hash="f709b5ab2b82acfea0379814ef0a0f8d"/></dir><file name="onepage.phtml" hash="2ab0d7efcfaa12666945c6fb6683634d"/><file name="success.phtml" hash="7bd2f09c084aaf5940ff1473eedfe259"/><dir name="total"><file name="default.phtml" hash="f14f728417f7d3e4469c22ac396d2996"/><file name="nominal.phtml" hash="201f568085d2381ce24372f31d135c3c"/><file name="tax.phtml" hash="caf415127cdb983c4db20cdaaa5d62db"/></dir></dir><dir name="cms"><file name="content.phtml" hash="047502566c3fe8b4f93d043e7c6ca7b5"/><file name="content_heading.phtml" hash="038b25f957a664940b6c44053041912c"/><dir name="default"><file name="home.phtml" hash="11c840f59024821bc16d609aaf84655b"/><file name="no-route.phtml" hash="7f730281d216fb8e2b9cf1c613a58482"/></dir><file name="meta.phtml" hash="5995926c3ef19c539fdcf766ee8b125a"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="fd98755f4354dcd5caef0b6e4c2a275c"/><file name="link_inline.phtml" hash="5d1b2f86bd10253d61347ac8b70fa363"/></dir><dir name="static_block"><file name="default.phtml" hash="b1d683caf67a2fe3e3a518e540ab0f8e"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="9c26788fba79068771527a3b55d26764"/></dir><dir name="core"><file name="formkey.phtml" hash="b483e152453aea655abd6b32e6cea51c"/><file name="link.phtml" hash="cd0b34977d0610129733714da63e5b3a"/><file name="messages.phtml" hash="a1270fef9dc17d55ef3355e53aadd49d"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="48474f750c4d06249e33a45cb3594f69"/><file name="hello.phtml" hash="75ba03f927822df90452471acfbc6d44"/><file name="info.phtml" hash="a769d17cf054553e62de61576e8fad6b"/><file name="newsletter.phtml" hash="9660207d1e1edb0a5aaf406c774c8f79"/></dir><file name="dashboard.phtml" hash="d193fd711052be429ca1399181a02b49"/><dir name="link"><file name="back.phtml" hash="1bc59121d95399210fd9605194a75504"/></dir><file name="navigation.phtml" hash="eecaabce0bad80bebb96f4328b9cadbb"/></dir><dir name="address"><file name="book.phtml" hash="8e397b723e33925e84c172787f96cf7f"/><file name="edit.phtml" hash="bca8070bd437884fe5fb287f3ac0f218"/></dir><file name="address.phtml" hash="d796424be4a5f0b78aa6fbb812dc54da"/><file name="balance.phtml" hash="64ee629de88f7c62810811aef91ff3a3"/><dir name="form"><file name="address.phtml" hash="e779470b565b5672804da05ecbfd34c7"/><file name="changepassword.phtml" hash="18081c977c4b609e549e2457ea721e17"/><file name="confirmation.phtml" hash="41d6d54c2479fc05fa543d4da95f14fd"/><file name="edit.phtml" hash="1480fe9d00458c52188f59a011f08a6e"/><file name="forgotpassword.phtml" hash="a8f674ce438eca25f73212582869305b"/><file name="login.phtml" hash="089374498c798ec477d913eca5cccf09"/><file name="mini.login.phtml" hash="af0ae17cb6f5cbe8f9fe4f047960ccd4"/><file name="newsletter.phtml" hash="9609611108727eb0da3caa1fc55ebe73"/><file name="register.phtml" hash="e59b5950e1be95eead82944e0d4e7957"/><file name="resetforgottenpassword.phtml" hash="49cd1ab9da2ba7fcef3dd87a10cf5dac"/></dir><file name="logout.phtml" hash="d722f44c13c93d5c7e7e8e661a8b25b2"/><file name="orders.phtml" hash="fee18b4c642a6872d85e230b1cf6aa2d"/><dir name="widget"><file name="dob.phtml" hash="d26bb6bdf6255a546bc0d0feadd07c5b"/><file name="gender.phtml" hash="e1c1e84526e0d828138d691fea66a69f"/><file name="name.phtml" hash="cdfd22c844178bd844268bc24711fd9f"/><file name="taxvat.phtml" hash="38a30e3597d82df1312eb5d96b7f60c1"/></dir><file name="wishlist.phtml" hash="1a7b837a1e0bca3ea52f3e045cc1d4d8"/></dir><dir name="directory"><dir name="currency"><file name="switch.phtml" hash="ad9d5270ecf99d4317c39f150cfee178"/></dir><file name="currency.phtml" hash="fe855e48d16739f02a8619f2ff0e1786"/><dir name="js"><file name="optional_zip_countries.phtml" hash="98beaa8fcc825322bdb658040a74c53b"/></dir></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="links.phtml" hash="3cc2aa5af9a3ef0599dbdb6a432067c0"/><file name="samples.phtml" hash="f3fcb6acf13d9494f6e03fb9c43ca789"/><file name="type.phtml" hash="2cd550caa6ad4fa8ad5a85fe866c85cd"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="df68bf59d6c309e740fc5d2c20529239"/></dir></dir><dir name="multishipping"><dir name="item"><file name="downloadable.phtml" hash="da30307e4094015c6bb0636743b0bef1"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="afa9337e189779fa488a16596f0613c9"/></dir></dir><file name="success.phtml" hash="8dcd2684f45ebe6a1c0c5721b4fde0d8"/></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="bd641989c4f15ffba6979e5543077fb6"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="8fcb56ba5ed072b66df774fc3ee3b3ad"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="18d8e386380612810de9b0ed58b94e55"/></dir><dir name="order"><file name="downloadable.phtml" hash="c284ffaf47aa57aa16d8c2300bcf5781"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="3919ec62cf0503ac47e29c63a50ffa43"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="c0154d4a0b457d0b0653cfad202de903"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="3fcd2acdf626890f1f3728a0302a9834"/></dir></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="6b8f9fd9d90516f905e77ae4d67079db"/></dir><dir name="invoice"><file name="items.phtml" hash="2015671f2b0783f31eb4c9cf23d298f0"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="301bb568dd49d23e64b4e27f37ed83b0"/></dir><dir name="invoice"><file name="default.phtml" hash="301bb568dd49d23e64b4e27f37ed83b0"/></dir><dir name="order"><file name="default.phtml" hash="0733cfb5bb20dab48aea5bf9d0b9d3dc"/></dir><dir name="shipment"><file name="default.phtml" hash="2a9f70fb9930544e088dd1c46fb88555"/></dir></dir><file name="items.phtml" hash="30ccc7a37a1a1785f64f1d5adc757bdc"/><dir name="shipment"><file name="items.phtml" hash="30dfb58464adf8b1375f418ca50612ba"/><file name="track.phtml" hash="c511504e3fc306b2b789b394bdbe456f"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="ab302e6de3cbbcebd15af1c4379465b8"/><file name="stock.phtml" hash="40ace473d1befa8c414eab76e528c179"/></dir></dir><dir name="giftmessage"><file name="inline.phtml" hash="efdd071094ec99f5eeca9937bf27b146"/></dir><dir name="googleanalytics"><file name="ga.phtml" hash="7256ba2ae247ee4c903830be0244ca89"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="a3599cb0ebdf93e01c26af390c745409"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="c912f262fb0a5b772ea65019abfbba85"/><file name="button.phtml" hash="b4dd099c7dddb6df029dcfaf3d821e74"/><file name="confirm-simple.phtml" hash="a9d444ade84c4ca75f268b9f7a05a67e"/><file name="confirm.phtml" hash="0a08da9c67864936218aab98ddb0aabd"/><dir name="form"><file name="login-simple.phtml" hash="c7423dee573dcef917c9b59a592f2dbb"/><file name="login.phtml" hash="0465f09d1089ec96a3d0175508d81105"/></dir><file name="head-simple.phtml" hash="b190bfd39d2bb2e9b3c2c8dc0df24cfe"/><file name="reject-simple.phtml" hash="97cc65037d339995c492056c746a8018"/><file name="reject.phtml" hash="8e2cbeb15837570bfb42bbca434e6d94"/></dir><dir name="customer"><dir name="token"><file name="list.phtml" hash="d2bc0e29bdf2263728fbecf94c961449"/></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="c6219fae7d5f414d9fb0a1ba856584d8"/><file name="2columns-left.phtml" hash="e22f4f8f009092ce042ba8ab752db82b"/><file name="2columns-right.phtml" hash="944445f22d58cd0689c4c2a992bb7f17"/><file name="3columns.phtml" hash="7aa8d11250007bb56d579a48858eb1b1"/><file name="empty.phtml" hash="b9e97e4579f3e212dccdd3f8f8032057"/><dir name="html"><file name="breadcrumbs.phtml" hash="abed58278fe993d00c697ce965fa79d3"/><file name="cookienotice.phtml" hash="52209b72e23b4db7b618face13b9bec6"/><file name="footer.phtml" hash="a85920178318e9d788f5802389c963e6"/><file name="head.phtml" hash="f8efa3eb87fbd40e60d758374c006368"/><file name="header.phtml" hash="084da06182c80432294fcd56228910e3"/><file name="notices.phtml" hash="98c290beab42ced33cf24b0ab060ed6d"/><file name="pager.phtml" hash="3fc0b7538a2ae3a3b40c226877ea2b17"/><file name="top.links.phtml" hash="1f2514e5b87c3bf6a677a5b48b37b696"/><file name="topmenu.phtml" hash="53ae5d2eaae7a7b40040e5816571dabf"/><file name="wrapper.phtml" hash="a5f22a8791fe43f4e131a77b524ec395"/></dir><dir name="js"><file name="calendar.phtml" hash="c8758318d8db21932436ccd32559da53"/><file name="cookie.phtml" hash="f9dbac9572cdb4679d515cc5e409c5aa"/></dir><file name="popup.phtml" hash="40b0611964124786557529cf1bbdb8e8"/><file name="print.phtml" hash="872e595bdb4472b8aaad0c8bd6c02b80"/><file name="redirect.phtml" hash="d8d4c798d7c4a39b0dc791413f761a77"/><dir name="switch"><file name="flags.phtml" hash="f9772b018b3bc21ffb53fbeb482faf7c"/><file name="languages.phtml" hash="096e89825eaa3ac0ef1edd17d603fb4c"/><file name="stores.phtml" hash="84b7cb6a64c1efd3e13ef01974951fc5"/></dir><dir name="template"><file name="container.phtml" hash="57e4e285221afc02cd6262920bad8638"/><file name="links.phtml" hash="24d8014ab0335abeba6d8cdcb2e3f9c1"/><file name="linksblock.phtml" hash="f4e8028923e0b370b31cf4f4ad65ce93"/></dir></dir><dir name="pagecache"><file name="cookie.phtml" hash="faa2b8867ce2af8e652e6fc659ae9da2"/></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="c5a9eddade3b3ebf82d550a291fa518e"/></dir><dir name="info"><file name="cc.phtml" hash="63064f2ac4d856a3926da7bcc1b66902"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="b0567be2497e1e49202d0efe4b42c36d"/><file name="schedule.phtml" hash="e4a6dbe9361aa0d5b7c34675bd5555ec"/></dir></dir></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="13dac89396ee15234944727abc54a4ca"/><file name="cashondelivery.phtml" hash="d6d9a34353c06df206f030e6f089b46c"/><file name="cc.phtml" hash="f912496e69f09380d69fcb415b203f6e"/><file name="ccsave.phtml" hash="3942fb97026a167b21e7781353968f06"/><file name="checkmo.phtml" hash="475a68d5c6bb4440f80be7d7522d452c"/><file name="purchaseorder.phtml" hash="d039229d0ef10e00b87ac44a8d687156"/></dir><dir name="info"><file name="banktransfer.phtml" hash="8c023d3d83cdd246e44662db5a2a1658"/><file name="checkmo.phtml" hash="939b9abf501b5abe296e314e95ecfeba"/><file name="default.phtml" hash="b60c813ebcc41abe40fcdce2fca1ea95"/><file name="purchaseorder.phtml" hash="43e6a9a75b6c04cc1087006e330f3066"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="8cd5b2a279fa6eab4b863bcb48441df0"/><dir name="express"><dir name="review"><file name="details.phtml" hash="5bf8dfc321932ffc3a32fcbe4dea2630"/><dir name="shipping"><file name="method.phtml" hash="fe617b23edb958508076b885091429ff"/></dir></dir><file name="review.phtml" hash="289493af5a2612f796b635740caea18d"/><file name="shortcut.phtml" hash="612db88906e00b82e6994b3bf11af3eb"/></dir><dir name="hss"><file name="form.phtml" hash="4dd1c4d63c88c326464059a2ba6833b1"/><file name="iframe.phtml" hash="f80f5c97933a541f10bff51fb9a2556f"/><file name="info.phtml" hash="8ee1a1cd5be756754ff0a3919651f156"/><file name="js.phtml" hash="afb50ce2acdfd3606056b5572e8e40d7"/><file name="redirect.phtml" hash="6a841311df6620bb4083a29e9799fd0e"/><dir name="review"><file name="button.phtml" hash="4ebb24ca6314327727838685de94f014"/></dir></dir><dir name="partner"><file name="logo.phtml" hash="ef1c4cd388f2d3015aa075c801f641df"/><file name="us_logo.phtml" hash="a293aa285ab156e56fc40a4c6e9badec"/></dir><dir name="payflowadvanced"><file name="iframe.phtml" hash="8a0618b30b8fe145a4b70fce0862c6fe"/><file name="info.phtml" hash="bbea0b3e617bcb1f99bc52da4f48dd60"/><file name="redirect.phtml" hash="df9a4cf4ea565409be6ce0abfa27a7ac"/></dir><dir name="payflowlink"><file name="iframe.phtml" hash="b7334fc968ad26635c954bc4646b901a"/><file name="info.phtml" hash="9d7d65ff0f4e81ca029a297b65cf53f2"/><file name="redirect.phtml" hash="255622341302357553c2d336351702c5"/></dir><dir name="payment"><file name="mark.phtml" hash="ad9e7b6aed53f70427a3b53434795dab"/><file name="redirect.phtml" hash="4439e94cd9d7f9ac7d7f260c354a6d14"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="a16823e5ae4028eda18a3d2764d7ba72"/><file name="login.phtml" hash="79b7b9f4c7ff93f3cd5dda3bb23ce162"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="64e5393b02f4ffa1a2b75e180b421a0f"/><file name="register.phtml" hash="cd1b7e688acb19d208e745ea07fe4710"/></dir></dir><file name="remember_me.phtml" hash="8c24521c0be510c1f4b00b3e2a8990d0"/><file name="remember_me_tooltip.phtml" hash="3245c94bfba248fa538aaf474139c797"/></dir><dir name="poll"><file name="active.phtml" hash="c8ae9f928f2422f713fb8ca8529d3af4"/><file name="result.phtml" hash="1104118b32a68d81b124f6f6a4c00838"/></dir><dir name="productalert"><file name="price.phtml" hash="8955f01fd0d809ba3e082f5bb2148570"/><dir name="product"><file name="view.phtml" hash="dfd543b25592732312ea60a5f0981c3d"/></dir><file name="stock.phtml" hash="8955f01fd0d809ba3e082f5bb2148570"/></dir><dir name="rating"><file name="detailed.phtml" hash="0f18784e9e391ee0f6c6e46cbedb8c98"/><file name="empty.phtml" hash="af102ec561aed67b8e10af2333a9e9d6"/></dir><dir name="reports"><file name="home_product_compared.phtml" hash="a4c113629b88a88a848c7463b11bd69d"/><file name="home_product_viewed.phtml" hash="2f6289cb5eb81d37793845cb4a671a49"/><file name="product_compared.phtml" hash="6efc7c3a05b430e1267a802590313deb"/><file name="product_viewed.phtml" hash="5c2aeaf081dc207eb442cf353e7e9a3f"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="8f4dc3fb547c1ede1317e683033b5065"/><file name="compared_images_list.phtml" hash="9e4aba44ef3814842ab9909035c4e377"/><file name="compared_names_list.phtml" hash="61187b1bfa06590895e2244c5e627408"/></dir><dir name="content"><file name="compared_grid.phtml" hash="118a2dcc14e530ca545d2ebc3572a4c6"/><file name="compared_list.phtml" hash="f6689eec42ad2ef38a1aff29a6a36013"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="449beafa8c2b7f19c1b4a171b531b530"/><file name="viewed_images_list.phtml" hash="964e87c3b4305560cb9979e251f684b7"/><file name="viewed_names_list.phtml" hash="21fa749e379df134083d3599853fc3e6"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="f5367281a3cb0a4ed0d5c4c4ba411d85"/><file name="viewed_list.phtml" hash="f50b2a2b2eef5710d129789f687b7467"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="97b142ce5b96aff3fb0ccc7d124e51d1"/><file name="recent.phtml" hash="e191691dcd2348daf9c03b349a611704"/><file name="view.phtml" hash="3d4e3b78d4e2803d44609aaaf52427fe"/></dir><file name="form.phtml" hash="9a9a10d4fada4c9dfe13cd6a67c6086a"/><dir name="helper"><file name="summary.phtml" hash="d252b54235705488a51deb3975c906a7"/><file name="summary_short.phtml" hash="76c530b821205c0231c90aad07f43f21"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="9dc77fc557d050415deb9a34841ed481"/><file name="list.phtml" hash="0afc05442e49bf61e546f4110cc4a3b8"/><file name="other.phtml" hash="498cf7b3ebe3e63b44423bb6ff7e5837"/></dir></dir><file name="view.phtml" hash="26584f68b240e9b4b497bc09af7704f8"/></dir><dir name="rss"><file name="list.phtml" hash="bb38db8ae793f424480552bb0062fc0f"/><file name="nofeed.phtml" hash="bcbad86e87ba8d8e383af663ab2add4a"/><dir name="order"><file name="details.phtml" hash="3ef080e4c4294d1c126085816be57920"/></dir></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="eee0c7de5eff96204bc85ee219a38a8e"/></dir><file name="agreements.phtml" hash="a3d21f536d2563baa8f43dff1f2bbbdd"/></dir><dir name="guest"><file name="form.phtml" hash="dc9521f68dae3cc50c5bf1924db6856b"/></dir><dir name="order"><file name="comments.phtml" hash="b24e72576471b858a98954728419832d"/><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="ff678b441b3907323d6ee79f590f009b"/></dir></dir><file name="items.phtml" hash="2935ba2044b93b19ac0387aa8776c44f"/></dir><file name="creditmemo.phtml" hash="6697414464051abbba91760c76a52994"/><file name="details.phtml" hash="3634e89096b28d7da3fa7bb31c248dc3"/><file name="history.phtml" hash="04f64bbbea99bc220aa44254408199c5"/><dir name="info"><file name="buttons.phtml" hash="dc597f7c3702b49beb2f0205005edee0"/></dir><file name="info.phtml" hash="deb1f431a246fdb8f9ab59f07db85210"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="8d3f98f1b23f4d336b24b1f2082cfa11"/></dir></dir><file name="items.phtml" hash="580798867451d2be895577e9df917d4d"/></dir><file name="invoice.phtml" hash="222559585e587c3c59b390df442d17e0"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="b59f4b96d584b4998d2d56e8b0d32336"/></dir></dir><file name="items.phtml" hash="b234f18ba7cb1b809bd79c2db6318ee0"/><dir name="print"><file name="creditmemo.phtml" hash="0cbade8f5bb48b4cda2713a548646446"/><file name="invoice.phtml" hash="ffbff984bec0130b59f1429113b24215"/><file name="shipment.phtml" hash="281ad1f819b38b8add1963935c67e4d0"/></dir><file name="print.phtml" hash="cdcf1a2d80c0a24e77358f9e305ecb63"/><file name="recent.phtml" hash="d7e587f30151a738ad3dc45942b2753f"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="334c76cf6fd53e38dde3a0a1adbcb594"/></dir></dir><file name="items.phtml" hash="aed0e6571b805f3e506072c7e096aee6"/></dir><file name="shipment.phtml" hash="4e47258f03ce9b3bb23fec10142383c4"/><file name="totals.phtml" hash="b4c4b90f73a7f2e78db6596a2f130362"/><file name="trackinginfo.phtml" hash="79c0d787679d7c08afe45fe8d7bec969"/><file name="view.phtml" hash="42520ef5354319a0c2a870e42011c077"/></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="dfba34995a96ad0130296e80822307f8"/></dir></dir></dir><dir name="recurring"><file name="grid.phtml" hash="a1ee0b42fdcf31a323ced56894e18c2c"/><dir name="profile"><dir name="view"><file name="info.phtml" hash="bbfb4560c0a12b7ae92bbf8a3c5ede13"/></dir><file name="view.phtml" hash="3d06e65f6ef00713639ebb63a1d20f45"/></dir><file name="profiles.phtml" hash="f871b656b1e3c4cd62d90ec4a82b0c4d"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="2de6fe3f5509bb471469746121e13286"/></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="d7737aa66069e5ba89d307ea5cbc78e7"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="545b1b085e925534fb57b7f0d9b2e1a7"/></dir><dir name="shipping"><dir name="tracking"><file name="ajax.phtml" hash="b3887982434363295b85ce5b6a9d5727"/><file name="popup.phtml" hash="d359f4a437ee65cbec37fe2bdf6ddee9"/></dir></dir><dir name="tag"><file name="cloud.phtml" hash="1064353c96441927c8cc5974fe86faad"/><dir name="customer"><file name="recent.phtml" hash="e6aa119fdced00f05c504f596ef74411"/><file name="tags.phtml" hash="31f66a60b2829a66a6b7085aa988abf9"/><file name="view.phtml" hash="7beeff9f94502373da1efa3c13d00792"/></dir><file name="list.phtml" hash="aad5490d857e0963b38d0597aa81b01b"/><file name="popular.phtml" hash="8cc87fd94313050d1f12afa5e4fa92a1"/></dir><dir name="tax"><dir name="checkout"><file name="discount.phtml" hash="9990886f9bdb861e69693dd5d5049c21"/><file name="grandtotal.phtml" hash="c9ce7e777e344a4a54dff5c223f867e6"/><file name="shipping.phtml" hash="e6939fdbb296ae139ebfe3ed9b1d8003"/><file name="subtotal.phtml" hash="eae01eae62bc88429e10f0075edc0a50"/><file name="tax.phtml" hash="bb6c5782fc36aa978c3427586cabbebb"/></dir><dir name="order"><file name="tax.phtml" hash="289b28549b5db31f4f78e2a0505ff8ee"/></dir></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="7d357329a8e63669533ffae58e2a9ea2"/><file name="tocart.phtml" hash="65e612fb7759208b448f0ec479354e4b"/><file name="update.phtml" hash="606592b211219af4629c8bdd0dab1133"/></dir><dir name="email"><file name="items.phtml" hash="08d36c72bcb1431ae25ebf31c8054519"/><file name="rss.phtml" hash="a5d26ad90a36388843107ce99ebcd57d"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="763a44d7d805edde0047e53c7a73fbb8"/><file name="image.phtml" hash="0ccb12256a9e9c42a5459cb3d8d8f9af"/><file name="info.phtml" hash="ce485afb798f89ad2844ef2043d84d51"/><file name="remove.phtml" hash="2bd046bdd9db0c7ae124af76c6648587"/></dir><dir name="configure"><file name="addto.phtml" hash="593c7fa73668e0077776b905a8359cbe"/></dir><file name="list.phtml" hash="b7e65fb738d20dec68d04e96f0e12250"/></dir><file name="options_list.phtml" hash="c82d0d5305de4b555c85e5955df9c472"/><dir name="render"><dir name="item"><file name="price.phtml" hash="036c3bb4ffc21669e53a61b20c3a28ca"/><file name="price_msrp_item.phtml" hash="d85dfb2ff9041f2384c302156c2a61a3"/><file name="price_msrp_rss.phtml" hash="5d4a5b9ab382ba0c04a616cb54721c69"/></dir></dir><file name="shared.phtml" hash="8024a2edfef4cdcb86f5546610093829"/><file name="sharing.phtml" hash="0ccd4b19e43b3b582fad51e299d5f245"/><file name="sidebar.phtml" hash="4f329b8e4584e88c6b789d8993715457"/><file name="view.phtml" hash="b072b63099b8f7d583af3ee66ec355bb"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="email-inline.css" hash="ed63c4b0607b5f3f7077f70d2362cfc4"/><file name="email-non-inline.css" hash="bc5ea1e8344f0daf2dd5691a981a2e86"/><file name="widgets.css" hash="ed3ba13dd93e7695d9c8072ebfc83732"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir></dir><dir name="js"><file name="bundle.js" hash="f0762fb8bf9ded546d5f2da29a3e4404"/><dir name="checkout"><file name="review.js" hash="65d792db44438e7181803c6398f492ab"/></dir><file name="giftmessage.js" hash="a5697ed33590050bb2582cec39f29df2"/><file name="ie6.js" hash="a28f2c74f4ba1b73e95200f195a69f3e"/><file name="msrp.js" hash="2077610ec1f7e9e5f38b7474540919e4"/><file name="opcheckout.js" hash="d77144aa2e47850b2b59903615a894ce"/></dir><dir name="lib"><dir name="prototype"><dir name="windows"><dir name="themes"><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="26094605a693e4c7e647ae2df4554048"/></dir></dir></dir></dir></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Interface_Frontend_Default-1.9.2.0.xml var/package/Interface_Frontend_Default-1.9.2.0.xml | |
--- var/package/Interface_Frontend_Default-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Interface_Frontend_Default-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Interface_Frontend_Default</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Default interface for Frontend</summary> | |
- <description>Default interface for Frontend</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:05</time> | |
- <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="etc"><file name="theme.xml" hash="b2a8d19b50efdccb7294cb2fe0640bd9"/><file name="widget.xml" hash="67670810b3ec9b2e48b3c21fbc121f05"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="793e1ff86039f24caff6fad87a094fa1"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="oauth-simple.css" hash="0a5bdcae930801e9a5c3b3d5519cacdf"/><file name="print.css" hash="ed56b5835ca1d1124d8591f8361bf584"/><file name="styles-ie.css" hash="97e566aaac03cbbbf0282589521cd0dc"/><file name="styles.css" hash="646f3d4a0039bd64e82827924e4fb723"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="home_left_callout.jpg" hash="ee99a5586cf52e85c986d1275958a7da"/><file name="home_main_callout.jpg" hash="e6d1c119d5b24a5916fe394cb4b5cdc3"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.0</min><max>1.9.2.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Interface_Frontend_Default-1.9.2.1.xml var/package/Interface_Frontend_Default-1.9.2.1.xml | |
--- var/package/Interface_Frontend_Default-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Interface_Frontend_Default-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Interface_Frontend_Default</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Default interface for Frontend</summary> | |
+ <description>Default interface for Frontend</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:09</time> | |
+ <contents><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="etc"><file name="theme.xml" hash="b2a8d19b50efdccb7294cb2fe0640bd9"/><file name="widget.xml" hash="67670810b3ec9b2e48b3c21fbc121f05"/></dir><dir name="locale"><dir name="en_US"><file name="translate.csv" hash="793e1ff86039f24caff6fad87a094fa1"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><file name="oauth-simple.css" hash="0a5bdcae930801e9a5c3b3d5519cacdf"/><file name="print.css" hash="ed56b5835ca1d1124d8591f8361bf584"/><file name="styles-ie.css" hash="97e566aaac03cbbbf0282589521cd0dc"/><file name="styles.css" hash="646f3d4a0039bd64e82827924e4fb723"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="best_selling_tr_even_bg.gif" hash="5022d648379090e306f00cd64738b146"/><file name="best_selling_tr_odd_bg.gif" hash="926622704f53796801bb5d097e116c8e"/><file name="bkg_account_box.gif" hash="dd98174b6e3e5605a3f9551a59c66841"/><file name="bkg_block-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-currency.gif" hash="bfaad1b64557c05ad6f4b124ad3d3532"/><file name="bkg_block-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-layered-dt.gif" hash="ba8229068657b80f2c42111c5a1a307e"/><file name="bkg_block-layered-label.gif" hash="14687dfa3921cfd12d2149c1497d9765"/><file name="bkg_block-layered-li.gif" hash="753ebb76a4fc2b5b6915c536fcf4d487"/><file name="bkg_block-layered-title.gif" hash="c92e29b30af7abf4e0bc3f714a246f55"/><file name="bkg_block-layered1.gif" hash="607167f198572e83a0e728b6b9383a70"/><file name="bkg_block-title-account.gif" hash="a64f1df5a7e3d0f6a58b017f74311cb1"/><file name="bkg_block-title.gif" hash="f8c1f130ad69464fe7aff2f589b2ec75"/><file name="bkg_body.gif" hash="82bfc5bfe346c8e974cd33b1314b0acf"/><file name="bkg_buttons-set1.gif" hash="2c641e927bc83156b7004ea37920513c"/><file name="bkg_checkout.gif" hash="11258fe49feff5513c9608f2ea486776"/><file name="bkg_collapse-gm.gif" hash="37418f23e65006dcfde07ce9b249e057"/><file name="bkg_collapse.gif" hash="2333c68e38163ed4656da82b9bcf362b"/><file name="bkg_divider1.gif" hash="260ebae91ffb1b7c663906b29a069925"/><file name="bkg_form-search.gif" hash="2ca36eb80ea705e063409153f3821f78"/><file name="bkg_grand-total.gif" hash="10f1c3d82d78170706fa3e9c4baa7e04"/><file name="bkg_grid.gif" hash="a6f64fedbac51fb1b86184cd488cc4e6"/><file name="bkg_header.jpg" hash="0211c47be1493bd0ec72949c47932b81"/><file name="bkg_login-box.gif" hash="5538675d7f1c35d96a2b8013948f42a6"/><file name="bkg_main1.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="bkg_main2.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="bkg_nav0.jpg" hash="f9ac3f31e293cf075471d2d3fe07353a"/><file name="bkg_nav1.gif" hash="f4e26840c8cca0e74aba5b810341c5c0"/><file name="bkg_nav2.gif" hash="a64c8f5165b239e432d26a62ae5f79b6"/><file name="bkg_opc-title-off.gif" hash="f69b40b5331ab3760f54d038daf287eb"/><file name="bkg_pipe1.gif" hash="7852290f6a443000ead96b8cec5cd7c7"/><file name="bkg_pipe2.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="bkg_pipe3.gif" hash="11bfac1e590f0c77fb12f37d7f05cd3c"/><file name="bkg_product-view.gif" hash="7078a7f2827156d5ae0a1cb59da3c418"/><file name="bkg_product_collateral.gif" hash="1d4d6b22e5108aefae52709d3934f397"/><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/><file name="bkg_sp-methods.gif" hash="17d68b5449adaa87dafc62ae0afa1b9a"/><file name="bkg_tfoot.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_th-v.gif" hash="b0d17555dfc6060941e0c067718189df"/><file name="bkg_th.gif" hash="f249911b08f2822fc0b561b7f98575d2"/><file name="bkg_toolbar.gif" hash="fb7ed019476eaa1643af922b59ede4fb"/><file name="btn_checkout.gif" hash="d2060501e14e86c29e28137130e5726e"/><file name="btn_edit.gif" hash="df3565eb4e4d0dc578201df60de54b47"/><file name="btn_gm-close.gif" hash="346e26eece27449a2f224aef76ae372e"/><file name="btn_google_checkout.gif" hash="843d75249ce05b5d87ca5419f37b1c3b"/><file name="btn_paypal_checkout.gif" hash="6edd61270b7b5632eafad10557129114"/><file name="btn_place_order.gif" hash="d35219f86ae2c983ee1a31557e37b612"/><file name="btn_previous.gif" hash="63473a1520a73bb0c9b47b685d17cd21"/><file name="btn_proceed_to_checkout.gif" hash="4daac687b514fecfd1068539500ac3d7"/><file name="btn_proceed_to_checkout_dis.gif" hash="9e152c01d5d88f690dc52cb62428f3b6"/><file name="btn_remove.gif" hash="6182e723aa2a253dc6cf334a3dfaaa84"/><file name="btn_remove2.gif" hash="234bddc4c5878c5ef16407a944824236"/><file name="btn_search.gif" hash="2d93b43c0a1c1182358677661e26a978"/><file name="btn_trash.gif" hash="bcb22f558a0eb32243a2a36645189e9f"/><file name="btn_window_close.gif" hash="c83f3cbbb2aedfc580dff78d5cfb63ed"/><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="cvv.jpg" hash="e27210d810bbab732935d9410936ef87"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="free_shipping_callout.jpg" hash="cbf2e494ef7ca50acf8826321d739559"/><file name="grid-cal.gif" hash="b1468e5239504974c689eea5d93f86d4"/><file name="home_left_callout.jpg" hash="ee99a5586cf52e85c986d1275958a7da"/><file name="home_main_callout.jpg" hash="e6d1c119d5b24a5916fe394cb4b5cdc3"/><file name="i_arrow-top.gif" hash="3dbb0584e8eb1d96cc3d3c40c17d7aaf"/><file name="i_asc_arrow.gif" hash="40aa554212d6a1f60593c27d78d85fa3"/><file name="i_availability_only.gif" hash="bca1f00a50864171ad98317b778e869c"/><file name="i_availability_only_arrow.gif" hash="0cf32b72fefc94b89b74e4f3f02c2e93"/><file name="i_block-cart.gif" hash="cc19e21f9c89b70cc10354ff588ca8ab"/><file name="i_block-currency.gif" hash="643024bcae5ece554fdbbc041aeb297c"/><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_block-poll.gif" hash="52d778dddbf48b8d04226bee9370a7ef"/><file name="i_block-related.gif" hash="4e277173b6372b1a90b0f19e0388ad54"/><file name="i_block-subscribe.gif" hash="9e5fee06a543742045118a95f2debcb8"/><file name="i_block-tags.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-viewed.gif" hash="67d1255c2c3e9ed1a5c845f8d4e4a3ba"/><file name="i_block-wishlist.gif" hash="8f8cda89ca20ba4a9b2f8c91f73fdff9"/><file name="i_desc_arrow.gif" hash="92fd194bfae4ce5ae3354e1e47d7ac7d"/><file name="i_discount.gif" hash="908d44da90de5e54185764d093bbdb77"/><file name="i_folder-table.gif" hash="bf006ddb591d8ac95d2e895bf2fdbc8d"/><file name="i_ma-info.gif" hash="91259557447ee80eb1110fe0c85cb3b5"/><file name="i_ma-reviews.gif" hash="859c97695ec396c0b284a0c3c7c416ad"/><file name="i_ma-tags.gif" hash="1e83e3b0b677c92b3aa8a252268f7b86"/><file name="i_msg-error.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="i_msg-note.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="i_msg-success.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="i_page1.gif" hash="704f7d4eccbdf9cabbad7770f18856ff"/><file name="i_page2.gif" hash="57a04ca584e05e28dc94c7e68f0af62e"/><file name="i_pager-next.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="i_pager-prev.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="i_print.gif" hash="0aed138181495642e9ab29e55d194d40"/><file name="i_rss-big.png" hash="6cf70e7c52a3f3d7b833ccadb041a555"/><file name="i_rss.gif" hash="e5bbc388d818c142868b4a1df0b48793"/><file name="i_search_criteria.gif" hash="cf67b9cc5c311ae3f99e68cd29ae17be"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="i_tag_add.gif" hash="a736baa992aa55b6fb71e8742a04dc82"/><file name="i_tier.gif" hash="c5189e25afeb7c1a8c4902a42832593e"/><file name="i_type_grid.gif" hash="a1e5d8ac36fb2891ea16e729b95c552c"/><file name="i_type_list.gif" hash="61333d383ec142b8d270abe77324aa5d"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="logo_email.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="logo_print.gif" hash="8de347192e0524cff7a69e4020182dbd"/><file name="magnifier_handle.gif" hash="238fbdd7959f517db11c6f57ee4daaf4"/><file name="map_popup_arrow.gif" hash="6383b40a9e7bd3c95260bef4fbb1b163"/><dir name="media"><file name="404_callout1.jpg" hash="834e53a03e2921a2fd3c135c0c7189df"/><file name="404_callout2.jpg" hash="016984b4a1579df34147f9407098db73"/><file name="about_us_img.jpg" hash="726f36dd75b5a709a1a14acab1660188"/><file name="best_selling_img01.jpg" hash="5e7337a4061a636df8ee4bf979a092ac"/><file name="best_selling_img02.jpg" hash="b9a49c0964938ec72fb834cb166b9352"/><file name="best_selling_img03.jpg" hash="e3581487fb4589baecc553f2ce8d5247"/><file name="best_selling_img04.jpg" hash="7e59bf99f5f813e327595c52d3320174"/><file name="best_selling_img05.jpg" hash="e396892daec7ffcf7244082b3e596911"/><file name="best_selling_img06.jpg" hash="2702839637efbe0fd0a4bad41cd6a551"/><file name="cell_phone_landing_banner1.jpg" hash="b25562360fc470f1091ca7ea014a3290"/><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="electronics_cellphones.jpg" hash="8f6badbc32ce806c6109c788df6ef5e9"/><file name="electronics_digitalcameras.jpg" hash="953b8d7db6f0bdcd53b1d6b1386962b9"/><file name="electronics_laptops.jpg" hash="e050e92d72000e6bdc763a7b5888ec8a"/><file name="furniture_callout_spot.jpg" hash="28edc7d72486ab2362324995550d87af"/><file name="furnitures_bed_room.jpg" hash="b8616c5bffc23a92d2a1c97dae57b262"/><file name="furnitures_living_room.jpg" hash="2663737f3997cb1a49ce24d07dc8aefb"/><file name="head_electronics_cellphones.gif" hash="a69425966444ea597fb7c629114d5165"/><file name="head_electronics_digicamera.gif" hash="bde3cec3fc16b2d0ae57e7783eb00652"/><file name="head_electronics_laptops.gif" hash="b2c55387ffa92277315bdedeb4cb9b8f"/><file name="laptop_callout_mid1.jpg" hash="4ffb50bd3b7b32a78fd059b1571c202e"/><file name="laptop_callout_mid2.jpg" hash="662cf3881b06b090e9500496b19b03e4"/><file name="laptop_callout_mid3.jpg" hash="22aa71ecfe0aa9b6936a1eddb62d889e"/><file name="laptop_callout_spot.jpg" hash="2e469d1bd871355eaef6076487a973db"/><file name="shirts_landing_banner1.jpg" hash="4acc8620b009d835e5c25587671ea25d"/></dir><file name="np_cart_thumb.gif" hash="e9fdd943e0947e15f0638506f477e358"/><file name="np_more_img.gif" hash="ace357bfe3e81ffb62137cd5b25ae5e1"/><file name="np_product_main.gif" hash="d0cccda76de50efa025215ce85dacb1c"/><file name="np_thumb.gif" hash="e46270c89358ecc8341d1565c14644b8"/><file name="np_thumb2.gif" hash="8502866cdabc5c74aca7d7bd32a06a03"/><file name="opc-ajax-loader.gif" hash="e805ea7eca1f34c75ba0f93780d32d38"/><file name="pager_arrow_left.gif" hash="75973b020105dccbaf34e49d7852552d"/><file name="pager_arrow_right.gif" hash="ed4d6640624c2b6edeab4c212314bd6d"/><file name="ph_callout_left_rebel.jpg" hash="0ce8ad0026d8b8a83ed7acdf6209129b"/><file name="ph_callout_left_top.gif" hash="f17a036d75e5065eb76bafbb2c8ad7ff"/><file name="product_zoom_overlay_magnif.gif" hash="83834893e162221d6d9257fe67847370"/><file name="slider_bg.gif" hash="87bc1b46d87de4f6252c7216216627c3"/><file name="slider_btn_zoom_in.gif" hash="ef0fc67f77f30827ee67f4e744b60781"/><file name="slider_btn_zoom_out.gif" hash="68b3d1c28dc5aec4f6b64d70a6996b6f"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/><dir name="xmlconnect"><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Interface_Frontend_Rwd_Default-1.9.2.0.xml var/package/Interface_Frontend_Rwd_Default-1.9.2.0.xml | |
--- var/package/Interface_Frontend_Rwd_Default-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Interface_Frontend_Rwd_Default-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Interface_Frontend_Rwd_Default</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>This is a RWD themes base</summary> | |
- <description>This is a RWD themes base</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:05</time> | |
- <contents><target name="magedesign"><dir name="frontend"><dir name="rwd"><dir name="default"><dir name="etc"><file name="theme.xml" hash="d00dd83bac2155a76a9f004ceeba2aa7"/><file name="widget.xml" hash="b26f0daa5ea35fae7def54e530e4fc6a"/></dir><dir name="layout"><file name="bundle.xml" hash="d4d6fd3d43bab191589be5dc04de3af9"/><file name="catalog.xml" hash="cf56a0853b8a4672c340074d6ce7d4ec"/><file name="catalog_msrp.xml" hash="761904c9772b9f9f87d168eaa5a3f35e"/><file name="catalogsearch.xml" hash="7577994c03f6e57aa50a2f9b9608fd06"/><file name="checkout.xml" hash="7a3227db21193c1f7abc1a293ee89637"/><file name="cms.xml" hash="ab13bce455c0ebdc6b7ac66973cca084"/><file name="configurableswatches.xml" hash="da5a91b2cd46e37c18f0ce23b5668d5d"/><file name="contacts.xml" hash="0feca543b963f4643b33ddff9d012287"/><file name="customer.xml" hash="becba768ba7cf0aa2f2133d77734c97c"/><file name="directory.xml" hash="116dba3caebbb645f4a4740d6203a809"/><file name="downloadable.xml" hash="dc03bfb05c6ad52ba2cfa26fc05ef80a"/><file name="newsletter.xml" hash="36464d3b9d5627a97d53cf9b5bb59038"/><file name="oauth.xml" hash="7ecd522b4625a53bd29c36f7b6708be2"/><file name="page.xml" hash="970456dbe2ff4ef2d351f6f1420bbd6a"/><file name="paypal.xml" hash="71611cd614aa622c50809659fc141b24"/><file name="persistent.xml" hash="668e57da0f663acb02b36605aecde881"/><file name="review.xml" hash="e44ec617f8ad50a03ba61ab3a7f1a838"/><file name="rss.xml" hash="a96fc7aa525d5ee33ad417826cec2658"/><file name="sales.xml" hash="c9910bae1a47eb29eb1bbf3e0b720678"/><file name="wishlist.xml" hash="868da261c6eb64da2e3adeca3a390b28"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="50ae88ef4535a9ca0e8e46799288f413"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="bundle"><file name="availability.phtml" hash="39f9ec1e37f2d2d838596dd2892b1005"/><dir name="option"><file name="select.phtml" hash="3f51c006c554b18cc60f6229461cad5e"/></dir></dir><file name="bundle.phtml" hash="0abf2442f49382f83dd62c31073e9040"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="ab0adcbb666002cc70acdf6ac7021a12"/></dir><dir name="invoice"><file name="default.phtml" hash="d6c0ebeec5e10ffbc506763491b66845"/></dir><dir name="order"><file name="default.phtml" hash="abde26e36f098e3ce5108c5cc80bd254"/></dir><dir name="shipment"><file name="default.phtml" hash="b9c8dc719be1a634e0f448e6b4b47901"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><file name="renderer.phtml" hash="a8e80c1633e3ee32a8c9168c9d9e8383"/></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="872875bf33960b1a1e9ba6859f46600f"/></dir><dir name="catalog"><dir name="layer"><file name="filter.phtml" hash="a44247deec06eb5911f3df6d843d956b"/><file name="state.phtml" hash="eda8e9eb4f713c9da03ba0a54a25212a"/><file name="view.phtml" hash="2ca8dd0e3f146585d07e6b382e8a4eee"/></dir><dir name="msrp"><file name="popup.phtml" hash="31f2008ce2ea58e81e8414645f0ede64"/></dir><dir name="navigation"><file name="left.phtml" hash="bfb71cd13382c16524db2b0d0eab7185"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="5b808fbf9a8bddb979febcfe2609da94"/><file name="sidebar.phtml" hash="62145a39f96743f5785b3627547dc9f7"/></dir><dir name="list"><file name="related.phtml" hash="0d70beffbe11222b2c1c2183ba56b63c"/><file name="toolbar.phtml" hash="c6a3942f398c592827bbbdbb0690a01b"/><file name="upsell.phtml" hash="450003d58ff096dc379ab9793b98c9dd"/></dir><file name="list.phtml" hash="634564c3159f865577a09d34ee0ca5e3"/><file name="price.phtml" hash="ca4e9a03d5ecdac3d35196e4aee7380c"/><dir name="view"><file name="addto.phtml" hash="4b275d89973855e5a3a6088e276f43f8"/><file name="addtocart.phtml" hash="6fa2ea19134bd838dd5bd7c6de9e6843"/><file name="media.phtml" hash="51aa2d8c08d1be4ad9f979a0730bbbb9"/><file name="sharing.phtml" hash="7b9fb533933a5de636bbfa625e25369a"/><dir name="type"><dir name="availability"><file name="default.phtml" hash="4e0b08dad4bb489e8c124308cc56dd4e"/><file name="grouped.phtml" hash="7582181a90bdfb695d816fe895ed399b"/></dir><file name="default.phtml" hash="ca7f231b33e607ffe8f2f6dd4bd96948"/><file name="grouped.phtml" hash="36501822168e99019f702312a293d7ee"/><dir name="options"><file name="configurable.phtml" hash="71811dffa6131fbb179bc06ac1f6e3f6"/></dir></dir></dir><file name="view.phtml" hash="a7f35b24e370ab77185164cdde16c259"/><dir name="widget"><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="8461c192eab496f4cc024946ea4a5b18"/><file name="new_images_list.phtml" hash="cbcb98d6ad1982d3fd6bb8004f0ef1c1"/><file name="new_names_list.phtml" hash="9cae45c356c126e715273b3a9dd5708c"/></dir><dir name="content"><file name="new_grid.phtml" hash="1215c91de68cb635ee0228e2be9160da"/><file name="new_list.phtml" hash="7317df9d1635324f4aa66bf390524ed6"/></dir></dir></dir></dir></dir><dir name="cataloginventory"><dir name="stockqty"><file name="composite.phtml" hash="778855bedbe85cc965ce4a025ced04ea"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="49a326d7a04cd24f76c089a571f227f7"/></dir><file name="form.mini.phtml" hash="936f335929a1c1f3bb8d20ea274cf9be"/><file name="result.phtml" hash="ea8f7555b6ff6c7af0bdcffec55d0027"/></dir><dir name="centinel"><dir name="authentication"><file name="start.phtml" hash="fe6c94ec3c92840a58b319d5038ca0d9"/></dir></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="8893925e57b7d01c0c3b1cbe46965f2f"/><file name="crosssell.phtml" hash="b9253440450cdb8609871a0d23bf3074"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="00a773bf6b7d550cecbcb4afd5f84b7c"/></dir><file name="default.phtml" hash="581d3d31fef83f660942431922293aff"/></dir><dir name="minicart"><file name="default.phtml" hash="4892d89135eda067ecd9d0a6efdcf89f"/><file name="items.phtml" hash="1547e9d22a2f871b28f265d0a3305876"/></dir><file name="minicart.phtml" hash="c160af1af285428f466bdb1cd46ac13e"/><dir name="render"><file name="default.phtml" hash="5c1c460c6c632c5c351e7901427fffe4"/><file name="simple.phtml" hash="025e6bbb36e41df2128c1c95b36ba231"/></dir><file name="shipping.phtml" hash="3080bd1504cae62262062058863e1838"/><dir name="sidebar"><file name="default.phtml" hash="7cda83cea687b899318a3b4133c62408"/></dir><file name="sidebar.phtml" hash="390436e51cacfa0ccce28544765f0962"/></dir><file name="cart.phtml" hash="c625c2d94711e014615486b7607b6e45"/><dir name="multishipping"><file name="addresses.phtml" hash="be9c2953dbab472373de481c8e8b65d4"/><file name="billing.phtml" hash="aa92a53b4c541317b9e6815f5b8a1f28"/><dir name="item"><file name="default.phtml" hash="243e0e6b950f06db8c9c1f7d1ef24590"/></dir><dir name="overview"><file name="item.phtml" hash="9318047ee9189440d7dc1f7a0ca2d917"/></dir><file name="overview.phtml" hash="eaa4630ae9f0bafe9f102e6b1d19eb95"/></dir><dir name="onepage"><file name="payment.phtml" hash="96265c46bb4a202561fbd269636a663c"/><file name="progress.phtml" hash="7445ce55ebe83156bfdf1180bc35fedd"/><dir name="review"><file name="info.phtml" hash="a515a973ebc0181a14d45a3cbe2c2fc9"/><file name="item.phtml" hash="b88883933d696481306734390dceee02"/></dir><file name="shipping.phtml" hash="d4136b9aa6094edd4bac70fbaac89f25"/></dir><file name="onepage.phtml" hash="e3a4b58790c9f9802aff1f7896bd9c72"/></dir><dir name="configurableswatches"><dir name="catalog"><dir name="layer"><dir name="filter"><file name="swatches.phtml" hash="fe55df1df2f30b2e3ebac87bf8c0dbdc"/></dir><dir name="state"><file name="swatch.phtml" hash="fb11cbae1f603017c4e85a8692ec9752"/></dir></dir><dir name="media"><file name="js.phtml" hash="f7269d9211f654f608195c8f1ce891b2"/></dir><dir name="product"><dir name="list"><file name="swatches.phtml" hash="e41711ec411e3be7a29caaf62ac9129c"/></dir><dir name="view"><dir name="type"><dir name="configurable"><file name="swatch-js.phtml" hash="60914817ac4db7f54acb875efb106e4f"/></dir><dir name="options"><dir name="configurable"><file name="swatches.phtml" hash="c8d44e23f337facd225649dc17cf038a"/></dir></dir></dir></dir></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="2c42bb9ff229dfbd556f5e333982e825"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="42c81b3a4844d65fcaf5622ce03a5109"/></dir><file name="dashboard.phtml" hash="1330c69eb0c5ba4433943a288e9407a0"/><file name="navigation.phtml" hash="dcec943b87e531c7b1a347ce9965ff45"/></dir><dir name="address"><file name="edit.phtml" hash="ecd1ccd67442bf76df64952d8f8c93ee"/></dir><dir name="form"><file name="address.phtml" hash="3346cebdea9573ce3a5f500e8b6004a5"/><file name="changepassword.phtml" hash="8175021062d265051b59bf5622aba31f"/><file name="confirmation.phtml" hash="6cca7f19f7001e20a1128c633cfa1105"/><file name="edit.phtml" hash="34c2e0a0992d4353fb513b573e97dd4e"/><file name="forgotpassword.phtml" hash="adab27b320754d03d6db2517db9e3c86"/><file name="mini.login.phtml" hash="953db146a0c5a8f668b5b5d1be61f648"/><file name="resetforgottenpassword.phtml" hash="88b81a7972ae049b3fddd990507c6cb6"/></dir></dir><dir name="directory"><file name="currency.phtml" hash="39bcea13a67e2503b89cf8605c5f9383"/></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="type.phtml" hash="4f2f1cc4380dd935ef53c07ce9ebe11e"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="235ba1ef53629e6e0c860c822f009d73"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="12cb20296cf903662af327800da0ae24"/></dir></dir></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="4e4c835a56504ad68b8591ef61797744"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="2bb7a54f7002427442d81ed57b5ad6b1"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="8c6077b5646124943b74fa7c4ba7f848"/></dir><dir name="order"><file name="downloadable.phtml" hash="b9d771d574dfebd99a24c2336f8285d7"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="8b9ea75c91389c6cd847ab0ecf4c5bf8"/></dir></dir></dir></dir></dir><dir name="email"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="5f80ecea7ccdcf068e45303a6dcebf72"/><file name="new.phtml" hash="3e967ea93be598baaada7a78507b1434"/></dir></dir><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="f79cb5ed65ce3927b1d323479b879418"/></dir><dir name="invoice"><file name="items.phtml" hash="d4a446c25eda630196fa52072599722b"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="917301b99bb27e5495f436b91fc16ccc"/></dir><dir name="invoice"><file name="default.phtml" hash="917301b99bb27e5495f436b91fc16ccc"/></dir><dir name="order"><file name="default.phtml" hash="a883309f060bfdef5aa07a74a620032b"/></dir><dir name="shipment"><file name="default.phtml" hash="9ee4f1a8b3662422eb05ec592e105af2"/></dir></dir><file name="items.phtml" hash="3f43664a56eccd336ae9f93644a9d889"/><dir name="shipment"><file name="items.phtml" hash="fda23599e3bcf1f3538cb74e7acfa1c4"/><file name="track.phtml" hash="3d06d28e690ad0997090b2a422080a8c"/></dir><dir name="totals"><file name="wrapper.phtml" hash="0559a432acd7beda44e5b227bff41211"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="007c4d6639335482e7082da23a527cb5"/><file name="stock.phtml" hash="1d5a4e6e3c2cbbdd4f54512c85547db5"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="3a993dd52f34d23aa9e58d360971a309"/></dir><dir name="oauth"><dir name="authorize"><dir name="form"><file name="login-simple.phtml" hash="f9c0fb94aba9700cb862f0248baec9a1"/></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="0217d29c5ce30c4241b956f4bfcfe089"/><file name="2columns-left.phtml" hash="bebed06fd537e396f05ebbc0e4291d36"/><file name="2columns-right.phtml" hash="a1c08bc7d7fbb9d00988bb9ecdaa85e1"/><file name="3columns.phtml" hash="6f971e2518978701bdf7ad1bb799ace3"/><file name="empty.phtml" hash="f420bff4c02fa84f98d2c1ce09dce4ff"/><dir name="html"><file name="footer.phtml" hash="4a3efd641403e108261b3b6b81cd71fc"/><file name="header.phtml" hash="115ecf5a9042ffcce1536fb10df32914"/><file name="pager.phtml" hash="e16cd50199a2d91c48fbf72ae22600cc"/><dir name="topmenu"><file name="renderer.phtml" hash="7cee75df8e011107ff49117324a2e833"/></dir><file name="topmenu.phtml" hash="5a3237e12cb48e9b77206485f9e46499"/></dir><file name="popup.phtml" hash="807903de3c55861253a6e7a941c246eb"/><file name="print.phtml" hash="f292ecc352173d579d449794a379dc5d"/><dir name="template"><file name="links.phtml" hash="1f8ed0b51c26baf0cc51f864283816c5"/></dir></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="a80f418e2c5fce9cc6b758d9d03c195f"/><file name="ccsave.phtml" hash="d7b2ee5a098f61419e8ab7b423d07be7"/></dir><dir name="info"><file name="default.phtml" hash="182a8a5c7ae90f701da3d26959ae88a5"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="d4bd3e63c77ebec817c9958a7b66c143"/><dir name="express"><dir name="minicart"><file name="shortcut.phtml" hash="821f849045dbd9158c117fd69b9295bd"/></dir><dir name="product"><file name="shortcut.phtml" hash="3cdd24f3af46ef4760ca20885f077d0a"/></dir><dir name="review"><file name="address.phtml" hash="4f2f7b2cdfeb4e3e8f4c9de45e10c03d"/><file name="details.phtml" hash="559a732d462bfb741d03ec05c043d50e"/><dir name="shipping"><file name="method.phtml" hash="a1a0836340cae4530e9d035dfec315da"/></dir></dir><file name="review.phtml" hash="abbb96284c22d9c451500333bc9abc98"/></dir><dir name="partner"><file name="us_logo.phtml" hash="2c3eccffd8d1d79f40679cbf4efd85ed"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="85aa6cfa48f500ff3e54beaf27c2fadf"/><file name="login.phtml" hash="634989681520d255b70f738acca3546a"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="44f01752af72cceb3bf5fff3a5a23cba"/><file name="register.phtml" hash="d4b2d37e7672f7f7d31271fa36c9be85"/></dir></dir><dir name="header"><file name="links.phtml" hash="eb1a3675863fd60601a83ba37aba1a94"/></dir><file name="remember_me.phtml" hash="ecb29a132a145258c5ccf8303fbf7825"/><file name="remember_me_tooltip.phtml" hash="c410dcf15883faca8c1fda017586378e"/></dir><dir name="rating"><file name="detailed.phtml" hash="ac029753c6ad21473faa8f7f1e6464e7"/></dir><dir name="reports"><file name="product_viewed.phtml" hash="868f17fe24d87fce8fc6281c65fa6825"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="98b5a02b4d0e9f24e2128199b7ff8ac9"/><file name="compared_images_list.phtml" hash="b8018d02e1c808983b9da2fcedbf380b"/><file name="compared_names_list.phtml" hash="4b3cc7169338ceb224b3bf134767d506"/></dir><dir name="content"><file name="compared_grid.phtml" hash="bcad46bcab98be82e219362621e37491"/><file name="compared_list.phtml" hash="6d748da0752c62ccbda731d294ce5065"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="211165fdd25df6912981d4b9abef97d2"/><file name="viewed_images_list.phtml" hash="48fdb9f1cb78cd28f30815abd9e8901a"/><file name="viewed_names_list.phtml" hash="5337debf0ddc6b5fec96cdfa543f1747"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="e8e30d08f535a1d630a10c2f3d348108"/><file name="viewed_list.phtml" hash="446121c899bfd198eebc4c65f978ddbd"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="view.phtml" hash="f05a86c29f6b998382d09f152632fc2b"/></dir><file name="form.phtml" hash="bc2a3a251a83fe521e7706dc2bcf32b5"/><dir name="product"><dir name="view"><file name="list.phtml" hash="34948e48ae602004e2869de139a22a2a"/></dir></dir><file name="view.phtml" hash="ec56bfd82035e90ce84f5de9b647cca3"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="1b92ce064e12147b17080fc5c2db3ae1"/></dir><file name="agreements.phtml" hash="9dff256daa8f0ba30e609c2eebe06efd"/></dir><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="56630660fd5dfcad091a1e3bf7f34b36"/></dir></dir><file name="items.phtml" hash="a89d7a81766c904c8068e82969f3aa34"/></dir><file name="history.phtml" hash="84ac8f3748940b8efaae73fade8dd243"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="a96b98f4bac113c8d974e91d8a68f161"/></dir></dir><file name="items.phtml" hash="33f6ad17b6418fc29ad8b45b7f8254f1"/></dir><dir name="items"><dir name="renderer"><file name="default.phtml" hash="cdc2fa9fa75773fc214a1cf1b523a973"/></dir></dir><file name="items.phtml" hash="c8beda8f74c01263549ea2706934f8bb"/><file name="recent.phtml" hash="f17054de57e8c74cffbec8a7381fe004"/><dir name="shipment"><file name="items.phtml" hash="cf419a6963ec9e9c92bcc1f04011457c"/></dir></dir><dir name="recurring"><file name="grid.phtml" hash="ac0d5f5d757ed8abbfe94e9fc2f18124"/><dir name="profile"><file name="view.phtml" hash="ae06af716d2c48860db09000224e8f71"/></dir></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="d08e046a18b17a628f46551053ced887"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="2849cb83f45985ff5e7564fa591c501a"/></dir><dir name="wishlist"><dir name="button"><file name="update.phtml" hash="6e887fadfcecb6f5a3f4a8c999bc3634"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="1715f0d797d0d5d3d26198dd347e302d"/><file name="info.phtml" hash="e48e55fa0fbced5b309f7f5f5b3f221b"/><file name="price.phtml" hash="1c1645d8ad629b068294d905dcaee448"/><file name="quantity.phtml" hash="906589e5f6d83daf6b7ab60633d980e2"/></dir><file name="list.phtml" hash="face9e02ba146978704797f270d4c836"/></dir><file name="shared.phtml" hash="5144c2fa4d5dc1a9df7f15513d4a461b"/><file name="sidebar.phtml" hash="f0f180ae9f831b0f47a9478ac2c41c3b"/><file name="view.phtml" hash="d2306e1331e6adc8cf54969e54f28fef"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="rwd"><dir name="default"><dir name="css"><file name="madisonisland-ie8.css" hash="d5f47a4cd003ceceb5371e3837a50212"/><file name="madisonisland.css" hash="6edb2c3d3ef856ec1362d176410ec37b"/><file name="scaffold-forms.css" hash="b6e3ea01988f54815d2275047b5d29d5"/><file name="styles-ie8.css" hash="5694f9525cb155389fe91691560548e4"/><file name="styles.css" hash="56e58f0200cefa3c2146841a2d886096"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="bg_x.png" hash="c321c67f6929326129426c9e83207ea3"/><file name="demo-logo.png" hash="c6f4b110e5379547e71d367479f0f945"/><file name="demo_logo.png" hash="7694461c41abb69ca60c086c69e312cc"/><file name="icon_sprite.png" hash="e15f0103ef5ebe3baf48960bb9ccfaab"/><file name="[email protected]" hash="2e9c31d760a33d9f27951210f8311341"/><file name="logo.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><file name="logo_email.gif" hash="773ca21465d08684ea7db8bf49d30a36"/><file name="logo_print.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><dir name="media"><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="homepage_banner_1.jpg" hash="267b2827f3db118d99f7a623ee02ad8f"/><file name="[email protected]" hash="3baa6702111d6f5f5dd40d96f148fc60"/><file name="homepage_banner_2.jpg" hash="67f70cfb1690b5de6e185769fb55cd28"/><file name="homepage_callout_1.jpg" hash="4b8451e4e99e87b6c60a015f659d32b6"/><file name="[email protected]" hash="fb5e215f6cb623abf6f0365b5de1541d"/><file name="homepage_callout_2.jpg" hash="057ab6200f6ea05d4a6793969c5edac3"/><file name="[email protected]" hash="e923c6323d22235876fe61a9c5588c85"/><file name="homepage_callout_3.jpg" hash="b2cf1e73e87b3330df17425044d22f52"/><file name="[email protected]" hash="8b98dee63a61608b09c26bd60acea65e"/></dir><file name="opc-ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="social_icons.png" hash="a6d0bdaea0ca0f507bd36628a6ad31a2"/><file name="[email protected]" hash="531cc696a7b949dbc8121809c1bb4d46"/></dir><dir name="js"><file name="app.js" hash="80cb5f281145387569182e9c8c0148e2"/><dir name="configurableswatches"><file name="product-media.js" hash="c1e0ccd3d16e6008f808b27b83de5fed"/><file name="swatches-list.js" hash="b37c9bad3124b287f7ee1655c1cdaabc"/><file name="swatches-product.js" hash="43564b12f299c45f99e5878a29015d46"/></dir><dir name="lib"><dir name="elevatezoom"><file name="jquery.elevateZoom-3.0.8.min.js" hash="a2d87e05f6a34ee7e681ab14682a1128"/><file name="jquery.elevatezoom.js" hash="b071f2afae8314a500c9d4da40031cc1"/></dir><file name="enquire.js" hash="0f2e6f5c300adc502f1b693027329b35"/><file name="fastclick.js" hash="81fa32558840beea1360446384160d8d"/><file name="imagesloaded.js" hash="b9904915c96e59c39dfbdbc43db8676d"/><file name="jquery.cycle2.min.js" hash="8e2282c38522e041882d02d03a2e34f8"/><file name="jquery.cycle2.swipe.min.js" hash="2dec69a58ab5051622770951f2c4aa9a"/><file name="matchMedia.addListener.js" hash="8e917fbdc070465dc19ec4408daf76e9"/><file name="matchMedia.js" hash="2f9ab6d447f9e4a5477c621ea5b6646e"/><file name="modernizr.custom.min.js" hash="3e5ba1a2d0d2450da65845039ce713ec"/><file name="selectivizr.js" hash="2295c62cdf9be6bbd1bb5b075c3ee655"/></dir><file name="minicart.js" hash="729f136fe0cc8b3f1f174ee8fe968ffc"/><file name="msrp_rwd.js" hash="522d9833cd59b12761f9b4bfebd8ffd8"/><file name="opcheckout_rwd.js" hash="ee9f07a500f77534151ed1fcdf22600a"/><file name="slideshow.js" hash="07c6e1868c032f619ea606238bc7be7b"/></dir><dir name="scss"><file name="_core.scss" hash="33d1ddbb0668de9f7b9bf2eb1cd6ecbe"/><file name="_framework.scss" hash="93384e56ec50458f4f923ce7470cd6da"/><file name="_var.scss" hash="4d628304b30a3bd438bed96c31423c84"/><file name="config.rb" hash="5f50b4dc5eefbab9e22abdfb80f4d689"/><dir name="content"><file name="_category.scss" hash="f0edffea71dd3847b7b94ceab445a419"/><file name="_home.scss" hash="cb069d92990f68195496e2196f40d7c6"/></dir><dir name="core"><file name="_common.scss" hash="0a283f726c2a82c23163b6db42c958f5"/><file name="_form.scss" hash="e6c3eb23683b0a737c2513dc8790c263"/><file name="_reset.scss" hash="b2b82e7607eeb6e4c2761af26998f70f"/><file name="_table.scss" hash="12af297e33bc3943ebd57cb5acccb769"/></dir><file name="email-inline.scss" hash="55b21d3b6b30e90f6148b667336efc97"/><file name="email-non-inline.scss" hash="0278ac71fa72897b2434dfe387346c7d"/><dir name="function"><file name="_black.scss" hash="1c76b0960588dda7082bf8e90c5ae946"/><file name="_white.scss" hash="cd297ba874f0efb0e776a2cdaba27213"/></dir><dir name="layout"><file name="_footer.scss" hash="b16e711775d33e1c753f470f74dc2495"/><file name="_global.scss" hash="ab3ad4b705a8f8fb2d37c75d0129de8e"/><file name="_header-account.scss" hash="7e6c4f5a3848f93d9f733699ad2aa0a5"/><file name="_header-cart.scss" hash="40dcd13de05a03f2af1cc054f0dc198a"/><file name="_header-nav.scss" hash="a3767ac5021509e9c2abad16728f7c7d"/><file name="_header-search.scss" hash="dee0e05bd8eeccccb82cb260395557b1"/><file name="_header.scss" hash="a9871115e90dd882e840143087cfbf90"/></dir><file name="madisonisland-ie8.scss" hash="f592668f4e5d0b7817927dbce29f59d0"/><file name="madisonisland.scss" hash="fff1e636e9aa537e38ee89f3aecf29ba"/><dir name="mixin"><file name="_breakpoint.scss" hash="fdafdfed66af713c891f4c63a19eb703"/><file name="_clearfix.scss" hash="e2ddff1360f86e7dea20567d2b7eabff"/><file name="_if-resolution.scss" hash="327ba5d3214615af09323f59a82309c1"/><file name="_image-replacement.scss" hash="030cc950644942af58d69f05a32f6010"/><file name="_loading-overlay.scss" hash="37a9fe433f024aa5cd540ab756255c48"/><file name="_menu.scss" hash="6bd0c90f14454c4868aadb3cf99119f3"/><file name="_not-selectable.scss" hash="4fc9a1f911fbbc32f5391b61d1b8894d"/><file name="_toggle-content.scss" hash="7ffb3f9e8536fc247be883ad25a08424"/><file name="_triangle.scss" hash="c09dc7c6deaa960a812d8604378035ad"/><file name="_typography.scss" hash="988e2bca5e21b62286cf1c1de667a69e"/></dir><dir name="module"><file name="_account-orders.scss" hash="6bd66d03a0c9055473d01db7a9ec523c"/><file name="_account-reviews.scss" hash="22c3cc8b756a2a9c77814019b528287b"/><file name="_billing-agreements.scss" hash="8d50942ef9e35fc8b8cb7b9f90dfc38f"/><file name="_captcha.scss" hash="28afb6c895324ddd5305e18a2a21245e"/><file name="_catalog-compare.scss" hash="b41c9204621990bc713dbb3f0b1c7e22"/><file name="_catalog-msrp.scss" hash="672b862d5e7ac9f5a38452996b3814d6"/><file name="_catalog-product.scss" hash="32acd412e3d128ef2016e0d3f1fc6ab4"/><file name="_checkout-cart-minicart.scss" hash="975b06d25307f2aa098800dbb5e496c0"/><file name="_checkout-cart.scss" hash="90fab2862180b230593e9d0913a6e76b"/><file name="_checkout-multi-address.scss" hash="5c92ba1a98308bd1519fda64d41f5f96"/><file name="_checkout-onepage.scss" hash="4006706f090fba1be2860c7ba1240c0b"/><file name="_checkout-success.scss" hash="e655584eccd68b5c89709c11a3b2a8cc"/><file name="_cms.scss" hash="067fe620286a462b2aab846f558bf851"/><file name="_configurableswatches.scss" hash="c91fe98658d9f561cfac111bd0b1d683"/><file name="_contacts.scss" hash="75b142892e52957d9d4842316e858fdc"/><file name="_cookies.scss" hash="40e322d8f98c68b44e85cfffad1d0845"/><file name="_customer.scss" hash="be23803496f69f089ac4e7defd2eeb9f"/><file name="_paypal.scss" hash="c41daf0e6277ea9fa8e55c08e2734a9c"/><file name="_popular-terms.scss" hash="c70880f760a46f4252fa2e05488669df"/><file name="_pricing_conditions.scss" hash="2fa2251c64c4de02436204e62a74b40b"/><file name="_product-list.scss" hash="07444dc99f8a40cec83f85c0412da2a5"/><file name="_recurring-profiles.scss" hash="ccefe9fa4101415eefa0c322a4751b8c"/><file name="_review.scss" hash="b921881b074f3e9f7c81e13c9268bdc1"/><file name="_search.scss" hash="f97c0831c06a72bbeaecf81e9f6428c1"/><file name="_slideshow.scss" hash="d14c8fdd53240ea4a4a89ba110942e84"/><file name="_tags.scss" hash="7ab90ca04dbb470d088fc13863bd6853"/><file name="_widget.scss" hash="6b598b6b1c95b7a3683afa5a52b339a0"/><file name="_wishlist.scss" hash="b2f2e9590bfe87777249ff70dba29dd6"/></dir><dir name="override"><file name="_plugin.scss" hash="5f8731aac694962ee07241bd70919966"/></dir><file name="scaffold-forms.scss" hash="06a7f258ffcb44f8799525400e42418e"/><file name="styles-ie8.scss" hash="2a64adffc8750b813caf25277bca2100"/><file name="styles.scss" hash="ceb1092bb069ed28d4fcd40a6cb7f4be"/><dir name="vendor"><file name="_normalize.scss" hash="f09b3df11470f1261a26bfe1b5a830ff"/></dir><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.0</min><max>1.9.2.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Interface_Frontend_Rwd_Default-1.9.2.1.xml var/package/Interface_Frontend_Rwd_Default-1.9.2.1.xml | |
--- var/package/Interface_Frontend_Rwd_Default-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Interface_Frontend_Rwd_Default-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Interface_Frontend_Rwd_Default</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>This is a RWD themes base</summary> | |
+ <description>This is a RWD themes base</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:10</time> | |
+ <contents><target name="magedesign"><dir name="frontend"><dir name="rwd"><dir name="default"><dir name="etc"><file name="theme.xml" hash="d00dd83bac2155a76a9f004ceeba2aa7"/><file name="widget.xml" hash="b26f0daa5ea35fae7def54e530e4fc6a"/></dir><dir name="layout"><file name="bundle.xml" hash="d4d6fd3d43bab191589be5dc04de3af9"/><file name="catalog.xml" hash="cf56a0853b8a4672c340074d6ce7d4ec"/><file name="catalog_msrp.xml" hash="761904c9772b9f9f87d168eaa5a3f35e"/><file name="catalogsearch.xml" hash="7577994c03f6e57aa50a2f9b9608fd06"/><file name="checkout.xml" hash="7a3227db21193c1f7abc1a293ee89637"/><file name="cms.xml" hash="ab13bce455c0ebdc6b7ac66973cca084"/><file name="configurableswatches.xml" hash="da5a91b2cd46e37c18f0ce23b5668d5d"/><file name="contacts.xml" hash="0feca543b963f4643b33ddff9d012287"/><file name="customer.xml" hash="becba768ba7cf0aa2f2133d77734c97c"/><file name="directory.xml" hash="116dba3caebbb645f4a4740d6203a809"/><file name="downloadable.xml" hash="dc03bfb05c6ad52ba2cfa26fc05ef80a"/><file name="newsletter.xml" hash="36464d3b9d5627a97d53cf9b5bb59038"/><file name="oauth.xml" hash="7ecd522b4625a53bd29c36f7b6708be2"/><file name="page.xml" hash="970456dbe2ff4ef2d351f6f1420bbd6a"/><file name="paypal.xml" hash="71611cd614aa622c50809659fc141b24"/><file name="persistent.xml" hash="668e57da0f663acb02b36605aecde881"/><file name="review.xml" hash="e44ec617f8ad50a03ba61ab3a7f1a838"/><file name="rss.xml" hash="a96fc7aa525d5ee33ad417826cec2658"/><file name="sales.xml" hash="c9910bae1a47eb29eb1bbf3e0b720678"/><file name="wishlist.xml" hash="868da261c6eb64da2e3adeca3a390b28"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="50ae88ef4535a9ca0e8e46799288f413"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="view"><dir name="type"><dir name="bundle"><file name="availability.phtml" hash="39f9ec1e37f2d2d838596dd2892b1005"/><dir name="option"><file name="select.phtml" hash="3f51c006c554b18cc60f6229461cad5e"/></dir></dir><file name="bundle.phtml" hash="0abf2442f49382f83dd62c31073e9040"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="ab0adcbb666002cc70acdf6ac7021a12"/></dir><dir name="invoice"><file name="default.phtml" hash="d6c0ebeec5e10ffbc506763491b66845"/></dir><dir name="order"><file name="default.phtml" hash="abde26e36f098e3ce5108c5cc80bd254"/></dir><dir name="shipment"><file name="default.phtml" hash="b9c8dc719be1a634e0f448e6b4b47901"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><file name="renderer.phtml" hash="a8e80c1633e3ee32a8c9168c9d9e8383"/></dir></dir></dir></dir><dir name="captcha"><file name="zend.phtml" hash="872875bf33960b1a1e9ba6859f46600f"/></dir><dir name="catalog"><dir name="layer"><file name="filter.phtml" hash="a44247deec06eb5911f3df6d843d956b"/><file name="state.phtml" hash="eda8e9eb4f713c9da03ba0a54a25212a"/><file name="view.phtml" hash="2ca8dd0e3f146585d07e6b382e8a4eee"/></dir><dir name="msrp"><file name="popup.phtml" hash="31f2008ce2ea58e81e8414645f0ede64"/></dir><dir name="navigation"><file name="left.phtml" hash="bfb71cd13382c16524db2b0d0eab7185"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="5b808fbf9a8bddb979febcfe2609da94"/><file name="sidebar.phtml" hash="62145a39f96743f5785b3627547dc9f7"/></dir><dir name="list"><file name="related.phtml" hash="0d70beffbe11222b2c1c2183ba56b63c"/><file name="toolbar.phtml" hash="c6a3942f398c592827bbbdbb0690a01b"/><file name="upsell.phtml" hash="450003d58ff096dc379ab9793b98c9dd"/></dir><file name="list.phtml" hash="634564c3159f865577a09d34ee0ca5e3"/><file name="price.phtml" hash="ca4e9a03d5ecdac3d35196e4aee7380c"/><dir name="view"><file name="addto.phtml" hash="4b275d89973855e5a3a6088e276f43f8"/><file name="addtocart.phtml" hash="6fa2ea19134bd838dd5bd7c6de9e6843"/><file name="media.phtml" hash="51aa2d8c08d1be4ad9f979a0730bbbb9"/><file name="sharing.phtml" hash="7b9fb533933a5de636bbfa625e25369a"/><dir name="type"><dir name="availability"><file name="default.phtml" hash="4e0b08dad4bb489e8c124308cc56dd4e"/><file name="grouped.phtml" hash="7582181a90bdfb695d816fe895ed399b"/></dir><file name="default.phtml" hash="ca7f231b33e607ffe8f2f6dd4bd96948"/><file name="grouped.phtml" hash="36501822168e99019f702312a293d7ee"/><dir name="options"><file name="configurable.phtml" hash="71811dffa6131fbb179bc06ac1f6e3f6"/></dir></dir></dir><file name="view.phtml" hash="a7f35b24e370ab77185164cdde16c259"/><dir name="widget"><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="8461c192eab496f4cc024946ea4a5b18"/><file name="new_images_list.phtml" hash="cbcb98d6ad1982d3fd6bb8004f0ef1c1"/><file name="new_names_list.phtml" hash="9cae45c356c126e715273b3a9dd5708c"/></dir><dir name="content"><file name="new_grid.phtml" hash="1215c91de68cb635ee0228e2be9160da"/><file name="new_list.phtml" hash="7317df9d1635324f4aa66bf390524ed6"/></dir></dir></dir></dir></dir><dir name="cataloginventory"><dir name="stockqty"><file name="composite.phtml" hash="778855bedbe85cc965ce4a025ced04ea"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="49a326d7a04cd24f76c089a571f227f7"/></dir><file name="form.mini.phtml" hash="936f335929a1c1f3bb8d20ea274cf9be"/><file name="result.phtml" hash="ea8f7555b6ff6c7af0bdcffec55d0027"/></dir><dir name="centinel"><dir name="authentication"><file name="start.phtml" hash="fe6c94ec3c92840a58b319d5038ca0d9"/></dir></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="8893925e57b7d01c0c3b1cbe46965f2f"/><file name="crosssell.phtml" hash="b9253440450cdb8609871a0d23bf3074"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="00a773bf6b7d550cecbcb4afd5f84b7c"/></dir><file name="default.phtml" hash="581d3d31fef83f660942431922293aff"/></dir><dir name="minicart"><file name="default.phtml" hash="4892d89135eda067ecd9d0a6efdcf89f"/><file name="items.phtml" hash="1547e9d22a2f871b28f265d0a3305876"/></dir><file name="minicart.phtml" hash="c160af1af285428f466bdb1cd46ac13e"/><dir name="render"><file name="default.phtml" hash="5c1c460c6c632c5c351e7901427fffe4"/><file name="simple.phtml" hash="025e6bbb36e41df2128c1c95b36ba231"/></dir><file name="shipping.phtml" hash="3080bd1504cae62262062058863e1838"/><dir name="sidebar"><file name="default.phtml" hash="7cda83cea687b899318a3b4133c62408"/></dir><file name="sidebar.phtml" hash="390436e51cacfa0ccce28544765f0962"/></dir><file name="cart.phtml" hash="c625c2d94711e014615486b7607b6e45"/><dir name="multishipping"><file name="addresses.phtml" hash="be9c2953dbab472373de481c8e8b65d4"/><file name="billing.phtml" hash="aa92a53b4c541317b9e6815f5b8a1f28"/><dir name="item"><file name="default.phtml" hash="243e0e6b950f06db8c9c1f7d1ef24590"/></dir><dir name="overview"><file name="item.phtml" hash="9318047ee9189440d7dc1f7a0ca2d917"/></dir><file name="overview.phtml" hash="eaa4630ae9f0bafe9f102e6b1d19eb95"/></dir><dir name="onepage"><file name="payment.phtml" hash="96265c46bb4a202561fbd269636a663c"/><file name="progress.phtml" hash="7445ce55ebe83156bfdf1180bc35fedd"/><dir name="review"><file name="info.phtml" hash="a515a973ebc0181a14d45a3cbe2c2fc9"/><file name="item.phtml" hash="b88883933d696481306734390dceee02"/></dir><file name="shipping.phtml" hash="d4136b9aa6094edd4bac70fbaac89f25"/></dir><file name="onepage.phtml" hash="e3a4b58790c9f9802aff1f7896bd9c72"/></dir><dir name="configurableswatches"><dir name="catalog"><dir name="layer"><dir name="filter"><file name="swatches.phtml" hash="fe55df1df2f30b2e3ebac87bf8c0dbdc"/></dir><dir name="state"><file name="swatch.phtml" hash="fb11cbae1f603017c4e85a8692ec9752"/></dir></dir><dir name="media"><file name="js.phtml" hash="f7269d9211f654f608195c8f1ce891b2"/></dir><dir name="product"><dir name="list"><file name="swatches.phtml" hash="e41711ec411e3be7a29caaf62ac9129c"/></dir><dir name="view"><dir name="type"><dir name="configurable"><file name="swatch-js.phtml" hash="60914817ac4db7f54acb875efb106e4f"/></dir><dir name="options"><dir name="configurable"><file name="swatches.phtml" hash="c8d44e23f337facd225649dc17cf038a"/></dir></dir></dir></dir></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="2c42bb9ff229dfbd556f5e333982e825"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="42c81b3a4844d65fcaf5622ce03a5109"/></dir><file name="dashboard.phtml" hash="1330c69eb0c5ba4433943a288e9407a0"/><file name="navigation.phtml" hash="dcec943b87e531c7b1a347ce9965ff45"/></dir><dir name="address"><file name="edit.phtml" hash="ecd1ccd67442bf76df64952d8f8c93ee"/></dir><dir name="form"><file name="address.phtml" hash="3346cebdea9573ce3a5f500e8b6004a5"/><file name="changepassword.phtml" hash="8175021062d265051b59bf5622aba31f"/><file name="confirmation.phtml" hash="6cca7f19f7001e20a1128c633cfa1105"/><file name="edit.phtml" hash="34c2e0a0992d4353fb513b573e97dd4e"/><file name="forgotpassword.phtml" hash="adab27b320754d03d6db2517db9e3c86"/><file name="mini.login.phtml" hash="953db146a0c5a8f668b5b5d1be61f648"/><file name="resetforgottenpassword.phtml" hash="88b81a7972ae049b3fddd990507c6cb6"/></dir></dir><dir name="directory"><file name="currency.phtml" hash="39bcea13a67e2503b89cf8605c5f9383"/></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="type.phtml" hash="4f2f1cc4380dd935ef53c07ce9ebe11e"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="235ba1ef53629e6e0c860c822f009d73"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="12cb20296cf903662af327800da0ae24"/></dir></dir></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="4e4c835a56504ad68b8591ef61797744"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="2bb7a54f7002427442d81ed57b5ad6b1"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="8c6077b5646124943b74fa7c4ba7f848"/></dir><dir name="order"><file name="downloadable.phtml" hash="b9d771d574dfebd99a24c2336f8285d7"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="8b9ea75c91389c6cd847ab0ecf4c5bf8"/></dir></dir></dir></dir></dir><dir name="email"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="5f80ecea7ccdcf068e45303a6dcebf72"/><file name="new.phtml" hash="3e967ea93be598baaada7a78507b1434"/></dir></dir><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="f79cb5ed65ce3927b1d323479b879418"/></dir><dir name="invoice"><file name="items.phtml" hash="d4a446c25eda630196fa52072599722b"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="917301b99bb27e5495f436b91fc16ccc"/></dir><dir name="invoice"><file name="default.phtml" hash="917301b99bb27e5495f436b91fc16ccc"/></dir><dir name="order"><file name="default.phtml" hash="a883309f060bfdef5aa07a74a620032b"/></dir><dir name="shipment"><file name="default.phtml" hash="9ee4f1a8b3662422eb05ec592e105af2"/></dir></dir><file name="items.phtml" hash="3f43664a56eccd336ae9f93644a9d889"/><dir name="shipment"><file name="items.phtml" hash="fda23599e3bcf1f3538cb74e7acfa1c4"/><file name="track.phtml" hash="3d06d28e690ad0997090b2a422080a8c"/></dir><dir name="totals"><file name="wrapper.phtml" hash="0559a432acd7beda44e5b227bff41211"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="007c4d6639335482e7082da23a527cb5"/><file name="stock.phtml" hash="1d5a4e6e3c2cbbdd4f54512c85547db5"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="3a993dd52f34d23aa9e58d360971a309"/></dir><dir name="oauth"><dir name="authorize"><dir name="form"><file name="login-simple.phtml" hash="f9c0fb94aba9700cb862f0248baec9a1"/></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="0217d29c5ce30c4241b956f4bfcfe089"/><file name="2columns-left.phtml" hash="bebed06fd537e396f05ebbc0e4291d36"/><file name="2columns-right.phtml" hash="a1c08bc7d7fbb9d00988bb9ecdaa85e1"/><file name="3columns.phtml" hash="6f971e2518978701bdf7ad1bb799ace3"/><file name="empty.phtml" hash="f420bff4c02fa84f98d2c1ce09dce4ff"/><dir name="html"><file name="footer.phtml" hash="4a3efd641403e108261b3b6b81cd71fc"/><file name="header.phtml" hash="115ecf5a9042ffcce1536fb10df32914"/><file name="pager.phtml" hash="e16cd50199a2d91c48fbf72ae22600cc"/><dir name="topmenu"><file name="renderer.phtml" hash="7cee75df8e011107ff49117324a2e833"/></dir><file name="topmenu.phtml" hash="5a3237e12cb48e9b77206485f9e46499"/></dir><file name="popup.phtml" hash="807903de3c55861253a6e7a941c246eb"/><file name="print.phtml" hash="f292ecc352173d579d449794a379dc5d"/><dir name="template"><file name="links.phtml" hash="1f8ed0b51c26baf0cc51f864283816c5"/></dir></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="a80f418e2c5fce9cc6b758d9d03c195f"/><file name="ccsave.phtml" hash="d7b2ee5a098f61419e8ab7b423d07be7"/></dir><dir name="info"><file name="default.phtml" hash="182a8a5c7ae90f701da3d26959ae88a5"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="d4bd3e63c77ebec817c9958a7b66c143"/><dir name="express"><dir name="minicart"><file name="shortcut.phtml" hash="821f849045dbd9158c117fd69b9295bd"/></dir><dir name="product"><file name="shortcut.phtml" hash="3cdd24f3af46ef4760ca20885f077d0a"/></dir><dir name="review"><file name="address.phtml" hash="4f2f7b2cdfeb4e3e8f4c9de45e10c03d"/><file name="details.phtml" hash="559a732d462bfb741d03ec05c043d50e"/><dir name="shipping"><file name="method.phtml" hash="a1a0836340cae4530e9d035dfec315da"/></dir></dir><file name="review.phtml" hash="abbb96284c22d9c451500333bc9abc98"/></dir><dir name="partner"><file name="us_logo.phtml" hash="2c3eccffd8d1d79f40679cbf4efd85ed"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="85aa6cfa48f500ff3e54beaf27c2fadf"/><file name="login.phtml" hash="634989681520d255b70f738acca3546a"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="44f01752af72cceb3bf5fff3a5a23cba"/><file name="register.phtml" hash="d4b2d37e7672f7f7d31271fa36c9be85"/></dir></dir><dir name="header"><file name="links.phtml" hash="eb1a3675863fd60601a83ba37aba1a94"/></dir><file name="remember_me.phtml" hash="ecb29a132a145258c5ccf8303fbf7825"/><file name="remember_me_tooltip.phtml" hash="c410dcf15883faca8c1fda017586378e"/></dir><dir name="rating"><file name="detailed.phtml" hash="ac029753c6ad21473faa8f7f1e6464e7"/></dir><dir name="reports"><file name="product_viewed.phtml" hash="868f17fe24d87fce8fc6281c65fa6825"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="98b5a02b4d0e9f24e2128199b7ff8ac9"/><file name="compared_images_list.phtml" hash="b8018d02e1c808983b9da2fcedbf380b"/><file name="compared_names_list.phtml" hash="4b3cc7169338ceb224b3bf134767d506"/></dir><dir name="content"><file name="compared_grid.phtml" hash="bcad46bcab98be82e219362621e37491"/><file name="compared_list.phtml" hash="6d748da0752c62ccbda731d294ce5065"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="211165fdd25df6912981d4b9abef97d2"/><file name="viewed_images_list.phtml" hash="48fdb9f1cb78cd28f30815abd9e8901a"/><file name="viewed_names_list.phtml" hash="5337debf0ddc6b5fec96cdfa543f1747"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="e8e30d08f535a1d630a10c2f3d348108"/><file name="viewed_list.phtml" hash="446121c899bfd198eebc4c65f978ddbd"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="view.phtml" hash="f05a86c29f6b998382d09f152632fc2b"/></dir><file name="form.phtml" hash="bc2a3a251a83fe521e7706dc2bcf32b5"/><dir name="product"><dir name="view"><file name="list.phtml" hash="34948e48ae602004e2869de139a22a2a"/></dir></dir><file name="view.phtml" hash="ec56bfd82035e90ce84f5de9b647cca3"/></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="1b92ce064e12147b17080fc5c2db3ae1"/></dir><file name="agreements.phtml" hash="9dff256daa8f0ba30e609c2eebe06efd"/></dir><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="56630660fd5dfcad091a1e3bf7f34b36"/></dir></dir><file name="items.phtml" hash="a89d7a81766c904c8068e82969f3aa34"/></dir><file name="history.phtml" hash="84ac8f3748940b8efaae73fade8dd243"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="a96b98f4bac113c8d974e91d8a68f161"/></dir></dir><file name="items.phtml" hash="33f6ad17b6418fc29ad8b45b7f8254f1"/></dir><dir name="items"><dir name="renderer"><file name="default.phtml" hash="cdc2fa9fa75773fc214a1cf1b523a973"/></dir></dir><file name="items.phtml" hash="c8beda8f74c01263549ea2706934f8bb"/><file name="recent.phtml" hash="f17054de57e8c74cffbec8a7381fe004"/><dir name="shipment"><file name="items.phtml" hash="cf419a6963ec9e9c92bcc1f04011457c"/></dir></dir><dir name="recurring"><file name="grid.phtml" hash="ac0d5f5d757ed8abbfe94e9fc2f18124"/><dir name="profile"><file name="view.phtml" hash="ae06af716d2c48860db09000224e8f71"/></dir></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="d08e046a18b17a628f46551053ced887"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="2849cb83f45985ff5e7564fa591c501a"/></dir><dir name="wishlist"><dir name="button"><file name="update.phtml" hash="6e887fadfcecb6f5a3f4a8c999bc3634"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="1715f0d797d0d5d3d26198dd347e302d"/><file name="info.phtml" hash="e48e55fa0fbced5b309f7f5f5b3f221b"/><file name="price.phtml" hash="1c1645d8ad629b068294d905dcaee448"/><file name="quantity.phtml" hash="906589e5f6d83daf6b7ab60633d980e2"/></dir><file name="list.phtml" hash="face9e02ba146978704797f270d4c836"/></dir><file name="shared.phtml" hash="5144c2fa4d5dc1a9df7f15513d4a461b"/><file name="sidebar.phtml" hash="f0f180ae9f831b0f47a9478ac2c41c3b"/><file name="view.phtml" hash="d2306e1331e6adc8cf54969e54f28fef"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="rwd"><dir name="default"><dir name="css"><file name="madisonisland-ie8.css" hash="d5f47a4cd003ceceb5371e3837a50212"/><file name="madisonisland.css" hash="6edb2c3d3ef856ec1362d176410ec37b"/><file name="scaffold-forms.css" hash="b6e3ea01988f54815d2275047b5d29d5"/><file name="styles-ie8.css" hash="5694f9525cb155389fe91691560548e4"/><file name="styles.css" hash="56e58f0200cefa3c2146841a2d886096"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="bg_x.png" hash="c321c67f6929326129426c9e83207ea3"/><file name="demo-logo.png" hash="c6f4b110e5379547e71d367479f0f945"/><file name="demo_logo.png" hash="7694461c41abb69ca60c086c69e312cc"/><file name="icon_sprite.png" hash="e15f0103ef5ebe3baf48960bb9ccfaab"/><file name="[email protected]" hash="2e9c31d760a33d9f27951210f8311341"/><file name="logo.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><file name="logo_email.gif" hash="773ca21465d08684ea7db8bf49d30a36"/><file name="logo_print.gif" hash="5e0912a388db8cd83c062766ac3a5d89"/><dir name="media"><file name="col_left_callout.jpg" hash="5f762006021e046f9bd536f37ea7c463"/><file name="col_right_callout.jpg" hash="dae22f37a542da272a35195ec286ec25"/><file name="homepage_banner_1.jpg" hash="267b2827f3db118d99f7a623ee02ad8f"/><file name="[email protected]" hash="3baa6702111d6f5f5dd40d96f148fc60"/><file name="homepage_banner_2.jpg" hash="67f70cfb1690b5de6e185769fb55cd28"/><file name="homepage_callout_1.jpg" hash="4b8451e4e99e87b6c60a015f659d32b6"/><file name="[email protected]" hash="fb5e215f6cb623abf6f0365b5de1541d"/><file name="homepage_callout_2.jpg" hash="057ab6200f6ea05d4a6793969c5edac3"/><file name="[email protected]" hash="e923c6323d22235876fe61a9c5588c85"/><file name="homepage_callout_3.jpg" hash="b2cf1e73e87b3330df17425044d22f52"/><file name="[email protected]" hash="8b98dee63a61608b09c26bd60acea65e"/></dir><file name="opc-ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="social_icons.png" hash="a6d0bdaea0ca0f507bd36628a6ad31a2"/><file name="[email protected]" hash="531cc696a7b949dbc8121809c1bb4d46"/></dir><dir name="js"><file name="app.js" hash="80cb5f281145387569182e9c8c0148e2"/><dir name="configurableswatches"><file name="product-media.js" hash="c1e0ccd3d16e6008f808b27b83de5fed"/><file name="swatches-list.js" hash="b37c9bad3124b287f7ee1655c1cdaabc"/><file name="swatches-product.js" hash="43564b12f299c45f99e5878a29015d46"/></dir><dir name="lib"><dir name="elevatezoom"><file name="jquery.elevateZoom-3.0.8.min.js" hash="a18ff8649464a0c999f5d063a081da61"/><file name="jquery.elevatezoom.js" hash="76494c5afa372e08d0a8a5f4ba7e58ed"/></dir><file name="enquire.js" hash="c11ca42a1f2bf189d004f9a4f42e3ca2"/><file name="fastclick.js" hash="7f1e1673fa395e43cbdc584c8798541b"/><file name="imagesloaded.js" hash="f70def9bddf45be549ec0575645b8038"/><file name="jquery.cycle2.min.js" hash="24f809434b3e494cc7b98c6c08404b33"/><file name="jquery.cycle2.swipe.min.js" hash="15747fbd45dd1adcaf8f04a2d8a71d68"/><file name="matchMedia.addListener.js" hash="6f47448212550bd3157c4265e3ebf085"/><file name="matchMedia.js" hash="89f369588d629240d6a8d4f8788490c8"/><file name="modernizr.custom.min.js" hash="e508acbc792b5761fe98dc892a1fd952"/><file name="selectivizr.js" hash="8e596ea5ffac3cf3eb53f75a15cdc7eb"/></dir><file name="minicart.js" hash="729f136fe0cc8b3f1f174ee8fe968ffc"/><file name="msrp_rwd.js" hash="522d9833cd59b12761f9b4bfebd8ffd8"/><file name="opcheckout_rwd.js" hash="ee9f07a500f77534151ed1fcdf22600a"/><file name="slideshow.js" hash="07c6e1868c032f619ea606238bc7be7b"/></dir><dir name="scss"><file name="_core.scss" hash="33d1ddbb0668de9f7b9bf2eb1cd6ecbe"/><file name="_framework.scss" hash="93384e56ec50458f4f923ce7470cd6da"/><file name="_var.scss" hash="4d628304b30a3bd438bed96c31423c84"/><file name="config.rb" hash="5f50b4dc5eefbab9e22abdfb80f4d689"/><dir name="content"><file name="_category.scss" hash="f0edffea71dd3847b7b94ceab445a419"/><file name="_home.scss" hash="cb069d92990f68195496e2196f40d7c6"/></dir><dir name="core"><file name="_common.scss" hash="0a283f726c2a82c23163b6db42c958f5"/><file name="_form.scss" hash="e6c3eb23683b0a737c2513dc8790c263"/><file name="_reset.scss" hash="b2b82e7607eeb6e4c2761af26998f70f"/><file name="_table.scss" hash="12af297e33bc3943ebd57cb5acccb769"/></dir><file name="email-inline.scss" hash="55b21d3b6b30e90f6148b667336efc97"/><file name="email-non-inline.scss" hash="0278ac71fa72897b2434dfe387346c7d"/><dir name="function"><file name="_black.scss" hash="1c76b0960588dda7082bf8e90c5ae946"/><file name="_white.scss" hash="cd297ba874f0efb0e776a2cdaba27213"/></dir><dir name="layout"><file name="_footer.scss" hash="b16e711775d33e1c753f470f74dc2495"/><file name="_global.scss" hash="ab3ad4b705a8f8fb2d37c75d0129de8e"/><file name="_header-account.scss" hash="7e6c4f5a3848f93d9f733699ad2aa0a5"/><file name="_header-cart.scss" hash="40dcd13de05a03f2af1cc054f0dc198a"/><file name="_header-nav.scss" hash="a3767ac5021509e9c2abad16728f7c7d"/><file name="_header-search.scss" hash="dee0e05bd8eeccccb82cb260395557b1"/><file name="_header.scss" hash="a9871115e90dd882e840143087cfbf90"/></dir><file name="madisonisland-ie8.scss" hash="f592668f4e5d0b7817927dbce29f59d0"/><file name="madisonisland.scss" hash="fff1e636e9aa537e38ee89f3aecf29ba"/><dir name="mixin"><file name="_breakpoint.scss" hash="fdafdfed66af713c891f4c63a19eb703"/><file name="_clearfix.scss" hash="e2ddff1360f86e7dea20567d2b7eabff"/><file name="_if-resolution.scss" hash="327ba5d3214615af09323f59a82309c1"/><file name="_image-replacement.scss" hash="030cc950644942af58d69f05a32f6010"/><file name="_loading-overlay.scss" hash="37a9fe433f024aa5cd540ab756255c48"/><file name="_menu.scss" hash="6bd0c90f14454c4868aadb3cf99119f3"/><file name="_not-selectable.scss" hash="4fc9a1f911fbbc32f5391b61d1b8894d"/><file name="_toggle-content.scss" hash="7ffb3f9e8536fc247be883ad25a08424"/><file name="_triangle.scss" hash="c09dc7c6deaa960a812d8604378035ad"/><file name="_typography.scss" hash="988e2bca5e21b62286cf1c1de667a69e"/></dir><dir name="module"><file name="_account-orders.scss" hash="6bd66d03a0c9055473d01db7a9ec523c"/><file name="_account-reviews.scss" hash="22c3cc8b756a2a9c77814019b528287b"/><file name="_billing-agreements.scss" hash="8d50942ef9e35fc8b8cb7b9f90dfc38f"/><file name="_captcha.scss" hash="28afb6c895324ddd5305e18a2a21245e"/><file name="_catalog-compare.scss" hash="b41c9204621990bc713dbb3f0b1c7e22"/><file name="_catalog-msrp.scss" hash="672b862d5e7ac9f5a38452996b3814d6"/><file name="_catalog-product.scss" hash="32acd412e3d128ef2016e0d3f1fc6ab4"/><file name="_checkout-cart-minicart.scss" hash="975b06d25307f2aa098800dbb5e496c0"/><file name="_checkout-cart.scss" hash="90fab2862180b230593e9d0913a6e76b"/><file name="_checkout-multi-address.scss" hash="5c92ba1a98308bd1519fda64d41f5f96"/><file name="_checkout-onepage.scss" hash="4006706f090fba1be2860c7ba1240c0b"/><file name="_checkout-success.scss" hash="e655584eccd68b5c89709c11a3b2a8cc"/><file name="_cms.scss" hash="067fe620286a462b2aab846f558bf851"/><file name="_configurableswatches.scss" hash="c91fe98658d9f561cfac111bd0b1d683"/><file name="_contacts.scss" hash="75b142892e52957d9d4842316e858fdc"/><file name="_cookies.scss" hash="40e322d8f98c68b44e85cfffad1d0845"/><file name="_customer.scss" hash="be23803496f69f089ac4e7defd2eeb9f"/><file name="_paypal.scss" hash="c41daf0e6277ea9fa8e55c08e2734a9c"/><file name="_popular-terms.scss" hash="c70880f760a46f4252fa2e05488669df"/><file name="_pricing_conditions.scss" hash="2fa2251c64c4de02436204e62a74b40b"/><file name="_product-list.scss" hash="07444dc99f8a40cec83f85c0412da2a5"/><file name="_recurring-profiles.scss" hash="ccefe9fa4101415eefa0c322a4751b8c"/><file name="_review.scss" hash="b921881b074f3e9f7c81e13c9268bdc1"/><file name="_search.scss" hash="f97c0831c06a72bbeaecf81e9f6428c1"/><file name="_slideshow.scss" hash="d14c8fdd53240ea4a4a89ba110942e84"/><file name="_tags.scss" hash="7ab90ca04dbb470d088fc13863bd6853"/><file name="_widget.scss" hash="6b598b6b1c95b7a3683afa5a52b339a0"/><file name="_wishlist.scss" hash="b2f2e9590bfe87777249ff70dba29dd6"/></dir><dir name="override"><file name="_plugin.scss" hash="5f8731aac694962ee07241bd70919966"/></dir><file name="scaffold-forms.scss" hash="06a7f258ffcb44f8799525400e42418e"/><file name="styles-ie8.scss" hash="2a64adffc8750b813caf25277bca2100"/><file name="styles.scss" hash="ceb1092bb069ed28d4fcd40a6cb7f4be"/><dir name="vendor"><file name="_normalize.scss" hash="d9edffd350bd218571fd141a9c658d29"/></dir><file name=".htaccess" hash="72617d60821288133a367f70bf39ad93"/></dir></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Interface_Install_Default-1.9.2.0.xml var/package/Interface_Install_Default-1.9.2.0.xml | |
--- var/package/Interface_Install_Default-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Interface_Install_Default-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Interface_Install_Default</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Default interface for Install</summary> | |
- <description>Default interface for Install</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="magedesign"><dir name="install"><dir name="default"><dir name="default"><dir name="etc"><file name="theme.xml" hash="b2a8d19b50efdccb7294cb2fe0640bd9"/></dir><dir name="layout"><file name="main.xml" hash="aee58bc7e20d4da83f840923f0e8bee7"/></dir><dir name="template"><dir name="install"><file name="begin.phtml" hash="426174fa3e5fc4addff739234c3ccb76"/><file name="config.phtml" hash="0e51633e784c2100c9546d45d1d59b67"/><file name="create_admin.phtml" hash="b06662c97fdc8f3474e41c486850fc22"/><dir name="db"><file name="main.phtml" hash="2c290ec7b05e3b34e216ad74b20acfe3"/><file name="mysql4.phtml" hash="0a02c4f81ae26674726a6078d63b0b4f"/></dir><file name="download.phtml" hash="298abfb16efe3c074fd930ba7ed6b6a8"/><file name="end.phtml" hash="6bd47a56be6f5ff4c8f9a8550567f881"/><file name="locale.phtml" hash="6a2322b76c9ab94ff86d98634d386b35"/><file name="state.phtml" hash="909c0e73382e297e3e70adad3d4e64a2"/></dir><file name="page.phtml" hash="9b83b9e2ae9ea29511121b6e63e474c5"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="install"><dir name="default"><dir name="default"><dir name="css"><file name="boxes.css" hash="31da7dcdca502c3fca21cbddc160f581"/><file name="clears.css" hash="4018383aa0ccf4a455b30714905d53a5"/><file name="ie7minus.css" hash="b973a69ca4e691f21ee58b258f5bf12c"/><file name="iestyles.css" hash="7fd4d1acd42b155b7b7ae10272b235d6"/><file name="reset.css" hash="e9397eec4802597f92bf50ccd982f840"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="footer_bg.gif" hash="d59784af16fd95ea82226e5708a89232"/><file name="footer_container_bg.gif" hash="d468e3943943cbbf711586e69d40ca42"/><file name="footer_info_separator.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="footer_informational_bg.gif" hash="72d37f4b2ea747bf8969c2654ad1d1e0"/><file name="footer_left.gif" hash="2b15a54bea9409a75c142d14a62f0149"/><file name="footer_legality_bg.gif" hash="4eb1602e3369dccd901ffe98ea0fd4b3"/><file name="footer_right.gif" hash="a45eaf35c8797d299bd4d9b936528e8f"/><file name="header_bg.gif" hash="795c6de754d0d49717ed08d5cd8168c8"/><file name="header_nav_bg.gif" hash="80c6a18686eb0243e06d6176506a2502"/><file name="header_top_bg.jpg" hash="143f524392ee62fcc8183f5930d7258b"/><file name="header_top_container_bg.jpg" hash="294c18f3f6b838bba06ae41dd3c3d638"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="main_bg.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="main_container_bg.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/></dir></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.0</min><max>1.9.2.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Interface_Install_Default-1.9.2.1.xml var/package/Interface_Install_Default-1.9.2.1.xml | |
--- var/package/Interface_Install_Default-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Interface_Install_Default-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Interface_Install_Default</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Default interface for Install</summary> | |
+ <description>Default interface for Install</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:10</time> | |
+ <contents><target name="magedesign"><dir name="install"><dir name="default"><dir name="default"><dir name="etc"><file name="theme.xml" hash="b2a8d19b50efdccb7294cb2fe0640bd9"/></dir><dir name="layout"><file name="main.xml" hash="aee58bc7e20d4da83f840923f0e8bee7"/></dir><dir name="template"><dir name="install"><file name="begin.phtml" hash="426174fa3e5fc4addff739234c3ccb76"/><file name="config.phtml" hash="0e51633e784c2100c9546d45d1d59b67"/><file name="create_admin.phtml" hash="b06662c97fdc8f3474e41c486850fc22"/><dir name="db"><file name="main.phtml" hash="2c290ec7b05e3b34e216ad74b20acfe3"/><file name="mysql4.phtml" hash="0a02c4f81ae26674726a6078d63b0b4f"/></dir><file name="download.phtml" hash="298abfb16efe3c074fd930ba7ed6b6a8"/><file name="end.phtml" hash="6bd47a56be6f5ff4c8f9a8550567f881"/><file name="locale.phtml" hash="6a2322b76c9ab94ff86d98634d386b35"/><file name="state.phtml" hash="909c0e73382e297e3e70adad3d4e64a2"/></dir><file name="page.phtml" hash="9b83b9e2ae9ea29511121b6e63e474c5"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="install"><dir name="default"><dir name="default"><dir name="css"><file name="boxes.css" hash="5bea74c12f38fda877a0f824197a1bc4"/><file name="clears.css" hash="afe1cd8c08355b255b2e6fd0d3c7b9f3"/><file name="ie7minus.css" hash="4f6fc046f91edb04b11aee682097cd4a"/><file name="iestyles.css" hash="ec5bef22b7261a7541a3863c4fbd0140"/><file name="reset.css" hash="760ea7699d4cd5a573ee84c39c8ccad8"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="footer_bg.gif" hash="d59784af16fd95ea82226e5708a89232"/><file name="footer_container_bg.gif" hash="d468e3943943cbbf711586e69d40ca42"/><file name="footer_info_separator.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="footer_informational_bg.gif" hash="72d37f4b2ea747bf8969c2654ad1d1e0"/><file name="footer_left.gif" hash="2b15a54bea9409a75c142d14a62f0149"/><file name="footer_legality_bg.gif" hash="4eb1602e3369dccd901ffe98ea0fd4b3"/><file name="footer_right.gif" hash="a45eaf35c8797d299bd4d9b936528e8f"/><file name="header_bg.gif" hash="795c6de754d0d49717ed08d5cd8168c8"/><file name="header_nav_bg.gif" hash="80c6a18686eb0243e06d6176506a2502"/><file name="header_top_bg.jpg" hash="143f524392ee62fcc8183f5930d7258b"/><file name="header_top_container_bg.jpg" hash="294c18f3f6b838bba06ae41dd3c3d638"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="main_bg.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="main_container_bg.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/></dir></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Cm-1.9.2.0.xml var/package/Lib_Cm-1.9.2.0.xml | |
--- var/package/Lib_Cm-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Cm-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Cm</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://framework.zend.com/license/new-bsd">New BSD</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Redis adapter for Zend_Cache</summary> | |
- <description>Redis adapter for Zend_Cache</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Colin Mollenhour</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="magelib"><dir name="Cm"><dir name="Cache"><dir name="Backend"><file name="Redis.php" hash="1c137eef42b9c034fa0b6d5258092c00"/></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Credis</name><channel>community</channel><min>1.9.2.0</min><max>1.9.2.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Cm-1.9.2.1.xml var/package/Lib_Cm-1.9.2.1.xml | |
--- var/package/Lib_Cm-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Cm-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Cm</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://framework.zend.com/license/new-bsd">New BSD</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Redis adapter for Zend_Cache</summary> | |
+ <description>Redis adapter for Zend_Cache</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Colin Mollenhour</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:10</time> | |
+ <contents><target name="magelib"><dir name="Cm"><dir name="Cache"><dir name="Backend"><file name="Redis.php" hash="1c137eef42b9c034fa0b6d5258092c00"/></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Credis</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Credis-1.9.2.0.xml var/package/Lib_Credis-1.9.2.0.xml | |
--- var/package/Lib_Credis-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Credis-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Credis</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Credis Library</summary> | |
- <description>Credis Library</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="magelib"><dir name="Credis"><file name="Client.php" hash="1fde64fdcd768d51758ec437d5952861"/></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Credis-1.9.2.1.xml var/package/Lib_Credis-1.9.2.1.xml | |
--- var/package/Lib_Credis-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Credis-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Credis</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Credis Library</summary> | |
+ <description>Credis Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:10</time> | |
+ <contents><target name="magelib"><dir name="Credis"><file name="Client.php" hash="1fde64fdcd768d51758ec437d5952861"/></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Google_Checkout-1.9.2.0.xml var/package/Lib_Google_Checkout-1.9.2.0.xml | |
--- var/package/Lib_Google_Checkout-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Google_Checkout-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Google_Checkout</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license>Apache License</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Google Checkout Library</summary> | |
- <description>Google Checkout Library</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Google_Checkout-1.9.2.1.xml var/package/Lib_Google_Checkout-1.9.2.1.xml | |
--- var/package/Lib_Google_Checkout-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Google_Checkout-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Google_Checkout</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license>Apache License</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Google Checkout Library</summary> | |
+ <description>Google Checkout Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:10</time> | |
+ <contents></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_IDNA2-1.9.2.0.xml var/package/Lib_IDNA2-1.9.2.0.xml | |
--- var/package/Lib_IDNA2-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_IDNA2-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_IDNA2</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://www.gnu.org/licenses/lgpl-3.0.en.html">GNU Lesser General Public License</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Magento Library</summary> | |
- <description>Magento Library</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="magelib"><dir name="Net"><file name="IDNA2.php" hash="def073c649f1033d8a75189f6a99cf9d"/><dir name="IDNA2"><dir name="Exception"><file name="Nameprep.php" hash="06c4217024082f0f3b6c5a7e61ac7130"/></dir><file name="Exception.php" hash="72f605f2f6d9d56e07bb6bcec099d03a"/></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_IDNA2-1.9.2.1.xml var/package/Lib_IDNA2-1.9.2.1.xml | |
--- var/package/Lib_IDNA2-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_IDNA2-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_IDNA2</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://www.gnu.org/licenses/lgpl-3.0.en.html">GNU Lesser General Public License</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Magento Library</summary> | |
+ <description>Magento Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:10</time> | |
+ <contents><target name="magelib"><dir name="Net"><file name="IDNA2.php" hash="def073c649f1033d8a75189f6a99cf9d"/><dir name="IDNA2"><dir name="Exception"><file name="Nameprep.php" hash="06c4217024082f0f3b6c5a7e61ac7130"/></dir><file name="Exception.php" hash="72f605f2f6d9d56e07bb6bcec099d03a"/></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Js_Calendar-1.51.1.1.xml var/package/Lib_Js_Calendar-1.51.1.1.xml | |
--- var/package/Lib_Js_Calendar-1.51.1.1.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Js_Calendar-1.51.1.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Js_Calendar</name> | |
- <version>1.51.1.1</version> | |
- <stability>stable</stability> | |
- <license>Mixed</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Javascript Calendar for Magento</summary> | |
- <description>Javascript Calendar for Magento</description> | |
- <notes>1.51.1.1</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2012-04-23</date> | |
- <time>13:47:49</time> | |
- <contents><target name="mageweb"><dir name="js"><dir name="calendar"><file name="calendar-blue.css" hash="b8bb29e3c1573d0d2917cd3112b5052d"/><file name="calendar-blue2.css" hash="654dfacebcdd70c75ccaf2b4aee2d059"/><file name="calendar-brown.css" hash="f326a6a84037e549a9cd71a92346f210"/><file name="calendar-green.css" hash="b44e2c25ff56efaa6e37d84df202e5d5"/><file name="calendar-setup.js" hash="0c21b9e48ecfad87b4c4885cfb1aca8d"/><file name="calendar-system.css" hash="9b446e2ee0e9e4420fce20922405cec7"/><file name="calendar-tas.css" hash="fa3baa9367504954ef03c1f05d44f1a6"/><file name="calendar-win2k-1.css" hash="e3c61212e6abc28844005381d8fe9690"/><file name="calendar-win2k-2.css" hash="332d8bc7dab6acd575dba49a15b62947"/><file name="calendar-win2k-cold-1.css" hash="b0810ce949e6c954c54053c52b21e74a"/><file name="calendar-win2k-cold-2.css" hash="3487ec4e054141057673d794ce6d1032"/><file name="calendar.js" hash="97705cd3aa011e9671c4441643cc704a"/><file name="img.gif" hash="c1e5255bd358fcd5a0779a0cc310a2fe"/><file name="menuarrow.gif" hash="b5a91d7a2755198b2eb729541ad3288c"/><file name="menuarrow2.gif" hash="1f8c673c8f76832febaeeac88a5f4353"/><dir name="skins"><dir name="aqua"><file name="active-bg.gif" hash="f8fb9f2b7428c94b41320aa1bc9cf601"/><file name="dark-bg.gif" hash="949f6a11667cbdfbb96f8986464ba81b"/><file name="hover-bg.gif" hash="803ac4dbc56c05739f515d6ac6a66163"/><file name="menuarrow.gif" hash="1f8c673c8f76832febaeeac88a5f4353"/><file name="normal-bg.gif" hash="851134e42206fd3b173a3db654981bb6"/><file name="rowhover-bg.gif" hash="c097de7289bcf68723e89c248b9a2749"/><file name="status-bg.gif" hash="123882ca533030f07ee55c3818fc46b9"/><file name="theme.css" hash="ec69465f70d45213258fe1f89c52eceb"/><file name="title-bg.gif" hash="8d652fc5b683706fcbbf1103131c6ac2"/><file name="today-bg.gif" hash="9befc7d912cad22ddf2ec3fc21188bfd"/></dir></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Js_Calendar-1.51.1.2.xml var/package/Lib_Js_Calendar-1.51.1.2.xml | |
--- var/package/Lib_Js_Calendar-1.51.1.2.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Js_Calendar-1.51.1.2.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Js_Calendar</name> | |
+ <version>1.51.1.2</version> | |
+ <stability>stable</stability> | |
+ <license>Mixed</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Javascript Calendar for Magento</summary> | |
+ <description>Javascript Calendar for Magento</description> | |
+ <notes>1.51.1.2</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:11</time> | |
+ <contents><target name="mageweb"><dir name="js"><dir name="calendar"><file name="calendar-blue.css" hash="b8bb29e3c1573d0d2917cd3112b5052d"/><file name="calendar-blue2.css" hash="654dfacebcdd70c75ccaf2b4aee2d059"/><file name="calendar-brown.css" hash="f326a6a84037e549a9cd71a92346f210"/><file name="calendar-green.css" hash="b44e2c25ff56efaa6e37d84df202e5d5"/><file name="calendar-setup.js" hash="0c21b9e48ecfad87b4c4885cfb1aca8d"/><file name="calendar-system.css" hash="9b446e2ee0e9e4420fce20922405cec7"/><file name="calendar-tas.css" hash="fa3baa9367504954ef03c1f05d44f1a6"/><file name="calendar-win2k-1.css" hash="e3c61212e6abc28844005381d8fe9690"/><file name="calendar-win2k-2.css" hash="332d8bc7dab6acd575dba49a15b62947"/><file name="calendar-win2k-cold-1.css" hash="b0810ce949e6c954c54053c52b21e74a"/><file name="calendar-win2k-cold-2.css" hash="3487ec4e054141057673d794ce6d1032"/><file name="calendar.js" hash="97705cd3aa011e9671c4441643cc704a"/><file name="img.gif" hash="c1e5255bd358fcd5a0779a0cc310a2fe"/><file name="menuarrow.gif" hash="b5a91d7a2755198b2eb729541ad3288c"/><file name="menuarrow2.gif" hash="1f8c673c8f76832febaeeac88a5f4353"/><dir name="skins"><dir name="aqua"><file name="active-bg.gif" hash="f8fb9f2b7428c94b41320aa1bc9cf601"/><file name="dark-bg.gif" hash="949f6a11667cbdfbb96f8986464ba81b"/><file name="hover-bg.gif" hash="803ac4dbc56c05739f515d6ac6a66163"/><file name="menuarrow.gif" hash="1f8c673c8f76832febaeeac88a5f4353"/><file name="normal-bg.gif" hash="851134e42206fd3b173a3db654981bb6"/><file name="rowhover-bg.gif" hash="c097de7289bcf68723e89c248b9a2749"/><file name="status-bg.gif" hash="123882ca533030f07ee55c3818fc46b9"/><file name="theme.css" hash="ec69465f70d45213258fe1f89c52eceb"/><file name="title-bg.gif" hash="8d652fc5b683706fcbbf1103131c6ac2"/><file name="today-bg.gif" hash="9befc7d912cad22ddf2ec3fc21188bfd"/></dir></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Js_Ext-1.7.0.0.xml var/package/Lib_Js_Ext-1.7.0.0.xml | |
--- var/package/Lib_Js_Ext-1.7.0.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Js_Ext-1.7.0.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Js_Ext</name> | |
- <version>1.7.0.0</version> | |
- <stability>stable</stability> | |
- <license>Mixed</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Extjs Javascript Libraries for Magento</summary> | |
- <description>Extjs Javascript Libraries for Magento</description> | |
- <notes>1.7.0.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2012-04-23</date> | |
- <time>13:47:49</time> | |
- <contents><target name="mageweb"><dir name="js"><dir name="extjs"><dir name="css"><file name="README.txt" hash="66440774774ca4995ad5137ac9ae48e0"/><file name="basic-dialog.css" hash="8fefe8397b484ac4855de7232d00fc5d"/><file name="box.css" hash="e042e86fe72ac68849bb2c927d1b94be"/><file name="button.css" hash="0baa72e592fb9cfddb48491ce74040c2"/><file name="combo.css" hash="5f3457b94b882c6037da7b62b10fd50b"/><file name="core.css" hash="49c87f77493ccaa4867c4c4b54e2f297"/><file name="date-picker.css" hash="cb973d925a5fe95e3a8a23393b9db283"/><file name="dd.css" hash="67c5b243c56a99eb1bdbd4d57fea7ce1"/><file name="debug.css" hash="e22d97cc54ad2f42b4f06daa921da622"/><file name="editor.css" hash="ab513287f9e04386f48980e399d4a0b1"/><file name="ext-all.css" hash="e5acad04d0e7877b829bac608437522c"/><file name="form.css" hash="22877998588bc093dcf9375b8707079c"/><file name="grid.css" hash="79cefd1763bb64802f99177f233bd676"/><file name="layout.css" hash="2ba12ec3ceff9989de97e02296c94281"/><file name="menu.css" hash="13b8de4d5f155bb5d526318431b8317f"/><file name="panel.css" hash="fb6624b2dfc4ef99e08bc11eac723e20"/><file name="qtips.css" hash="67b76bbd4ad59a7341ed74a07c8e2524"/><file name="reset-min.css" hash="9c797c4b3949999b27f0e4108132cb57"/><file name="resizable.css" hash="2271ebacebaa1e429d42ba09da460647"/><file name="tabs.css" hash="d19d0773d75a9e2fe2032b1c35a22161"/><file name="toolbar.css" hash="ff85187d3b869bf3b98a72db95fca184"/><file name="tree.css" hash="d8a55f993187bc822efc5beb03722369"/><file name="ytheme-aero.css" hash="e555e0439f7fc0a43de37784e3df23c6"/><file name="ytheme-gray.css" hash="9d08035f3b052a9c604b0116f9a6c0be"/><file name="ytheme-vista.css" hash="8b13f7980b254be7e7c54abc0d8dcc3f"/></dir><file name="ext-tree-checkbox.js" hash="b9d12cc79c28a69f86390a0c52f4b9c7"/><file name="ext-tree.js" hash="cbf1e494c6a179530e7defa99b15d67e"/><file name="fix-defer-before.js" hash="548987160d94080e1a2864490da736b3"/><file name="fix-defer.js" hash="4bdaf3f1a485321eed3d0fa5469848d3"/><dir name="resources"><dir name="css"><file name="README.txt" hash="66440774774ca4995ad5137ac9ae48e0"/><file name="basic-dialog.css" hash="4cc973c87f79ea230f372cea597963ba"/><file name="box.css" hash="3809db7ee254d629d52dba0aad472d35"/><file name="button.css" hash="d3f29c8497579832fe5d7aafff7c3544"/><file name="combo.css" hash="483a1a701ca9c7db718e0e767f3d4585"/><file name="core.css" hash="6e82710d5206b6b7c0f70399cf649449"/><file name="date-picker.css" hash="fa68b668561d477e702318fb5d59636c"/><file name="dd.css" hash="f0e5f55969aeda8f65a01033613181c5"/><file name="debug.css" hash="6ef466c0c857e0c405cac7b8911f0824"/><file name="editor.css" hash="2fdb75e85a247c362285d4f079c0a12f"/><file name="ext-all.css" hash="c5e12af950c3ea3a243d0b9ca0dc4dba"/><file name="form.css" hash="38bd5bd602a83075325696af2c447e65"/><file name="grid.css" hash="c6d110f89542c04e4cbf98de73e97e9b"/><file name="layout.css" hash="89251906d248b3756f0ed354491651a6"/><file name="menu.css" hash="88eb8b3754612496ccf9d386694a39e0"/><file name="panel.css" hash="deaf7ccb5526687fadd67c093da9e604"/><file name="qtips.css" hash="2a6e683a7b23cbdf52177d7141d17435"/><file name="reset-min.css" hash="8fddbb1b7930f2817f2d5d215be98d5f"/><file name="resizable.css" hash="a50b8d1ea8e9dfbdd101a43bc63857c3"/><file name="tabs.css" hash="323d6f11f1550a43a02a617e39242ed5"/><file name="toolbar.css" hash="d09eb7507f57178967d217caeaa8b046"/><file name="tree.css" hash="b0104f954fbe1f04ebf49acffcec74ef"/><file name="ytheme-aero.css" hash="c25b48ba1b913f2ea094065fa916e9da"/><file name="ytheme-galdaka.css" hash="8b1917749205e64bdbcecc893e188b09"/><file name="ytheme-gray.css" hash="c45ba874b89038c9c8d9a79a1c591f26"/><file name="ytheme-magento.css" hash="94c3fc72743ad6d1fe7d8e74d713750e"/><file name="ytheme-vista.css" hash="2092ef97154cf5f6b33893bf5e178e21"/></dir><dir name="images"><dir name="default"><dir name="basic-dialog"><file name="btn-arrow.gif" hash="9e2365ef98c6096f6b5f411ab618bb4e"/><file name="btn-sprite.gif" hash="73a8327c23c12ed9ec42ac8f52b072e0"/><file name="close.gif" hash="2d54069e9355f295dd27027f7f779eb9"/><file name="collapse.gif" hash="63b2687a2dc81537765a7d22f9e480da"/><file name="e-handle.gif" hash="f9357e6c1dfbd00da007cf6705e08225"/><file name="expand.gif" hash="740af52fb7de6ca9fd888184e86a5308"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="progress.gif" hash="baff9a083b93588fa7ff3548844a9e1a"/><file name="progress2.gif" hash="339036f9eb530c1b180c77f9a109ef3e"/><file name="s-handle.gif" hash="36b90844c0b35da23da21aac599957d4"/><file name="se-handle.gif" hash="668b22581100befcf947e806599dc0ce"/></dir><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="8908365d736426795ce46de7e328b508"/></dir><dir name="form"><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="date-trigger.gif" hash="9245675ed8931df277184b419cf4cdad"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="40491021e901fa801dbbc09b6c59d73e"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="45019efdf75528242c5a68742821dc57"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="Thumbs.db" hash="c3affff39ba36b80da43a08c34a61391"/><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="4c58074bb961c8f184522355f1b0eb90"/><file name="grid3-special-col-bg.gif" hash="c9df03a1c107360128da89fa47066405"/><file name="grid3-special-col-sel-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="refresh.gif" hash="8dae08d3581dcd9a04ca73877eab4b53"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort_asc.gif" hash="cc186187e31b0c39abbb7d2394916292"/><file name="sort_desc.gif" hash="fcfe91243fac2e5f24d05bb44f78ded4"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="collapse.gif" hash="dfcec0803d488a783916c750fd83a897"/><file name="expand.gif" hash="c9c9b0ea5311c3dc016c69dc234912bc"/><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><file name="ns-collapse.gif" hash="efa9fbd7a1f3f0f1f22360391e16126f"/><file name="ns-expand.gif" hash="da1f9d40c091d3b6dc7a8dee4fc02ac6"/><file name="panel-close.gif" hash="b185da1837344529bfb684a96d8371b5"/><file name="panel-title-bg.gif" hash="b66384c309a397963389a76b07e9ecd4"/><file name="panel-title-light-bg.gif" hash="688d3a263442db125da170e5d3aebf70"/><file name="stick.gif" hash="be9e67ae0b61b01cfd15928ca7a3da51"/><file name="stuck.gif" hash="745e0cacb51250ea0216efc4a1cb50cb"/><file name="tab-close-on.gif" hash="0ae2c978e85391a69f0dce8da18d8b23"/><file name="tab-close.gif" hash="f92107cc6b4cb78af084648a628e01d2"/></dir><dir name="menu"><file name="checked.gif" hash="692bc97badf50c05495f6109143b4b11"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="5d34732294bbe06a862961dd02bcc962"/><file name="unchecked.gif" hash="9b90ed7c9e8f0892ce09f3b35b19db53"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="06daef2335218cdfd900ce8bf7a68738"/><file name="left-right.gif" hash="49344fefef7c6f866f910b9067f0990f"/><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="31ccd74ac8dab4b5669887310a2341df"/><file name="top-bottom.gif" hash="d9a86e8466a31bd1cb87aae2cf55faf2"/><file name="white-corners-sprite.gif" hash="de8b3036676d19b9635f319a8a4aad36"/><file name="white-left-right.gif" hash="77a6389c6737ad507ca5330ad8816524"/><file name="white-top-bottom.gif" hash="f865d7237bff3c45fd4a8c448f97d236"/></dir><dir name="qtip"><file name="bg.gif" hash="49c0a530cc16357bb39d51c13065a88f"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-sprite.gif" hash="11637a20b1f3f2331bf0627146c2f433"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="shadow-c.png" hash="3abbfce345687daada53445adf6fddc7"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><dir name="shared"><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="tabs"><file name="tab-btm-inactive-left-bg.gif" hash="4f141a6abf25d3c9409b6c381333c138"/><file name="tab-btm-inactive-right-bg.gif" hash="eb2423d3b9dd072976ce955ab0c683d6"/><file name="tab-btm-left-bg.gif" hash="a36eb9382ed8b858eff2c5d4e5d7011a"/><file name="tab-btm-right-bg.gif" hash="9e4245776f0f7b6b6c7ddbf40a43103a"/><file name="tab-sprite.gif" hash="6a7d481bf5b74acfbfa0b01a35bd6620"/></dir><dir name="toolbar"><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="cf2d9408f320e696e607d8472afa7ff0"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="3aed28dd646d22e215c8a6a3e983322f"/></dir><dir name="tree"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-end-minus.gif" hash="a469f6a4394d797c2efeffc70409f6db"/><file name="elbow-end-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-end-plus.gif" hash="ec1482391363612d9e5f8c7087fddaba"/><file name="elbow-end.gif" hash="345551384aa325189ba28a1c20f3405e"/><file name="elbow-line.gif" hash="90e478158df476dc989a60daaafc87e6"/><file name="elbow-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-minus.gif" hash="71bb1bd44b1274c60d30dba1de472ed7"/><file name="elbow-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-plus.gif" hash="945572d06a74b5f952251a86c595f2da"/><file name="elbow.gif" hash="27679f3b1222ba95d9925885d7d82d02"/><file name="folder-open.gif" hash="c569141d6ae7c61d838ed8af26aa9380"/><file name="folder.gif" hash="b7209740bb4a825a06beb8698d92c2b1"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="window"><file name="corners-sprite.gif" hash="b485d6e69678822a0fb77cc312487874"/><file name="left-right.gif" hash="3fe626d6ca2f71d36fc62c32cb1cc52a"/><file name="top-bottom.gif" hash="8a227016c401438e602c2f770a611d5b"/></dir></dir><dir name="magento"><dir name="basic-dialog"><file name="collapse-on.gif" hash="b60dfdc0d00cfb30a8a622e0c22eed84"/><file name="collapse.gif" hash="8525b9d2e93d31e0b071b1f9bf9550e5"/><file name="expand-on.gif" hash="0dfb4ac6d626cdcaa931c14dbb45848e"/><file name="expand.gif" hash="0eb5c03da8b8415e0568784c959e536a"/><file name="hd-sprite.gif" hash="035bf2296afd70af7020cf06b60bf3f6"/><file name="ns-collapse-on.gif" hash="88ed8b7578c803f68d9f1eb171454e00"/><file name="ns-collapse.gif" hash="44b91376c040f91672aaa98c1fcc062b"/><file name="ns-expand-on.gif" hash="587c2ce90066280e5e6cd731bb9d346c"/><file name="ns-expand.gif" hash="57b479b168f8a54200bd1770b5591630"/><file name="panel_close.gif" hash="686c6dfcf341de25487ab4d8ea5954ce"/><file name="pop_close.gif" hash="dd3605531f9959901eff6f089f084bdc"/><file name="pop_collapse.gif" hash="2b8007242ae1c9ae9f26c60a878a63f7"/></dir><dir name="grid"><file name="grid-body-bg.gif" hash="b5fe585c01f57b2171a2b723abcc4a38"/><file name="grid-split.gif" hash="32e210451e8dc4295b53cf7ca13bb4a6"/></dir><dir name="layout"><file name="checkered-bg.gif" hash="f0a0cd29a6120377c289fd39e2ee7e80"/><file name="icon-catalog.gif" hash="435ff2300ddefb9f8a4bad8ee806fb1a"/><file name="icon-category.gif" hash="ce2a146851bb5ec1e41670b68183b56a"/><file name="icon-my-tasks.gif" hash="0ecb888b160701845e25a7140d038af0"/><file name="icon-product.gif" hash="a0707878c5221052209e5ae6a4de0bd2"/></dir><file name="loading_bg.gif" hash="e202ef7e03d0ef3e9beac7480dae65bf"/><dir name="tabs"><file name="tab-sprite.gif" hash="049fb2f4186b6dc9de747ad96456b1ab"/></dir><dir name="toolbar"><file name="btn-arrow.gif" hash="938cffb6de5cc8b1febfd1851fd983c2"/><file name="header_bg.gif" hash="3696842a32740fa159484cabc3340d13"/><file name="toolbar-bg.gif" hash="8d1b465c2a75963407b536d9081f649f"/></dir><dir name="tree"><file name="elbow-end-minus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-minus.gif" hash="3dbdb88a9297fe5631e832f046b0350b"/><file name="elbow-end-plus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-plus.gif" hash="5470e5712a9742ba666c26cb429baaeb"/><file name="elbow-end.gif" hash="63fe879440e2784e0cc0d316ce017745"/><file name="elbow-line.gif" hash="b316a39455304e20e01dbc437f57fd32"/><file name="elbow-minus-nl.gif" hash="0e3129bff70475c8f7f297e0e59d1608"/><file name="elbow-minus.gif" hash="e7b18ff6800e65c6e171bbb2a911762e"/><file name="elbow-plus-nl.gif" hash="78a8f737941fa658f1e770258a3791cd"/><file name="elbow-plus.gif" hash="b02cb264df55aef2105b1b245d075e56"/><file name="elbow.gif" hash="b6bd0e0237e3cd413fa2dac27701c724"/><file name="folder-open.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="folder.gif" hash="03eb26c42137ac792609822862ef4d0f"/><file name="leaf.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="s.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/></dir></dir></dir></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Js_Ext-1.9.2.1.xml var/package/Lib_Js_Ext-1.9.2.1.xml | |
--- var/package/Lib_Js_Ext-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Js_Ext-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Js_Ext</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license>Mixed</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Extjs Javascript Libraries for Magento</summary> | |
+ <description>Extjs Javascript Libraries for Magento</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:11</time> | |
+ <contents><target name="mageweb"><dir name="js"><dir name="extjs"><dir name="css"><file name="README.txt" hash="66440774774ca4995ad5137ac9ae48e0"/><file name="basic-dialog.css" hash="8fefe8397b484ac4855de7232d00fc5d"/><file name="box.css" hash="e042e86fe72ac68849bb2c927d1b94be"/><file name="button.css" hash="0baa72e592fb9cfddb48491ce74040c2"/><file name="combo.css" hash="5f3457b94b882c6037da7b62b10fd50b"/><file name="core.css" hash="49c87f77493ccaa4867c4c4b54e2f297"/><file name="date-picker.css" hash="cb973d925a5fe95e3a8a23393b9db283"/><file name="dd.css" hash="67c5b243c56a99eb1bdbd4d57fea7ce1"/><file name="debug.css" hash="e22d97cc54ad2f42b4f06daa921da622"/><file name="editor.css" hash="ab513287f9e04386f48980e399d4a0b1"/><file name="ext-all.css" hash="e5acad04d0e7877b829bac608437522c"/><file name="form.css" hash="22877998588bc093dcf9375b8707079c"/><file name="grid.css" hash="79cefd1763bb64802f99177f233bd676"/><file name="layout.css" hash="2ba12ec3ceff9989de97e02296c94281"/><file name="menu.css" hash="13b8de4d5f155bb5d526318431b8317f"/><file name="panel.css" hash="fb6624b2dfc4ef99e08bc11eac723e20"/><file name="qtips.css" hash="67b76bbd4ad59a7341ed74a07c8e2524"/><file name="reset-min.css" hash="9c797c4b3949999b27f0e4108132cb57"/><file name="resizable.css" hash="2271ebacebaa1e429d42ba09da460647"/><file name="tabs.css" hash="d19d0773d75a9e2fe2032b1c35a22161"/><file name="toolbar.css" hash="ff85187d3b869bf3b98a72db95fca184"/><file name="tree.css" hash="d8a55f993187bc822efc5beb03722369"/><file name="ytheme-aero.css" hash="e555e0439f7fc0a43de37784e3df23c6"/><file name="ytheme-gray.css" hash="9d08035f3b052a9c604b0116f9a6c0be"/><file name="ytheme-vista.css" hash="8b13f7980b254be7e7c54abc0d8dcc3f"/></dir><file name="ext-tree-checkbox.js" hash="b9d12cc79c28a69f86390a0c52f4b9c7"/><file name="ext-tree.js" hash="cbf1e494c6a179530e7defa99b15d67e"/><file name="fix-defer-before.js" hash="c1b20b41f0f70d928e7bb3b03be42a85"/><file name="fix-defer.js" hash="bb81d23e9a49c2481c00b1a54f4d9a8e"/><dir name="resources"><dir name="css"><file name="README.txt" hash="66440774774ca4995ad5137ac9ae48e0"/><file name="basic-dialog.css" hash="4cc973c87f79ea230f372cea597963ba"/><file name="box.css" hash="3809db7ee254d629d52dba0aad472d35"/><file name="button.css" hash="d3f29c8497579832fe5d7aafff7c3544"/><file name="combo.css" hash="483a1a701ca9c7db718e0e767f3d4585"/><file name="core.css" hash="6e82710d5206b6b7c0f70399cf649449"/><file name="date-picker.css" hash="fa68b668561d477e702318fb5d59636c"/><file name="dd.css" hash="f0e5f55969aeda8f65a01033613181c5"/><file name="debug.css" hash="6ef466c0c857e0c405cac7b8911f0824"/><file name="editor.css" hash="2fdb75e85a247c362285d4f079c0a12f"/><file name="ext-all.css" hash="c5e12af950c3ea3a243d0b9ca0dc4dba"/><file name="form.css" hash="38bd5bd602a83075325696af2c447e65"/><file name="grid.css" hash="c6d110f89542c04e4cbf98de73e97e9b"/><file name="layout.css" hash="89251906d248b3756f0ed354491651a6"/><file name="menu.css" hash="88eb8b3754612496ccf9d386694a39e0"/><file name="panel.css" hash="deaf7ccb5526687fadd67c093da9e604"/><file name="qtips.css" hash="2a6e683a7b23cbdf52177d7141d17435"/><file name="reset-min.css" hash="8fddbb1b7930f2817f2d5d215be98d5f"/><file name="resizable.css" hash="a50b8d1ea8e9dfbdd101a43bc63857c3"/><file name="tabs.css" hash="323d6f11f1550a43a02a617e39242ed5"/><file name="toolbar.css" hash="d09eb7507f57178967d217caeaa8b046"/><file name="tree.css" hash="b0104f954fbe1f04ebf49acffcec74ef"/><file name="ytheme-aero.css" hash="c25b48ba1b913f2ea094065fa916e9da"/><file name="ytheme-galdaka.css" hash="8b1917749205e64bdbcecc893e188b09"/><file name="ytheme-gray.css" hash="c45ba874b89038c9c8d9a79a1c591f26"/><file name="ytheme-magento.css" hash="94c3fc72743ad6d1fe7d8e74d713750e"/><file name="ytheme-vista.css" hash="2092ef97154cf5f6b33893bf5e178e21"/></dir><dir name="images"><dir name="default"><dir name="basic-dialog"><file name="btn-arrow.gif" hash="9e2365ef98c6096f6b5f411ab618bb4e"/><file name="btn-sprite.gif" hash="73a8327c23c12ed9ec42ac8f52b072e0"/><file name="close.gif" hash="2d54069e9355f295dd27027f7f779eb9"/><file name="collapse.gif" hash="63b2687a2dc81537765a7d22f9e480da"/><file name="e-handle.gif" hash="f9357e6c1dfbd00da007cf6705e08225"/><file name="expand.gif" hash="740af52fb7de6ca9fd888184e86a5308"/><file name="hd-sprite.gif" hash="6a54ae98bef53397d52282201852c204"/><file name="progress.gif" hash="baff9a083b93588fa7ff3548844a9e1a"/><file name="progress2.gif" hash="339036f9eb530c1b180c77f9a109ef3e"/><file name="s-handle.gif" hash="36b90844c0b35da23da21aac599957d4"/><file name="se-handle.gif" hash="668b22581100befcf947e806599dc0ce"/></dir><dir name="box"><file name="corners-blue.gif" hash="86fd4c5664e0971bfc11959e8442604c"/><file name="corners.gif" hash="d2d1bc2085b369ce35ffd20c0121676e"/><file name="l-blue.gif" hash="ced9ffbf66ea39e77083a591f8257267"/><file name="l.gif" hash="c4d9dbbdc59ae06b5e9e72a6a865c981"/><file name="r-blue.gif" hash="82dbb522a80e3246f6297719371a9494"/><file name="r.gif" hash="bf1e1d4a45f951ae656968a8c834f04a"/><file name="tb-blue.gif" hash="7c4b19eb682afdc1bde0640d2321fb25"/><file name="tb.gif" hash="dd3f63afe7ba90983ba73dad1c66bf2f"/></dir><dir name="dd"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-no.gif" hash="ae536c37391ba78143b5c8283cec8d13"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/></dir><dir name="editor"><file name="tb-sprite.gif" hash="8908365d736426795ce46de7e328b508"/></dir><dir name="form"><file name="clear-trigger.gif" hash="97b3e5e9edf27b50d63d48098c2f1eae"/><file name="date-trigger.gif" hash="9245675ed8931df277184b419cf4cdad"/><file name="error-tip-corners.gif" hash="364474276178c7b48b6270056b42b808"/><file name="exclamation.gif" hash="40491021e901fa801dbbc09b6c59d73e"/><file name="search-trigger.gif" hash="559ef372cf27a38678d84e8c0b7237fc"/><file name="text-bg.gif" hash="d5ba54c1f417e6a72cbce8b909078727"/><file name="trigger-tpl.gif" hash="d7be20f0dc38f4f46cd318fe32cf3ce3"/><file name="trigger.gif" hash="45019efdf75528242c5a68742821dc57"/></dir><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><dir name="grid"><file name="Thumbs.db" hash="c3affff39ba36b80da43a08c34a61391"/><file name="arrow-left-white.gif" hash="b04e859bdcbd21ad1f06b8bfa7881df8"/><file name="arrow-right-white.gif" hash="714eb00f8134dde3a65c83f3f71ad2c4"/><file name="col-move-bottom.gif" hash="9c38bcb5cee1dc9b4ce64ad9ab1386f8"/><file name="col-move-top.gif" hash="c4584202d5172464050f675d396d1c6f"/><file name="dirty.gif" hash="decca3b96e2c37cf6eb04ddb0d9f669b"/><file name="done.gif" hash="365266930a93451414fe51ffc524a196"/><file name="drop-no.gif" hash="b53ca86d60fbcc7a45c8917299218bfd"/><file name="drop-yes.gif" hash="af96f4c3b32a470db2f38abb521b5c97"/><file name="footer-bg.gif" hash="65ed63e44c6149f1127ad3b4be4e0108"/><file name="grid-blue-hd.gif" hash="dd35d5c1202c440c2d1a945b335984d3"/><file name="grid-blue-split.gif" hash="0494ba49974ff2bc1bf81e1d82dfee18"/><file name="grid-hrow.gif" hash="55972a5063d80f35fb6b95a79bb0018a"/><file name="grid-loading.gif" hash="9ac6f737eb9b15272f12b00bfeb3c3c6"/><file name="grid-split.gif" hash="3ef419d4b9421d8e94f673a6238dc4c0"/><file name="grid-vista-hd.gif" hash="675f403e8a9cb5ab4bed725da9fe2023"/><file name="grid3-hd-btn.gif" hash="e3e77072c16a6b27556236961f29c552"/><file name="grid3-hrow-over.gif" hash="a92d8f6c106943995720f2884634670e"/><file name="grid3-hrow.gif" hash="4c58074bb961c8f184522355f1b0eb90"/><file name="grid3-special-col-bg.gif" hash="c9df03a1c107360128da89fa47066405"/><file name="grid3-special-col-sel-bg.gif" hash="a94039f89dec164896ceff1fbdf6dbc5"/><file name="hd-pop.gif" hash="e5f27a2f68cc2d13b11cf41c46d298dc"/><file name="hmenu-asc.gif" hash="048e0bc30f7c39d473dad5dabcbe03f2"/><file name="hmenu-desc.gif" hash="f0a987b34b003b25a7c82624d41f018a"/><file name="hmenu-lock.gif" hash="bcef18e25342c69c37c44dab87086065"/><file name="hmenu-lock.png" hash="2a3b0b441834f443c1086930939efdae"/><file name="hmenu-unlock.gif" hash="8cc8205dafa587ef02d8a86903ae8074"/><file name="hmenu-unlock.png" hash="c1f61df70b98c5498ea81e7e7b9effbb"/><file name="invalid_line.gif" hash="04a88e97b56e8a8ece4a66d49cc78828"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="mso-hd.gif" hash="37fba9c02f0eefe57f655890eef1c4a1"/><file name="nowait.gif" hash="23c91166dbb16ba8655363321bf5a400"/><file name="page-first-disabled.gif" hash="8d3185028c541cbcce67b5909c04824e"/><file name="page-first.gif" hash="16ec00fa770d860b768cf5034ddfca96"/><file name="page-last-disabled.gif" hash="1d123237ceeb5109a1b9274f0cf19d73"/><file name="page-last.gif" hash="ef524dd0b8dfe4eefecffaa1c0bb8edd"/><file name="page-next-disabled.gif" hash="0f4b8681772c91921fa93ede9c755ea0"/><file name="page-next.gif" hash="f6f9d2209dfc99912ffc9848d97646db"/><file name="page-prev-disabled.gif" hash="eefcbed15c8d37a89618b08f7b224297"/><file name="page-prev.gif" hash="80daad880483eed682b22ec70514ecc4"/><file name="pick-button.gif" hash="b431fdf306f1e2f033d0a431996de93f"/><file name="refresh.gif" hash="8dae08d3581dcd9a04ca73877eab4b53"/><file name="row-check-sprite.gif" hash="2d0aa7e501c3e6f97a97faf75e35d3c3"/><file name="row-expand-sprite.gif" hash="be81199d9d4fa69bef47a8f036a5a7d8"/><file name="row-over.gif" hash="f639094bd0560aefabc86e51a825f23d"/><file name="row-sel.gif" hash="ca87d6b950386edd5e17c985769d9101"/><file name="sort_asc.gif" hash="cc186187e31b0c39abbb7d2394916292"/><file name="sort_desc.gif" hash="fcfe91243fac2e5f24d05bb44f78ded4"/><file name="wait.gif" hash="b0cd5a5dc070c705ebf8814a909802c3"/></dir><dir name="layout"><file name="collapse.gif" hash="dfcec0803d488a783916c750fd83a897"/><file name="expand.gif" hash="c9c9b0ea5311c3dc016c69dc234912bc"/><file name="gradient-bg.gif" hash="e117fca9d088e4cd5bbbcec7b99a8408"/><file name="ns-collapse.gif" hash="efa9fbd7a1f3f0f1f22360391e16126f"/><file name="ns-expand.gif" hash="da1f9d40c091d3b6dc7a8dee4fc02ac6"/><file name="panel-close.gif" hash="b185da1837344529bfb684a96d8371b5"/><file name="panel-title-bg.gif" hash="b66384c309a397963389a76b07e9ecd4"/><file name="panel-title-light-bg.gif" hash="688d3a263442db125da170e5d3aebf70"/><file name="stick.gif" hash="be9e67ae0b61b01cfd15928ca7a3da51"/><file name="stuck.gif" hash="745e0cacb51250ea0216efc4a1cb50cb"/><file name="tab-close-on.gif" hash="0ae2c978e85391a69f0dce8da18d8b23"/><file name="tab-close.gif" hash="f92107cc6b4cb78af084648a628e01d2"/></dir><dir name="menu"><file name="checked.gif" hash="692bc97badf50c05495f6109143b4b11"/><file name="group-checked.gif" hash="f7973443d91e5e074013f1b07ee79479"/><file name="menu-parent.gif" hash="d303ad7e3ced891736e80f77e1d4e51d"/><file name="menu.gif" hash="5d34732294bbe06a862961dd02bcc962"/><file name="unchecked.gif" hash="9b90ed7c9e8f0892ce09f3b35b19db53"/></dir><dir name="panel"><file name="corners-sprite.gif" hash="06daef2335218cdfd900ce8bf7a68738"/><file name="left-right.gif" hash="49344fefef7c6f866f910b9067f0990f"/><file name="tool-sprite-tpl.gif" hash="e0449768cd5dce80b18fac904818ab33"/><file name="tool-sprites.gif" hash="31ccd74ac8dab4b5669887310a2341df"/><file name="top-bottom.gif" hash="d9a86e8466a31bd1cb87aae2cf55faf2"/><file name="white-corners-sprite.gif" hash="de8b3036676d19b9635f319a8a4aad36"/><file name="white-left-right.gif" hash="77a6389c6737ad507ca5330ad8816524"/><file name="white-top-bottom.gif" hash="f865d7237bff3c45fd4a8c448f97d236"/></dir><dir name="qtip"><file name="bg.gif" hash="49c0a530cc16357bb39d51c13065a88f"/><file name="close.gif" hash="0379d036250096cae2e42b427b3df2e7"/><file name="tip-sprite.gif" hash="11637a20b1f3f2331bf0627146c2f433"/></dir><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/><file name="shadow-c.png" hash="3abbfce345687daada53445adf6fddc7"/><file name="shadow-lr.png" hash="986270d8ab4330fa7499dc33ed135598"/><file name="shadow.png" hash="860bf4f690d2ea2aba7b11500925da62"/><dir name="shared"><file name="calendar.gif" hash="81296cff1f97f5365524f2b9dcf626da"/><file name="glass-bg.gif" hash="bc2cd5c5ac9b3874d956c892d23f2119"/><file name="left-btn.gif" hash="6bf30c6cf0b5d70436c3e463b5532b35"/><file name="right-btn.gif" hash="e7ad3a7f4814791cecf1b90e77e9e139"/><file name="warning.gif" hash="448dc934a7f0dd6092b51f88a1e47b2d"/></dir><dir name="sizer"><file name="e-handle-dark.gif" hash="b86289f41d7ad1a7401dd2b2a9b3c3d8"/><file name="e-handle.gif" hash="510edc95ebaa36306916c50ca10596f7"/><file name="ne-handle-dark.gif" hash="115f71b851c7f0b5f354caa7b8dfff15"/><file name="ne-handle.gif" hash="8e268b962dc909d275997b572ff17a72"/><file name="nw-handle-dark.gif" hash="4a361e6920b2e34a39fd425a515c83b9"/><file name="nw-handle.gif" hash="1120600505249c38c3d1cc2ab120cd13"/><file name="s-handle-dark.gif" hash="4a6bf15d308a4ae580dd03cbd431a95c"/><file name="s-handle.gif" hash="5e3338cb09e9df7f52383d6b1423fc86"/><file name="se-handle-dark.gif" hash="f3d8d8aac23e3e9633072e2366cda847"/><file name="se-handle.gif" hash="71edc3f63f79f447d2c81ee09e1fbbc3"/><file name="square.gif" hash="4431ea1954bfd2a9cea0931f07fc7ffa"/><file name="sw-handle-dark.gif" hash="44b2400d873cf8a23d84424827cde44d"/><file name="sw-handle.gif" hash="c3e0befc4208a51180344765fd7deeda"/></dir><dir name="tabs"><file name="tab-btm-inactive-left-bg.gif" hash="4f141a6abf25d3c9409b6c381333c138"/><file name="tab-btm-inactive-right-bg.gif" hash="eb2423d3b9dd072976ce955ab0c683d6"/><file name="tab-btm-left-bg.gif" hash="a36eb9382ed8b858eff2c5d4e5d7011a"/><file name="tab-btm-right-bg.gif" hash="9e4245776f0f7b6b6c7ddbf40a43103a"/><file name="tab-sprite.gif" hash="6a7d481bf5b74acfbfa0b01a35bd6620"/></dir><dir name="toolbar"><file name="btn-arrow-light.gif" hash="fa49b39a0fd88ef26264da44a2b4edea"/><file name="btn-arrow.gif" hash="12bda29a4c8016cfa047e852c4353f59"/><file name="btn-over-bg.gif" hash="faddf9b24cefa721326ba3f87f3ef31f"/><file name="gray-bg.gif" hash="cf2d9408f320e696e607d8472afa7ff0"/><file name="tb-bg.gif" hash="5309337fd7a22cab9d9467fd9eaa0a0c"/><file name="tb-btn-sprite.gif" hash="3aed28dd646d22e215c8a6a3e983322f"/></dir><dir name="tree"><file name="drop-add.gif" hash="95eb34ac70a1a3c95ef39ab826a89491"/><file name="drop-between.gif" hash="edb544a0de58547d4a39c526e06e3c82"/><file name="drop-no.gif" hash="67f83ea04a2eb1c50614a96faf625f25"/><file name="drop-over.gif" hash="d6b303cfa3de8784057d9d7e66cdaa86"/><file name="drop-under.gif" hash="55e5dbc9451cfa91423832260b0753aa"/><file name="drop-yes.gif" hash="f3216326c00890259e84f1726dd1043f"/><file name="elbow-end-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-end-minus.gif" hash="a469f6a4394d797c2efeffc70409f6db"/><file name="elbow-end-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-end-plus.gif" hash="ec1482391363612d9e5f8c7087fddaba"/><file name="elbow-end.gif" hash="345551384aa325189ba28a1c20f3405e"/><file name="elbow-line.gif" hash="90e478158df476dc989a60daaafc87e6"/><file name="elbow-minus-nl.gif" hash="5e5bffba157eceee7989db95b919e4d5"/><file name="elbow-minus.gif" hash="71bb1bd44b1274c60d30dba1de472ed7"/><file name="elbow-plus-nl.gif" hash="f0f50c0dd3ee6dd4b11c1f245b36eb01"/><file name="elbow-plus.gif" hash="945572d06a74b5f952251a86c595f2da"/><file name="elbow.gif" hash="27679f3b1222ba95d9925885d7d82d02"/><file name="folder-open.gif" hash="c569141d6ae7c61d838ed8af26aa9380"/><file name="folder.gif" hash="b7209740bb4a825a06beb8698d92c2b1"/><file name="leaf.gif" hash="23757d6e353f343e3c7edfe28428f198"/><file name="loading.gif" hash="00ef871b291bc03a497d608a5bd8ec99"/><file name="s.gif" hash="fc94fb0c3ed8a8f909dbc7630a0987ff"/></dir><dir name="window"><file name="corners-sprite.gif" hash="b485d6e69678822a0fb77cc312487874"/><file name="left-right.gif" hash="3fe626d6ca2f71d36fc62c32cb1cc52a"/><file name="top-bottom.gif" hash="8a227016c401438e602c2f770a611d5b"/></dir></dir><dir name="magento"><dir name="basic-dialog"><file name="collapse-on.gif" hash="b60dfdc0d00cfb30a8a622e0c22eed84"/><file name="collapse.gif" hash="8525b9d2e93d31e0b071b1f9bf9550e5"/><file name="expand-on.gif" hash="0dfb4ac6d626cdcaa931c14dbb45848e"/><file name="expand.gif" hash="0eb5c03da8b8415e0568784c959e536a"/><file name="hd-sprite.gif" hash="035bf2296afd70af7020cf06b60bf3f6"/><file name="ns-collapse-on.gif" hash="88ed8b7578c803f68d9f1eb171454e00"/><file name="ns-collapse.gif" hash="44b91376c040f91672aaa98c1fcc062b"/><file name="ns-expand-on.gif" hash="587c2ce90066280e5e6cd731bb9d346c"/><file name="ns-expand.gif" hash="57b479b168f8a54200bd1770b5591630"/><file name="panel_close.gif" hash="686c6dfcf341de25487ab4d8ea5954ce"/><file name="pop_close.gif" hash="dd3605531f9959901eff6f089f084bdc"/><file name="pop_collapse.gif" hash="2b8007242ae1c9ae9f26c60a878a63f7"/></dir><dir name="grid"><file name="grid-body-bg.gif" hash="b5fe585c01f57b2171a2b723abcc4a38"/><file name="grid-split.gif" hash="32e210451e8dc4295b53cf7ca13bb4a6"/></dir><dir name="layout"><file name="checkered-bg.gif" hash="f0a0cd29a6120377c289fd39e2ee7e80"/><file name="icon-catalog.gif" hash="435ff2300ddefb9f8a4bad8ee806fb1a"/><file name="icon-category.gif" hash="ce2a146851bb5ec1e41670b68183b56a"/><file name="icon-my-tasks.gif" hash="0ecb888b160701845e25a7140d038af0"/><file name="icon-product.gif" hash="a0707878c5221052209e5ae6a4de0bd2"/></dir><file name="loading_bg.gif" hash="e202ef7e03d0ef3e9beac7480dae65bf"/><dir name="tabs"><file name="tab-sprite.gif" hash="049fb2f4186b6dc9de747ad96456b1ab"/></dir><dir name="toolbar"><file name="btn-arrow.gif" hash="938cffb6de5cc8b1febfd1851fd983c2"/><file name="header_bg.gif" hash="3696842a32740fa159484cabc3340d13"/><file name="toolbar-bg.gif" hash="8d1b465c2a75963407b536d9081f649f"/></dir><dir name="tree"><file name="elbow-end-minus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-minus.gif" hash="3dbdb88a9297fe5631e832f046b0350b"/><file name="elbow-end-plus-nl.gif" hash="6dc08c43109cc6a365bd0270f05e2f1c"/><file name="elbow-end-plus.gif" hash="5470e5712a9742ba666c26cb429baaeb"/><file name="elbow-end.gif" hash="63fe879440e2784e0cc0d316ce017745"/><file name="elbow-line.gif" hash="b316a39455304e20e01dbc437f57fd32"/><file name="elbow-minus-nl.gif" hash="0e3129bff70475c8f7f297e0e59d1608"/><file name="elbow-minus.gif" hash="e7b18ff6800e65c6e171bbb2a911762e"/><file name="elbow-plus-nl.gif" hash="78a8f737941fa658f1e770258a3791cd"/><file name="elbow-plus.gif" hash="b02cb264df55aef2105b1b245d075e56"/><file name="elbow.gif" hash="b6bd0e0237e3cd413fa2dac27701c724"/><file name="folder-open.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="folder.gif" hash="03eb26c42137ac792609822862ef4d0f"/><file name="leaf.gif" hash="e3cd196406d4857dc0c926807f16c409"/><file name="s.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/></dir></dir></dir></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Js_Mage-1.9.2.0.xml var/package/Lib_Js_Mage-1.9.2.0.xml | |
--- var/package/Lib_Js_Mage-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Js_Mage-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Js_Mage</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license>Mixed</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Javascript Libraries for Magento</summary> | |
- <description>Javascript Libraries for Magento</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="mageweb"><dir name="js"><dir name="lib"><file name="FABridge.js" hash="64244d8d58abd42bd71f0ee3309767ad"/><file name="boxover.js" hash="a5ade77452e8d5066cb84dcac3d34ed5"/><file name="ccard.js" hash="d3e849be0977d53de4af933b40293ff6"/><file name="dropdown.js" hash="2d9da17f15fc744e52ff612bf7a7c9f5"/><file name="ds-sleight.js" hash="85af457d444865d1587bfe4875bd4fc6"/><file name="flex.js" hash="d6b59c1d7c7cad9c6c91becc4b89ae32"/><dir name="jquery"><file name="jquery-1.10.2.js" hash="91515770ce8c55de23b306444d8ea998"/><file name="jquery-1.10.2.min.js" hash="841dc30647f93349b7d8ef61deebe411"/><file name="jquery-1.10.2.min.map" hash="6c3ccfc221d36777d383b6e04d0b8af9"/><file name="noconflict.js" hash="2de1eabae306cff4f08b9f5eb1c934df"/></dir></dir><dir name="mage"><dir name="adminhtml"><file name="accordion.js" hash="bcc4dc0055960cc580d9a07079951bb5"/><file name="backup.js" hash="d685e20206bbcf8596f1bb73296d0b18"/><file name="browser.js" hash="98b2143b3c7bdef5849cd92541beeec2"/><file name="events.js" hash="157028b6921ea86c8c1353ff2b4daf7c"/><file name="flexuploader.js" hash="786e37bdc8eea5caa7e078a4fe2d8f70"/><file name="form.js" hash="ffeeeb0c75d2461b192bcb605402e96e"/><file name="giftmessage.js" hash="d911c86f33828e2d991cf464ca3437eb"/><dir name="giftoptions"><file name="tooltip.js" hash="49562aaae14c77448f2e0903c159ad14"/></dir><file name="grid.js" hash="343a305ffea464dfd726fcecb7ce9dd6"/><file name="hash.js" hash="fd0baa433d58ae1b55d703f11b4f42a4"/><file name="image.js" hash="f75339fdc409f7bff22120ace908d851"/><file name="loader.js" hash="a52e5c7df531fab3133ab82b356d91f9"/><file name="magento-all.js" hash="759e5b8ed9d051cdb97b7547469020d3"/><dir name="product"><dir name="composite"><file name="configure.js" hash="7f55e5d593d09ba8d309190386aaec7d"/></dir></dir><file name="product.js" hash="0253c591cd4beabc703a88dec162e031"/><file name="rules.js" hash="219f397e72098ae0e220d8d17c46a806"/><dir name="sales"><file name="packaging.js" hash="743b60a18adc5e04ed0e28b8c549f2f6"/></dir><file name="sales.js" hash="c8dd0fd8fa3faa9b9f0dd767b5a2c995"/><file name="scrollbar.js" hash="95dd0c4396e1752b36762e736faac6d5"/><file name="tabs.js" hash="0343832c21b3e6d46dc3b32c8b861833"/><file name="tools.js" hash="b987b91011982d00f249cc6621834b8d"/><file name="uploader.js" hash="66cdef337c2a486a41452a2bd12783ac"/><file name="variables.js" hash="63424664960a3af8479c043f4948e830"/><dir name="wysiwyg"><dir name="tiny_mce"><dir name="plugins"><dir name="magentovariable"><file name="editor_plugin.js" hash="3e34d521a7fd22652003b8fadc599d01"/><dir name="img"><file name="icon.gif" hash="682b29a0e734f952cb2edabede6a25d1"/></dir></dir><dir name="magentowidget"><file name="editor_plugin.js" hash="09a5b017cb06d94bafd5f0c19cf38b08"/><dir name="img"><file name="icon.gif" hash="532c141286373f098f1f4362e001c7f8"/></dir></dir></dir><file name="setup.js" hash="98e0479ebf2c34820566446ad8410c40"/><dir name="themes"><dir name="advanced"><dir name="skins"><dir name="default"><file name="content.css" hash="6a2b56fed3a8ad187534eb722a340437"/><file name="dialog.css" hash="38150d67c013645b983aba2bdc3554be"/></dir></dir></dir></dir></dir><file name="widget.js" hash="524c92d81a465b081855166c64e8b2cc"/></dir></dir><file name="captcha.js" hash="8043c1e72d2b5b8430a5324f480ffd01"/><file name="centinel.js" hash="27fafa1bbb2a8b611dce033351750fce"/><file name="cookies.js" hash="6c67304dccf84efdeb3fddb664001592"/><file name="directpost.js" hash="5a8ad96767167b7421c7617fccac1330"/><file name="translate.js" hash="cfe92d6afd0a4d6fcca5b65d6e192c4b"/><file name="translate_inline.css" hash="8805e9759faa2b30f33104c5df325d36"/><file name="translate_inline.js" hash="915d0cf14ee7f6b3e29339ea46620908"/></dir><dir name="varien"><file name="accordion.js" hash="d650d3a7ec68f269159fd8070c5dea33"/><file name="configurable.js" hash="d8561f310d57929c00cb517c26beed0f"/><file name="form.js" hash="5606fb8736f217baf8468600ac0ca458"/><file name="iehover-fix.js" hash="39983c11a80cce683ebfe1c8d2e5b1b9"/><file name="js.js" hash="15d54a6422758acb33ebbc415689d53d"/><file name="menu.js" hash="7f1bccad8b682880da85acf5f7aaef0d"/><file name="payment.js" hash="d6e2ca07bc9b15147faa555e71f08bc3"/><file name="product.js" hash="78881d8a1e4a87126cc87741177e1250"/><file name="telephone.js" hash="714770a989902f842853d0749a0a4dee"/><file name="weee.js" hash="9854e626c7d27fbb2f0b3c824c506e24"/></dir><file name="blank.html" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="index.php" hash="e8bd607e8a1aac21d508d4bc070f19d3"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><dir name="flash"><file name="AC_RunActiveContent.js" hash="3e038cea960c1b650442b85cea237053"/></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.7.0.1</min><max>1.7.0.1</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Js_Mage-1.9.2.1.xml var/package/Lib_Js_Mage-1.9.2.1.xml | |
--- var/package/Lib_Js_Mage-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Js_Mage-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Js_Mage</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license>Mixed</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Javascript Libraries for Magento</summary> | |
+ <description>Javascript Libraries for Magento</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:11</time> | |
+ <contents><target name="mageweb"><dir name="js"><dir name="lib"><file name="FABridge.js" hash="64244d8d58abd42bd71f0ee3309767ad"/><file name="boxover.js" hash="a5ade77452e8d5066cb84dcac3d34ed5"/><file name="ccard.js" hash="d3e849be0977d53de4af933b40293ff6"/><file name="dropdown.js" hash="2d9da17f15fc744e52ff612bf7a7c9f5"/><file name="ds-sleight.js" hash="85af457d444865d1587bfe4875bd4fc6"/><file name="flex.js" hash="d6b59c1d7c7cad9c6c91becc4b89ae32"/><dir name="jquery"><file name="jquery-1.10.2.js" hash="91515770ce8c55de23b306444d8ea998"/><file name="jquery-1.10.2.min.js" hash="841dc30647f93349b7d8ef61deebe411"/><file name="jquery-1.10.2.min.map" hash="6c3ccfc221d36777d383b6e04d0b8af9"/><file name="noconflict.js" hash="cdd83061ca6c0a504a5f4578a0052a1c"/></dir></dir><dir name="mage"><dir name="adminhtml"><file name="accordion.js" hash="bcc4dc0055960cc580d9a07079951bb5"/><file name="backup.js" hash="d685e20206bbcf8596f1bb73296d0b18"/><file name="browser.js" hash="98b2143b3c7bdef5849cd92541beeec2"/><file name="events.js" hash="157028b6921ea86c8c1353ff2b4daf7c"/><file name="flexuploader.js" hash="786e37bdc8eea5caa7e078a4fe2d8f70"/><file name="form.js" hash="ffeeeb0c75d2461b192bcb605402e96e"/><file name="giftmessage.js" hash="d911c86f33828e2d991cf464ca3437eb"/><dir name="giftoptions"><file name="tooltip.js" hash="49562aaae14c77448f2e0903c159ad14"/></dir><file name="grid.js" hash="343a305ffea464dfd726fcecb7ce9dd6"/><file name="hash.js" hash="fd0baa433d58ae1b55d703f11b4f42a4"/><file name="image.js" hash="f75339fdc409f7bff22120ace908d851"/><file name="loader.js" hash="a52e5c7df531fab3133ab82b356d91f9"/><file name="magento-all.js" hash="759e5b8ed9d051cdb97b7547469020d3"/><dir name="product"><dir name="composite"><file name="configure.js" hash="7f55e5d593d09ba8d309190386aaec7d"/></dir></dir><file name="product.js" hash="0253c591cd4beabc703a88dec162e031"/><file name="rules.js" hash="219f397e72098ae0e220d8d17c46a806"/><dir name="sales"><file name="packaging.js" hash="743b60a18adc5e04ed0e28b8c549f2f6"/></dir><file name="sales.js" hash="c8dd0fd8fa3faa9b9f0dd767b5a2c995"/><file name="scrollbar.js" hash="95dd0c4396e1752b36762e736faac6d5"/><file name="tabs.js" hash="0343832c21b3e6d46dc3b32c8b861833"/><file name="tools.js" hash="b987b91011982d00f249cc6621834b8d"/><file name="uploader.js" hash="66cdef337c2a486a41452a2bd12783ac"/><file name="variables.js" hash="63424664960a3af8479c043f4948e830"/><dir name="wysiwyg"><dir name="tiny_mce"><dir name="plugins"><dir name="magentovariable"><file name="editor_plugin.js" hash="3e34d521a7fd22652003b8fadc599d01"/><dir name="img"><file name="icon.gif" hash="682b29a0e734f952cb2edabede6a25d1"/></dir></dir><dir name="magentowidget"><file name="editor_plugin.js" hash="09a5b017cb06d94bafd5f0c19cf38b08"/><dir name="img"><file name="icon.gif" hash="532c141286373f098f1f4362e001c7f8"/></dir></dir></dir><file name="setup.js" hash="98e0479ebf2c34820566446ad8410c40"/><dir name="themes"><dir name="advanced"><dir name="skins"><dir name="default"><file name="content.css" hash="6a2b56fed3a8ad187534eb722a340437"/><file name="dialog.css" hash="38150d67c013645b983aba2bdc3554be"/></dir></dir></dir></dir></dir><file name="widget.js" hash="524c92d81a465b081855166c64e8b2cc"/></dir></dir><file name="captcha.js" hash="8043c1e72d2b5b8430a5324f480ffd01"/><file name="centinel.js" hash="27fafa1bbb2a8b611dce033351750fce"/><file name="cookies.js" hash="6c67304dccf84efdeb3fddb664001592"/><file name="directpost.js" hash="5a8ad96767167b7421c7617fccac1330"/><file name="translate.js" hash="cfe92d6afd0a4d6fcca5b65d6e192c4b"/><file name="translate_inline.css" hash="8805e9759faa2b30f33104c5df325d36"/><file name="translate_inline.js" hash="915d0cf14ee7f6b3e29339ea46620908"/></dir><dir name="varien"><file name="accordion.js" hash="d650d3a7ec68f269159fd8070c5dea33"/><file name="configurable.js" hash="d8561f310d57929c00cb517c26beed0f"/><file name="form.js" hash="5606fb8736f217baf8468600ac0ca458"/><file name="iehover-fix.js" hash="39983c11a80cce683ebfe1c8d2e5b1b9"/><file name="js.js" hash="15d54a6422758acb33ebbc415689d53d"/><file name="menu.js" hash="7f1bccad8b682880da85acf5f7aaef0d"/><file name="payment.js" hash="d6e2ca07bc9b15147faa555e71f08bc3"/><file name="product.js" hash="78881d8a1e4a87126cc87741177e1250"/><file name="telephone.js" hash="714770a989902f842853d0749a0a4dee"/><file name="weee.js" hash="9854e626c7d27fbb2f0b3c824c506e24"/></dir><file name="blank.html" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="index.php" hash="e8bd607e8a1aac21d508d4bc070f19d3"/><file name="spacer.gif" hash="df3e567d6f16d040326c7a0ea29a4f41"/><dir name="flash"><file name="AC_RunActiveContent.js" hash="3e038cea960c1b650442b85cea237053"/></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_Js_Prototype</name><channel>community</channel><min>1.9.2.1</min><max>1.9.2.1</max></package></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Js_Prototype-1.7.0.1.xml var/package/Lib_Js_Prototype-1.7.0.1.xml | |
--- var/package/Lib_Js_Prototype-1.7.0.1.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Js_Prototype-1.7.0.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Js_Prototype</name> | |
- <version>1.7.0.1</version> | |
- <stability>stable</stability> | |
- <license>Mixed</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Prototype and Scriptaculous Javascript Libraries for Magento</summary> | |
- <description>Prototype and Scriptaculous Javascript Libraries for Magento</description> | |
- <notes>1.7.0.1</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="mageweb"><dir name="js"><dir name="prototype"><file name="debug.js" hash="d5990eabf728ade1f34496737455c8ff"/><file name="effects.js" hash="91e1b7d8c6043dff4eadbe054a90e3a7"/><file name="extended_debug.js" hash="cc706bc76bb1c5a2610fc296cd85e053"/><file name="prototype.js" hash="3b4b13dad33b475e11feb26fd3468ecc"/><file name="tooltip.js" hash="8509b04b1594b7e6382d7cfdf4ee1236"/><file name="tooltip_manager.js" hash="6b9759cbad296fda3c18d7669d6b5af0"/><file name="validation.js" hash="981a66ff1f61102153f70f303003197b"/><file name="window.js" hash="0f8fa2f5fda42d7c0890743e93685ed9"/><file name="window_effects.js" hash="3c0b47a0f3cd41753a3992d01c118c3d"/><file name="window_ext.js" hash="5ab45fe5f734927890c95b9d5547f47f"/><file name="window_readme.txt" hash="97306d2a8c4be2ec65f66d2ec233289c"/><dir name="windows"><file name="MIT-LICENSE" hash="a839f717f1675b571481268a4e4a4ee2"/><file name="README" hash="75b8b2e714cbcb48337540a451655967"/><dir name="themes"><dir name="alert"><file name="bottom.gif" hash="e859e3bc00c4f10360fa81a659aa673f"/><file name="bottom_left.gif" hash="53585b1a0351d599e76a85ccc26f7980"/><file name="bottom_right.gif" hash="8170abe3fec71fd17612869a2f036cd6"/><file name="left.gif" hash="4f235c4e6afb0d386d220638c49e4545"/><file name="overlay.png" hash="f4ddcee6f819975bc9c5643b570de6dc"/><file name="progress.gif" hash="86b1ac6d1c485d54efa3a53643e91ceb"/><file name="right.gif" hash="838ade41815529e7a63f99c93b3a01f7"/><file name="top.gif" hash="8702ca9b81c19f6220ce81c4ea215878"/><file name="top_left.gif" hash="a8c097bcb67bddf640c2bd9161b79476"/><file name="top_right.gif" hash="05ef4e1a417a5a2c81fc816406a4842a"/></dir><file name="alert.css" hash="27df86baae5a6fa2e3556bdf1b85ccc6"/><file name="alert_lite.css" hash="fbeaff8f185cd3b302f1a8db5efa0110"/><dir name="alphacube"><file name="bottom-left-c.gif" hash="434cdfc5298f33efb108264cf3370e1c"/><file name="bottom-middle.gif" hash="3f882dd32d57a29a785f448bbba5ed26"/><file name="bottom-right-c.gif" hash="4c37ad7b94fc901a1cfaf54a1742d5fd"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="1bb1207b43425d214d4dc0da108f5449"/><file name="frame-right.gif" hash="8b9c36079881aa15c27a137666c56a38"/><file name="left-top.gif" hash="1ea936a090b4dfe8160fcb3a90ddb145"/><file name="right-top.gif" hash="e1b641feab640cb4207fa52160715e32"/><file name="top-middle.gif" hash="7f94c1018d023832c7c9e1fa468a9555"/></dir><file name="alphacube.css" hash="27c968911eaef53df158c55083ef0c84"/><file name="behavior.htc" hash="5588dff36ad5595f8353730e853044e5"/><dir name="darkX"><file name="button-close-focused.png" hash="5090b529a86a79679e0a26ccb0e1b0c6"/><file name="button-maximize-focused.png" hash="0f84bfcc9626d2cb1826291268b29f20"/><file name="button-minimize-focused.png" hash="630cd8cdd7124d412c6253e5c7cfc32a"/><file name="frame-bottom-left-focused.png" hash="8a34a3be2f349315dfd287ec15148332"/><file name="frame-bottom-mid-focused.png" hash="f1dbacdb64a19e00a485d426126f26db"/><file name="frame-bottom-right-focused.png" hash="17acb7874856dc68c3c017238d42054a"/><file name="frame-left-focused.png" hash="f30ab13888b2e48d0637991164a8f748"/><file name="frame-right-focused.png" hash="1115115c62507971b2f5eed3c2c5c2d0"/><file name="titlebar-left-focused.png" hash="491130dedbdbb3b2682f37424347b14c"/><file name="titlebar-mid-focused.png" hash="ae46975fc8a5e5a9f73f810d0c88809a"/><file name="titlebar-right-focused.png" hash="9560eb10dee94985f3ebe935833e2ae4"/></dir><file name="darkX.css" hash="16a964cfe57a2c979ad3d97831673b79"/><file name="debug.css" hash="63ee9aa7b7d80e0bb5e311407746ccd3"/><dir name="default"><file name="bottom_left.gif" hash="fb99ffa815a8648f95f42698fe5dfaa1"/><file name="bottom_mid.gif" hash="49b9ca7025562ea7f070a9111282364b"/><file name="bottom_right.gif" hash="e46768f632765cd86c5fe5d0166dcf2c"/><file name="bottom_right_resize.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="center_left.gif" hash="bd567580b4ee16a7a2734057cfbbe219"/><file name="center_right.gif" hash="eef184d5d89d1710313581a2ccf408e8"/><file name="clear.gif" hash="7af1206eeb0e7834a75e69d70676060d"/><file name="close.gif" hash="8a08f243c37a8e25a88d4ac135b2f07d"/><file name="inspect.gif" hash="aa2a0961067aad5c54b8634919af863b"/><file name="maximize.gif" hash="e73cd71c4979ebeadeb9e27d40a9e8fb"/><file name="minimize.gif" hash="2d2f4b1bd0506f342425f80ab76c49a3"/><file name="overlay.png" hash="536d40e87cda0c7ae7b11f1721aa52d0"/><file name="resize.gif" hash="320f534b5d444b39701e0b679529e779"/><file name="sizer.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="top_left.gif" hash="9c5e5920bfc189a45cc618099af93aa8"/><file name="top_mid.gif" hash="a12ff2b944025ad2d127d033dae5e9e1"/><file name="top_right.gif" hash="0cf1ec5b93f8ac8fcce0e2f72cf7f45e"/></dir><file name="default.css" hash="16014098f441d12d06c088135e2fde28"/><dir name="iefix"><file name="blank.gif" hash="56398e76be6355ad5999b262208a17c9"/><file name="iepngfix.css" hash="da3154c9a817850376f73a7976bfcb13"/><file name="iepngfix.htc" hash="b50c4e352a64254c5ceb6c63bcd0b176"/></dir><dir name="lighting"><file name="background_buttons.gif" hash="e66e67aaaf08a7b24f3cd1ba22584b42"/><file name="bottom-left-blue.png" hash="7c9e91d421945141315fc105d464a99f"/><file name="bottom-left-darkblue.png" hash="e88c2380acf403ee28597c6045988cc6"/><file name="bottom-left-green.png" hash="ee25ce8a12229b009fbfd91f7ba51e26"/><file name="bottom-left-grey.png" hash="5fdb3eae397ac7279aa5a7fdaad3dcc2"/><file name="bottom-middle-blue.png" hash="e93cc9d31d88f45c047a98a66be04354"/><file name="bottom-middle-darkblue.png" hash="763c88c424e0900e675042d3f0958bd4"/><file name="bottom-middle-green.png" hash="77e0a22afd2c55a83b5c7fa98a12ef25"/><file name="bottom-middle-grey.png" hash="3a2ebdeff74e2ff63c4471575568dd01"/><file name="bottom-right-blue.png" hash="0bc11a61047e8716451a283ebff897e5"/><file name="bottom-right-darkblue.png" hash="88e33ea702a304ae237edd57bc8447d6"/><file name="bottom-right-green.png" hash="7bce162df013eba43a659ae6e780ae4b"/><file name="bottom-right-grey.png" hash="86eb476492d911aac5688c9747fe7a1d"/><file name="button-close-blue.png" hash="42ae1a35caf8a9a275d6e748c27769fb"/><file name="button-close-darkblue.png" hash="50dbcd898dc519c1e6ac0d3a478978cd"/><file name="button-close-green.png" hash="b4273572fa91cba909a0a3e15b994d19"/><file name="button-close-grey.png" hash="124964b634ba67f2bb6dd08cf8cafd5a"/><file name="button-maximize-blue.png" hash="85b79237d85b09c205e09166dd8f4af0"/><file name="button-maximize-darkblue.png" hash="108d10619214e3365820aa4ab008aed5"/><file name="button-maximize-green.png" hash="90f5527705e4fd81997564e81c6ac2a3"/><file name="button-maximize-grey.png" hash="c46a8c014bd14be167f4c6a2f2dd52ed"/><file name="button-minimize-blue.png" hash="1fd738b99877a4dfa5656491cc3d8e6b"/><file name="button-minimize-darkblue.png" hash="b6d9da1cdf51ab54682fa75a6df2c40d"/><file name="button-minimize-green.png" hash="9e7d26298a0a49ffee3fbab6ea838e01"/><file name="button-minimize-grey.png" hash="0432701c2425cb3a5143d8a04bda0d87"/><file name="left-blue.png" hash="0a6acf0a863c04845a93b681769527cd"/><file name="left-darkblue.png" hash="44cdce8a75de4425d7eb7763092cc38d"/><file name="left-green.png" hash="d83116c49d62dc46bff0b7b4200b4ecf"/><file name="left-grey.png" hash="f3486d3293ae98b5edb8889c4b4082ef"/><file name="pngbehavior.htc" hash="b94c44e30423fd18a8b82bda5a139db3"/><file name="right-blue.png" hash="2c9b6b80d4a6b190b8e38a1c101e828c"/><file name="right-darkblue.png" hash="9b3267c5d36bb3f4588167cc3e78e569"/><file name="right-green.png" hash="4436968c2adbe6ed7c475c225631bc7c"/><file name="right-grey.png" hash="36b3de47bcbbd6b53e2f6e06843ee6e8"/><file name="spinner.gif" hash="c7b3cbb3ec8249a7121b722cdd76b870"/><file name="top-left-blue.png" hash="a5cb9eaa82f67df223d6784a52b26f1f"/><file name="top-left-darkblue.png" hash="e4a3af23d2cae7909331eb1995963c82"/><file name="top-left-green.png" hash="eb4cb604177c342998023d3dcd3aa5b0"/><file name="top-left-grey.png" hash="9f6f39abc4ae9539a0f54567a4a5d4f8"/><file name="top-middle-blue.png" hash="6d01df8637385bbe592b8df369294c8d"/><file name="top-middle-darkblue.png" hash="2c91ea6462e72a29cd07300d4102b88a"/><file name="top-middle-green.png" hash="e0f56311091bfb370fc6783fc7e71068"/><file name="top-middle-grey.png" hash="8c02881b730d602589fe9ed4bcaeb689"/><file name="top-right-blue.png" hash="4afefb06dc63c864211724a6348f25ad"/><file name="top-right-darkblue.png" hash="d8a9031987f648f170af67023179618d"/><file name="top-right-green.png" hash="b38813f9200440051273bdd622f5e545"/><file name="top-right-grey.png" hash="d7f7332ddf8686fb9810e4170767bf52"/></dir><file name="lighting.css" hash="d13de730c8ee7ef04167d361bdf8eebd"/><file name="mac_os_x.css" hash="65204ef34c1eeff0be29c53b0614076a"/><file name="mac_os_x_dialog.css" hash="0b7cd9d6a9e8f940f50bc4a080f54b1b"/><dir name="nuncio"><file name="bottom_left.png" hash="d9be5c7b432a342c6da5ef9b10148267"/><file name="bottom_mid.png" hash="facee2e7ee7c572a8f412750b0ce5387"/><file name="bottom_right.png" hash="6f3c124a066a11ff225897112de8e9d7"/><file name="center_left.png" hash="a11bee83f99addccc0d5eff3d2e82b8f"/><file name="center_right.png" hash="bf6b023ad1751d5f60f9820eea72ac28"/><file name="close.png" hash="46744062a7b54416c8767f8e0ccf1c41"/><file name="minimize.png" hash="bc911a3e90fc0640e0899856759a5e01"/><file name="overlay.png" hash="5ccd88855e923eb8a1bd9da1dec9d7fe"/><file name="top_left.png" hash="d3105aacc2c69954df11af953875a12e"/><file name="top_mid.png" hash="cb679a8c77e9b7485b5f0eca547eb103"/><file name="top_right.png" hash="e65d6fc6bf53891c487e414db16f1038"/></dir><file name="nuncio.css" hash="e30e31b94d96b0b27c80ad6d943d7010"/><dir name="spread"><file name="bottom-left-c.gif" hash="84641d08576f68a11f717103365dfb83"/><file name="bottom-middle.gif" hash="20ab265c67355c5b72cdcdc8739af555"/><file name="bottom-right-c.gif" hash="cb27b72623e997badc599e76024a6e44"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="63dc99b0c4ba0518688f7eca1f1628ca"/><file name="frame-right.gif" hash="a03585eec830f37898c7041d557dafc5"/><file name="left-top.gif" hash="7c78b8b59976d19191acf940cbfc04fb"/><file name="right-top.gif" hash="597530287fe1dc491278f855749f7e01"/><file name="top-middle.gif" hash="fa6fd6b90945c47f8d1718d9139d0a75"/><file name=".gif" hash="9dd39829e7cfdd06f3317a931bdc177e"/></dir><file name="spread.css" hash="a804413d7f1f9550c134477f6f9219ee"/></dir></dir></dir><dir name="scriptaculous"><file name="builder.js" hash="1174f6fc34ca5d54ba10b0c719386e7c"/><file name="controls.js" hash="8c414e1787c0ac9f10b16b252361c8b2"/><file name="dragdrop.js" hash="046759400db7a6096376e50110104edd"/><file name="effects.js" hash="d795089f95a22306cca9b337c439c65a"/><file name="scriptaculous.js" hash="d59eba4e0b14b672208b0862ae1c2196"/><file name="slider.js" hash="6043f96a71d2685fecd02e2ab99e84d9"/><file name="sound.js" hash="0f0fab23fa2cb1bc7717fd2bdf45402e"/><file name="unittest.js" hash="99969698b22272f77bdf4c64586862b3"/></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Js_Prototype-1.9.2.1.xml var/package/Lib_Js_Prototype-1.9.2.1.xml | |
--- var/package/Lib_Js_Prototype-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Js_Prototype-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Js_Prototype</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license>Mixed</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Prototype and Scriptaculous Javascript Libraries for Magento</summary> | |
+ <description>Prototype and Scriptaculous Javascript Libraries for Magento</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:11</time> | |
+ <contents><target name="mageweb"><dir name="js"><dir name="prototype"><file name="debug.js" hash="d5990eabf728ade1f34496737455c8ff"/><file name="effects.js" hash="91e1b7d8c6043dff4eadbe054a90e3a7"/><file name="extended_debug.js" hash="cc706bc76bb1c5a2610fc296cd85e053"/><file name="prototype.js" hash="3b4b13dad33b475e11feb26fd3468ecc"/><file name="tooltip.js" hash="8509b04b1594b7e6382d7cfdf4ee1236"/><file name="tooltip_manager.js" hash="6b9759cbad296fda3c18d7669d6b5af0"/><file name="validation.js" hash="981a66ff1f61102153f70f303003197b"/><file name="window.js" hash="0f8fa2f5fda42d7c0890743e93685ed9"/><file name="window_effects.js" hash="3c0b47a0f3cd41753a3992d01c118c3d"/><file name="window_ext.js" hash="5ab45fe5f734927890c95b9d5547f47f"/><file name="window_readme.txt" hash="97306d2a8c4be2ec65f66d2ec233289c"/><dir name="windows"><file name="MIT-LICENSE" hash="a839f717f1675b571481268a4e4a4ee2"/><file name="README" hash="75b8b2e714cbcb48337540a451655967"/><dir name="themes"><dir name="alert"><file name="bottom.gif" hash="e859e3bc00c4f10360fa81a659aa673f"/><file name="bottom_left.gif" hash="53585b1a0351d599e76a85ccc26f7980"/><file name="bottom_right.gif" hash="8170abe3fec71fd17612869a2f036cd6"/><file name="left.gif" hash="4f235c4e6afb0d386d220638c49e4545"/><file name="overlay.png" hash="f4ddcee6f819975bc9c5643b570de6dc"/><file name="progress.gif" hash="86b1ac6d1c485d54efa3a53643e91ceb"/><file name="right.gif" hash="838ade41815529e7a63f99c93b3a01f7"/><file name="top.gif" hash="8702ca9b81c19f6220ce81c4ea215878"/><file name="top_left.gif" hash="a8c097bcb67bddf640c2bd9161b79476"/><file name="top_right.gif" hash="05ef4e1a417a5a2c81fc816406a4842a"/></dir><file name="alert.css" hash="27df86baae5a6fa2e3556bdf1b85ccc6"/><file name="alert_lite.css" hash="fbeaff8f185cd3b302f1a8db5efa0110"/><dir name="alphacube"><file name="bottom-left-c.gif" hash="434cdfc5298f33efb108264cf3370e1c"/><file name="bottom-middle.gif" hash="3f882dd32d57a29a785f448bbba5ed26"/><file name="bottom-right-c.gif" hash="4c37ad7b94fc901a1cfaf54a1742d5fd"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="1bb1207b43425d214d4dc0da108f5449"/><file name="frame-right.gif" hash="8b9c36079881aa15c27a137666c56a38"/><file name="left-top.gif" hash="1ea936a090b4dfe8160fcb3a90ddb145"/><file name="right-top.gif" hash="e1b641feab640cb4207fa52160715e32"/><file name="top-middle.gif" hash="7f94c1018d023832c7c9e1fa468a9555"/></dir><file name="alphacube.css" hash="27c968911eaef53df158c55083ef0c84"/><file name="behavior.htc" hash="5588dff36ad5595f8353730e853044e5"/><dir name="darkX"><file name="button-close-focused.png" hash="5090b529a86a79679e0a26ccb0e1b0c6"/><file name="button-maximize-focused.png" hash="0f84bfcc9626d2cb1826291268b29f20"/><file name="button-minimize-focused.png" hash="630cd8cdd7124d412c6253e5c7cfc32a"/><file name="frame-bottom-left-focused.png" hash="8a34a3be2f349315dfd287ec15148332"/><file name="frame-bottom-mid-focused.png" hash="f1dbacdb64a19e00a485d426126f26db"/><file name="frame-bottom-right-focused.png" hash="17acb7874856dc68c3c017238d42054a"/><file name="frame-left-focused.png" hash="f30ab13888b2e48d0637991164a8f748"/><file name="frame-right-focused.png" hash="1115115c62507971b2f5eed3c2c5c2d0"/><file name="titlebar-left-focused.png" hash="491130dedbdbb3b2682f37424347b14c"/><file name="titlebar-mid-focused.png" hash="ae46975fc8a5e5a9f73f810d0c88809a"/><file name="titlebar-right-focused.png" hash="9560eb10dee94985f3ebe935833e2ae4"/></dir><file name="darkX.css" hash="16a964cfe57a2c979ad3d97831673b79"/><file name="debug.css" hash="63ee9aa7b7d80e0bb5e311407746ccd3"/><dir name="default"><file name="bottom_left.gif" hash="fb99ffa815a8648f95f42698fe5dfaa1"/><file name="bottom_mid.gif" hash="49b9ca7025562ea7f070a9111282364b"/><file name="bottom_right.gif" hash="e46768f632765cd86c5fe5d0166dcf2c"/><file name="bottom_right_resize.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="center_left.gif" hash="bd567580b4ee16a7a2734057cfbbe219"/><file name="center_right.gif" hash="eef184d5d89d1710313581a2ccf408e8"/><file name="clear.gif" hash="7af1206eeb0e7834a75e69d70676060d"/><file name="close.gif" hash="8a08f243c37a8e25a88d4ac135b2f07d"/><file name="inspect.gif" hash="aa2a0961067aad5c54b8634919af863b"/><file name="maximize.gif" hash="e73cd71c4979ebeadeb9e27d40a9e8fb"/><file name="minimize.gif" hash="2d2f4b1bd0506f342425f80ab76c49a3"/><file name="overlay.png" hash="536d40e87cda0c7ae7b11f1721aa52d0"/><file name="resize.gif" hash="320f534b5d444b39701e0b679529e779"/><file name="sizer.gif" hash="1b35a4ec3b734dfe37e31ba87bcc7d99"/><file name="top_left.gif" hash="9c5e5920bfc189a45cc618099af93aa8"/><file name="top_mid.gif" hash="a12ff2b944025ad2d127d033dae5e9e1"/><file name="top_right.gif" hash="0cf1ec5b93f8ac8fcce0e2f72cf7f45e"/></dir><file name="default.css" hash="16014098f441d12d06c088135e2fde28"/><dir name="iefix"><file name="blank.gif" hash="56398e76be6355ad5999b262208a17c9"/><file name="iepngfix.css" hash="da3154c9a817850376f73a7976bfcb13"/><file name="iepngfix.htc" hash="b50c4e352a64254c5ceb6c63bcd0b176"/></dir><dir name="lighting"><file name="background_buttons.gif" hash="e66e67aaaf08a7b24f3cd1ba22584b42"/><file name="bottom-left-blue.png" hash="7c9e91d421945141315fc105d464a99f"/><file name="bottom-left-darkblue.png" hash="e88c2380acf403ee28597c6045988cc6"/><file name="bottom-left-green.png" hash="ee25ce8a12229b009fbfd91f7ba51e26"/><file name="bottom-left-grey.png" hash="5fdb3eae397ac7279aa5a7fdaad3dcc2"/><file name="bottom-middle-blue.png" hash="e93cc9d31d88f45c047a98a66be04354"/><file name="bottom-middle-darkblue.png" hash="763c88c424e0900e675042d3f0958bd4"/><file name="bottom-middle-green.png" hash="77e0a22afd2c55a83b5c7fa98a12ef25"/><file name="bottom-middle-grey.png" hash="3a2ebdeff74e2ff63c4471575568dd01"/><file name="bottom-right-blue.png" hash="0bc11a61047e8716451a283ebff897e5"/><file name="bottom-right-darkblue.png" hash="88e33ea702a304ae237edd57bc8447d6"/><file name="bottom-right-green.png" hash="7bce162df013eba43a659ae6e780ae4b"/><file name="bottom-right-grey.png" hash="86eb476492d911aac5688c9747fe7a1d"/><file name="button-close-blue.png" hash="42ae1a35caf8a9a275d6e748c27769fb"/><file name="button-close-darkblue.png" hash="50dbcd898dc519c1e6ac0d3a478978cd"/><file name="button-close-green.png" hash="b4273572fa91cba909a0a3e15b994d19"/><file name="button-close-grey.png" hash="124964b634ba67f2bb6dd08cf8cafd5a"/><file name="button-maximize-blue.png" hash="85b79237d85b09c205e09166dd8f4af0"/><file name="button-maximize-darkblue.png" hash="108d10619214e3365820aa4ab008aed5"/><file name="button-maximize-green.png" hash="90f5527705e4fd81997564e81c6ac2a3"/><file name="button-maximize-grey.png" hash="c46a8c014bd14be167f4c6a2f2dd52ed"/><file name="button-minimize-blue.png" hash="1fd738b99877a4dfa5656491cc3d8e6b"/><file name="button-minimize-darkblue.png" hash="b6d9da1cdf51ab54682fa75a6df2c40d"/><file name="button-minimize-green.png" hash="9e7d26298a0a49ffee3fbab6ea838e01"/><file name="button-minimize-grey.png" hash="0432701c2425cb3a5143d8a04bda0d87"/><file name="left-blue.png" hash="0a6acf0a863c04845a93b681769527cd"/><file name="left-darkblue.png" hash="44cdce8a75de4425d7eb7763092cc38d"/><file name="left-green.png" hash="d83116c49d62dc46bff0b7b4200b4ecf"/><file name="left-grey.png" hash="f3486d3293ae98b5edb8889c4b4082ef"/><file name="pngbehavior.htc" hash="b94c44e30423fd18a8b82bda5a139db3"/><file name="right-blue.png" hash="2c9b6b80d4a6b190b8e38a1c101e828c"/><file name="right-darkblue.png" hash="9b3267c5d36bb3f4588167cc3e78e569"/><file name="right-green.png" hash="4436968c2adbe6ed7c475c225631bc7c"/><file name="right-grey.png" hash="36b3de47bcbbd6b53e2f6e06843ee6e8"/><file name="spinner.gif" hash="c7b3cbb3ec8249a7121b722cdd76b870"/><file name="top-left-blue.png" hash="a5cb9eaa82f67df223d6784a52b26f1f"/><file name="top-left-darkblue.png" hash="e4a3af23d2cae7909331eb1995963c82"/><file name="top-left-green.png" hash="eb4cb604177c342998023d3dcd3aa5b0"/><file name="top-left-grey.png" hash="9f6f39abc4ae9539a0f54567a4a5d4f8"/><file name="top-middle-blue.png" hash="6d01df8637385bbe592b8df369294c8d"/><file name="top-middle-darkblue.png" hash="2c91ea6462e72a29cd07300d4102b88a"/><file name="top-middle-green.png" hash="e0f56311091bfb370fc6783fc7e71068"/><file name="top-middle-grey.png" hash="8c02881b730d602589fe9ed4bcaeb689"/><file name="top-right-blue.png" hash="4afefb06dc63c864211724a6348f25ad"/><file name="top-right-darkblue.png" hash="d8a9031987f648f170af67023179618d"/><file name="top-right-green.png" hash="b38813f9200440051273bdd622f5e545"/><file name="top-right-grey.png" hash="d7f7332ddf8686fb9810e4170767bf52"/></dir><file name="lighting.css" hash="d13de730c8ee7ef04167d361bdf8eebd"/><file name="mac_os_x.css" hash="65204ef34c1eeff0be29c53b0614076a"/><file name="mac_os_x_dialog.css" hash="0b7cd9d6a9e8f940f50bc4a080f54b1b"/><dir name="nuncio"><file name="bottom_left.png" hash="d9be5c7b432a342c6da5ef9b10148267"/><file name="bottom_mid.png" hash="facee2e7ee7c572a8f412750b0ce5387"/><file name="bottom_right.png" hash="6f3c124a066a11ff225897112de8e9d7"/><file name="center_left.png" hash="a11bee83f99addccc0d5eff3d2e82b8f"/><file name="center_right.png" hash="bf6b023ad1751d5f60f9820eea72ac28"/><file name="close.png" hash="46744062a7b54416c8767f8e0ccf1c41"/><file name="minimize.png" hash="bc911a3e90fc0640e0899856759a5e01"/><file name="overlay.png" hash="5ccd88855e923eb8a1bd9da1dec9d7fe"/><file name="top_left.png" hash="d3105aacc2c69954df11af953875a12e"/><file name="top_mid.png" hash="cb679a8c77e9b7485b5f0eca547eb103"/><file name="top_right.png" hash="e65d6fc6bf53891c487e414db16f1038"/></dir><file name="nuncio.css" hash="e30e31b94d96b0b27c80ad6d943d7010"/><dir name="spread"><file name="bottom-left-c.gif" hash="84641d08576f68a11f717103365dfb83"/><file name="bottom-middle.gif" hash="20ab265c67355c5b72cdcdc8739af555"/><file name="bottom-right-c.gif" hash="cb27b72623e997badc599e76024a6e44"/><file name="button-close-focus.gif" hash="99c44a6df2733b58083af7a4d9522116"/><file name="button-max-focus.gif" hash="408cd33fa89269b8395bf10afe69d456"/><file name="button-min-focus.gif" hash="ae06210658bad8bcc88dea377c4dc908"/><file name="frame-left.gif" hash="63dc99b0c4ba0518688f7eca1f1628ca"/><file name="frame-right.gif" hash="a03585eec830f37898c7041d557dafc5"/><file name="left-top.gif" hash="7c78b8b59976d19191acf940cbfc04fb"/><file name="right-top.gif" hash="597530287fe1dc491278f855749f7e01"/><file name="top-middle.gif" hash="fa6fd6b90945c47f8d1718d9139d0a75"/><file name=".gif" hash="9dd39829e7cfdd06f3317a931bdc177e"/></dir><file name="spread.css" hash="a804413d7f1f9550c134477f6f9219ee"/></dir></dir></dir><dir name="scriptaculous"><file name="builder.js" hash="1174f6fc34ca5d54ba10b0c719386e7c"/><file name="controls.js" hash="8c414e1787c0ac9f10b16b252361c8b2"/><file name="dragdrop.js" hash="046759400db7a6096376e50110104edd"/><file name="effects.js" hash="d795089f95a22306cca9b337c439c65a"/><file name="scriptaculous.js" hash="d59eba4e0b14b672208b0862ae1c2196"/><file name="slider.js" hash="6043f96a71d2685fecd02e2ab99e84d9"/><file name="sound.js" hash="0f0fab23fa2cb1bc7717fd2bdf45402e"/><file name="unittest.js" hash="99969698b22272f77bdf4c64586862b3"/></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Js_TinyMCE-3.5.11.0.xml var/package/Lib_Js_TinyMCE-3.5.11.0.xml | |
--- var/package/Lib_Js_TinyMCE-3.5.11.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Js_TinyMCE-3.5.11.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Js_TinyMCE</name> | |
- <version>3.5.11.0</version> | |
- <stability>stable</stability> | |
- <license>Mixed</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>TinyMCE Javascript Libraries for Magento</summary> | |
- <description>TinyMCE Javascript Libraries for Magento</description> | |
- <notes>3.5.11.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2014-11-05</date> | |
- <time>08:42:27</time> | |
- <contents><target name="mageweb"><dir name="js"><dir name="tiny_mce"><dir name="classes"><file name="AddOnManager.js" hash="394e98bc019eb5c08c657fe4f8a48546"/><file name="ControlManager.js" hash="26cedc474b183b1a9905cdb3d10254dc"/><file name="Editor.Events.js" hash="07af3e1a08aead0078eb0cd6b030b864"/><file name="Editor.js" hash="e921b224172fbe2bd134eaab1974f2e8"/><file name="EditorCommands.js" hash="18b0d752aafddca09cf59fa7cc4d45c2"/><file name="EditorManager.js" hash="68b7a4a6252ab8b326fa5c8ee52d8016"/><file name="EnterKey.js" hash="ecc48ccb75c80dca2bd6bd7023fc906e"/><file name="ForceBlocks.js" hash="186ad2042e7b9416d2c4f9ec5f519893"/><file name="Formatter.js" hash="413f6c83f256d864a01e05718fbe7ce6"/><file name="LegacyInput.js" hash="a14c5e4099e2e4cbc6339eb54d3ec8f9"/><file name="Popup.js" hash="b6775a0e19bd839625b4dfb6b92a9688"/><file name="UndoManager.js" hash="276955286b65fba55ee60833ca2d6671"/><file name="WindowManager.js" hash="794c3d88226e8b62eac09eeeef283c3b"/><dir name="adapter"><dir name="jquery"><file name="adapter.js" hash="a5eea8e2826d7b0929291aa7a927ec29"/><file name="jquery.tinymce.js" hash="f2f319f369a84757b8976c2d66872933"/></dir><dir name="prototype"><file name="adapter.js" hash="37d84615944f028635f68d05b889c5c2"/></dir></dir><dir name="dom"><file name="DOMUtils.js" hash="bb9a7c2b19ad2433c85984cb8511e085"/><file name="Element.js" hash="1208e71eb2bc8e578b5a9cb4ec3b1365"/><file name="EventUtils.js" hash="652351eaf41de2659cfc7e380b694c02"/><file name="Range.js" hash="05c8ac178fa799217f60ebb650b41e0f"/><file name="RangeUtils.js" hash="9948e6204548089899b1e325370355f1"/><file name="ScriptLoader.js" hash="742ce02734095db354ad54ab8399a0ee"/><file name="Selection.js" hash="3332b2293dfc2a93fdb6a67ce5329642"/><file name="Serializer.js" hash="8762f4920ed6d4a57203bfbb8bc8490c"/><file name="Sizzle.js" hash="7930b22f632c7b0240237df1393e5023"/><file name="TreeWalker.js" hash="55425ece6675a529525bad45c6acbd94"/><file name="TridentSelection.js" hash="1fd402d1bb8144fa8549031b5f061733"/></dir><dir name="firebug"><file name="FIREBUG.LICENSE" hash="3b402ea96cec202bac23ea7144653cfa"/><file name="firebug-lite.js" hash="1c9c10926be94a61564ad0541a50624f"/></dir><dir name="html"><file name="DomParser.js" hash="25a47241e40445f2870bc94ce6a10b3c"/><file name="Entities.js" hash="7292e9f893096fb66d3232920be3c3d9"/><file name="Node.js" hash="ea0a5b87b71760018a753eb41a4e0f48"/><file name="SaxParser.js" hash="6dbb27c6762a5f27a9e6e844391393f4"/><file name="Schema.js" hash="e4d6e60fbca99911660f272717b9c08b"/><file name="Serializer.js" hash="ab74a79798a6f20f4267e3f1da17f2da"/><file name="Styles.js" hash="72317437bb3c7f0a05302658ea19dfce"/><file name="Writer.js" hash="3a2e8b824b749c19c5f27f8c830f95a5"/></dir><file name="tinymce.js" hash="546ec1f2bbfbf1ee04b4a33dcc05bc52"/><dir name="ui"><file name="Button.js" hash="82e9cd9d322a714652b0bc8e40e7e503"/><file name="ColorSplitButton.js" hash="06760a696b922b56a482f5889407714e"/><file name="Container.js" hash="7929a5d6aef46380197061e49e4f9dfb"/><file name="Control.js" hash="460a997aaad3b1b24f684bfdbefd3d9c"/><file name="DropMenu.js" hash="3359b973c857ca38105eeb276119b99f"/><file name="KeyboardNavigation.js" hash="f446fdfbadd728e8b009dc4adfc0b0d2"/><file name="ListBox.js" hash="2cd7287ec70ac87cb3903ecf0a2ccfdc"/><file name="Menu.js" hash="02762fee614d37aaea7eaf14f07dece1"/><file name="MenuButton.js" hash="fb0251eb52a5b3779d76ed2c2f8ec77e"/><file name="MenuItem.js" hash="55d400a161aa44d9dd5334d6f58ed956"/><file name="NativeListBox.js" hash="964785fd8a23be00b6db650f96e9ebf7"/><file name="Separator.js" hash="d4c5d779114617360ea78a2c0d523c81"/><file name="SplitButton.js" hash="e78e53578280cce9d97f936a82eca6de"/><file name="Toolbar.js" hash="b742f894f63122c4ee635fa59958167d"/><file name="ToolbarGroup.js" hash="db7b059b984e114ea22b1dc558d3d1f2"/></dir><dir name="util"><file name="Cookie.js" hash="14bc612b28c3c75549138a1699d5c238"/><file name="Dispatcher.js" hash="bf9bd51bbabca1823634833b3b16097c"/><file name="JSON.js" hash="b9b5964dbcd4cff962264dd72d8e4df5"/><file name="JSONP.js" hash="0a39d9e1b8427ab8b6dbdd00177c8c48"/><file name="JSONRequest.js" hash="dd12f1ac5c78ec4ba7459fb825ff9e5e"/><file name="Quirks.js" hash="927b518cc3aa663a41921590d0d3b4ac"/><file name="URI.js" hash="7069a8a2dfa4b0315719778b8c744139"/><file name="VK.js" hash="78114029ce46d5a4a441b01c44f23b4f"/><file name="XHR.js" hash="b00450d636335e7be50d46d2c31cc5a0"/></dir><dir name="xml"><file name="Parser.js" hash="c6d6862014ef2ab23a5a16adaee1af6d"/></dir></dir><file name="jquery.tinymce.js" hash="751418d46d453e7c6b1a7fbd4e60fefa"/><dir name="langs"><file name="en.js" hash="eff36a9433bccea2f3243b1465fe6fe3"/></dir><file name="license.txt" hash="b238d032089de4c340f6e0119210ce3a"/><dir name="plugins"><dir name="advhr"><dir name="css"><file name="advhr.css" hash="15df80b2137bcc04d5455ffa3a51e0c5"/></dir><file name="editor_plugin.js" hash="d0a03059205455e5c19cf3a845a0ebde"/><file name="editor_plugin_src.js" hash="a7fda2e674f15a33baf53cea2e23ec66"/><dir name="js"><file name="rule.js" hash="ef46d7c850c8bcc869ea84ed7ac00c49"/></dir><dir name="langs"><file name="en_dlg.js" hash="af62ab3f1b7a27190f8e001c8aefdfa6"/></dir><file name="rule.htm" hash="492ebbdc24d46061e928d911873d5fc8"/></dir><dir name="advimage"><dir name="css"><file name="advimage.css" hash="1ccd374d5f1e89cc16e1649558a9bb33"/></dir><file name="editor_plugin.js" hash="8af1f904909820d132bc0cbeb6469130"/><file name="editor_plugin_src.js" hash="958a409150fba5532d27e862d52015e9"/><file name="image.htm" hash="0d204c8f7651c3080ab542fb36957881"/><dir name="img"><file name="sample.gif" hash="b9c7057c46716340e8967340ad11766e"/></dir><dir name="js"><file name="image.js" hash="d071360a06b4f8590b4b18a7eca039aa"/></dir><dir name="langs"><file name="en_dlg.js" hash="6f80f834e2209e6a95957403bb4842f0"/></dir></dir><dir name="advlink"><dir name="css"><file name="advlink.css" hash="aaf226732a7b4ae80ee680700f488a1e"/></dir><file name="editor_plugin.js" hash="5e440c6bcb7fd94e7fd597f8a183e16f"/><file name="editor_plugin_src.js" hash="4104cd66aea546becf5d8fca66cf7951"/><dir name="js"><file name="advlink.js" hash="80dd2f99418025b6f9fd757adfdb1a71"/></dir><dir name="langs"><file name="en_dlg.js" hash="8da3a95d6886837c0bca18670f57ae1c"/></dir><file name="link.htm" hash="206ef7aba261ac4bc14e7c6fdbdcc8c5"/></dir><dir name="advlist"><file name="editor_plugin.js" hash="5f1c8625c04a6b0f4567c1c8d5e28ff9"/><file name="editor_plugin_src.js" hash="d451908bf1e060ecd49356787f33fc7c"/></dir><dir name="autolink"><file name="editor_plugin.js" hash="5091233229ffe517f075b787c5f388a6"/><file name="editor_plugin_src.js" hash="f03a8ec9ad17bd53f897a525e3cc30f7"/></dir><dir name="autoresize"><file name="editor_plugin.js" hash="adf5cbe96119e3ed9ab4a86ba26405e7"/><file name="editor_plugin_src.js" hash="4d1cdbe307f73b4d36d1bf9b3bc2d0a9"/></dir><dir name="autosave"><file name="editor_plugin.js" hash="ae4c2aba85a22da66e3655f55d1c89fd"/><file name="editor_plugin_src.js" hash="6177147324865c00736c242b8ccb2de6"/><dir name="langs"><file name="en.js" hash="a33b0322c949a6d74bde7fa164396984"/></dir></dir><dir name="bbcode"><file name="editor_plugin.js" hash="31748a6cc57a13da54a0243c3301f3e6"/><file name="editor_plugin_src.js" hash="842450703b915245adb53df7d478ea5a"/></dir><dir name="contextmenu"><file name="editor_plugin.js" hash="5a0fc9ce2ba71bf2b6f54eb94838619f"/><file name="editor_plugin_src.js" hash="b923e4315f2d98703bbe9699465f84f0"/></dir><dir name="directionality"><file name="editor_plugin.js" hash="e2d925fe1e778dbcade06d55164fc276"/><file name="editor_plugin_src.js" hash="14b7a5b69fdc4f235b654436e4fe3081"/></dir><dir name="emotions"><file name="editor_plugin.js" hash="98cba02e33fc108024f3e993be0b0b62"/><file name="editor_plugin_src.js" hash="4cbc6e9b083a810ab0d3768af8f8f864"/><file name="emotions.htm" hash="9378bfd04b56a828318f7798f5696f67"/><dir name="img"><file name="smiley-cool.gif" hash="e26e97a318f82ec144b0818e5a8f8edb"/><file name="smiley-cry.gif" hash="e72bf995ceca9230273ed9909c5db9c8"/><file name="smiley-embarassed.gif" hash="d59171236e6b0b96091eeda1f7b57ce3"/><file name="smiley-foot-in-mouth.gif" hash="c12d9db6a14ad0b52f66f1e2cf2a38e7"/><file name="smiley-frown.gif" hash="59930208822fe755f651a67ef4b70530"/><file name="smiley-innocent.gif" hash="ec0477c8a206ff250782e40f9bae4b4c"/><file name="smiley-kiss.gif" hash="4ae8945f3960751b5d294f18242e144d"/><file name="smiley-laughing.gif" hash="c37f405db4e13cbebf24e745534687bf"/><file name="smiley-money-mouth.gif" hash="11c14bd1496afd0e21df115d25b68e96"/><file name="smiley-sealed.gif" hash="bb828cb46b377d1589927a02f8fd1762"/><file name="smiley-smile.gif" hash="2968a664098d9580079c66d628dad1a8"/><file name="smiley-surprised.gif" hash="2e136ebd637bf3e6c9fc6bdc20cbe73e"/><file name="smiley-tongue-out.gif" hash="5ec3bb4781c8e43a51d3a1a948b98fc0"/><file name="smiley-undecided.gif" hash="3c0c011d16b1a2331385ed97e160a42a"/><file name="smiley-wink.gif" hash="897275ac7d07032b4d93fb83a0d2a41b"/><file name="smiley-yell.gif" hash="19bb8ebfe3c2f5ef3ffb9aa4a027900d"/></dir><dir name="js"><file name="emotions.js" hash="85efe828d29037950412fec963b6f950"/></dir><dir name="langs"><file name="en_dlg.js" hash="62c052504a77e4f4cec6d90ece0d76c4"/></dir></dir><dir name="example"><file name="dialog.htm" hash="e6170a190a4d44ea5e6af089d2728d7e"/><file name="editor_plugin.js" hash="e0a175dca3d5e437657ccd5d548ff409"/><file name="editor_plugin_src.js" hash="b98bec73743c249187e0fa8f8311e3a3"/><dir name="img"><file name="example.gif" hash="6036655a01df362267183a8b23fead10"/></dir><dir name="js"><file name="dialog.js" hash="83245e76c97e24d466cf5df2308f9bf4"/></dir><dir name="langs"><file name="en.js" hash="78c88182b5fb900fc956845f75885b3a"/><file name="en_dlg.js" hash="7aec7a3b9d4642fbf7bb3ef1ed8a7570"/></dir></dir><dir name="example_dependency"><file name="editor_plugin.js" hash="405d190ae03384a9acb00533568b2cfd"/><file name="editor_plugin_src.js" hash="473878118b45efe326d335f992ff9943"/></dir><dir name="fullpage"><dir name="css"><file name="fullpage.css" hash="2ac64c98369f8b4f7cbf6fa70e25bfca"/></dir><file name="editor_plugin.js" hash="5dfbe0a82c87eb0fb65b11dcd39406d0"/><file name="editor_plugin_src.js" hash="636afe66f3de447eb92611bdcfb7f2b3"/><file name="fullpage.htm" hash="8c58825b698712e7297f95da51a9c03c"/><dir name="js"><file name="fullpage.js" hash="a7913b6b1a1ae634a509c3db9faf381a"/></dir><dir name="langs"><file name="en_dlg.js" hash="963f370d56f19c2f94de09b10a306187"/></dir></dir><dir name="fullscreen"><file name="editor_plugin.js" hash="15134339e36472281b8a1626233f747d"/><file name="editor_plugin_src.js" hash="a28a8a8bf569d6ee5e6dccbc988490ce"/><file name="fullscreen.htm" hash="b6d76297c2f679b9110ec7119d091900"/></dir><dir name="iespell"><file name="editor_plugin.js" hash="22526393cacb6447a0e3bfff2fb47773"/><file name="editor_plugin_src.js" hash="311e13bcc85c06da43decc37dc1b4f83"/></dir><dir name="inlinepopups"><file name="editor_plugin.js" hash="db32751b98f40ca6eee24efc848d6cbb"/><file name="editor_plugin_src.js" hash="d1c1de414c13fef3593ffd14503d37c0"/><dir name="skins"><dir name="clearlooks2"><dir name="img"><file name="alert.gif" hash="568d4cf84413656fb72fe39d1dd60f8d"/><file name="button.gif" hash="19f864cb81177840dcd534df4d537ea3"/><file name="buttons.gif" hash="1743ac9f7f2267a6edafefc536a2265d"/><file name="confirm.gif" hash="1bc337a20c319e531cda6ced531827d0"/><file name="corners.gif" hash="55298b5baaecb7e06a251db9f0a4b14c"/><file name="horizontal.gif" hash="0365e75dd4a9ad61dc98dcb641207c21"/><file name="vertical.gif" hash="0261136fac58ce77bdbd96aa0194947e"/></dir><file name="window.css" hash="f715affab9da63bc26f8c6362a989395"/></dir></dir><file name="template.htm" hash="3d7e3ae05511a9f64c5da924b9e971ba"/></dir><dir name="insertdatetime"><file name="editor_plugin.js" hash="d99072498466cdb2f53ed7c02da85982"/><file name="editor_plugin_src.js" hash="32a2afa1cd3ff8c9b966f8724ba3e0b3"/></dir><dir name="layer"><file name="editor_plugin.js" hash="4e5fc1b467c19d79dcf6246ba3a63cd8"/><file name="editor_plugin_src.js" hash="3754eb57b08539e459509caa74acecc6"/></dir><dir name="legacyoutput"><file name="editor_plugin.js" hash="b732a86187723cd9cc32853d67730061"/><file name="editor_plugin_src.js" hash="8a0a69cbe8d447d722aaef7d4ed7dcc1"/></dir><dir name="lists"><file name="editor_plugin.js" hash="46ba57884d8fe05d92cd9d98d3bb00af"/><file name="editor_plugin_src.js" hash="04e1f245c19d6dc9454dae57faec9b6f"/></dir><dir name="media"><dir name="css"><file name="media.css" hash="f211293a697a2c83da00effd67f535a2"/></dir><file name="editor_plugin.js" hash="5ad7db86c5008f98ec135595db4a4973"/><file name="editor_plugin_src.js" hash="1d03ec1ec36745041db26132b07b0491"/><dir name="img"><file name="flash.gif" hash="6c69b02015d09280332ff8b07e4ea2f3"/><file name="quicktime.gif" hash="9a6a9fdead205b125c07ea37e71ed4f1"/><file name="realmedia.gif" hash="b9734ee16d790e67bea01046feba28b7"/><file name="shockwave.gif" hash="baa643b587565755157618032dc93e3c"/><file name="trans.gif" hash="12bf9e19374920de3146a64775f46a5e"/><file name="windowsmedia.gif" hash="c327cd167b3a7bc263d908b0d0154ead"/></dir><dir name="js"><file name="embed.js" hash="39ebc57f44e1cc683724e1c1ff761894"/><file name="media.js" hash="4f35c0283a30f3556e023e76c34368b2"/></dir><dir name="langs"><file name="en_dlg.js" hash="9523fc123c577642000fd409bd862c3f"/></dir><file name="media.htm" hash="be58b1edf9a4a4dbf3a1993e3d897e1a"/><file name="moxieplayer.swf" hash="9217cea72c76c361fa5033526712284e"/></dir><dir name="nonbreaking"><file name="editor_plugin.js" hash="232f23a586f10bd8ddabf38d767113d4"/><file name="editor_plugin_src.js" hash="fefbda5243d10652038ccf40801b8893"/></dir><dir name="noneditable"><file name="editor_plugin.js" hash="b332a5f8767506024a0f50aa4204b1fe"/><file name="editor_plugin_src.js" hash="273d35e2221889e75f33fd545f77d44e"/></dir><dir name="pagebreak"><dir name="css"><file name="content.css" hash="d9664762a610f2b5f7b10b5781f3299a"/></dir><file name="editor_plugin.js" hash="8be3376740c886fa2842d2f4eb282bbc"/><file name="editor_plugin_src.js" hash="c2d432a5914f0095a859ff443700a5e9"/><dir name="img"><file name="pagebreak.gif" hash="48872075f721bf57a517e3275d61c0ba"/><file name="trans.gif" hash="12bf9e19374920de3146a64775f46a5e"/></dir></dir><dir name="paste"><file name="editor_plugin.js" hash="1b68c59eb95a28ccc2aff2cfb85a8829"/><file name="editor_plugin_src.js" hash="40eef37ac300b571da5383bc0bddf73f"/><dir name="js"><file name="pastetext.js" hash="d6e4b39f19b89118b34b0d21491494b7"/><file name="pasteword.js" hash="112504d12e971e4d32f17a59c5616c36"/></dir><dir name="langs"><file name="en_dlg.js" hash="6ea2189562f65287be8e5e3185c405b7"/></dir><file name="pastetext.htm" hash="8f217769e59a5dd67843c7c17c842f41"/><file name="pasteword.htm" hash="8b9459b98f9a70ed684832326bf1cdf6"/></dir><dir name="preview"><file name="editor_plugin.js" hash="925216b63aabd5adc67d642ca2d04b4a"/><file name="editor_plugin_src.js" hash="6f9c3234dfdc0f62b713e8771f4ca5dc"/><file name="example.html" hash="9b9290408ae10fa29ec29db60682be91"/><dir name="jscripts"><file name="embed.js" hash="39ebc57f44e1cc683724e1c1ff761894"/></dir><file name="preview.html" hash="bb02414f4cdd28c4a66e7fb5ed820f2d"/></dir><dir name="print"><file name="editor_plugin.js" hash="53eb1da78f727ee8337671fb86354c17"/><file name="editor_plugin_src.js" hash="f11547aa114df69b35df319003105e11"/></dir><dir name="save"><file name="editor_plugin.js" hash="307a0743c68c4e4aff005f13027f296f"/><file name="editor_plugin_src.js" hash="4dcbdaab64f06550a2db2b650f99d411"/></dir><dir name="searchreplace"><dir name="css"><file name="searchreplace.css" hash="ad0addca1bd5727432f39ec9b7fdac1e"/></dir><file name="editor_plugin.js" hash="ed4f1fa6e12844b533c86258647a298f"/><file name="editor_plugin_src.js" hash="7292198991a0fda1b9c7b28c921c6521"/><dir name="js"><file name="searchreplace.js" hash="0eeedb83f5bf1240348e1c6e77be2c47"/></dir><dir name="langs"><file name="en_dlg.js" hash="fbd47078679d87b541479000589ef4c9"/></dir><file name="searchreplace.htm" hash="4d01ee3be4045a600778fca1e11cee61"/></dir><dir name="spellchecker"><dir name="css"><file name="content.css" hash="ac0c7dbbbe44022d29d63b7b05123e3d"/></dir><file name="editor_plugin.js" hash="629a571ee7686ace6ee7ad1181be916b"/><file name="editor_plugin_src.js" hash="bae03899e91abca8b4b77c8ea886b561"/><dir name="img"><file name="wline.gif" hash="c136c9f8e00718a98947a21d8adbcc56"/></dir></dir><dir name="style"><dir name="css"><file name="props.css" hash="c2d2adc78609ea65760dae2dab058395"/></dir><file name="editor_plugin.js" hash="f9bcd692d63dfef1fe5c586d27ecd91b"/><file name="editor_plugin_src.js" hash="2ec50d9d37ce1e732380a746fabceefc"/><dir name="js"><file name="props.js" hash="f3614bf040f29057162e423822b89e11"/></dir><dir name="langs"><file name="en_dlg.js" hash="62a82106cfd480a6da4442b4763a2f2d"/></dir><file name="props.htm" hash="32f3f16194be9170386419c9dcc5b99a"/><file name="readme.txt" hash="ced5c8e014184a33da5507dbcd96b91f"/></dir><dir name="tabfocus"><file name="editor_plugin.js" hash="d3e5ef7a1a203516af0d8fdf94952fd2"/><file name="editor_plugin_src.js" hash="12889ccf8caf1d466859ba949f52fbca"/></dir><dir name="table"><file name="cell.htm" hash="f427b778a4924154a5e2317ddfd0f567"/><dir name="css"><file name="cell.css" hash="56394e6cdb267d97e23a07a98820e84b"/><file name="row.css" hash="81a75523c1e83be93e524c8bb901a089"/><file name="table.css" hash="f5e651f5a32284f1c4e0faa1d7cd5ff4"/></dir><file name="editor_plugin.js" hash="c12f0891c5bf0a7a6dd43ef0bd44dd82"/><file name="editor_plugin_src.js" hash="8228b4ab83fe4dfe2e377850dc2cf97e"/><dir name="js"><file name="cell.js" hash="8b0d4a7fe48c2f92c8b9b79dbb12cca1"/><file name="merge_cells.js" hash="3650484c93d6c9a197d03a5c3c3d2e80"/><file name="row.js" hash="d1cf0ab3d974f0b528e467d4b5c5c89f"/><file name="table.js" hash="f894721e5f5a6c2efa1a232c4b4a85b6"/></dir><dir name="langs"><file name="en_dlg.js" hash="ee3484503050cdae74d2cafa7d2e9999"/></dir><file name="merge_cells.htm" hash="f939ddd56826c0ec3c9e6e9a478346bf"/><file name="row.htm" hash="7ad9e68624759b28be626ac4b53c8907"/><file name="table.htm" hash="88fb36057ec1cb1681fed2dcb0b44693"/></dir><dir name="template"><file name="blank.htm" hash="9553e76581d74579d23bea5c7ea8a807"/><dir name="css"><file name="template.css" hash="5b2c159120cbef004c9b0804c292820b"/></dir><file name="editor_plugin.js" hash="70cb20c4e287110ae8aeed999893c532"/><file name="editor_plugin_src.js" hash="336af7b2ec3e0f7c83a7d05bf16cd018"/><dir name="js"><file name="template.js" hash="75abfd82a90ae648fb18c5517dfd925b"/></dir><dir name="langs"><file name="en_dlg.js" hash="1ce03c0fcf0f1aa74c132459abe30f39"/></dir><file name="template.htm" hash="b55e174e239e5c4b3a52d6ad60eb991d"/></dir><dir name="visualblocks"><dir name="css"><file name="visualblocks.css" hash="1fe4f62cc93864784b9b2d6b11b050b7"/></dir><file name="editor_plugin.js" hash="592e70a44aeb7c974eb9c5ff05c107a7"/><file name="editor_plugin_src.js" hash="6d1a4ea64bfedf8797260792e33f4c17"/></dir><dir name="visualchars"><file name="editor_plugin.js" hash="e494d07c71e24040a407b20017ca63e3"/><file name="editor_plugin_src.js" hash="f285c8f2ffac745325e86687b8cf0fb5"/></dir><dir name="wordcount"><file name="editor_plugin.js" hash="fb71ed139697b519f0054179d28ec782"/><file name="editor_plugin_src.js" hash="a034fddb393e4b6e7d25fc3761bea529"/></dir><dir name="xhtmlxtras"><file name="abbr.htm" hash="e514d143e00e4b121cab8fe8dfae48d2"/><file name="acronym.htm" hash="ec632b3d4b6afb189c055afa234e6291"/><file name="attributes.htm" hash="cf540b962f752babf53faa7a47bde108"/><file name="cite.htm" hash="1468438313b9cb1de0e53e50d75c92fa"/><dir name="css"><file name="attributes.css" hash="abc1b941c6eef8e1ea76915984e8a03e"/><file name="popup.css" hash="ed53e7b6ab799f6a249c3d403047dcfc"/></dir><file name="del.htm" hash="81bbcce0d19d78698fad760ee90b6948"/><file name="editor_plugin.js" hash="c9f91af5f1b8a1ba7a1e4ccf53fc7790"/><file name="editor_plugin_src.js" hash="b8b8236893ef2347a46cb131fc1a8c69"/><file name="ins.htm" hash="47e7db25678cee383fe6532ebb9e3fcb"/><dir name="js"><file name="abbr.js" hash="d91ae7d986336de4ecb977d19dcfab19"/><file name="acronym.js" hash="0a19f79bdc9222d3273712fe37a8051c"/><file name="attributes.js" hash="e75f23fae888b9febb57a29f2eb5a86c"/><file name="cite.js" hash="ba39487ce6a625538b838c21502bbaa7"/><file name="del.js" hash="be96fef888076d27384dd3546e8b6b6f"/><file name="element_common.js" hash="b817f5e2d514147d72765c92c1f60f3d"/><file name="ins.js" hash="6148dd4151e58dcda9112933908b97b1"/></dir><dir name="langs"><file name="en_dlg.js" hash="45db1586e7debc385f63092a13a9f43c"/></dir></dir></dir><dir name="themes"><dir name="advanced"><file name="about.htm" hash="ff135857e9b930d4d4658f92077e051c"/><file name="anchor.htm" hash="79d46a2b007b5cb08a3920e922a5da7f"/><file name="charmap.htm" hash="be712e4cf08670a1212e9eed2f452693"/><file name="color_picker.htm" hash="8db4d59dec910525149039f006a2bb9e"/><file name="editor_template.js" hash="a2b3085f0ab3c323dd28187b739139ec"/><file name="editor_template_src.js" hash="1fa308a86046cee68c5227ca58013bba"/><file name="image.htm" hash="2cb986c0cad7efd0592a4d8c35e41f0a"/><dir name="img"><file name="colorpicker.jpg" hash="9bcc36292defe94bca5a013a1736c7d7"/><file name="flash.gif" hash="33adee48d32bbbba3e6412cc54ecf335"/><file name="icons.gif" hash="75ad72872bc6280c32609e12fc3b610a"/><file name="iframe.gif" hash="a1af02e9ba370f64297087b46e80591e"/><file name="pagebreak.gif" hash="48872075f721bf57a517e3275d61c0ba"/><file name="quicktime.gif" hash="61da1ff8729ca5016344c4e8eb173369"/><file name="realmedia.gif" hash="b9734ee16d790e67bea01046feba28b7"/><file name="shockwave.gif" hash="1ce7d48784981aac9d4375cf2effdc4d"/><file name="trans.gif" hash="12bf9e19374920de3146a64775f46a5e"/><file name="video.gif" hash="f85c56813ea016a75e496bba50d66ab4"/><file name="windowsmedia.gif" hash="c327cd167b3a7bc263d908b0d0154ead"/></dir><dir name="js"><file name="about.js" hash="606c16492a17240ebded6e9fce75a555"/><file name="anchor.js" hash="da6a28397899bec3570216b2d2106684"/><file name="charmap.js" hash="02f40a38033ef8a0abeac870e5f4eda8"/><file name="color_picker.js" hash="cfc0f59a846661e748cae1c0adca77dc"/><file name="image.js" hash="75df8142a91f0245367e4121a2da7065"/><file name="link.js" hash="71949506dce04e923bbbc2ecc8ab5f1f"/><file name="source_editor.js" hash="4cbdfdf929a0949070f4d7ab4818b0f2"/></dir><dir name="langs"><file name="en.js" hash="58c814313230f1dec07fe45ad5f304e5"/><file name="en_dlg.js" hash="3a2c8aed5b7579ae45be6bd2b34ef06b"/></dir><file name="link.htm" hash="65c56f5a6d714fdbdc47c68ec9422976"/><file name="shortcuts.htm" hash="2bae05c8667b54b9ec019b529e743327"/><dir name="skins"><dir name="default"><file name="content.css" hash="1779499935490440d7a2423157756bc5"/><file name="dialog.css" hash="ab94126c11ff9c79445cc4ad537b2823"/><dir name="img"><file name="buttons.png" hash="33b2f2e08cc3ade5254fec64c4183558"/><file name="items.gif" hash="d201498a710fc8aac6e117820b9814b7"/><file name="menu_arrow.gif" hash="e21752451a9d80e276fef7b602bdbdba"/><file name="menu_check.gif" hash="c7d003885737f94768eecae49dcbca63"/><file name="progress.gif" hash="50c5e3e79b276c92df6cc52caeb464f0"/><file name="tabs.gif" hash="6473bbcd0a011e9fcdd9f777ef437410"/></dir><file name="ui.css" hash="823d750bb9c2bde55084d322f44b17c1"/></dir><dir name="highcontrast"><file name="content.css" hash="8294a1222d0ab5fa7520879cc9073e85"/><file name="dialog.css" hash="f6e95a7450471eb7473f8dbc3e6b6581"/><file name="ui.css" hash="1bdbee2f94594ca00c65b4d6a930bbf6"/></dir><dir name="o2k7"><file name="content.css" hash="c696812903368f41cd65616574c81484"/><file name="dialog.css" hash="661f54aa4a283b67c0acd25f91f2f213"/><dir name="img"><file name="button_bg.png" hash="36fd9fbd748860f515df259443367163"/><file name="button_bg_black.png" hash="9645f90b37102a3618a52be18b74b02b"/><file name="button_bg_silver.png" hash="15fbf2b4a20dbaa86205af6764f4fee4"/></dir><file name="ui.css" hash="a108668128c143e61bc44990dff89fe6"/><file name="ui_black.css" hash="ba8d82d9bff6e2854b29b1f97ead05fe"/><file name="ui_silver.css" hash="b42c7d51247d02ddca437a1661e748e5"/></dir></dir><file name="source_editor.htm" hash="42f3a13b55ffcf7c2d3ab768012abfcc"/></dir><dir name="simple"><file name="editor_template.js" hash="3ac3fd3129ee9605052b8470f8d58538"/><file name="editor_template_src.js" hash="409e0cce50eb6c62463d6dd9c6120859"/><dir name="img"><file name="icons.gif" hash="273dad62be4d114c5d52210b50a5838f"/></dir><dir name="langs"><file name="en.js" hash="50dce0602a45ba9fac56f12f76a63ec3"/></dir><dir name="skins"><dir name="default"><file name="content.css" hash="0f70f3ca9624e252d1c41ea064fc65e7"/><file name="ui.css" hash="c46c68283c617bb61dada1cd2494dd9f"/></dir><dir name="o2k7"><file name="content.css" hash="eb7a087c67578b6e3b5e0987caa4ba64"/><dir name="img"><file name="button_bg.png" hash="405ca3d63b48667ef485553192507f59"/></dir><file name="ui.css" hash="f0ec0273462e01b81e1dfd292f64451e"/></dir></dir></dir></dir><file name="tiny_mce.js" hash="199630688fff7a8bb0a549cd80187cbd"/><file name="tiny_mce_dev.js" hash="3a3819b032736635cc608076a02b3dbe"/><file name="tiny_mce_jquery.js" hash="87ee7a1967b86d56f5cdb1ba985ef4ce"/><file name="tiny_mce_jquery_src.js" hash="212727559aacdd03ea9ae6f5c6ede65a"/><file name="tiny_mce_popup.js" hash="5a318277fedf491a0301e177a9ef10b3"/><file name="tiny_mce_prototype.js" hash="0c65808fab93d86cf8552976f691b9c8"/><file name="tiny_mce_prototype_src.js" hash="3629c32a57bcf63cb52f455f18709223"/><file name="tiny_mce_src.js" hash="98575c8e6816a36f73145c2d97b0846a"/><dir name="utils"><file name="editable_selects.js" hash="e760eb21f60892a1ef2298da7df313e5"/><file name="form_utils.js" hash="579b2803ffca7953c50f53dcbef5df7e"/><file name="mctabs.js" hash="51b9bfe349fe76204ac5b65254bbef6f"/><file name="validate.js" hash="bfbaf5dc8058ff772afe2d87f4e82fbf"/></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Js_TinyMCE-3.5.11.1.xml var/package/Lib_Js_TinyMCE-3.5.11.1.xml | |
--- var/package/Lib_Js_TinyMCE-3.5.11.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Js_TinyMCE-3.5.11.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Js_TinyMCE</name> | |
+ <version>3.5.11.1</version> | |
+ <stability>stable</stability> | |
+ <license>Mixed</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>TinyMCE Javascript Libraries for Magento</summary> | |
+ <description>TinyMCE Javascript Libraries for Magento</description> | |
+ <notes>3.5.11.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:12</time> | |
+ <contents><target name="mageweb"><dir name="js"><dir name="tiny_mce"><dir name="classes"><file name="AddOnManager.js" hash="394e98bc019eb5c08c657fe4f8a48546"/><file name="ControlManager.js" hash="26cedc474b183b1a9905cdb3d10254dc"/><file name="Editor.Events.js" hash="07af3e1a08aead0078eb0cd6b030b864"/><file name="Editor.js" hash="e921b224172fbe2bd134eaab1974f2e8"/><file name="EditorCommands.js" hash="18b0d752aafddca09cf59fa7cc4d45c2"/><file name="EditorManager.js" hash="68b7a4a6252ab8b326fa5c8ee52d8016"/><file name="EnterKey.js" hash="ecc48ccb75c80dca2bd6bd7023fc906e"/><file name="ForceBlocks.js" hash="186ad2042e7b9416d2c4f9ec5f519893"/><file name="Formatter.js" hash="413f6c83f256d864a01e05718fbe7ce6"/><file name="LegacyInput.js" hash="a14c5e4099e2e4cbc6339eb54d3ec8f9"/><file name="Popup.js" hash="b6775a0e19bd839625b4dfb6b92a9688"/><file name="UndoManager.js" hash="276955286b65fba55ee60833ca2d6671"/><file name="WindowManager.js" hash="794c3d88226e8b62eac09eeeef283c3b"/><dir name="adapter"><dir name="jquery"><file name="adapter.js" hash="a5eea8e2826d7b0929291aa7a927ec29"/><file name="jquery.tinymce.js" hash="f2f319f369a84757b8976c2d66872933"/></dir><dir name="prototype"><file name="adapter.js" hash="37d84615944f028635f68d05b889c5c2"/></dir></dir><dir name="dom"><file name="DOMUtils.js" hash="bb9a7c2b19ad2433c85984cb8511e085"/><file name="Element.js" hash="1208e71eb2bc8e578b5a9cb4ec3b1365"/><file name="EventUtils.js" hash="652351eaf41de2659cfc7e380b694c02"/><file name="Range.js" hash="05c8ac178fa799217f60ebb650b41e0f"/><file name="RangeUtils.js" hash="9948e6204548089899b1e325370355f1"/><file name="ScriptLoader.js" hash="742ce02734095db354ad54ab8399a0ee"/><file name="Selection.js" hash="3332b2293dfc2a93fdb6a67ce5329642"/><file name="Serializer.js" hash="8762f4920ed6d4a57203bfbb8bc8490c"/><file name="Sizzle.js" hash="7930b22f632c7b0240237df1393e5023"/><file name="TreeWalker.js" hash="55425ece6675a529525bad45c6acbd94"/><file name="TridentSelection.js" hash="1fd402d1bb8144fa8549031b5f061733"/></dir><dir name="firebug"><file name="FIREBUG.LICENSE" hash="3b402ea96cec202bac23ea7144653cfa"/><file name="firebug-lite.js" hash="1c9c10926be94a61564ad0541a50624f"/></dir><dir name="html"><file name="DomParser.js" hash="25a47241e40445f2870bc94ce6a10b3c"/><file name="Entities.js" hash="7292e9f893096fb66d3232920be3c3d9"/><file name="Node.js" hash="ea0a5b87b71760018a753eb41a4e0f48"/><file name="SaxParser.js" hash="6dbb27c6762a5f27a9e6e844391393f4"/><file name="Schema.js" hash="e4d6e60fbca99911660f272717b9c08b"/><file name="Serializer.js" hash="ab74a79798a6f20f4267e3f1da17f2da"/><file name="Styles.js" hash="72317437bb3c7f0a05302658ea19dfce"/><file name="Writer.js" hash="3a2e8b824b749c19c5f27f8c830f95a5"/></dir><file name="tinymce.js" hash="546ec1f2bbfbf1ee04b4a33dcc05bc52"/><dir name="ui"><file name="Button.js" hash="82e9cd9d322a714652b0bc8e40e7e503"/><file name="ColorSplitButton.js" hash="06760a696b922b56a482f5889407714e"/><file name="Container.js" hash="7929a5d6aef46380197061e49e4f9dfb"/><file name="Control.js" hash="460a997aaad3b1b24f684bfdbefd3d9c"/><file name="DropMenu.js" hash="3359b973c857ca38105eeb276119b99f"/><file name="KeyboardNavigation.js" hash="f446fdfbadd728e8b009dc4adfc0b0d2"/><file name="ListBox.js" hash="2cd7287ec70ac87cb3903ecf0a2ccfdc"/><file name="Menu.js" hash="02762fee614d37aaea7eaf14f07dece1"/><file name="MenuButton.js" hash="fb0251eb52a5b3779d76ed2c2f8ec77e"/><file name="MenuItem.js" hash="55d400a161aa44d9dd5334d6f58ed956"/><file name="NativeListBox.js" hash="964785fd8a23be00b6db650f96e9ebf7"/><file name="Separator.js" hash="d4c5d779114617360ea78a2c0d523c81"/><file name="SplitButton.js" hash="e78e53578280cce9d97f936a82eca6de"/><file name="Toolbar.js" hash="b742f894f63122c4ee635fa59958167d"/><file name="ToolbarGroup.js" hash="db7b059b984e114ea22b1dc558d3d1f2"/></dir><dir name="util"><file name="Cookie.js" hash="14bc612b28c3c75549138a1699d5c238"/><file name="Dispatcher.js" hash="bf9bd51bbabca1823634833b3b16097c"/><file name="JSON.js" hash="b9b5964dbcd4cff962264dd72d8e4df5"/><file name="JSONP.js" hash="0a39d9e1b8427ab8b6dbdd00177c8c48"/><file name="JSONRequest.js" hash="dd12f1ac5c78ec4ba7459fb825ff9e5e"/><file name="Quirks.js" hash="927b518cc3aa663a41921590d0d3b4ac"/><file name="URI.js" hash="7069a8a2dfa4b0315719778b8c744139"/><file name="VK.js" hash="78114029ce46d5a4a441b01c44f23b4f"/><file name="XHR.js" hash="b00450d636335e7be50d46d2c31cc5a0"/></dir><dir name="xml"><file name="Parser.js" hash="c6d6862014ef2ab23a5a16adaee1af6d"/></dir></dir><file name="jquery.tinymce.js" hash="751418d46d453e7c6b1a7fbd4e60fefa"/><dir name="langs"><file name="en.js" hash="eff36a9433bccea2f3243b1465fe6fe3"/></dir><file name="license.txt" hash="b238d032089de4c340f6e0119210ce3a"/><dir name="plugins"><dir name="advhr"><dir name="css"><file name="advhr.css" hash="15df80b2137bcc04d5455ffa3a51e0c5"/></dir><file name="editor_plugin.js" hash="d0a03059205455e5c19cf3a845a0ebde"/><file name="editor_plugin_src.js" hash="a7fda2e674f15a33baf53cea2e23ec66"/><dir name="js"><file name="rule.js" hash="ef46d7c850c8bcc869ea84ed7ac00c49"/></dir><dir name="langs"><file name="en_dlg.js" hash="af62ab3f1b7a27190f8e001c8aefdfa6"/></dir><file name="rule.htm" hash="492ebbdc24d46061e928d911873d5fc8"/></dir><dir name="advimage"><dir name="css"><file name="advimage.css" hash="1ccd374d5f1e89cc16e1649558a9bb33"/></dir><file name="editor_plugin.js" hash="8af1f904909820d132bc0cbeb6469130"/><file name="editor_plugin_src.js" hash="958a409150fba5532d27e862d52015e9"/><file name="image.htm" hash="0d204c8f7651c3080ab542fb36957881"/><dir name="img"><file name="sample.gif" hash="b9c7057c46716340e8967340ad11766e"/></dir><dir name="js"><file name="image.js" hash="d071360a06b4f8590b4b18a7eca039aa"/></dir><dir name="langs"><file name="en_dlg.js" hash="6f80f834e2209e6a95957403bb4842f0"/></dir></dir><dir name="advlink"><dir name="css"><file name="advlink.css" hash="aaf226732a7b4ae80ee680700f488a1e"/></dir><file name="editor_plugin.js" hash="5e440c6bcb7fd94e7fd597f8a183e16f"/><file name="editor_plugin_src.js" hash="4104cd66aea546becf5d8fca66cf7951"/><dir name="js"><file name="advlink.js" hash="80dd2f99418025b6f9fd757adfdb1a71"/></dir><dir name="langs"><file name="en_dlg.js" hash="8da3a95d6886837c0bca18670f57ae1c"/></dir><file name="link.htm" hash="206ef7aba261ac4bc14e7c6fdbdcc8c5"/></dir><dir name="advlist"><file name="editor_plugin.js" hash="5f1c8625c04a6b0f4567c1c8d5e28ff9"/><file name="editor_plugin_src.js" hash="d451908bf1e060ecd49356787f33fc7c"/></dir><dir name="autolink"><file name="editor_plugin.js" hash="5091233229ffe517f075b787c5f388a6"/><file name="editor_plugin_src.js" hash="f03a8ec9ad17bd53f897a525e3cc30f7"/></dir><dir name="autoresize"><file name="editor_plugin.js" hash="adf5cbe96119e3ed9ab4a86ba26405e7"/><file name="editor_plugin_src.js" hash="4d1cdbe307f73b4d36d1bf9b3bc2d0a9"/></dir><dir name="autosave"><file name="editor_plugin.js" hash="ae4c2aba85a22da66e3655f55d1c89fd"/><file name="editor_plugin_src.js" hash="6177147324865c00736c242b8ccb2de6"/><dir name="langs"><file name="en.js" hash="a33b0322c949a6d74bde7fa164396984"/></dir></dir><dir name="bbcode"><file name="editor_plugin.js" hash="31748a6cc57a13da54a0243c3301f3e6"/><file name="editor_plugin_src.js" hash="842450703b915245adb53df7d478ea5a"/></dir><dir name="contextmenu"><file name="editor_plugin.js" hash="5a0fc9ce2ba71bf2b6f54eb94838619f"/><file name="editor_plugin_src.js" hash="b923e4315f2d98703bbe9699465f84f0"/></dir><dir name="directionality"><file name="editor_plugin.js" hash="e2d925fe1e778dbcade06d55164fc276"/><file name="editor_plugin_src.js" hash="14b7a5b69fdc4f235b654436e4fe3081"/></dir><dir name="emotions"><file name="editor_plugin.js" hash="98cba02e33fc108024f3e993be0b0b62"/><file name="editor_plugin_src.js" hash="4cbc6e9b083a810ab0d3768af8f8f864"/><file name="emotions.htm" hash="9378bfd04b56a828318f7798f5696f67"/><dir name="img"><file name="smiley-cool.gif" hash="e26e97a318f82ec144b0818e5a8f8edb"/><file name="smiley-cry.gif" hash="e72bf995ceca9230273ed9909c5db9c8"/><file name="smiley-embarassed.gif" hash="d59171236e6b0b96091eeda1f7b57ce3"/><file name="smiley-foot-in-mouth.gif" hash="c12d9db6a14ad0b52f66f1e2cf2a38e7"/><file name="smiley-frown.gif" hash="59930208822fe755f651a67ef4b70530"/><file name="smiley-innocent.gif" hash="ec0477c8a206ff250782e40f9bae4b4c"/><file name="smiley-kiss.gif" hash="4ae8945f3960751b5d294f18242e144d"/><file name="smiley-laughing.gif" hash="c37f405db4e13cbebf24e745534687bf"/><file name="smiley-money-mouth.gif" hash="11c14bd1496afd0e21df115d25b68e96"/><file name="smiley-sealed.gif" hash="bb828cb46b377d1589927a02f8fd1762"/><file name="smiley-smile.gif" hash="2968a664098d9580079c66d628dad1a8"/><file name="smiley-surprised.gif" hash="2e136ebd637bf3e6c9fc6bdc20cbe73e"/><file name="smiley-tongue-out.gif" hash="5ec3bb4781c8e43a51d3a1a948b98fc0"/><file name="smiley-undecided.gif" hash="3c0c011d16b1a2331385ed97e160a42a"/><file name="smiley-wink.gif" hash="897275ac7d07032b4d93fb83a0d2a41b"/><file name="smiley-yell.gif" hash="19bb8ebfe3c2f5ef3ffb9aa4a027900d"/></dir><dir name="js"><file name="emotions.js" hash="85efe828d29037950412fec963b6f950"/></dir><dir name="langs"><file name="en_dlg.js" hash="62c052504a77e4f4cec6d90ece0d76c4"/></dir></dir><dir name="example"><file name="dialog.htm" hash="e6170a190a4d44ea5e6af089d2728d7e"/><file name="editor_plugin.js" hash="e0a175dca3d5e437657ccd5d548ff409"/><file name="editor_plugin_src.js" hash="b98bec73743c249187e0fa8f8311e3a3"/><dir name="img"><file name="example.gif" hash="6036655a01df362267183a8b23fead10"/></dir><dir name="js"><file name="dialog.js" hash="83245e76c97e24d466cf5df2308f9bf4"/></dir><dir name="langs"><file name="en.js" hash="78c88182b5fb900fc956845f75885b3a"/><file name="en_dlg.js" hash="7aec7a3b9d4642fbf7bb3ef1ed8a7570"/></dir></dir><dir name="example_dependency"><file name="editor_plugin.js" hash="405d190ae03384a9acb00533568b2cfd"/><file name="editor_plugin_src.js" hash="473878118b45efe326d335f992ff9943"/></dir><dir name="fullpage"><dir name="css"><file name="fullpage.css" hash="2ac64c98369f8b4f7cbf6fa70e25bfca"/></dir><file name="editor_plugin.js" hash="5dfbe0a82c87eb0fb65b11dcd39406d0"/><file name="editor_plugin_src.js" hash="636afe66f3de447eb92611bdcfb7f2b3"/><file name="fullpage.htm" hash="8c58825b698712e7297f95da51a9c03c"/><dir name="js"><file name="fullpage.js" hash="a7913b6b1a1ae634a509c3db9faf381a"/></dir><dir name="langs"><file name="en_dlg.js" hash="963f370d56f19c2f94de09b10a306187"/></dir></dir><dir name="fullscreen"><file name="editor_plugin.js" hash="15134339e36472281b8a1626233f747d"/><file name="editor_plugin_src.js" hash="a28a8a8bf569d6ee5e6dccbc988490ce"/><file name="fullscreen.htm" hash="b6d76297c2f679b9110ec7119d091900"/></dir><dir name="iespell"><file name="editor_plugin.js" hash="22526393cacb6447a0e3bfff2fb47773"/><file name="editor_plugin_src.js" hash="311e13bcc85c06da43decc37dc1b4f83"/></dir><dir name="inlinepopups"><file name="editor_plugin.js" hash="db32751b98f40ca6eee24efc848d6cbb"/><file name="editor_plugin_src.js" hash="d1c1de414c13fef3593ffd14503d37c0"/><dir name="skins"><dir name="clearlooks2"><dir name="img"><file name="alert.gif" hash="568d4cf84413656fb72fe39d1dd60f8d"/><file name="button.gif" hash="19f864cb81177840dcd534df4d537ea3"/><file name="buttons.gif" hash="1743ac9f7f2267a6edafefc536a2265d"/><file name="confirm.gif" hash="1bc337a20c319e531cda6ced531827d0"/><file name="corners.gif" hash="55298b5baaecb7e06a251db9f0a4b14c"/><file name="horizontal.gif" hash="0365e75dd4a9ad61dc98dcb641207c21"/><file name="vertical.gif" hash="0261136fac58ce77bdbd96aa0194947e"/></dir><file name="window.css" hash="f715affab9da63bc26f8c6362a989395"/></dir></dir><file name="template.htm" hash="3d7e3ae05511a9f64c5da924b9e971ba"/></dir><dir name="insertdatetime"><file name="editor_plugin.js" hash="d99072498466cdb2f53ed7c02da85982"/><file name="editor_plugin_src.js" hash="32a2afa1cd3ff8c9b966f8724ba3e0b3"/></dir><dir name="layer"><file name="editor_plugin.js" hash="4e5fc1b467c19d79dcf6246ba3a63cd8"/><file name="editor_plugin_src.js" hash="3754eb57b08539e459509caa74acecc6"/></dir><dir name="legacyoutput"><file name="editor_plugin.js" hash="b732a86187723cd9cc32853d67730061"/><file name="editor_plugin_src.js" hash="8a0a69cbe8d447d722aaef7d4ed7dcc1"/></dir><dir name="lists"><file name="editor_plugin.js" hash="46ba57884d8fe05d92cd9d98d3bb00af"/><file name="editor_plugin_src.js" hash="04e1f245c19d6dc9454dae57faec9b6f"/></dir><dir name="media"><dir name="css"><file name="media.css" hash="f211293a697a2c83da00effd67f535a2"/></dir><file name="editor_plugin.js" hash="5ad7db86c5008f98ec135595db4a4973"/><file name="editor_plugin_src.js" hash="1d03ec1ec36745041db26132b07b0491"/><dir name="img"><file name="flash.gif" hash="6c69b02015d09280332ff8b07e4ea2f3"/><file name="quicktime.gif" hash="9a6a9fdead205b125c07ea37e71ed4f1"/><file name="realmedia.gif" hash="b9734ee16d790e67bea01046feba28b7"/><file name="shockwave.gif" hash="baa643b587565755157618032dc93e3c"/><file name="trans.gif" hash="12bf9e19374920de3146a64775f46a5e"/><file name="windowsmedia.gif" hash="c327cd167b3a7bc263d908b0d0154ead"/></dir><dir name="js"><file name="embed.js" hash="39ebc57f44e1cc683724e1c1ff761894"/><file name="media.js" hash="4f35c0283a30f3556e023e76c34368b2"/></dir><dir name="langs"><file name="en_dlg.js" hash="9523fc123c577642000fd409bd862c3f"/></dir><file name="media.htm" hash="be58b1edf9a4a4dbf3a1993e3d897e1a"/><file name="moxieplayer.swf" hash="9217cea72c76c361fa5033526712284e"/></dir><dir name="nonbreaking"><file name="editor_plugin.js" hash="232f23a586f10bd8ddabf38d767113d4"/><file name="editor_plugin_src.js" hash="fefbda5243d10652038ccf40801b8893"/></dir><dir name="noneditable"><file name="editor_plugin.js" hash="b332a5f8767506024a0f50aa4204b1fe"/><file name="editor_plugin_src.js" hash="273d35e2221889e75f33fd545f77d44e"/></dir><dir name="pagebreak"><dir name="css"><file name="content.css" hash="d9664762a610f2b5f7b10b5781f3299a"/></dir><file name="editor_plugin.js" hash="8be3376740c886fa2842d2f4eb282bbc"/><file name="editor_plugin_src.js" hash="c2d432a5914f0095a859ff443700a5e9"/><dir name="img"><file name="pagebreak.gif" hash="48872075f721bf57a517e3275d61c0ba"/><file name="trans.gif" hash="12bf9e19374920de3146a64775f46a5e"/></dir></dir><dir name="paste"><file name="editor_plugin.js" hash="1b68c59eb95a28ccc2aff2cfb85a8829"/><file name="editor_plugin_src.js" hash="40eef37ac300b571da5383bc0bddf73f"/><dir name="js"><file name="pastetext.js" hash="d6e4b39f19b89118b34b0d21491494b7"/><file name="pasteword.js" hash="112504d12e971e4d32f17a59c5616c36"/></dir><dir name="langs"><file name="en_dlg.js" hash="6ea2189562f65287be8e5e3185c405b7"/></dir><file name="pastetext.htm" hash="8f217769e59a5dd67843c7c17c842f41"/><file name="pasteword.htm" hash="8b9459b98f9a70ed684832326bf1cdf6"/></dir><dir name="preview"><file name="editor_plugin.js" hash="925216b63aabd5adc67d642ca2d04b4a"/><file name="editor_plugin_src.js" hash="6f9c3234dfdc0f62b713e8771f4ca5dc"/><file name="example.html" hash="9b9290408ae10fa29ec29db60682be91"/><dir name="jscripts"><file name="embed.js" hash="39ebc57f44e1cc683724e1c1ff761894"/></dir><file name="preview.html" hash="bb02414f4cdd28c4a66e7fb5ed820f2d"/></dir><dir name="print"><file name="editor_plugin.js" hash="53eb1da78f727ee8337671fb86354c17"/><file name="editor_plugin_src.js" hash="f11547aa114df69b35df319003105e11"/></dir><dir name="save"><file name="editor_plugin.js" hash="307a0743c68c4e4aff005f13027f296f"/><file name="editor_plugin_src.js" hash="4dcbdaab64f06550a2db2b650f99d411"/></dir><dir name="searchreplace"><dir name="css"><file name="searchreplace.css" hash="ad0addca1bd5727432f39ec9b7fdac1e"/></dir><file name="editor_plugin.js" hash="ed4f1fa6e12844b533c86258647a298f"/><file name="editor_plugin_src.js" hash="7292198991a0fda1b9c7b28c921c6521"/><dir name="js"><file name="searchreplace.js" hash="0eeedb83f5bf1240348e1c6e77be2c47"/></dir><dir name="langs"><file name="en_dlg.js" hash="fbd47078679d87b541479000589ef4c9"/></dir><file name="searchreplace.htm" hash="4d01ee3be4045a600778fca1e11cee61"/></dir><dir name="spellchecker"><dir name="css"><file name="content.css" hash="ac0c7dbbbe44022d29d63b7b05123e3d"/></dir><file name="editor_plugin.js" hash="629a571ee7686ace6ee7ad1181be916b"/><file name="editor_plugin_src.js" hash="bae03899e91abca8b4b77c8ea886b561"/><dir name="img"><file name="wline.gif" hash="c136c9f8e00718a98947a21d8adbcc56"/></dir></dir><dir name="style"><dir name="css"><file name="props.css" hash="c2d2adc78609ea65760dae2dab058395"/></dir><file name="editor_plugin.js" hash="f9bcd692d63dfef1fe5c586d27ecd91b"/><file name="editor_plugin_src.js" hash="2ec50d9d37ce1e732380a746fabceefc"/><dir name="js"><file name="props.js" hash="f3614bf040f29057162e423822b89e11"/></dir><dir name="langs"><file name="en_dlg.js" hash="62a82106cfd480a6da4442b4763a2f2d"/></dir><file name="props.htm" hash="32f3f16194be9170386419c9dcc5b99a"/><file name="readme.txt" hash="ced5c8e014184a33da5507dbcd96b91f"/></dir><dir name="tabfocus"><file name="editor_plugin.js" hash="d3e5ef7a1a203516af0d8fdf94952fd2"/><file name="editor_plugin_src.js" hash="12889ccf8caf1d466859ba949f52fbca"/></dir><dir name="table"><file name="cell.htm" hash="f427b778a4924154a5e2317ddfd0f567"/><dir name="css"><file name="cell.css" hash="56394e6cdb267d97e23a07a98820e84b"/><file name="row.css" hash="81a75523c1e83be93e524c8bb901a089"/><file name="table.css" hash="f5e651f5a32284f1c4e0faa1d7cd5ff4"/></dir><file name="editor_plugin.js" hash="c12f0891c5bf0a7a6dd43ef0bd44dd82"/><file name="editor_plugin_src.js" hash="8228b4ab83fe4dfe2e377850dc2cf97e"/><dir name="js"><file name="cell.js" hash="8b0d4a7fe48c2f92c8b9b79dbb12cca1"/><file name="merge_cells.js" hash="3650484c93d6c9a197d03a5c3c3d2e80"/><file name="row.js" hash="d1cf0ab3d974f0b528e467d4b5c5c89f"/><file name="table.js" hash="f894721e5f5a6c2efa1a232c4b4a85b6"/></dir><dir name="langs"><file name="en_dlg.js" hash="ee3484503050cdae74d2cafa7d2e9999"/></dir><file name="merge_cells.htm" hash="f939ddd56826c0ec3c9e6e9a478346bf"/><file name="row.htm" hash="7ad9e68624759b28be626ac4b53c8907"/><file name="table.htm" hash="88fb36057ec1cb1681fed2dcb0b44693"/></dir><dir name="template"><file name="blank.htm" hash="9553e76581d74579d23bea5c7ea8a807"/><dir name="css"><file name="template.css" hash="5b2c159120cbef004c9b0804c292820b"/></dir><file name="editor_plugin.js" hash="70cb20c4e287110ae8aeed999893c532"/><file name="editor_plugin_src.js" hash="336af7b2ec3e0f7c83a7d05bf16cd018"/><dir name="js"><file name="template.js" hash="75abfd82a90ae648fb18c5517dfd925b"/></dir><dir name="langs"><file name="en_dlg.js" hash="1ce03c0fcf0f1aa74c132459abe30f39"/></dir><file name="template.htm" hash="b55e174e239e5c4b3a52d6ad60eb991d"/></dir><dir name="visualblocks"><dir name="css"><file name="visualblocks.css" hash="1fe4f62cc93864784b9b2d6b11b050b7"/></dir><file name="editor_plugin.js" hash="592e70a44aeb7c974eb9c5ff05c107a7"/><file name="editor_plugin_src.js" hash="6d1a4ea64bfedf8797260792e33f4c17"/></dir><dir name="visualchars"><file name="editor_plugin.js" hash="e494d07c71e24040a407b20017ca63e3"/><file name="editor_plugin_src.js" hash="f285c8f2ffac745325e86687b8cf0fb5"/></dir><dir name="wordcount"><file name="editor_plugin.js" hash="fb71ed139697b519f0054179d28ec782"/><file name="editor_plugin_src.js" hash="a034fddb393e4b6e7d25fc3761bea529"/></dir><dir name="xhtmlxtras"><file name="abbr.htm" hash="e514d143e00e4b121cab8fe8dfae48d2"/><file name="acronym.htm" hash="ec632b3d4b6afb189c055afa234e6291"/><file name="attributes.htm" hash="cf540b962f752babf53faa7a47bde108"/><file name="cite.htm" hash="1468438313b9cb1de0e53e50d75c92fa"/><dir name="css"><file name="attributes.css" hash="abc1b941c6eef8e1ea76915984e8a03e"/><file name="popup.css" hash="ed53e7b6ab799f6a249c3d403047dcfc"/></dir><file name="del.htm" hash="81bbcce0d19d78698fad760ee90b6948"/><file name="editor_plugin.js" hash="c9f91af5f1b8a1ba7a1e4ccf53fc7790"/><file name="editor_plugin_src.js" hash="b8b8236893ef2347a46cb131fc1a8c69"/><file name="ins.htm" hash="47e7db25678cee383fe6532ebb9e3fcb"/><dir name="js"><file name="abbr.js" hash="d91ae7d986336de4ecb977d19dcfab19"/><file name="acronym.js" hash="0a19f79bdc9222d3273712fe37a8051c"/><file name="attributes.js" hash="e75f23fae888b9febb57a29f2eb5a86c"/><file name="cite.js" hash="ba39487ce6a625538b838c21502bbaa7"/><file name="del.js" hash="be96fef888076d27384dd3546e8b6b6f"/><file name="element_common.js" hash="b817f5e2d514147d72765c92c1f60f3d"/><file name="ins.js" hash="6148dd4151e58dcda9112933908b97b1"/></dir><dir name="langs"><file name="en_dlg.js" hash="45db1586e7debc385f63092a13a9f43c"/></dir></dir></dir><dir name="themes"><dir name="advanced"><file name="about.htm" hash="ff135857e9b930d4d4658f92077e051c"/><file name="anchor.htm" hash="79d46a2b007b5cb08a3920e922a5da7f"/><file name="charmap.htm" hash="be712e4cf08670a1212e9eed2f452693"/><file name="color_picker.htm" hash="8db4d59dec910525149039f006a2bb9e"/><file name="editor_template.js" hash="a2b3085f0ab3c323dd28187b739139ec"/><file name="editor_template_src.js" hash="1fa308a86046cee68c5227ca58013bba"/><file name="image.htm" hash="2cb986c0cad7efd0592a4d8c35e41f0a"/><dir name="img"><file name="colorpicker.jpg" hash="9bcc36292defe94bca5a013a1736c7d7"/><file name="flash.gif" hash="33adee48d32bbbba3e6412cc54ecf335"/><file name="icons.gif" hash="75ad72872bc6280c32609e12fc3b610a"/><file name="iframe.gif" hash="a1af02e9ba370f64297087b46e80591e"/><file name="pagebreak.gif" hash="48872075f721bf57a517e3275d61c0ba"/><file name="quicktime.gif" hash="61da1ff8729ca5016344c4e8eb173369"/><file name="realmedia.gif" hash="b9734ee16d790e67bea01046feba28b7"/><file name="shockwave.gif" hash="1ce7d48784981aac9d4375cf2effdc4d"/><file name="trans.gif" hash="12bf9e19374920de3146a64775f46a5e"/><file name="video.gif" hash="f85c56813ea016a75e496bba50d66ab4"/><file name="windowsmedia.gif" hash="c327cd167b3a7bc263d908b0d0154ead"/></dir><dir name="js"><file name="about.js" hash="606c16492a17240ebded6e9fce75a555"/><file name="anchor.js" hash="da6a28397899bec3570216b2d2106684"/><file name="charmap.js" hash="02f40a38033ef8a0abeac870e5f4eda8"/><file name="color_picker.js" hash="cfc0f59a846661e748cae1c0adca77dc"/><file name="image.js" hash="75df8142a91f0245367e4121a2da7065"/><file name="link.js" hash="71949506dce04e923bbbc2ecc8ab5f1f"/><file name="source_editor.js" hash="4cbdfdf929a0949070f4d7ab4818b0f2"/></dir><dir name="langs"><file name="en.js" hash="58c814313230f1dec07fe45ad5f304e5"/><file name="en_dlg.js" hash="3a2c8aed5b7579ae45be6bd2b34ef06b"/></dir><file name="link.htm" hash="65c56f5a6d714fdbdc47c68ec9422976"/><file name="shortcuts.htm" hash="2bae05c8667b54b9ec019b529e743327"/><dir name="skins"><dir name="default"><file name="content.css" hash="1779499935490440d7a2423157756bc5"/><file name="dialog.css" hash="ab94126c11ff9c79445cc4ad537b2823"/><dir name="img"><file name="buttons.png" hash="33b2f2e08cc3ade5254fec64c4183558"/><file name="items.gif" hash="d201498a710fc8aac6e117820b9814b7"/><file name="menu_arrow.gif" hash="e21752451a9d80e276fef7b602bdbdba"/><file name="menu_check.gif" hash="c7d003885737f94768eecae49dcbca63"/><file name="progress.gif" hash="50c5e3e79b276c92df6cc52caeb464f0"/><file name="tabs.gif" hash="6473bbcd0a011e9fcdd9f777ef437410"/></dir><file name="ui.css" hash="823d750bb9c2bde55084d322f44b17c1"/></dir><dir name="highcontrast"><file name="content.css" hash="8294a1222d0ab5fa7520879cc9073e85"/><file name="dialog.css" hash="f6e95a7450471eb7473f8dbc3e6b6581"/><file name="ui.css" hash="1bdbee2f94594ca00c65b4d6a930bbf6"/></dir><dir name="o2k7"><file name="content.css" hash="c696812903368f41cd65616574c81484"/><file name="dialog.css" hash="661f54aa4a283b67c0acd25f91f2f213"/><dir name="img"><file name="button_bg.png" hash="36fd9fbd748860f515df259443367163"/><file name="button_bg_black.png" hash="9645f90b37102a3618a52be18b74b02b"/><file name="button_bg_silver.png" hash="15fbf2b4a20dbaa86205af6764f4fee4"/></dir><file name="ui.css" hash="a108668128c143e61bc44990dff89fe6"/><file name="ui_black.css" hash="ba8d82d9bff6e2854b29b1f97ead05fe"/><file name="ui_silver.css" hash="b42c7d51247d02ddca437a1661e748e5"/></dir></dir><file name="source_editor.htm" hash="42f3a13b55ffcf7c2d3ab768012abfcc"/></dir><dir name="simple"><file name="editor_template.js" hash="3ac3fd3129ee9605052b8470f8d58538"/><file name="editor_template_src.js" hash="409e0cce50eb6c62463d6dd9c6120859"/><dir name="img"><file name="icons.gif" hash="273dad62be4d114c5d52210b50a5838f"/></dir><dir name="langs"><file name="en.js" hash="50dce0602a45ba9fac56f12f76a63ec3"/></dir><dir name="skins"><dir name="default"><file name="content.css" hash="0f70f3ca9624e252d1c41ea064fc65e7"/><file name="ui.css" hash="c46c68283c617bb61dada1cd2494dd9f"/></dir><dir name="o2k7"><file name="content.css" hash="eb7a087c67578b6e3b5e0987caa4ba64"/><dir name="img"><file name="button_bg.png" hash="405ca3d63b48667ef485553192507f59"/></dir><file name="ui.css" hash="f0ec0273462e01b81e1dfd292f64451e"/></dir></dir></dir></dir><file name="tiny_mce.js" hash="199630688fff7a8bb0a549cd80187cbd"/><file name="tiny_mce_dev.js" hash="3a3819b032736635cc608076a02b3dbe"/><file name="tiny_mce_jquery.js" hash="87ee7a1967b86d56f5cdb1ba985ef4ce"/><file name="tiny_mce_jquery_src.js" hash="212727559aacdd03ea9ae6f5c6ede65a"/><file name="tiny_mce_popup.js" hash="5a318277fedf491a0301e177a9ef10b3"/><file name="tiny_mce_prototype.js" hash="0c65808fab93d86cf8552976f691b9c8"/><file name="tiny_mce_prototype_src.js" hash="3629c32a57bcf63cb52f455f18709223"/><file name="tiny_mce_src.js" hash="98575c8e6816a36f73145c2d97b0846a"/><dir name="utils"><file name="editable_selects.js" hash="e760eb21f60892a1ef2298da7df313e5"/><file name="form_utils.js" hash="579b2803ffca7953c50f53dcbef5df7e"/><file name="mctabs.js" hash="51b9bfe349fe76204ac5b65254bbef6f"/><file name="validate.js" hash="bfbaf5dc8058ff772afe2d87f4e82fbf"/></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_LinLibertineFont-2.8.14.1.xml var/package/Lib_LinLibertineFont-2.8.14.1.xml | |
--- var/package/Lib_LinLibertineFont-2.8.14.1.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_LinLibertineFont-2.8.14.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_LinLibertineFont</name> | |
- <version>2.8.14.1</version> | |
- <stability>stable</stability> | |
- <license uri="http://www.gnu.org/licenses/gpl.html">GPL</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Libertine Open Fonts Project fonts for PDF print-outs</summary> | |
- <description>Libertine Open Fonts Project fonts for PDF print-outs</description> | |
- <notes>2.8.14.1</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2012-04-23</date> | |
- <time>13:47:58</time> | |
- <contents><target name="magelib"><dir name="LinLibertineFont"><file name="Bugs" hash="9ecefd5b5d739618917f6ff1a496af4d"/><file name="ChangeLog.txt" hash="c4a43af51dc70f4acbd09eeda8a1f95d"/><file name="GPL.txt" hash="ae32e069c670f1247694f4313efcc977"/><file name="LICENCE.txt" hash="9752e08000ee88048cb953607250dd7b"/><file name="LinLibertineC_Re-2.8.0.ttf" hash="7c98097ee899568bc86c28a8eafd77a3"/><file name="LinLibertine_Bd-2.8.1.ttf" hash="81c9c61a6c91fc6ccb93f1e6ec6ed06a"/><file name="LinLibertine_It-2.8.2.ttf" hash="5d334990c5d59bd428ae684ce8490c5c"/><file name="LinLibertine_Re-4.4.1.ttf" hash="de5bccf92a5145f4532b126f9506c28d"/><file name="OFL.txt" hash="6237e6976dcefd3d9fc3f1264b3c3bb9"/><file name="Readme" hash="9bbff4f7c21eb0a037527720e4b8473d"/><file name="Readme-TEX.txt" hash="14cb95ee0acecf6c3ef563f1b906443b"/></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_LinLibertineFont-2.8.14.2.xml var/package/Lib_LinLibertineFont-2.8.14.2.xml | |
--- var/package/Lib_LinLibertineFont-2.8.14.2.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_LinLibertineFont-2.8.14.2.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_LinLibertineFont</name> | |
+ <version>2.8.14.2</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://www.gnu.org/licenses/gpl.html">GPL</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Libertine Open Fonts Project fonts for PDF print-outs</summary> | |
+ <description>Libertine Open Fonts Project fonts for PDF print-outs</description> | |
+ <notes>2.8.14.2</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:13</time> | |
+ <contents><target name="magelib"><dir name="LinLibertineFont"><file name="Bugs" hash="9ecefd5b5d739618917f6ff1a496af4d"/><file name="ChangeLog.txt" hash="c4a43af51dc70f4acbd09eeda8a1f95d"/><file name="GPL.txt" hash="ae32e069c670f1247694f4313efcc977"/><file name="LICENCE.txt" hash="9752e08000ee88048cb953607250dd7b"/><file name="LinLibertineC_Re-2.8.0.ttf" hash="7c98097ee899568bc86c28a8eafd77a3"/><file name="LinLibertine_Bd-2.8.1.ttf" hash="81c9c61a6c91fc6ccb93f1e6ec6ed06a"/><file name="LinLibertine_It-2.8.2.ttf" hash="5d334990c5d59bd428ae684ce8490c5c"/><file name="LinLibertine_Re-4.4.1.ttf" hash="de5bccf92a5145f4532b126f9506c28d"/><file name="OFL.txt" hash="6237e6976dcefd3d9fc3f1264b3c3bb9"/><file name="Readme" hash="9bbff4f7c21eb0a037527720e4b8473d"/><file name="Readme-TEX.txt" hash="14cb95ee0acecf6c3ef563f1b906443b"/></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Mage-1.9.2.0.xml var/package/Lib_Mage-1.9.2.0.xml | |
--- var/package/Lib_Mage-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Mage-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Mage</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Mage Library</summary> | |
- <description>Mage Library</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="magelib"><dir name="Mage"><dir name="Archive"><file name="Abstract.php" hash="de4e571664fc07c3d9549f0fd267673c"/><file name="Bz.php" hash="2505695d644c59adc33e22a0e4b4026b"/><file name="Gz.php" hash="b1a8f824762096e9481c4cf867236e0f"/><dir name="Helper"><dir name="File"><file name="Bz.php" hash="c2ecedaf9f2f87da265e8d015f184483"/><file name="Gz.php" hash="7f02f08015915d25220d065994ddc5d4"/></dir><file name="File.php" hash="83b65b9f0ac67451501a9c9637f5079b"/></dir><file name="Interface.php" hash="082498bdccf0768d5dd074493a570ebb"/><file name="Tar.php" hash="3f68ba944d9c375a14e94d10ef9fe5b0"/></dir><file name="Archive.php" hash="6bb5cfd52d689a82580e56ed016c9d5c"/><dir name="Autoload"><file name="Simple.php" hash="79585aafc6ed3c63d9560f1975f7839f"/></dir><dir name="Backup"><file name="Abstract.php" hash="6dc4a21835d04a2b517d5c3fb097fa32"/><dir name="Archive"><file name="Tar.php" hash="b0ea407733eb0eddf2335eb04b6d4efd"/></dir><file name="Db.php" hash="82085d5187d2f98b3bba9843e13e9e73"/><dir name="Exception"><file name="CantLoadSnapshot.php" hash="5999c355894c14f1e2362f45a6ba057a"/><file name="FtpConnectionFailed.php" hash="7a1fa7df65b14879e06f416358e4bfe8"/><file name="FtpValidationFailed.php" hash="69af18f3940a28573735e51c09582906"/><file name="NotEnoughFreeSpace.php" hash="85aa48d06cbf0bbbff797dda79be5031"/><file name="NotEnoughPermissions.php" hash="66b048e085f4e22ff92165cf27eb154a"/></dir><file name="Exception.php" hash="faffb5273a8d7b3bc1ac23500b3738ed"/><dir name="Filesystem"><file name="Helper.php" hash="decd420b567cc2f6352e1fe32832b777"/><dir name="Iterator"><file name="File.php" hash="30cf1633496618f74849bc2374f031c8"/><file name="Filter.php" hash="1fe29804508aa85589ba1a8578f492a8"/></dir><dir name="Rollback"><file name="Abstract.php" hash="f9282d34c12a6030942554a80882bb4a"/><file name="Fs.php" hash="179ac7ecd47d54e9a5324d8c6dc27194"/><file name="Ftp.php" hash="c31b8da9f38b0dd03fa87832f74a388b"/></dir></dir><file name="Filesystem.php" hash="7db5e5dc7ac0703bb4944092d19b8153"/><file name="Interface.php" hash="649acb82500c3aa25d789ede57b6d824"/><file name="Media.php" hash="d23badc8294f743242e831a1ee08a235"/><file name="Nomedia.php" hash="f67824816890655d383cc2f6bde37cfd"/><file name="Snapshot.php" hash="c8a1ca0ecd577783cc685560a929953a"/></dir><file name="Backup.php" hash="cb1bdf9d812811d0cf5478fb74d651d6"/><dir name="Cache"><dir name="Backend"><file name="File.php" hash="e5cae99d5ae44908250e8efd9436f881"/><file name="Redis.php" hash="347c3b2c5d745df9f198d9c67cf035ee"/></dir></dir><dir name="Connect"><dir name="Channel"><file name="Generator.php" hash="8779c3d0bd0349fb084ba014aeebef08"/><file name="Parser.php" hash="710308a0983877f5397324ccde29ec64"/><file name="VO.php" hash="d5e083cac4674e60f3576c7f9245079e"/></dir><dir name="Command"><file name="Channels.php" hash="64a28e0922b180efae0b1505eb3a23c8"/><file name="Channels_Header.php" hash="c8801d31616e14fd17544d8ad91d8c71"/><file name="Config.php" hash="b4c3946a709c935285c7eef4e9893d95"/><file name="Config_Header.php" hash="be5819b085c2c25406169cc69db91efc"/><file name="Install.php" hash="4bc0690d8dae272ddcca882fbdc52cfa"/><file name="Install_Header.php" hash="b26353e14b18ca24135a8b3152eed832"/><file name="Package.php" hash="91daf698f9d027079aa3d4a70934e119"/><file name="Package_Header.php" hash="6875b32ecfc9be59d130814fb56ed35d"/><file name="Registry.php" hash="443008c5584a2e9b55674f07217ddabd"/><file name="Registry_Header.php" hash="9eaedec1fe480089c604580418579438"/><file name="Remote.php" hash="56b78c8f407460df4664d4455e879f0d"/><file name="Remote_Header.php" hash="d9b41a55a61c5c1e52abaff7a53fcc67"/></dir><file name="Command.php" hash="0fdfd17b49c24ebb994f27dd1d121144"/><file name="Config.php" hash="c452374e4ab10e53663d223c1bdd879f"/><file name="Converter.php" hash="a133fb8a9a1bb27f562daa734fb9f660"/><dir name="Frontend"><file name="CLI.php" hash="c1aeab2cce56ca6a6a1ea09db28897aa"/></dir><file name="Frontend.php" hash="d07caa4fe5b8f49b0ab45083eb6b1c51"/><file name="Ftp.php" hash="00039e4e1292e61e8932617cd57ab203"/><dir name="Loader"><file name="Ftp.php" hash="0332d94da7f3e58fc055fb80d53432a9"/></dir><file name="Loader.php" hash="3ca76a5329a1947d96e94bc316ca3099"/><dir name="Package"><file name="Extension.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Hotfix.php" hash="ae834feb24bf36fc188afc11736681f1"/><file name="Maintainer.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Reader.php" hash="c15f774cde56becedbdb3d363fac388c"/><file name="Target.php" hash="0e839847991ddaef741ae56daa936a6e"/><file name="VO.php" hash="cfbb4316314a742856bbe76e5d752512"/><file name="Writer.php" hash="8e41b3c89abe5a364bb32b56b6ae36de"/></dir><file name="Package.php" hash="94465bdc10578080364de3a9b20d4796"/><file name="Packager.php" hash="9ece3d292eabb6fec1393a021e4cef0d"/><dir name="Repository"><file name="Abstract.php" hash="710308a0983877f5397324ccde29ec64"/><dir name="Channel"><file name="Abstract.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Commercial.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Community.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Core.php" hash="710308a0983877f5397324ccde29ec64"/></dir><file name="Channel.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Local.php" hash="710308a0983877f5397324ccde29ec64"/></dir><file name="Repository.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Rest.php" hash="735bf347e40ba4e6b1eac377b5158d6d"/><file name="Singleconfig.php" hash="f20ebb89682bd0ebc929afb3a7bdba74"/><dir name="Structures"><file name="Graph.php" hash="1b983ae8aa539bb4ff21129b48cccffb"/><file name="Node.php" hash="80f04d92471471b1a04c8f719313fd26"/></dir><file name="Validator.php" hash="36f4954b54798c274ab3ea0e07ec8079"/></dir><dir name="DB"><file name="Exception.php" hash="9b86c22405d6004bb564caba5a2cd73d"/><file name="Mysqli.php" hash="3faca89f2023931bfcdcdb68c26eceaf"/></dir><file name="Exception.php" hash="66fd995ff284b4fd1138bb80fe688661"/><dir name="HTTP"><dir name="Client"><file name="Curl.php" hash="5abff2bfdeecdfc174c96d7bf9a681a5"/><file name="Socket.php" hash="094870f3dc66d9fda62d92bd7726bc30"/></dir><file name="Client.php" hash="36f8059fd5fe72b9698f6eff8a5eb051"/><file name="IClient.php" hash="e2fef2961c4e19ea6d0a32905a3f0cc9"/></dir><dir name="System"><file name="Args.php" hash="aa6e78d765e598733ea5b023ccc5fe28"/><file name="Dirs.php" hash="1e89ada96b371a2ee69397f83adafdad"/><file name="Ftp.php" hash="d147b0479742bed479c6f4db8d819d74"/></dir><dir name="Xml"><file name="Generator.php" hash="7a00666dea843e96f828b721d7ea0968"/><file name="Parser.php" hash="7054f38ca1b3f84f9b0bbc58aa4798e2"/></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Mage-1.9.2.1.xml var/package/Lib_Mage-1.9.2.1.xml | |
--- var/package/Lib_Mage-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Mage-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Mage</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Mage Library</summary> | |
+ <description>Mage Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:13</time> | |
+ <contents><target name="magelib"><dir name="Mage"><dir name="Archive"><file name="Abstract.php" hash="de4e571664fc07c3d9549f0fd267673c"/><file name="Bz.php" hash="2505695d644c59adc33e22a0e4b4026b"/><file name="Gz.php" hash="b1a8f824762096e9481c4cf867236e0f"/><dir name="Helper"><dir name="File"><file name="Bz.php" hash="c2ecedaf9f2f87da265e8d015f184483"/><file name="Gz.php" hash="7f02f08015915d25220d065994ddc5d4"/></dir><file name="File.php" hash="83b65b9f0ac67451501a9c9637f5079b"/></dir><file name="Interface.php" hash="082498bdccf0768d5dd074493a570ebb"/><file name="Tar.php" hash="3f68ba944d9c375a14e94d10ef9fe5b0"/></dir><file name="Archive.php" hash="6bb5cfd52d689a82580e56ed016c9d5c"/><dir name="Autoload"><file name="Simple.php" hash="79585aafc6ed3c63d9560f1975f7839f"/></dir><dir name="Backup"><file name="Abstract.php" hash="6dc4a21835d04a2b517d5c3fb097fa32"/><dir name="Archive"><file name="Tar.php" hash="b0ea407733eb0eddf2335eb04b6d4efd"/></dir><file name="Db.php" hash="82085d5187d2f98b3bba9843e13e9e73"/><dir name="Exception"><file name="CantLoadSnapshot.php" hash="5999c355894c14f1e2362f45a6ba057a"/><file name="FtpConnectionFailed.php" hash="7a1fa7df65b14879e06f416358e4bfe8"/><file name="FtpValidationFailed.php" hash="69af18f3940a28573735e51c09582906"/><file name="NotEnoughFreeSpace.php" hash="85aa48d06cbf0bbbff797dda79be5031"/><file name="NotEnoughPermissions.php" hash="66b048e085f4e22ff92165cf27eb154a"/></dir><file name="Exception.php" hash="faffb5273a8d7b3bc1ac23500b3738ed"/><dir name="Filesystem"><file name="Helper.php" hash="decd420b567cc2f6352e1fe32832b777"/><dir name="Iterator"><file name="File.php" hash="30cf1633496618f74849bc2374f031c8"/><file name="Filter.php" hash="1fe29804508aa85589ba1a8578f492a8"/></dir><dir name="Rollback"><file name="Abstract.php" hash="f9282d34c12a6030942554a80882bb4a"/><file name="Fs.php" hash="179ac7ecd47d54e9a5324d8c6dc27194"/><file name="Ftp.php" hash="c31b8da9f38b0dd03fa87832f74a388b"/></dir></dir><file name="Filesystem.php" hash="7db5e5dc7ac0703bb4944092d19b8153"/><file name="Interface.php" hash="649acb82500c3aa25d789ede57b6d824"/><file name="Media.php" hash="d23badc8294f743242e831a1ee08a235"/><file name="Nomedia.php" hash="f67824816890655d383cc2f6bde37cfd"/><file name="Snapshot.php" hash="c8a1ca0ecd577783cc685560a929953a"/></dir><file name="Backup.php" hash="cb1bdf9d812811d0cf5478fb74d651d6"/><dir name="Cache"><dir name="Backend"><file name="File.php" hash="e5cae99d5ae44908250e8efd9436f881"/><file name="Redis.php" hash="347c3b2c5d745df9f198d9c67cf035ee"/></dir></dir><dir name="Connect"><dir name="Channel"><file name="Generator.php" hash="8779c3d0bd0349fb084ba014aeebef08"/><file name="Parser.php" hash="710308a0983877f5397324ccde29ec64"/><file name="VO.php" hash="d5e083cac4674e60f3576c7f9245079e"/></dir><dir name="Command"><file name="Channels.php" hash="64a28e0922b180efae0b1505eb3a23c8"/><file name="Channels_Header.php" hash="c8801d31616e14fd17544d8ad91d8c71"/><file name="Config.php" hash="b4c3946a709c935285c7eef4e9893d95"/><file name="Config_Header.php" hash="be5819b085c2c25406169cc69db91efc"/><file name="Install.php" hash="4bc0690d8dae272ddcca882fbdc52cfa"/><file name="Install_Header.php" hash="b26353e14b18ca24135a8b3152eed832"/><file name="Package.php" hash="91daf698f9d027079aa3d4a70934e119"/><file name="Package_Header.php" hash="6875b32ecfc9be59d130814fb56ed35d"/><file name="Registry.php" hash="443008c5584a2e9b55674f07217ddabd"/><file name="Registry_Header.php" hash="9eaedec1fe480089c604580418579438"/><file name="Remote.php" hash="56b78c8f407460df4664d4455e879f0d"/><file name="Remote_Header.php" hash="d9b41a55a61c5c1e52abaff7a53fcc67"/></dir><file name="Command.php" hash="0fdfd17b49c24ebb994f27dd1d121144"/><file name="Config.php" hash="c452374e4ab10e53663d223c1bdd879f"/><file name="Converter.php" hash="a133fb8a9a1bb27f562daa734fb9f660"/><dir name="Frontend"><file name="CLI.php" hash="c1aeab2cce56ca6a6a1ea09db28897aa"/></dir><file name="Frontend.php" hash="d07caa4fe5b8f49b0ab45083eb6b1c51"/><file name="Ftp.php" hash="00039e4e1292e61e8932617cd57ab203"/><dir name="Loader"><file name="Ftp.php" hash="0332d94da7f3e58fc055fb80d53432a9"/></dir><file name="Loader.php" hash="3ca76a5329a1947d96e94bc316ca3099"/><dir name="Package"><file name="Extension.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Hotfix.php" hash="ae834feb24bf36fc188afc11736681f1"/><file name="Maintainer.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Reader.php" hash="c15f774cde56becedbdb3d363fac388c"/><file name="Target.php" hash="0e839847991ddaef741ae56daa936a6e"/><file name="VO.php" hash="cfbb4316314a742856bbe76e5d752512"/><file name="Writer.php" hash="8e41b3c89abe5a364bb32b56b6ae36de"/></dir><file name="Package.php" hash="94465bdc10578080364de3a9b20d4796"/><file name="Packager.php" hash="9ece3d292eabb6fec1393a021e4cef0d"/><dir name="Repository"><file name="Abstract.php" hash="710308a0983877f5397324ccde29ec64"/><dir name="Channel"><file name="Abstract.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Commercial.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Community.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Core.php" hash="710308a0983877f5397324ccde29ec64"/></dir><file name="Channel.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Local.php" hash="710308a0983877f5397324ccde29ec64"/></dir><file name="Repository.php" hash="710308a0983877f5397324ccde29ec64"/><file name="Rest.php" hash="735bf347e40ba4e6b1eac377b5158d6d"/><file name="Singleconfig.php" hash="f20ebb89682bd0ebc929afb3a7bdba74"/><dir name="Structures"><file name="Graph.php" hash="1b983ae8aa539bb4ff21129b48cccffb"/><file name="Node.php" hash="80f04d92471471b1a04c8f719313fd26"/></dir><file name="Validator.php" hash="36f4954b54798c274ab3ea0e07ec8079"/></dir><dir name="DB"><file name="Exception.php" hash="9b86c22405d6004bb564caba5a2cd73d"/><file name="Mysqli.php" hash="3faca89f2023931bfcdcdb68c26eceaf"/></dir><file name="Exception.php" hash="66fd995ff284b4fd1138bb80fe688661"/><dir name="HTTP"><dir name="Client"><file name="Curl.php" hash="5abff2bfdeecdfc174c96d7bf9a681a5"/><file name="Socket.php" hash="094870f3dc66d9fda62d92bd7726bc30"/></dir><file name="Client.php" hash="36f8059fd5fe72b9698f6eff8a5eb051"/><file name="IClient.php" hash="e2fef2961c4e19ea6d0a32905a3f0cc9"/></dir><dir name="System"><file name="Args.php" hash="aa6e78d765e598733ea5b023ccc5fe28"/><file name="Dirs.php" hash="1e89ada96b371a2ee69397f83adafdad"/><file name="Ftp.php" hash="d147b0479742bed479c6f4db8d819d74"/></dir><dir name="Xml"><file name="Generator.php" hash="7a00666dea843e96f828b721d7ea0968"/><file name="Parser.php" hash="7054f38ca1b3f84f9b0bbc58aa4798e2"/></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Magento-1.9.2.0.xml var/package/Lib_Magento-1.9.2.0.xml | |
--- var/package/Lib_Magento-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Magento-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Magento</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Magento Library</summary> | |
- <description>Magento Library</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="magelib"><dir name="Magento"><dir name="Autoload"><file name="ClassMap.php" hash="f26be6ed31715907f5d5e41e4c3ad191"/><file name="IncludePath.php" hash="8fab69548df287190e4498cd29d0c5be"/><file name="Simple.php" hash="7f160814a36fb78ac8f7f20ceacd3d87"/></dir><file name="Crypt.php" hash="2ea55cb3e53c8c53703af33b60067222"/><dir name="Db"><dir name="Adapter"><dir name="Pdo"><file name="Mysql.php" hash="ddd174ddfb8671641b093a6adfc4b09e"/></dir></dir><dir name="Object"><file name="Interface.php" hash="0952f3ec03eef94372a07a766dfe44c5"/><file name="Table.php" hash="4da8185560d6c1a0c39c6efa63f55a2e"/><file name="Trigger.php" hash="9128e5080886c666dd4735131a64522a"/><file name="View.php" hash="8bd3229829d2ccb2eee5303506b5760f"/></dir><file name="Object.php" hash="7bf209d2fc669396491cb0430bebfa46"/><dir name="Sql"><file name="Select.php" hash="a7248b57dca932742c574ce1b5b8dc3d"/><file name="Trigger.php" hash="b78ca1b80b20d2efe88817f8cc6ed7ac"/></dir></dir><file name="Exception.php" hash="7408ce585a59878923d5b80a035e252a"/><dir name="Profiler"><dir name="Output"><file name="Csvfile.php" hash="b0fd80740efdb27ac18f2ebff4dd5be8"/><file name="Firebug.php" hash="47525886e57caeebb20cff091ff7972b"/><file name="Html.php" hash="07eea81e01b6cae306c6e7d61429bd44"/></dir><file name="OutputAbstract.php" hash="810c8899370462a237cd8b9bfafef79b"/></dir><file name="Profiler.php" hash="cf889a55ae0c14d0ebef237c40c1eac9"/></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Magento-1.9.2.1.xml var/package/Lib_Magento-1.9.2.1.xml | |
--- var/package/Lib_Magento-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Magento-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Magento</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Magento Library</summary> | |
+ <description>Magento Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:13</time> | |
+ <contents><target name="magelib"><dir name="Magento"><dir name="Autoload"><file name="ClassMap.php" hash="f26be6ed31715907f5d5e41e4c3ad191"/><file name="IncludePath.php" hash="8fab69548df287190e4498cd29d0c5be"/><file name="Simple.php" hash="7f160814a36fb78ac8f7f20ceacd3d87"/></dir><file name="Crypt.php" hash="2ea55cb3e53c8c53703af33b60067222"/><dir name="Db"><dir name="Adapter"><dir name="Pdo"><file name="Mysql.php" hash="ddd174ddfb8671641b093a6adfc4b09e"/></dir></dir><dir name="Object"><file name="Interface.php" hash="0952f3ec03eef94372a07a766dfe44c5"/><file name="Table.php" hash="4da8185560d6c1a0c39c6efa63f55a2e"/><file name="Trigger.php" hash="9128e5080886c666dd4735131a64522a"/><file name="View.php" hash="8bd3229829d2ccb2eee5303506b5760f"/></dir><file name="Object.php" hash="7bf209d2fc669396491cb0430bebfa46"/><dir name="Sql"><file name="Select.php" hash="a7248b57dca932742c574ce1b5b8dc3d"/><file name="Trigger.php" hash="b78ca1b80b20d2efe88817f8cc6ed7ac"/></dir></dir><file name="Exception.php" hash="7408ce585a59878923d5b80a035e252a"/><dir name="Profiler"><dir name="Output"><file name="Csvfile.php" hash="b0fd80740efdb27ac18f2ebff4dd5be8"/><file name="Firebug.php" hash="47525886e57caeebb20cff091ff7972b"/><file name="Html.php" hash="07eea81e01b6cae306c6e7d61429bd44"/></dir><file name="OutputAbstract.php" hash="810c8899370462a237cd8b9bfafef79b"/></dir><file name="Profiler.php" hash="cf889a55ae0c14d0ebef237c40c1eac9"/></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Pelago-1.9.1.0.xml var/package/Lib_Pelago-1.9.1.0.xml | |
--- var/package/Lib_Pelago-1.9.1.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Pelago-1.9.1.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Pelago</name> | |
- <version>1.9.1.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Pelago Library</summary> | |
- <description>Pelago Library</description> | |
- <notes>1.9.1.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2014-11-05</date> | |
- <time>08:42:29</time> | |
- <contents><target name="magelib"><dir name="Pelago"><file name="Emogrifier.php" hash="de3919d36c718834d9755dd1cb68df87"/></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Pelago-1.9.2.1.xml var/package/Lib_Pelago-1.9.2.1.xml | |
--- var/package/Lib_Pelago-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Pelago-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Pelago</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Pelago Library</summary> | |
+ <description>Pelago Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:13</time> | |
+ <contents><target name="magelib"><dir name="Pelago"><file name="Emogrifier.php" hash="de3919d36c718834d9755dd1cb68df87"/></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Phpseclib-1.5.0.0.xml var/package/Lib_Phpseclib-1.5.0.0.xml | |
--- var/package/Lib_Phpseclib-1.5.0.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Phpseclib-1.5.0.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Phpseclib</name> | |
- <version>1.5.0.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://www.gnu.org/licenses/lgpl.txt">LGPL v.3</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Phpseclib Library</summary> | |
- <description>Phpseclib Library</description> | |
- <notes>1.5.0.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2011-07-11</date> | |
- <time>18:06:15</time> | |
- <contents><target name="magelib"><dir name="phpseclib"><dir name="Crypt"><file name="AES.php" hash="6af09e1f2da7eb069760d788ee0d54e0"/><file name="DES.php" hash="1b75baa9ddad68309b8e82a6cebc8dc1"/><file name="Hash.php" hash="f8ca80e79e2d570afeb2f78023f213d4"/><file name="RC4.php" hash="2e507f5635b6d98d9daaa341a8a6fb8b"/><file name="RSA.php" hash="579c11f7b2e05cae01b67b31461ca264"/><file name="Random.php" hash="6e86dfbd3f8f19f32f13a53a756e53af"/><file name="Rijndael.php" hash="3a0aa237cbc23ffba12aad6dd5215ab8"/><file name="TripleDES.php" hash="db12eebd6ed7290e4ac0d521ab5c55ce"/></dir><dir name="Math"><file name="BigInteger.php" hash="8dd950e566864b28c92b58acb06e1535"/></dir><dir name="Net"><file name="SFTP.php" hash="4665bea6e721ec016e0e70207cf45339"/><file name="SSH1.php" hash="19155c50cf00370152905b2a4a6ce657"/><file name="SSH2.php" hash="65563b38d6e6df3e8ebc628cec86f86d"/></dir><dir name="PHP"><dir name="Compat"><dir name="Function"><file name="array_fill.php" hash="2c0a4268deed10ced9491155e2284a82"/><file name="bcpowmod.php" hash="37fc1de34085874a930eaa76888f0cb1"/><file name="str_split.php" hash="889ab2b0d90b0962ded2ee65f1bfbc37"/></dir></dir></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Phpseclib-1.9.2.1.xml var/package/Lib_Phpseclib-1.9.2.1.xml | |
--- var/package/Lib_Phpseclib-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Phpseclib-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Phpseclib</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://www.gnu.org/licenses/lgpl.txt">LGPL v.3</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Phpseclib Library</summary> | |
+ <description>Phpseclib Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:13</time> | |
+ <contents><target name="magelib"><dir name="phpseclib"><dir name="Crypt"><file name="AES.php" hash="6af09e1f2da7eb069760d788ee0d54e0"/><file name="DES.php" hash="1b75baa9ddad68309b8e82a6cebc8dc1"/><file name="Hash.php" hash="f8ca80e79e2d570afeb2f78023f213d4"/><file name="RC4.php" hash="2e507f5635b6d98d9daaa341a8a6fb8b"/><file name="RSA.php" hash="579c11f7b2e05cae01b67b31461ca264"/><file name="Random.php" hash="6e86dfbd3f8f19f32f13a53a756e53af"/><file name="Rijndael.php" hash="3a0aa237cbc23ffba12aad6dd5215ab8"/><file name="TripleDES.php" hash="db12eebd6ed7290e4ac0d521ab5c55ce"/></dir><dir name="Math"><file name="BigInteger.php" hash="8dd950e566864b28c92b58acb06e1535"/></dir><dir name="Net"><file name="SFTP.php" hash="4665bea6e721ec016e0e70207cf45339"/><file name="SSH1.php" hash="19155c50cf00370152905b2a4a6ce657"/><file name="SSH2.php" hash="65563b38d6e6df3e8ebc628cec86f86d"/></dir><dir name="PHP"><dir name="Compat"><dir name="Function"><file name="array_fill.php" hash="2c0a4268deed10ced9491155e2284a82"/><file name="bcpowmod.php" hash="37fc1de34085874a930eaa76888f0cb1"/><file name="str_split.php" hash="889ab2b0d90b0962ded2ee65f1bfbc37"/></dir></dir></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_Varien-1.9.2.0.xml var/package/Lib_Varien-1.9.2.0.xml | |
--- var/package/Lib_Varien-1.9.2.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_Varien-1.9.2.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_Varien</name> | |
- <version>1.9.2.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Varien Library</summary> | |
- <description>Varien Library</description> | |
- <notes>1.9.2.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:06</time> | |
- <contents><target name="magelib"><dir name="Varien"><file name="Autoload.php" hash="dc766f666b682fe85691c496d2b1ce7c"/><dir name="Cache"><dir name="Backend"><file name="Database.php" hash="20e586bd013bb7cb436e0ac02186e49d"/><file name="Eaccelerator.php" hash="aa8840e2fff1ea84b643931feb7e89a0"/><file name="Memcached.php" hash="a602dda3f1a951ac779ec567b10d022e"/></dir><file name="Core.php" hash="afe76b8b6f0a641e420369a11da19a53"/></dir><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="b0748e1973155e3358471318dd690f54"/><file name="Interface.php" hash="b872ae40e0fe7a6a293cc9c2f0ecf8fb"/></dir><file name="Action.php" hash="f84e93e12575d66637c719a5ace10048"/><dir name="Adapter"><file name="Abstract.php" hash="c1b5d3898623903decab5b357f3042fb"/><dir name="Db"><file name="Table.php" hash="98fde56f12db1913f48130d3815766c5"/></dir><dir name="Http"><file name="Curl.php" hash="e9862db1732ae6976320e03fb31bbbd4"/></dir><file name="Http.php" hash="e54efc7a0a96aa888fcd186246493376"/><file name="Interface.php" hash="2f274fc1f48fffa9c671e1137be8aa74"/><file name="Io.php" hash="3d6b294c17c0ec1aa008d04a0a4d7241"/><file name="Soap.php" hash="c8562680e671f55ad1bd52aa5458fbe0"/><file name="Std.php" hash="155af022ca5a37f5635a364550af868a"/><dir name="Zend"><file name="Cache.php" hash="ea07c530e19a4007416be5c8d30f0ebe"/><file name="Db.php" hash="ed8c973b6f73239a8827467907c526e5"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="9951bcccf153f812574291802cc3c16b"/><file name="Collection.php" hash="db70f8aa7534eff8fae7294bd8697d03"/><file name="Generic.php" hash="1335a7ba43def19bc79e6d0e9c842f36"/><file name="Interface.php" hash="98dd1b9d1207127e120fe52a0a3b3488"/></dir><file name="Exception.php" hash="002048d6913a53d76e5eab3defb90cac"/><dir name="Mapper"><file name="Abstract.php" hash="db499970eb5428470d8f229ba57aca02"/><file name="Column.php" hash="7e62b7cff2fe33358bb91fa3df41d2e8"/><file name="Interface.php" hash="603d0788e329635024810f928b49fa4f"/></dir><dir name="Parser"><file name="Abstract.php" hash="cc1941daffcd4b9cce0a86ee5d7ab471"/><file name="Csv.php" hash="7d0d9ee5d331615f1b8265501f9be71e"/><file name="Interface.php" hash="a616758d6ddab992ca89d38f00fdc76d"/><file name="Serialize.php" hash="8b41217392591f2c15c44a613e4e9ae9"/><dir name="Xml"><file name="Excel.php" hash="fa2359e440f0b3d70751d23fd299f8d8"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="3b1b884474c7947b812ed99e5eecf990"/><file name="Collection.php" hash="bdb09b51f16897f5254edc076ffce681"/></dir><file name="Profile.php" hash="96fab155f31ec5ef3e7b4bdf9248b2b8"/><dir name="Validator"><file name="Abstract.php" hash="5ee13d15f5c1d20a69e60f2a5c9d635d"/><file name="Column.php" hash="96de1db93ae007be456f1f56e88a9939"/><file name="Dryrun.php" hash="e43002dc3a8025dfcabf13f0a485965e"/><file name="Interface.php" hash="f54198b10cd39596a831e0e78c56dc11"/></dir></dir><file name="Convert.php" hash="d56a14d6636dd1ee7f6f1a81b384f2f5"/><dir name="Crypt"><file name="Abstract.php" hash="3867789b8516cda284a8f6177adb22d1"/><file name="Mcrypt.php" hash="3022218cb5206a5f95db75a78e7c7527"/></dir><file name="Crypt.php" hash="7372f5e6f7d7b96f0181f13834e56f4b"/><dir name="Data"><dir name="Collection"><file name="Db.php" hash="8b18a93b1f8b43c8e5f333a283fff495"/><file name="Filesystem.php" hash="40661586b77407a71ee1f756e5553adb"/></dir><file name="Collection.php" hash="6d5170bb9dbec7a7ee864dd973e0d500"/><dir name="Form"><file name="Abstract.php" hash="864c5ddad40817e65f8188390c33eb15"/><dir name="Element"><file name="Abstract.php" hash="b484d100f5693cd4e912c9ca93857603"/><file name="Button.php" hash="57ebd4aeb6f96fdf6e08f864a134729d"/><file name="Checkbox.php" hash="0a0e8a35e7f4a71b264747685d00f122"/><file name="Checkboxes.php" hash="ec5ca55d06b8aab1f9e9a224b38a0e94"/><file name="Collection.php" hash="115eeeed84dbcf8f43c6ca92f4339eb7"/><file name="Column.php" hash="541d994eaee258e5ebbc458628ade2c3"/><file name="Date.php" hash="855de0485c028fd315d47b35b0c6a8be"/><file name="Datetime.php" hash="72ed0fdbe0770cc967232aef07c90e80"/><file name="Editor.php" hash="f536ae5cab23ed5dfaba6fffcacee69d"/><file name="Fieldset.php" hash="3c8946dd8ec889719376ab59a346da4f"/><file name="File.php" hash="a95837ceeea1be891a7f55b198585c2b"/><file name="Gallery.php" hash="ba27a76f65df878bf55565ac75de8f17"/><file name="Hidden.php" hash="fd70cf5f1a27d969578de0ffef5f0a38"/><file name="Image.php" hash="1fecc228200ce23a307f4ff95511ee36"/><file name="Imagefile.php" hash="ced6ccd0ee7a48d60887dab8d2f4e5a5"/><file name="Label.php" hash="d1cc044aa76571e90848aa69db749285"/><file name="Link.php" hash="4ac31ec26330bbef008e5917e2cec619"/><file name="Multiline.php" hash="5ad29f476881912bc6d21445133ceafd"/><file name="Multiselect.php" hash="e51e5a49c816b0da1ab61adfa9e11a5e"/><file name="Note.php" hash="b599a56b74f6e851b61d9d529621907c"/><file name="Obscure.php" hash="1ec4d2b87a537698932a60f0a1c26364"/><file name="Password.php" hash="7e78125059c1d8ee405ba946e3779e62"/><file name="Radio.php" hash="14d9ac8df9b00d3061c9c0528dcb8f05"/><file name="Radios.php" hash="142d3afe02f03f40b0b2cff371135d64"/><dir name="Renderer"><file name="Interface.php" hash="1333c6ebb3e531ce1cc62880a76df176"/></dir><file name="Reset.php" hash="cfaa070a01ff533534c93e40cb8a8a50"/><file name="Select.php" hash="4cfded15810a229390ccde56370848bc"/><file name="Submit.php" hash="d873762f62e3acc9a89ee48ba0ea5c04"/><file name="Text.php" hash="4f52cc4fbb36a0fff6ce4df87cf02839"/><file name="Textarea.php" hash="67a4950f867a996bed2b5e1ec6f8f909"/><file name="Time.php" hash="3f3b2f792cbcbfeddea892527e02d4c2"/></dir><dir name="Filter"><file name="Date.php" hash="5e4a78a6346f1bad02568591a8f22ffc"/><file name="Datetime.php" hash="b959e710b5444364e1c289118305fa20"/><file name="Escapehtml.php" hash="9b45defc86b0a40e6b01e815b776c64c"/><file name="Interface.php" hash="7f80d12ed17a0e59e9fda5e597832898"/><file name="Striptags.php" hash="155804951f94a18cf1ce080a31ad231f"/></dir></dir><file name="Form.php" hash="c763be17e07293924af068a9d6f5b2cc"/><dir name="Tree"><file name="Db.php" hash="b3511f3bba2c4cb3b48b5c06b2f61962"/><file name="Dbp.php" hash="52a556c1c672cf1b6edd74f7f8a1c22f"/><dir name="Node"><file name="Collection.php" hash="2eba70122d32e195945d0608546eefb7"/></dir><file name="Node.php" hash="247635d415b01075f976de73477628ca"/></dir><file name="Tree.php" hash="65ad695cdb2d44624e3f8a6d4bded2fc"/></dir><file name="Date.php" hash="cf75993db21737871d847c40cf69eabd"/><dir name="Db"><dir name="Adapter"><file name="Interface.php" hash="20618cca9ec0970359a758a7bb19aa1d"/><file name="Mysqli.php" hash="34bfba6a62779cc52afa45d94e4204b0"/><dir name="Pdo"><file name="Mysql.php" hash="9306a10cb16b5f4fcaa2a18dac0bd31a"/></dir></dir><dir name="Ddl"><file name="Table.php" hash="4ea54d6f0da26b7b3ebdf53a22bce157"/></dir><file name="Exception.php" hash="459a3ba64822195d1716394b0666c6ef"/><file name="Helper.php" hash="068814d81e6d2c10fb02abfd075f9732"/><file name="Select.php" hash="cae369c5e0ace008e64c4eef0742eec9"/><dir name="Statement"><file name="Parameter.php" hash="3c876a17bbdb2fa8285e3a2c931b29a2"/><dir name="Pdo"><file name="Mysql.php" hash="989ef975be060d75bcfb56b88d8b5dc4"/></dir></dir><dir name="Tree"><file name="Exception.php" hash="d9a2ded99bd0a0f48c30ea373b053d2e"/><dir name="Node"><file name="Exception.php" hash="e0a051b9da1620549cbf001ccd08b46b"/></dir><file name="Node.php" hash="1181ffb30d23bad0abdb2a00760c6b5c"/><dir name="NodeSet"><file name="Exception.php" hash="464e6f22c47148e847a7d70635b03e9d"/></dir><file name="NodeSet.php" hash="5d94f8d55e6a85e9d1843b4b4ab0f523"/></dir><file name="Tree.php" hash="0224ac5093e6e20a894ef8598c642962"/></dir><file name="Debug.php" hash="1fe7210f700b50eefa42d72107d5c77d"/><dir name="Directory"><file name="Collection.php" hash="55fa81e35a94e276dd58b80f616c4b3b"/><file name="Factory.php" hash="fd3cc7bede04563dcf240465be02b114"/><file name="IFactory.php" hash="462a88798efd2980a110f5d5bcd0cf91"/><file name="a.txt" hash="026e450c46ac92ea375302955a4f42fb"/></dir><dir name="Event"><file name="Collection.php" hash="6e3aa26a760229de731e5deb7586271e"/><dir name="Observer"><file name="Collection.php" hash="5b75ddd0cdf40e3c7ebdc6caef6b49fc"/><file name="Cron.php" hash="dbc005bcbf59d24766b22fe0e1ea7ec2"/><file name="Regex.php" hash="e8b73dd83e6a0181a3b902ce670d33f8"/></dir><file name="Observer.php" hash="529a4e7a186686946161acb751d80088"/></dir><file name="Event.php" hash="bde863ce12014af6d26891917313471c"/><file name="Exception.php" hash="80e9a22385477d5410f3493eafcda326"/><dir name="File"><file name="Csv.php" hash="f3879e8a8d0ece43bd1ed82a97f6fa78"/><file name="CsvMulty.php" hash="4370e09d0fea88df8079096fe6c89c2f"/><file name="Object.php" hash="81831a7af12515faf48db2064dd2b700"/><dir name="Transfer"><dir name="Adapter"><file name="Http.php" hash="0f2df4d6d534bfc4fd1ba35cdcabf425"/></dir></dir><dir name="Uploader"><file name="Image.php" hash="e1a33ce7c7f42c92ff7a1afb4dc85440"/></dir><file name="Uploader.php" hash="29bd46737e32230216c90b3fa7b9d81f"/></dir><dir name="Filter"><dir name="Array"><file name="Grid.php" hash="3a1e7d366046fbb806f4df65b5d43bce"/></dir><file name="Array.php" hash="ee2c63311116db215a17d5c6a6d53ea8"/><file name="Email.php" hash="ef31a8b4a24efef65f233c5cbc469d48"/><file name="Money.php" hash="fcfbf636218ac3b9175d743ab601712d"/><dir name="Object"><file name="Grid.php" hash="b905567ede56769d4af9642ea77361b4"/></dir><file name="Object.php" hash="226c84edc99ad7c95ae89fabb0625ed4"/><file name="Sprintf.php" hash="6c534392c58d387ff09e88bd272d4d11"/><dir name="Template"><file name="Simple.php" hash="57d6179c99972f24b272bad6987a2969"/><dir name="Tokenizer"><file name="Abstract.php" hash="1553cf9ad676e024bd50e68998d5c2f3"/><file name="Parameter.php" hash="a71db1a7a12e505409a8eb396b4fac53"/><file name="Variable.php" hash="6db874de901ba51215acc834251ac7d6"/></dir></dir><file name="Template.php" hash="d35924fef8fb2015af97cdf93ce942af"/></dir><dir name="Http"><dir name="Adapter"><file name="Curl.php" hash="967d7ebda9ca4407578663bd56d91e30"/></dir><file name="Client.php" hash="8e8c9badb27cf839870c9cac33256522"/></dir><dir name="Image"><dir name="Adapter"><file name="Abstract.php" hash="95fa6f5dcbfe5e14505f62f32eaac03d"/><file name="Gd2.php" hash="1d4e06ea2d76031e5083ff766d06d98a"/></dir><file name="Adapter.php" hash="6ee7421d63c8ce983b29087be640a3f1"/></dir><file name="Image.php" hash="f22e05f3df7c6daa13daa5ecd4284fa1"/><dir name="Io"><file name="Abstract.php" hash="f452d74122309888e459dec9ce357f6c"/><file name="Exception.php" hash="cdd1b92cc59bac44bb83cac2d270b27f"/><file name="File.php" hash="73ca38dbf70b9142a84a68d4cb604366"/><file name="Ftp.php" hash="4234722492e84b962c1936a4b3fe9467"/><file name="Interface.php" hash="f9fbf2011c2d76bfce45ed2eb11b0fc3"/><file name="Sftp.php" hash="38e78f345ab1699c60209276f36bdce7"/></dir><dir name="Object"><file name="Cache.php" hash="6ee96c531c7ed6abebe6e088f083269e"/><file name="Mapper.php" hash="e01cd2fc8ce04f2301ae5272eb0eb8fe"/></dir><file name="Object.php" hash="a73a915543d26fbb8ec8d5bfad926813"/><dir name="Pear"><file name="Frontend.php" hash="2a364509ecb3509d88b394f2ff8e379c"/><file name="Package.php" hash="00d889cdae532e40bf231a6dc49f43a2"/><file name="Registry.php" hash="20f14ad14bc6e5ff404ef919e9e03ad9"/></dir><file name="Pear.php" hash="989e1140ba8cb691a6eb29ec6ca14e4e"/><file name="Profiler.php" hash="8f0833c09792a44cf4cec3c4ca1ab83e"/><dir name="Simplexml"><dir name="Config"><dir name="Cache"><file name="Abstract.php" hash="2d903ac5990d3adb281ea817f683a2b1"/><file name="File.php" hash="99fe5b7935433870674d6244f4f24996"/></dir></dir><file name="Config.php" hash="59765741a00934da08bb2acfeae3e95d"/><file name="Element.php" hash="3af48d7f8053cc49d7f52b6b00aec648"/></dir></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_ZF</name><channel>community</channel><min>1.12.10.0</min><max>1.12.10.0</max></package><extension><name>PDO</name><min></min><max></max></extension><extension><name>SPL</name><min></min><max></max></extension><extension><name>curl</name><min></min><max></max></extension><extension><name>SimpleXML</name><min></min><max></max></extension><extension><name>dom</name><min></min><max></max></extension><extension><name>gd</name><min></min><max></max></extension><extension><name>iconv</name><min></min><max></max></extension><extension><name>pdo_mysql</name><min></min><max></max></extension><extension><name>mcrypt</name><min></min><max></max></extension><extension><name>pcre</name><min></min><max></max></extension><extension><name>Reflection</name><min></min><max></max></extension><extension><name>session</name><min></min><max></max></extension></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_Varien-1.9.2.1.xml var/package/Lib_Varien-1.9.2.1.xml | |
--- var/package/Lib_Varien-1.9.2.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_Varien-1.9.2.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_Varien</name> | |
+ <version>1.9.2.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Varien Library</summary> | |
+ <description>Varien Library</description> | |
+ <notes>1.9.2.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:13</time> | |
+ <contents><target name="magelib"><dir name="Varien"><file name="Autoload.php" hash="dc766f666b682fe85691c496d2b1ce7c"/><dir name="Cache"><dir name="Backend"><file name="Database.php" hash="20e586bd013bb7cb436e0ac02186e49d"/><file name="Eaccelerator.php" hash="aa8840e2fff1ea84b643931feb7e89a0"/><file name="Memcached.php" hash="a602dda3f1a951ac779ec567b10d022e"/></dir><file name="Core.php" hash="afe76b8b6f0a641e420369a11da19a53"/></dir><dir name="Convert"><dir name="Action"><file name="Abstract.php" hash="b0748e1973155e3358471318dd690f54"/><file name="Interface.php" hash="b872ae40e0fe7a6a293cc9c2f0ecf8fb"/></dir><file name="Action.php" hash="f84e93e12575d66637c719a5ace10048"/><dir name="Adapter"><file name="Abstract.php" hash="c1b5d3898623903decab5b357f3042fb"/><dir name="Db"><file name="Table.php" hash="98fde56f12db1913f48130d3815766c5"/></dir><dir name="Http"><file name="Curl.php" hash="e9862db1732ae6976320e03fb31bbbd4"/></dir><file name="Http.php" hash="e54efc7a0a96aa888fcd186246493376"/><file name="Interface.php" hash="2f274fc1f48fffa9c671e1137be8aa74"/><file name="Io.php" hash="3d6b294c17c0ec1aa008d04a0a4d7241"/><file name="Soap.php" hash="c8562680e671f55ad1bd52aa5458fbe0"/><file name="Std.php" hash="155af022ca5a37f5635a364550af868a"/><dir name="Zend"><file name="Cache.php" hash="ea07c530e19a4007416be5c8d30f0ebe"/><file name="Db.php" hash="ed8c973b6f73239a8827467907c526e5"/></dir></dir><dir name="Container"><file name="Abstract.php" hash="9951bcccf153f812574291802cc3c16b"/><file name="Collection.php" hash="db70f8aa7534eff8fae7294bd8697d03"/><file name="Generic.php" hash="1335a7ba43def19bc79e6d0e9c842f36"/><file name="Interface.php" hash="98dd1b9d1207127e120fe52a0a3b3488"/></dir><file name="Exception.php" hash="002048d6913a53d76e5eab3defb90cac"/><dir name="Mapper"><file name="Abstract.php" hash="db499970eb5428470d8f229ba57aca02"/><file name="Column.php" hash="7e62b7cff2fe33358bb91fa3df41d2e8"/><file name="Interface.php" hash="603d0788e329635024810f928b49fa4f"/></dir><dir name="Parser"><file name="Abstract.php" hash="cc1941daffcd4b9cce0a86ee5d7ab471"/><file name="Csv.php" hash="7d0d9ee5d331615f1b8265501f9be71e"/><file name="Interface.php" hash="a616758d6ddab992ca89d38f00fdc76d"/><file name="Serialize.php" hash="8b41217392591f2c15c44a613e4e9ae9"/><dir name="Xml"><file name="Excel.php" hash="fa2359e440f0b3d70751d23fd299f8d8"/></dir></dir><dir name="Profile"><file name="Abstract.php" hash="3b1b884474c7947b812ed99e5eecf990"/><file name="Collection.php" hash="bdb09b51f16897f5254edc076ffce681"/></dir><file name="Profile.php" hash="96fab155f31ec5ef3e7b4bdf9248b2b8"/><dir name="Validator"><file name="Abstract.php" hash="5ee13d15f5c1d20a69e60f2a5c9d635d"/><file name="Column.php" hash="96de1db93ae007be456f1f56e88a9939"/><file name="Dryrun.php" hash="e43002dc3a8025dfcabf13f0a485965e"/><file name="Interface.php" hash="f54198b10cd39596a831e0e78c56dc11"/></dir></dir><file name="Convert.php" hash="d56a14d6636dd1ee7f6f1a81b384f2f5"/><dir name="Crypt"><file name="Abstract.php" hash="3867789b8516cda284a8f6177adb22d1"/><file name="Mcrypt.php" hash="3022218cb5206a5f95db75a78e7c7527"/></dir><file name="Crypt.php" hash="7372f5e6f7d7b96f0181f13834e56f4b"/><dir name="Data"><dir name="Collection"><file name="Db.php" hash="8b18a93b1f8b43c8e5f333a283fff495"/><file name="Filesystem.php" hash="40661586b77407a71ee1f756e5553adb"/></dir><file name="Collection.php" hash="6d5170bb9dbec7a7ee864dd973e0d500"/><dir name="Form"><file name="Abstract.php" hash="864c5ddad40817e65f8188390c33eb15"/><dir name="Element"><file name="Abstract.php" hash="b484d100f5693cd4e912c9ca93857603"/><file name="Button.php" hash="57ebd4aeb6f96fdf6e08f864a134729d"/><file name="Checkbox.php" hash="0a0e8a35e7f4a71b264747685d00f122"/><file name="Checkboxes.php" hash="ec5ca55d06b8aab1f9e9a224b38a0e94"/><file name="Collection.php" hash="115eeeed84dbcf8f43c6ca92f4339eb7"/><file name="Column.php" hash="541d994eaee258e5ebbc458628ade2c3"/><file name="Date.php" hash="855de0485c028fd315d47b35b0c6a8be"/><file name="Datetime.php" hash="72ed0fdbe0770cc967232aef07c90e80"/><file name="Editor.php" hash="f536ae5cab23ed5dfaba6fffcacee69d"/><file name="Fieldset.php" hash="3c8946dd8ec889719376ab59a346da4f"/><file name="File.php" hash="a95837ceeea1be891a7f55b198585c2b"/><file name="Gallery.php" hash="ba27a76f65df878bf55565ac75de8f17"/><file name="Hidden.php" hash="fd70cf5f1a27d969578de0ffef5f0a38"/><file name="Image.php" hash="1fecc228200ce23a307f4ff95511ee36"/><file name="Imagefile.php" hash="ced6ccd0ee7a48d60887dab8d2f4e5a5"/><file name="Label.php" hash="d1cc044aa76571e90848aa69db749285"/><file name="Link.php" hash="4ac31ec26330bbef008e5917e2cec619"/><file name="Multiline.php" hash="5ad29f476881912bc6d21445133ceafd"/><file name="Multiselect.php" hash="e51e5a49c816b0da1ab61adfa9e11a5e"/><file name="Note.php" hash="b599a56b74f6e851b61d9d529621907c"/><file name="Obscure.php" hash="1ec4d2b87a537698932a60f0a1c26364"/><file name="Password.php" hash="7e78125059c1d8ee405ba946e3779e62"/><file name="Radio.php" hash="14d9ac8df9b00d3061c9c0528dcb8f05"/><file name="Radios.php" hash="142d3afe02f03f40b0b2cff371135d64"/><dir name="Renderer"><file name="Interface.php" hash="1333c6ebb3e531ce1cc62880a76df176"/></dir><file name="Reset.php" hash="cfaa070a01ff533534c93e40cb8a8a50"/><file name="Select.php" hash="4cfded15810a229390ccde56370848bc"/><file name="Submit.php" hash="d873762f62e3acc9a89ee48ba0ea5c04"/><file name="Text.php" hash="4f52cc4fbb36a0fff6ce4df87cf02839"/><file name="Textarea.php" hash="67a4950f867a996bed2b5e1ec6f8f909"/><file name="Time.php" hash="3f3b2f792cbcbfeddea892527e02d4c2"/></dir><dir name="Filter"><file name="Date.php" hash="5e4a78a6346f1bad02568591a8f22ffc"/><file name="Datetime.php" hash="b959e710b5444364e1c289118305fa20"/><file name="Escapehtml.php" hash="9b45defc86b0a40e6b01e815b776c64c"/><file name="Interface.php" hash="7f80d12ed17a0e59e9fda5e597832898"/><file name="Striptags.php" hash="155804951f94a18cf1ce080a31ad231f"/></dir></dir><file name="Form.php" hash="c763be17e07293924af068a9d6f5b2cc"/><dir name="Tree"><file name="Db.php" hash="b3511f3bba2c4cb3b48b5c06b2f61962"/><file name="Dbp.php" hash="52a556c1c672cf1b6edd74f7f8a1c22f"/><dir name="Node"><file name="Collection.php" hash="2eba70122d32e195945d0608546eefb7"/></dir><file name="Node.php" hash="247635d415b01075f976de73477628ca"/></dir><file name="Tree.php" hash="65ad695cdb2d44624e3f8a6d4bded2fc"/></dir><file name="Date.php" hash="cf75993db21737871d847c40cf69eabd"/><dir name="Db"><dir name="Adapter"><file name="Interface.php" hash="20618cca9ec0970359a758a7bb19aa1d"/><file name="Mysqli.php" hash="34bfba6a62779cc52afa45d94e4204b0"/><dir name="Pdo"><file name="Mysql.php" hash="9306a10cb16b5f4fcaa2a18dac0bd31a"/></dir></dir><dir name="Ddl"><file name="Table.php" hash="4ea54d6f0da26b7b3ebdf53a22bce157"/></dir><file name="Exception.php" hash="459a3ba64822195d1716394b0666c6ef"/><file name="Helper.php" hash="068814d81e6d2c10fb02abfd075f9732"/><file name="Select.php" hash="cae369c5e0ace008e64c4eef0742eec9"/><dir name="Statement"><file name="Parameter.php" hash="3c876a17bbdb2fa8285e3a2c931b29a2"/><dir name="Pdo"><file name="Mysql.php" hash="989ef975be060d75bcfb56b88d8b5dc4"/></dir></dir><dir name="Tree"><file name="Exception.php" hash="d9a2ded99bd0a0f48c30ea373b053d2e"/><dir name="Node"><file name="Exception.php" hash="e0a051b9da1620549cbf001ccd08b46b"/></dir><file name="Node.php" hash="1181ffb30d23bad0abdb2a00760c6b5c"/><dir name="NodeSet"><file name="Exception.php" hash="464e6f22c47148e847a7d70635b03e9d"/></dir><file name="NodeSet.php" hash="5d94f8d55e6a85e9d1843b4b4ab0f523"/></dir><file name="Tree.php" hash="0224ac5093e6e20a894ef8598c642962"/></dir><file name="Debug.php" hash="1fe7210f700b50eefa42d72107d5c77d"/><dir name="Directory"><file name="Collection.php" hash="55fa81e35a94e276dd58b80f616c4b3b"/><file name="Factory.php" hash="fd3cc7bede04563dcf240465be02b114"/><file name="IFactory.php" hash="462a88798efd2980a110f5d5bcd0cf91"/><file name="a.txt" hash="026e450c46ac92ea375302955a4f42fb"/></dir><dir name="Event"><file name="Collection.php" hash="6e3aa26a760229de731e5deb7586271e"/><dir name="Observer"><file name="Collection.php" hash="5b75ddd0cdf40e3c7ebdc6caef6b49fc"/><file name="Cron.php" hash="dbc005bcbf59d24766b22fe0e1ea7ec2"/><file name="Regex.php" hash="e8b73dd83e6a0181a3b902ce670d33f8"/></dir><file name="Observer.php" hash="529a4e7a186686946161acb751d80088"/></dir><file name="Event.php" hash="bde863ce12014af6d26891917313471c"/><file name="Exception.php" hash="80e9a22385477d5410f3493eafcda326"/><dir name="File"><file name="Csv.php" hash="f3879e8a8d0ece43bd1ed82a97f6fa78"/><file name="CsvMulty.php" hash="4370e09d0fea88df8079096fe6c89c2f"/><file name="Object.php" hash="81831a7af12515faf48db2064dd2b700"/><dir name="Transfer"><dir name="Adapter"><file name="Http.php" hash="0f2df4d6d534bfc4fd1ba35cdcabf425"/></dir></dir><dir name="Uploader"><file name="Image.php" hash="e1a33ce7c7f42c92ff7a1afb4dc85440"/></dir><file name="Uploader.php" hash="29bd46737e32230216c90b3fa7b9d81f"/></dir><dir name="Filter"><dir name="Array"><file name="Grid.php" hash="3a1e7d366046fbb806f4df65b5d43bce"/></dir><file name="Array.php" hash="ee2c63311116db215a17d5c6a6d53ea8"/><file name="Email.php" hash="ef31a8b4a24efef65f233c5cbc469d48"/><file name="Money.php" hash="fcfbf636218ac3b9175d743ab601712d"/><dir name="Object"><file name="Grid.php" hash="b905567ede56769d4af9642ea77361b4"/></dir><file name="Object.php" hash="226c84edc99ad7c95ae89fabb0625ed4"/><file name="Sprintf.php" hash="6c534392c58d387ff09e88bd272d4d11"/><dir name="Template"><file name="Simple.php" hash="57d6179c99972f24b272bad6987a2969"/><dir name="Tokenizer"><file name="Abstract.php" hash="1553cf9ad676e024bd50e68998d5c2f3"/><file name="Parameter.php" hash="a71db1a7a12e505409a8eb396b4fac53"/><file name="Variable.php" hash="6db874de901ba51215acc834251ac7d6"/></dir></dir><file name="Template.php" hash="d35924fef8fb2015af97cdf93ce942af"/></dir><dir name="Http"><dir name="Adapter"><file name="Curl.php" hash="967d7ebda9ca4407578663bd56d91e30"/></dir><file name="Client.php" hash="8e8c9badb27cf839870c9cac33256522"/></dir><dir name="Image"><dir name="Adapter"><file name="Abstract.php" hash="95fa6f5dcbfe5e14505f62f32eaac03d"/><file name="Gd2.php" hash="1d4e06ea2d76031e5083ff766d06d98a"/></dir><file name="Adapter.php" hash="6ee7421d63c8ce983b29087be640a3f1"/></dir><file name="Image.php" hash="f22e05f3df7c6daa13daa5ecd4284fa1"/><dir name="Io"><file name="Abstract.php" hash="f452d74122309888e459dec9ce357f6c"/><file name="Exception.php" hash="cdd1b92cc59bac44bb83cac2d270b27f"/><file name="File.php" hash="73ca38dbf70b9142a84a68d4cb604366"/><file name="Ftp.php" hash="4234722492e84b962c1936a4b3fe9467"/><file name="Interface.php" hash="f9fbf2011c2d76bfce45ed2eb11b0fc3"/><file name="Sftp.php" hash="38e78f345ab1699c60209276f36bdce7"/></dir><dir name="Object"><file name="Cache.php" hash="6ee96c531c7ed6abebe6e088f083269e"/><file name="Mapper.php" hash="e01cd2fc8ce04f2301ae5272eb0eb8fe"/></dir><file name="Object.php" hash="a73a915543d26fbb8ec8d5bfad926813"/><dir name="Pear"><file name="Frontend.php" hash="2a364509ecb3509d88b394f2ff8e379c"/><file name="Package.php" hash="00d889cdae532e40bf231a6dc49f43a2"/><file name="Registry.php" hash="20f14ad14bc6e5ff404ef919e9e03ad9"/></dir><file name="Pear.php" hash="989e1140ba8cb691a6eb29ec6ca14e4e"/><file name="Profiler.php" hash="8f0833c09792a44cf4cec3c4ca1ab83e"/><dir name="Simplexml"><dir name="Config"><dir name="Cache"><file name="Abstract.php" hash="2d903ac5990d3adb281ea817f683a2b1"/><file name="File.php" hash="99fe5b7935433870674d6244f4f24996"/></dir></dir><file name="Config.php" hash="59765741a00934da08bb2acfeae3e95d"/><file name="Element.php" hash="3af48d7f8053cc49d7f52b6b00aec648"/></dir></dir></target></contents> | |
+ <compatible/> | |
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_ZF</name><channel>community</channel><min>1.12.10.1</min><max>1.12.10.1</max></package><extension><name>PDO</name><min/><max/></extension><extension><name>SPL</name><min/><max/></extension><extension><name>curl</name><min/><max/></extension><extension><name>SimpleXML</name><min/><max/></extension><extension><name>dom</name><min/><max/></extension><extension><name>gd</name><min/><max/></extension><extension><name>iconv</name><min/><max/></extension><extension><name>pdo_mysql</name><min/><max/></extension><extension><name>mcrypt</name><min/><max/></extension><extension><name>pcre</name><min/><max/></extension><extension><name>Reflection</name><min/><max/></extension><extension><name>session</name><min/><max/></extension></required></dependencies> | |
+</package> | |
diff -ruN var/package/Lib_ZF-1.12.10.0.xml var/package/Lib_ZF-1.12.10.0.xml | |
--- var/package/Lib_ZF-1.12.10.0.xml 2015-06-26 10:53:38.000000000 +0200 | |
+++ var/package/Lib_ZF-1.12.10.0.xml 1970-01-01 01:00:00.000000000 +0100 | |
@@ -1,18 +0,0 @@ | |
-<?xml version="1.0"?> | |
-<package> | |
- <name>Lib_ZF</name> | |
- <version>1.12.10.0</version> | |
- <stability>stable</stability> | |
- <license uri="http://framework.zend.com/license/new-bsd">New BSD</license> | |
- <channel>community</channel> | |
- <extends/> | |
- <summary>Zend Framework</summary> | |
- <description>Zend Framework</description> | |
- <notes>1.12.10.0</notes> | |
- <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
- <date>2015-06-25</date> | |
- <time>13:12:07</time> | |
- <contents><target name="magelib"><dir name="Zend"><dir name="Acl"><dir name="Assert"><file name="Interface.php" hash="753f4c058211502ad047851c4550a121"/></dir><file name="Exception.php" hash="833945ed22a5631224398ec5d1a51736"/><dir name="Resource"><file name="Interface.php" hash="ec27f75c67a2ddb21ede3e8f5cf2188c"/></dir><file name="Resource.php" hash="1eac5e2cda19d6f595ce678ee9b27065"/><dir name="Role"><file name="Interface.php" hash="e61127c46f87a10799582eb5d58673ca"/><dir name="Registry"><file name="Exception.php" hash="1ab8aea40c56fb9754ea4d76cf022893"/></dir><file name="Registry.php" hash="b13b4d4f96691f26328aba33d2a725f6"/></dir><file name="Role.php" hash="4ffca60ba53123c02874b9f412a1d5a0"/></dir><file name="Acl.php" hash="9362ea321157987e2d667ce6ba6640c4"/><dir name="Amf"><dir name="Adobe"><file name="Auth.php" hash="5f1b8fa4bc0646bfc7e1a0248af99e4d"/><file name="DbInspector.php" hash="c945730a861cc8dfb79affc681d935cd"/><file name="Introspector.php" hash="1faa52d4a734963e2114f0244b4eb0fc"/></dir><dir name="Auth"><file name="Abstract.php" hash="eb1eebcde25e987e8cfd64b097a64438"/></dir><file name="Constants.php" hash="27f591080a8aa87a7603079496b03f31"/><file name="Exception.php" hash="c37e40e651b342f39763d2651a86e907"/><dir name="Parse"><dir name="Amf0"><file name="Deserializer.php" hash="91d9e217cf20c9012993d945e3f7e744"/><file name="Serializer.php" hash="fc6f4e7a3adcee15df87e6f5e918891d"/></dir><dir name="Amf3"><file name="Deserializer.php" hash="63f1c82ab2bf8029208347a5d6188cf9"/><file name="Serializer.php" hash="94893d06b63c1c7b89958790051a96b8"/></dir><file name="Deserializer.php" hash="6bf0ed466d51a8ed7d47842ae56b0c2e"/><file name="InputStream.php" hash="8825ad088d82c7b0e1eec7f1fc2a977f"/><file name="OutputStream.php" hash="f6954a735a7abc530b3d08c3a66a1610"/><dir name="Resource"><file name="MysqlResult.php" hash="f93006c3cf636f4426559266c7254301"/><file name="MysqliResult.php" hash="3ff39905a315dc50438612cdfd044003"/><file name="Stream.php" hash="9fac77c33d3b8a5932618b7140eb480e"/></dir><file name="Serializer.php" hash="89f6dade3493238bcebd57f7aec7c441"/><file name="TypeLoader.php" hash="2eb3de6c0c76a88c84e52d053db1b3c3"/></dir><dir name="Request"><file name="Http.php" hash="3ceb2e9419c58b42b8a91dfa518bdbe6"/></dir><file name="Request.php" hash="210fafeb570fabde64f45367aa2b818f"/><dir name="Response"><file name="Http.php" hash="9165da2b40ea937760d21e82d14fccfd"/></dir><file name="Response.php" hash="df120c6bdcd3624007e264387c3ea49d"/><dir name="Server"><file name="Exception.php" hash="b49d17bc0487b1f94e263edc3cd63b80"/></dir><file name="Server.php" hash="d2478b1080c3c4fb1354f74a1858e817"/><dir name="Util"><file name="BinaryStream.php" hash="2be5bd9b9c7daf56a578bb98c79c4393"/></dir><dir name="Value"><file name="ByteArray.php" hash="3501ce99e15b597c7159a47a166585b3"/><file name="MessageBody.php" hash="8b61f8ee1c39105e5c19ee0c3df1eedf"/><file name="MessageHeader.php" hash="3719e3197128d0db242a664278740de3"/><dir name="Messaging"><file name="AbstractMessage.php" hash="3091614466f82c843414c7f780e2713f"/><file name="AcknowledgeMessage.php" hash="0102f33c15054d697d29ab872d587e75"/><file name="ArrayCollection.php" hash="5070cc263f4b56b4aa6a62110c563ae7"/><file name="AsyncMessage.php" hash="ad0d187dc1179ce2cad255fe5fbd00a6"/><file name="CommandMessage.php" hash="46b117af57383509740a975f1d35a801"/><file name="ErrorMessage.php" hash="cd980b1cc29739aa685d714e3645f5bd"/><file name="RemotingMessage.php" hash="acaa5c29b712d4d24168bb384d512bd8"/></dir><file name="TraitsInfo.php" hash="91da9ed050e8e44979a229eadf433bf4"/></dir></dir><dir name="Application"><dir name="Bootstrap"><file name="Bootstrap.php" hash="a54f574a13568e3b0d79f9792b58a77b"/><file name="BootstrapAbstract.php" hash="85403088f5775085724427f2db4e3f41"/><file name="Bootstrapper.php" hash="f6ffc93f65f911d74273c97480019ebc"/><file name="Exception.php" hash="592efcd13a2430fb8a8051c77af2bdbf"/><file name="ResourceBootstrapper.php" hash="b5697b89f0bee36d64f1323ae0e6fad7"/></dir><file name="Exception.php" hash="33b45075f371aa758ab73043d9bb345b"/><dir name="Module"><file name="Autoloader.php" hash="561bbbddfd1d5d66e9950b1c5435e822"/><file name="Bootstrap.php" hash="a982af99ca3f8583e7e06754c932bee6"/></dir><dir name="Resource"><file name="Cachemanager.php" hash="aed3b8889084e6b3b46b9e1ad2482309"/><file name="Db.php" hash="a5bc7745dd9416c3cee07ca45701672d"/><file name="Dojo.php" hash="ed17a22f02f2b4b52219cb1a8f5f283f"/><file name="Exception.php" hash="e7cc6162f923bea3163ab3c72a9144c2"/><file name="Frontcontroller.php" hash="4096de73ec4a62565475ade369fa2f10"/><file name="Layout.php" hash="cc29553ce7af25e5497433b38cb33d96"/><file name="Locale.php" hash="d9ddba5ce3e52cf74e06bcaa28e9f701"/><file name="Log.php" hash="6425ed565c8ffa8d6a2061b4bed90c77"/><file name="Mail.php" hash="43d891a5921b267f2298392f5de16f2e"/><file name="Modules.php" hash="de2fead30f02effe859de66503972e1a"/><file name="Multidb.php" hash="f958bb43354951af50a592a27c1de9c0"/><file name="Navigation.php" hash="fa7ac38efd17722bb2fd0181131af18d"/><file name="Resource.php" hash="fea870fdc0a7fe568ff6f7d1d10ab523"/><file name="ResourceAbstract.php" hash="5808f3f8a2c6a349aa21e4de678fef40"/><file name="Router.php" hash="54f15d496ef84d800897d8571523e5b5"/><file name="Session.php" hash="714544fe025fa8e5db47686b58fd410b"/><file name="Translate.php" hash="9b75da2a9e3f571a90f30f14bbe72582"/><file name="Useragent.php" hash="17a0a2deba744c0fd4091fb48958b782"/><file name="View.php" hash="18803d667bd908ccfc04edc3e39d209b"/></dir></dir><file name="Application.php" hash="ef20e42c33995144dcbf822100b66e03"/><dir name="Auth"><dir name="Adapter"><file name="DbTable.php" hash="c8b79405b8855b67ffd8d6f82e6a4045"/><file name="Digest.php" hash="bbc1edafb9a244774ca986a2790e5661"/><file name="Exception.php" hash="194d445ab6929d8c5a6faefe604c64a0"/><dir name="Http"><dir name="Resolver"><file name="Exception.php" hash="cf95d8463e66b8dcc7eb679aaa0127cb"/><file name="File.php" hash="56c75079c07a8f3081841dff74f4f8b5"/><file name="Interface.php" hash="136ff303d6f17f676641db12415a679e"/></dir></dir><file name="Http.php" hash="0cfb159e07de35d89ab6754c9e409b1e"/><file name="Interface.php" hash="9baba8292deab88415d58155627009ea"/><file name="Ldap.php" hash="5bec476c61237745110b07a6981f0ba7"/><file name="OpenId.php" hash="9b87324993b0882e8add83140b24799b"/></dir><file name="Exception.php" hash="0cbee6397372cb825d4d2330f1e01cbf"/><file name="Result.php" hash="011bad9ebfb3e12cde52dc199c1b9b0c"/><dir name="Storage"><file name="Exception.php" hash="7c0657994ccacd29c396728dd3e40ead"/><file name="Interface.php" hash="336438156ed6a7db4183fbb365ec24e0"/><file name="NonPersistent.php" hash="88366aa8fd16a4c565e7a6cf467c9d45"/><file name="Session.php" hash="128255a8d51a1d9fa137e137f17b773f"/></dir></dir><file name="Auth.php" hash="6ec79877089d5629bf32dc9cfca8a5ed"/><dir name="Barcode"><file name="Exception.php" hash="5cf74c43e0bb3bda36dab4cdcf435a7c"/><dir name="Object"><file name="Code128.php" hash="989d2bf6723d392c704a9d793a0870c6"/><file name="Code25.php" hash="945a62bd63cefd4bc548aca2175a798e"/><file name="Code25interleaved.php" hash="163795899dd207d6777ed489b3652783"/><file name="Code39.php" hash="6a9d919307643317d2670d0b5a0cfc75"/><file name="Ean13.php" hash="d073b0b3b0d548aa553128e61a8f739e"/><file name="Ean2.php" hash="244bfc6ef32a4d56629c045c929138f1"/><file name="Ean5.php" hash="198f60f22d8bb1d165bff02c5820a20b"/><file name="Ean8.php" hash="8cea912422779ab67e11d8a169063216"/><file name="Error.php" hash="20edaea0778ac6253009722af4bc1ba8"/><file name="Exception.php" hash="4222bc4babead0b78ff6cd53aa72e359"/><file name="Identcode.php" hash="8a1ac5c7c3b04d3e62aa8265c4e1c2f7"/><file name="Itf14.php" hash="9384e00165c9961a203d1f135a3eaa5d"/><file name="Leitcode.php" hash="3c805e7d37dfb51e8de1f35d16ed5da5"/><file name="ObjectAbstract.php" hash="017bd4e5560bfddab60971b889d9f0a0"/><file name="Planet.php" hash="e1c10362fbc9baa5aabede9041060d79"/><file name="Postnet.php" hash="5f6845e59e609f8991fa580bbdc5eefc"/><file name="Royalmail.php" hash="8cc2c93b813ed89f4b0f6cd60df29f77"/><file name="Upca.php" hash="1485da9e266c49e993a00f9d287b4019"/><file name="Upce.php" hash="7cbde278294ce55ff3cb0857f5c014c5"/></dir><dir name="Renderer"><file name="Exception.php" hash="8579d580dcc35ccd16c82590ff39c1b9"/><file name="Image.php" hash="dba737459af451c5c51bad867b77a0a6"/><file name="Pdf.php" hash="1e2d590fe769d9ebf74d901a34635aa7"/><file name="RendererAbstract.php" hash="359cbfacb66cc0fb5ae362845b3fbf58"/><file name="Svg.php" hash="93544d770411772a4dc2c995cced685e"/></dir></dir><file name="Barcode.php" hash="0586994cdf9871ebabd7aa8079566258"/><dir name="Cache"><dir name="Backend"><file name="Apc.php" hash="0770aacd96ff057d06978bcc7a22035e"/><file name="BlackHole.php" hash="f51e1f122876be7d7ba667e39c540901"/><file name="ExtendedInterface.php" hash="fb6c1f28d7049d8ebb5b367586a386b4"/><file name="File.php" hash="292986e780e4b420968b5dfa15267a01"/><file name="Interface.php" hash="9e9a235e4aa33de40ff9fbc97efa468d"/><file name="Libmemcached.php" hash="2f9d3d284be576c031ff2195afaabc20"/><file name="Memcached.php" hash="cbee447e2af7453a2a37ddee2206f971"/><file name="Sqlite.php" hash="8c2ffff28dbe7e5c27a2bfb6fa1a4759"/><file name="Static.php" hash="8b4e8ac2f3e416316d447266e1a6f8dd"/><file name="Test.php" hash="6bcaf9deb1e13215d9fada844fa0bb25"/><file name="TwoLevels.php" hash="1d48225fde0e61fc38401841b28740da"/><file name="WinCache.php" hash="57da7293a57294e3cc2878d872230aea"/><file name="Xcache.php" hash="364f350bb7e58a221a9dda26dfd940d3"/><file name="ZendPlatform.php" hash="dd2264172835c8ac2b1cd0eba670d1ee"/><dir name="ZendServer"><file name="Disk.php" hash="092b29cf8ea2e0391e156ca38a9c8dbd"/><file name="ShMem.php" hash="94d219bd689df1b0ce1f5fe48c0fda7e"/></dir><file name="ZendServer.php" hash="6397a63f6ceba054b9c4c774451109a6"/></dir><file name="Backend.php" hash="046904b4b5c7661bbdcb6c3ec7969af3"/><file name="Core.php" hash="26e9ed27936fe7c894f36a1241b6aa35"/><file name="Exception.php" hash="64896658ade26dbd6b15851aee788379"/><dir name="Frontend"><file name="Capture.php" hash="5e7254e902e587587a9f7c1749787690"/><file name="Class.php" hash="e0fba9da74e040fc5fcbfeede03147d2"/><file name="File.php" hash="291450665f2b240c3a1d0b8f81d9e505"/><file name="Function.php" hash="80926f9d0d94953c8534f381b3e9e92b"/><file name="Output.php" hash="b3902a3f0ddf1b4608b84f6172a317e6"/><file name="Page.php" hash="d447d1e18b8c9ccfe95f5cbd4f8ad0aa"/></dir><file name="Manager.php" hash="bba8e1dfc892616eccc5f033d3849aec"/></dir><file name="Cache.php" hash="dd6b3426e3682f832f5e73a5a5e7bbe4"/><dir name="Captcha"><file name="Adapter.php" hash="c80da3e14f86386865a1a11f386509f0"/><file name="Base.php" hash="f3f587f183c8dbb0f71b588a99f56728"/><file name="Dumb.php" hash="42cf7479a157ab4f6d92f4ea2edd402f"/><file name="Exception.php" hash="a1ea444d80d4629ae987f5120d7b6ab4"/><file name="Figlet.php" hash="9434c31c17fa4558d823f72863bda27e"/><file name="Image.php" hash="8f1bb1448407f673d986cc387846bf3f"/><file name="ReCaptcha.php" hash="7213da2f0082b6a209bf5659d5279036"/><file name="Word.php" hash="2b20aa38f1132306e259f4032ad1de6e"/></dir><dir name="Cloud"><file name="AbstractFactory.php" hash="0360f699d631c5eb6f1f5e117a2a6524"/><dir name="DocumentService"><dir name="Adapter"><file name="AbstractAdapter.php" hash="3679fe7eef0b73516d98565b35e90366"/><dir name="SimpleDb"><file name="Query.php" hash="163f21a702cb5aa76d58682d29559bd2"/></dir><file name="SimpleDb.php" hash="78628ea1029ec6f267c83c302611b6e8"/><dir name="WindowsAzure"><file name="Query.php" hash="657934a415bd7d731906ebb3fa42187d"/></dir><file name="WindowsAzure.php" hash="9a48103bc6327e24a98f27307641c397"/></dir><file name="Adapter.php" hash="22799d67b8935e871e9fcb5403617a9d"/><file name="Document.php" hash="e76315e7e307aa99dae6d634b51c2ece"/><file name="DocumentSet.php" hash="53cabe8e2d6454beab6b476953fb9a58"/><file name="Exception.php" hash="e69eb63ef3ac0476422e553c0f9d0b7c"/><file name="Factory.php" hash="d11189e3ba364466584a8461e9bea29b"/><file name="Query.php" hash="dcf377f4d08e1adc178dcef42a7e21d4"/><file name="QueryAdapter.php" hash="b683d5360841a57b8b58f0ac937b4991"/></dir><file name="Exception.php" hash="baa1da441578d83ef668c947bc26993a"/><dir name="Infrastructure"><dir name="Adapter"><file name="AbstractAdapter.php" hash="1a0c85424e055522ed27fd848641adb9"/><file name="Ec2.php" hash="f702d42320cb2a843124faeff6308673"/><file name="Rackspace.php" hash="12ca011eaa260a98e5f0b021497d6d9f"/></dir><file name="Adapter.php" hash="8fd0db5ff41dd87d2730981cf6a651e6"/><file name="Exception.php" hash="dd74945bd044a9b569715d8b8f33d6c6"/><file name="Factory.php" hash="e35fedab839a9897bd494b4525c70d74"/><file name="Image.php" hash="d0b5a851095a8a6d00cc758e66de65d0"/><file name="ImageList.php" hash="330f4330efa43095c73963860719d8dc"/><file name="Instance.php" hash="aa600d04524311d6da4bfac324aae00f"/><file name="InstanceList.php" hash="9f5c27c450518e4090aa5200261e0804"/></dir><file name="OperationNotAvailableException.php" hash="cb15f6dfb2c6caf15bf3d3c7192a2859"/><dir name="QueueService"><dir name="Adapter"><file name="AbstractAdapter.php" hash="6aafd9d7c44e76e68dd7b8ea83aea6fe"/><file name="Sqs.php" hash="03b431d971a7679aa43dba8d235fd9bb"/><file name="WindowsAzure.php" hash="b4762cebc1460850e73552d5a617ea6d"/><file name="ZendQueue.php" hash="d8aaa2f4ec3302693fcaee2833339bac"/></dir><file name="Adapter.php" hash="c950feca6fdab3f115ba62146e9c4061"/><file name="Exception.php" hash="0406a9d40baf106b1e7c7a52c58622ce"/><file name="Factory.php" hash="1489be14015fdbc7364317e2e6fdb4dc"/><file name="Message.php" hash="48907828e50d23674d1500834ac33d96"/><file name="MessageSet.php" hash="f4371e5f68036dbea532b7899c59679c"/></dir><dir name="StorageService"><dir name="Adapter"><file name="FileSystem.php" hash="a916c70022b7554939e2fd73b0e37bd4"/><file name="Rackspace.php" hash="d5b49d598b7a2ca875599df0c07d17e2"/><file name="S3.php" hash="36d663a296803282ec6ffbb4d1f6ecf7"/><file name="WindowsAzure.php" hash="1c266330be81f9034e491cdc5c0becee"/></dir><file name="Adapter.php" hash="4bf256cad4b27a0b4ccd0ea0d2e5df44"/><file name="Exception.php" hash="b1938d4a1d75a132c7896c9d1d49c316"/><file name="Factory.php" hash="e60551fd66495592c25f2143683c0eae"/></dir></dir><dir name="CodeGenerator"><file name="Abstract.php" hash="8bb5c3fb76b0953dad77b8aefd240552"/><file name="Exception.php" hash="2f35c31886c1506cbce95bd48ceb8302"/><dir name="Php"><file name="Abstract.php" hash="7ffc414197119b98d09c089d38b745cf"/><file name="Body.php" hash="4354cf77549e88c8ef742f74df428824"/><file name="Class.php" hash="e96e076b5e9a7a41b9dff5d65d65cbf8"/><dir name="Docblock"><dir name="Tag"><file name="License.php" hash="fa6989bdda9dcc8eed58dfcd5cd11d3e"/><file name="Param.php" hash="c5402463f594b0ada366547e2140c087"/><file name="Return.php" hash="d36a1b1dbd2383043b9703449212218e"/></dir><file name="Tag.php" hash="94c4d5bf7254f1122a9140578562cf4a"/></dir><file name="Docblock.php" hash="3630eee3a36264ed70bb414b1b6659d2"/><file name="Exception.php" hash="4d0d644d274ba0d93c86edabe96a937a"/><file name="File.php" hash="16190c6965142355870ea2d86065c2f3"/><dir name="Member"><file name="Abstract.php" hash="a07d1b1c01755725fd9c670b83e14c6e"/><file name="Container.php" hash="52c0f2936e0dd96e3efaca239e97a537"/></dir><file name="Method.php" hash="facb978030d8ed1148d3fd9b27647a5c"/><dir name="Parameter"><file name="DefaultValue.php" hash="402dc7efb5a973be4b3695d97df9d5e6"/></dir><file name="Parameter.php" hash="f963e92d375973d82c64e9aeeb99aa68"/><dir name="Property"><file name="DefaultValue.php" hash="23583ff2c6b01162f217d3f18e17f5bb"/></dir><file name="Property.php" hash="5d85c620c090d866edd2cc4af3bb0737"/></dir></dir><dir name="Config"><file name="Exception.php" hash="825b93db4d92fc10ff2334d0701ac39a"/><file name="Ini.php" hash="bc377745cc51608820d81f08bb5e622c"/><file name="Json.php" hash="191c7eb21cbb2042491e5548a59087a4"/><dir name="Writer"><file name="Array.php" hash="fa6b3a9d9f68cc5973db7309b93454eb"/><file name="FileAbstract.php" hash="14f344ccee37bac7224aa203e5be6bf5"/><file name="Ini.php" hash="c658c697e401b7fab66edac3e5ab5edf"/><file name="Json.php" hash="675cff174476aab6e44540ce20b9ef6f"/><file name="Xml.php" hash="0ff4954d3f6be816d2911cc236d588de"/><file name="Yaml.php" hash="0a6d7e361af7f4f5cff8a9eb81264318"/></dir><file name="Writer.php" hash="7bca990f32b4a7bf64b6d7bcd6a8b144"/><file name="Xml.php" hash="24d64c4d3269a55f1577d40717069b3f"/><file name="Yaml.php" hash="d559550b7de8c77f03a6d8c5ab1af715"/></dir><file name="Config.php" hash="0ec674c135a25bb65bf7f2f536496373"/><dir name="Console"><dir name="Getopt"><file name="Exception.php" hash="ba4d96e50ff729964f51d3ff320a695b"/></dir><file name="Getopt.php" hash="cce42f5f0fcb389e32e176ee482ea022"/></dir><dir name="Controller"><dir name="Action"><file name="Exception.php" hash="5c5bfb99e09c49bfd42afc92cca046a3"/><dir name="Helper"><file name="Abstract.php" hash="2db15ec4775320a42a86fc96ded791f6"/><file name="ActionStack.php" hash="72d618b0c01345a39b86362d00b519e5"/><file name="AjaxContext.php" hash="d25cd19237deee404b1d78c3babc51e6"/><dir name="AutoComplete"><file name="Abstract.php" hash="8265a4c01db3fc5ef8359855b5bc7de7"/></dir><file name="AutoCompleteDojo.php" hash="bc727565a422d34c4ee642604bca989f"/><file name="AutoCompleteScriptaculous.php" hash="423035f705a0ead78f0b508915f9f11d"/><file name="Cache.php" hash="5e1ee2f20930ce3ce6c9ff95c7986fd5"/><file name="ContextSwitch.php" hash="bbde32302aea3a45df7525ee558ba61b"/><file name="FlashMessenger.php" hash="6f60de563b5b400d75b630f359ce09be"/><file name="Json.php" hash="46f702a70e0d5e4ecff66439b34502aa"/><file name="Redirector.php" hash="2e6a99e37b8c0926db7c2b118298f940"/><file name="Url.php" hash="16c5a98afe9f6f14bee59bbb0ee58583"/><file name="ViewRenderer.php" hash="8467c55662e5afdd65308fca17421a78"/></dir><dir name="HelperBroker"><file name="PriorityStack.php" hash="9919f1af00251ac5d7a362dba0a280c8"/></dir><file name="HelperBroker.php" hash="aa9cf211934ac5b4fc9e4220ad26d7ca"/><file name="Interface.php" hash="0cb0ece63ce5a245010b9c79927149fe"/></dir><file name="Action.php" hash="1eff5915284945de72327a06cb10c10a"/><dir name="Dispatcher"><file name="Abstract.php" hash="3a481b8b2beb61d223f1c90757339a6d"/><file name="Exception.php" hash="21e0c2b4a1f642448f391e0601bf8327"/><file name="Interface.php" hash="323c3bfe932dca40b3f0f18ebaa39bf4"/><file name="Standard.php" hash="ccbde33f1d7616c2c35ee556039b12a0"/></dir><file name="Exception.php" hash="75ef40958ca34b2ce0007a6a9bd11b62"/><file name="Front.php" hash="a0cd827d65e2d2cc1d51d96009d61032"/><dir name="Plugin"><file name="Abstract.php" hash="4f9c2a5fcb32f0f02d01559c2900e2ff"/><file name="ActionStack.php" hash="dc0f223ebf96304711e62b0ff066cbe6"/><file name="Broker.php" hash="4558d24e01418e1a7a4a45f8a0419b05"/><file name="ErrorHandler.php" hash="1b86cb0d967cb3a80091271532e5f29f"/><file name="PutHandler.php" hash="5b65c0f667538e81cd5152060b1fc50e"/></dir><dir name="Request"><file name="Abstract.php" hash="479150985f9f5b1ad60da1c627ba5422"/><file name="Apache404.php" hash="6e4073adcf927bc08c36267350259110"/><file name="Exception.php" hash="401a6bfe6ee4f2eef739d5622d457235"/><file name="Http.php" hash="7cee6c46375e04aafe72986adb2581df"/><file name="HttpTestCase.php" hash="730f41d84663c556e75c6276f307dbb8"/><file name="Simple.php" hash="4debb461f0bf9c865b3ef7e9a2f9eec1"/></dir><dir name="Response"><file name="Abstract.php" hash="41812ba5c1950b91ca6db21c36a65022"/><file name="Cli.php" hash="1be9de58bd3af4e70797422c5936b9f0"/><file name="Exception.php" hash="daf74bb0fb6ffed9c50a414b78947388"/><file name="Http.php" hash="1b97675e6f09aca759dd04cadc2ada31"/><file name="HttpTestCase.php" hash="b8e25dbcd9245fce7f9e985aedb53ab2"/></dir><dir name="Router"><file name="Abstract.php" hash="7c3976721fbba2c462793f6152a7952a"/><file name="Exception.php" hash="10f91dd02d28dfb9c5de84d778f5e451"/><file name="Interface.php" hash="3f0e4586ac18e02e172ff65e1228a197"/><file name="Rewrite.php" hash="333634b9f184476914d985f68d06b12a"/><dir name="Route"><file name="Abstract.php" hash="c0437b622e03a117783fc6d8c2a581da"/><file name="Chain.php" hash="09f85b7090846555fa6f68c0f9dbcecc"/><file name="Hostname.php" hash="b54e6b9f68ffa63f9c493f82606ab2ac"/><file name="Interface.php" hash="80dd1da3a1fe916fcf173891716985cc"/><file name="Module.php" hash="dca7ac356221ebd066c5b17a72557551"/><file name="Regex.php" hash="4bcd3642f6ee8d66b9ec9cf591cfa121"/><file name="Static.php" hash="2bc26cb37610470e8fbb0e9302e76175"/></dir><file name="Route.php" hash="9be953ae63b6074535656826c99f88dd"/></dir></dir><dir name="Crypt"><dir name="DiffieHellman"><file name="Exception.php" hash="27066062da23c7b0b5c8ea405d63424f"/></dir><file name="DiffieHellman.php" hash="b146591071090ba7dc2d120c8d7cfcb1"/><file name="Exception.php" hash="98d264f8b46a12e8e1fa644b37488636"/><dir name="Hmac"><file name="Exception.php" hash="3b8bf2fed9087ce573c7d9e461211d01"/></dir><file name="Hmac.php" hash="7beea2bae905ad98fc8212a5a2ba906c"/><dir name="Math"><dir name="BigInteger"><file name="Bcmath.php" hash="7ad0514366aa1cfbbacf9a841d17209d"/><file name="Exception.php" hash="c7047b1ec96c2c5bf9d2ec8fd516c232"/><file name="Gmp.php" hash="1e136ad9748ff4e120be567de7195084"/><file name="Interface.php" hash="a1a15aadc0d1232e19e3660778e25a4e"/></dir><file name="BigInteger.php" hash="5941fbc6fa7558f254212a5c704de46f"/><file name="Exception.php" hash="0a2a9e2cdf2619549bb1891d31565cb4"/></dir><file name="Math.php" hash="0e54c36e33bb980ba251c42719e72e48"/><dir name="Rsa"><file name="Exception.php" hash="9af79ec754f6202584671b395e9898cb"/><dir name="Key"><file name="Private.php" hash="6b8486eba224159d7c05dea23039ec8e"/><file name="Public.php" hash="8cd4ac9225b58e1a2990659f4a97a45d"/></dir><file name="Key.php" hash="a0c0daf511c3a74d1e754faeaace0f83"/></dir><file name="Rsa.php" hash="e46289dffb56184f7c15faa3b24a0a68"/></dir><file name="Crypt.php" hash="ae1d981cb224263c8625604621d0ffc9"/><dir name="Currency"><file name="CurrencyInterface.php" hash="c52c23140b8d66185e2792cb10c65b40"/><file name="Exception.php" hash="f04c4fcb9b9b4117ab0c91e688904a06"/></dir><file name="Currency.php" hash="e380eca83740d28bb55435c3489204cf"/><dir name="Date"><file name="Cities.php" hash="4698b47f264db687c97ea7fa5ccd717e"/><file name="DateObject.php" hash="9e1b68aa0a0da3652516b00f3b4b0d03"/><file name="Exception.php" hash="b91a2d166cf91afa1325a07747bafe57"/></dir><file name="Date.php" hash="6d17472f661d6b599477f215dda67f82"/><dir name="Db"><dir name="Adapter"><file name="Abstract.php" hash="7d5a1b64e9f292c018fec8fca159311b"/><dir name="Db2"><file name="Exception.php" hash="b64143620db1d7e5cd7b90312aeaf7bf"/></dir><file name="Db2.php" hash="d27757593a5be92da47326b25af8b4a4"/><file name="Exception.php" hash="461a43822f24e3e79bf8a844541235a3"/><dir name="Mysqli"><file name="Exception.php" hash="71ae5837eee0e261ba7639dff878845c"/></dir><file name="Mysqli.php" hash="c997a7381205b413a03efba602f2debd"/><dir name="Oracle"><file name="Exception.php" hash="8a08377363d09d1711c31ed0e2b4f220"/></dir><file name="Oracle.php" hash="2c539f9ac5ce7e656f3432c9aa00daae"/><dir name="Pdo"><file name="Abstract.php" hash="94b52dce22acdcc307e2aa01f88bfde2"/><dir name="Ibm"><file name="Db2.php" hash="b947c61e9abf1f277adb40dc1aaf6319"/><file name="Ids.php" hash="a2d4fcf42c7b9435515399862224d74c"/></dir><file name="Ibm.php" hash="1042d1f01417241dc09679e1edb3a248"/><file name="Mssql.php" hash="65c9aaf2c21a48b5a6768709d8409c62"/><file name="Mysql.php" hash="0ca1bc627085e101ce51e02328b16347"/><file name="Oci.php" hash="819a1b3d31d7f65ba3f9de49ceecdf30"/><file name="Pgsql.php" hash="1b7fde0593b3799e4afa1f74b63499d7"/><file name="Sqlite.php" hash="efb68039f3e1b9e34a81c3dc9d0e8f20"/></dir><dir name="Sqlsrv"><file name="Exception.php" hash="097530f562d1993a992d6f62aadea809"/></dir><file name="Sqlsrv.php" hash="0fb64191a2d9e688410094c736d5eda6"/></dir><file name="Exception.php" hash="aebb5d861915d6a2494c58fc343f2752"/><file name="Expr.php" hash="2dca05427df6b34d6da9fb872517f684"/><dir name="Profiler"><file name="Exception.php" hash="42d03d9fd63aada757d6dabacdb73cb0"/><file name="Firebug.php" hash="1f5b0198a97091bba6ec8a8f74f3cf1a"/><file name="Query.php" hash="fe0bfc38389c14cecc76d528e33bfe83"/></dir><file name="Profiler.php" hash="e7327368b94ae8e094c602e41f617609"/><dir name="Select"><file name="Exception.php" hash="f8b241a9791bc28c77ca8c14cf80ba84"/></dir><file name="Select.php" hash="4f5bd4393d84efa9b8a9930e3071c86c"/><dir name="Statement"><dir name="Db2"><file name="Exception.php" hash="05225962b3d3107841d87d0d6c4ca9de"/></dir><file name="Db2.php" hash="36c397903c5e07ebe5b82b5e76030c7a"/><file name="Exception.php" hash="d41110267373d38bb4af77e1785329ae"/><file name="Interface.php" hash="222f50673200f578767b1e0c43d5a6bd"/><dir name="Mysqli"><file name="Exception.php" hash="1932b0ae9232ab79ccacadd46a45f022"/></dir><file name="Mysqli.php" hash="64e3e41642115ec95cce487da79fe737"/><dir name="Oracle"><file name="Exception.php" hash="59588ef7feadf4b0a726d1e1410f10bd"/></dir><file name="Oracle.php" hash="3fd727a08bbb347495dd6a2fb044defb"/><dir name="Pdo"><file name="Ibm.php" hash="aadb46dbcc67223ab9e240c35301cb0d"/><file name="Oci.php" hash="75a7032f82e8e29f52a8994a847e9533"/></dir><file name="Pdo.php" hash="91da6eddeaa94a88bcea2c3c912480bb"/><dir name="Sqlsrv"><file name="Exception.php" hash="925701544428f06183ecbb6718047839"/></dir><file name="Sqlsrv.php" hash="4d49d2edc91902768b1685768ac0421c"/></dir><file name="Statement.php" hash="48578c5307d13998d3b9dc73486bb666"/><dir name="Table"><file name="Abstract.php" hash="d1f0eb94b3a83abab809a132edec8d70"/><file name="Definition.php" hash="056d17187e24f48f42059889802ade8d"/><file name="Exception.php" hash="4ad0192e2759ce865081bfd65fba1537"/><dir name="Row"><file name="Abstract.php" hash="79e1dca4c87a158d36b171b11ec721a5"/><file name="Exception.php" hash="3182c2febc7a67988a02a2f4e3262c7c"/></dir><file name="Row.php" hash="adb2429446ad01b98bf74a1c79802009"/><dir name="Rowset"><file name="Abstract.php" hash="6474578f17e077f0d176de3d41bd43fa"/><file name="Exception.php" hash="c5e373d4e4d06e728572b3ca8c5d7d40"/></dir><file name="Rowset.php" hash="0534466fa3f58d60e28761013df1035d"/><dir name="Select"><file name="Exception.php" hash="c87230b6b7401370de518e6ad7218203"/></dir><file name="Select.php" hash="4a86cf29c8e383613e79caa5ef51ca36"/></dir><file name="Table.php" hash="bddf2a8c1ee791ef8a75fd81362a95b9"/></dir><file name="Db.php" hash="944811d3042ae76f201ce5ccee064693"/><file name="Debug.php" hash="e91277596844e74a3189f72b260d743f"/><dir name="Dojo"><file name="BuildLayer.php" hash="59fd3f007b9ddfe836308735a4fad349"/><file name="Data.php" hash="584f49393cc79deedcd43f36ff7cf68e"/><file name="Exception.php" hash="ce849ec1ac41925ce396495a4c0b5e5f"/><dir name="Form"><dir name="Decorator"><file name="AccordionContainer.php" hash="5ccfa22f987078a553c8334a1751a78e"/><file name="AccordionPane.php" hash="bfb6959fc54968e6e631a7b812f795cc"/><file name="BorderContainer.php" hash="3630699c89e4d611d463952ab7b616af"/><file name="ContentPane.php" hash="f5e7d589fc667a74c537f1c4a1d2f1ee"/><file name="DijitContainer.php" hash="6e30cb3a91ee447e6d9ae587a5b08fdc"/><file name="DijitElement.php" hash="63a591c8ae6f23a5fac3c4c4799849b6"/><file name="DijitForm.php" hash="3107c8e3a51efd7cd960a4d140fd2552"/><file name="SplitContainer.php" hash="32118776073ace34a7a6e6b775f7a41d"/><file name="StackContainer.php" hash="511f80fb7e777c7420df3a33e5d36df3"/><file name="TabContainer.php" hash="bfba332a70e20ac8e4bc1f9a7b488ffe"/></dir><file name="DisplayGroup.php" hash="4fc35365159beb7532119735b43ac5ae"/><dir name="Element"><file name="Button.php" hash="3ed66e9ab5b21731a355a35cc0bdadc5"/><file name="CheckBox.php" hash="cdf55f6261658dc12c508397228c86d5"/><file name="ComboBox.php" hash="ad263405d78671cb38f39a42f4153306"/><file name="CurrencyTextBox.php" hash="8a0101a9a7fdc7504fe882222df91d8b"/><file name="DateTextBox.php" hash="b1a766b9190c2c124d34d59d8c742f04"/><file name="Dijit.php" hash="8389aeca66aecb8a39d9341f81ded916"/><file name="DijitMulti.php" hash="bd0fe55261b57bcd2c92ea196eceaf08"/><file name="Editor.php" hash="bb3636533a931bc1f9a5782ac4c66565"/><file name="FilteringSelect.php" hash="d330a4330b410089733f8c1eeb1839e2"/><file name="HorizontalSlider.php" hash="b23bd0da212335080121f31e318f743d"/><file name="NumberSpinner.php" hash="9ae185b60accc9edb7baed24b93ca540"/><file name="NumberTextBox.php" hash="cc340c040ab7c8eaa02bf401a9a91bc3"/><file name="PasswordTextBox.php" hash="48b304d5bbfb2417adf1724362e032b6"/><file name="RadioButton.php" hash="80e8b86eaf8258626084f54272a7a576"/><file name="SimpleTextarea.php" hash="69791b92fb7d656676266fe53592b6b0"/><file name="Slider.php" hash="21f9f99bb495bcf2997a022f6a43c276"/><file name="SubmitButton.php" hash="52c7e25fd90d33b9501150746b046e14"/><file name="TextBox.php" hash="874413d9bf8c39f9a7a73d7175842cf5"/><file name="Textarea.php" hash="1fab8c9619163b0fd1cdeaf4bf4113c7"/><file name="TimeTextBox.php" hash="6ab9be9f6555bdc14ba9a02fb18c3157"/><file name="ValidationTextBox.php" hash="dd456a154f47bc74e05834800490ad53"/><file name="VerticalSlider.php" hash="c99c979911b12b2907b9ce727d595f42"/></dir><file name="SubForm.php" hash="46b28da42e2447cdf7f23ce8635a6243"/></dir><file name="Form.php" hash="5dc7b152deef6e0fedf0c0caa73f7c68"/><dir name="View"><file name="Exception.php" hash="fed5a27397fd8fb08841c1db38364df7"/><dir name="Helper"><file name="AccordionContainer.php" hash="3b2eaa765a22ea9a2d3d2e507da446b8"/><file name="AccordionPane.php" hash="94b8d5edb317926ca8aee3539c33ce8a"/><file name="BorderContainer.php" hash="f8b3939b919a3f961c8da6196b2166be"/><file name="Button.php" hash="e1e816f2362a2f973acceadb1414de98"/><file name="CheckBox.php" hash="43f1a6ad27883f62cda4bc1b560c9f89"/><file name="ComboBox.php" hash="d2811e390eb44a4f3e953c241949db0e"/><file name="ContentPane.php" hash="041084c11934376f3f759154a1835abf"/><file name="CurrencyTextBox.php" hash="56f2046e985a0d1cd81ba0d045f91a7a"/><file name="CustomDijit.php" hash="34bfe4e1501f8dc1227adcc9b7e2b20b"/><file name="DateTextBox.php" hash="81bdffce0b2acb693a7c2cbd3941f156"/><file name="Dijit.php" hash="7a1eb3742998cbbabac1b2338a590566"/><file name="DijitContainer.php" hash="3091a920fbfb48215a59f73be1988eaa"/><dir name="Dojo"><file name="Container.php" hash="e40d8395af2e395a2e81d593e8f4602c"/></dir><file name="Dojo.php" hash="6303c9d4ede5b67cc828ead89c4016a6"/><file name="Editor.php" hash="f251624a2b798b53eea465d9938ac276"/><file name="FilteringSelect.php" hash="60bbdd84239febff9241199104b4cf1a"/><file name="Form.php" hash="105f502558eb241c81c39be0e5d85a72"/><file name="HorizontalSlider.php" hash="7b3c19156aee3db41dbaee18abe2ded7"/><file name="NumberSpinner.php" hash="cf27c892acfeb8ba60027bba29d8715a"/><file name="NumberTextBox.php" hash="9674fa01666c5622896d4513da69ce8d"/><file name="PasswordTextBox.php" hash="0ba727cff497c3b580bffaf04eecc75b"/><file name="RadioButton.php" hash="ddd9733fd29a47cf20f224115895d2cb"/><file name="SimpleTextarea.php" hash="8162db2b947a8b380099ee4266bd2edb"/><file name="Slider.php" hash="b09cd129a4885cb799978b234e8ef496"/><file name="SplitContainer.php" hash="8fa96d45ff63d2b0f24250856afea806"/><file name="StackContainer.php" hash="f3f24abf9640124f26274b9663eccd5d"/><file name="SubmitButton.php" hash="9083d4797eb4be0a879951a88be9a6f3"/><file name="TabContainer.php" hash="8b6865aa0b8015b220896d3487ec0966"/><file name="TextBox.php" hash="75b65da85221b840ff6f3bd4d38890e2"/><file name="Textarea.php" hash="58421d644f61edc039bdaf8b2d13af7d"/><file name="TimeTextBox.php" hash="7865f42c62fd06ead74987324d2310d0"/><file name="ValidationTextBox.php" hash="59bc7469004e22811c038791462d67a7"/><file name="VerticalSlider.php" hash="9c113d757c1b99048d09ba8949452034"/></dir></dir></dir><file name="Dojo.php" hash="3d5a5b6120bb16fbde6a24fc082bb2e7"/><dir name="Dom"><file name="Exception.php" hash="764e44b0e7b8346387c4b677e725d6bf"/><dir name="Query"><file name="Css2Xpath.php" hash="84d8020779e37ed005fa2ca53052731c"/><file name="Result.php" hash="2c8f3fdb6f945804d2a2b5881b5c0567"/></dir><file name="Query.php" hash="2453f8d8b245fd5505ce023872a5fcc5"/></dir><dir name="EventManager"><file name="Event.php" hash="73a22bba4a1536ad0bedb311992ed841"/><file name="EventCollection.php" hash="6846535fe1c08a148593082878839b2b"/><file name="EventDescription.php" hash="6cb5b7a743c322cc486c09de9e2466c1"/><file name="EventManager.php" hash="775973335393a6aab98b63fd7e580f6f"/><file name="EventManagerAware.php" hash="616ae31ca46f1f0206e28851f408e777"/><dir name="Exception"><file name="InvalidArgumentException.php" hash="4651b42388b3cc0f6a8c77b8c92a988f"/></dir><file name="Exception.php" hash="a7a76fcb8615694bebfd1b7a6c63cc2e"/><dir name="Filter"><file name="FilterIterator.php" hash="479bdbab563e57ade8718744d6a9eaed"/></dir><file name="Filter.php" hash="a6705be98a15d9abb250329a18bc5f44"/><file name="FilterChain.php" hash="0bbe4e22e4bd7731c91b0d8849e24dd4"/><file name="GlobalEventManager.php" hash="2448f17e7235ad32e0986dccaaf6f21f"/><file name="ListenerAggregate.php" hash="e0bf702bb54b9ba2d54828a2d66d2954"/><file name="ResponseCollection.php" hash="14500f355513b35b17a7dd7e947f5301"/><file name="SharedEventCollection.php" hash="0504cdf3c7168fa6e6a1d164705617c7"/><file name="SharedEventCollectionAware.php" hash="c53dea67b8742191c78911a87cf4c1c5"/><file name="SharedEventManager.php" hash="973daf2597a36f485ec43ae91f53fbef"/><file name="StaticEventManager.php" hash="47bc3c834d44e64eab6ea0b0c0a83eba"/></dir><file name="Exception.php" hash="fdca55eece8acc76af7ec98eca620311"/><dir name="Feed"><file name="Abstract.php" hash="66b85329fd8524fc66b93c16397cc49d"/><file name="Atom.php" hash="24d80774c71e1932b8be5054793d4fd6"/><dir name="Builder"><file name="Entry.php" hash="4871eb1a5d2084552d48b346fb9424ae"/><file name="Exception.php" hash="f8d2074819dd7157b4de4428579958c9"/><dir name="Header"><file name="Itunes.php" hash="da87e20a7e6b587316644377c8cc3c55"/></dir><file name="Header.php" hash="7e1b1053ef90762e3b6d9933cab4964b"/><file name="Interface.php" hash="407dbfd89e522c6e033214974954ad9c"/></dir><file name="Builder.php" hash="9453c5958f2cc22bd37a1e8e8de22ff7"/><file name="Element.php" hash="04f6a067ec047936af106f5a3ee9f0ee"/><dir name="Entry"><file name="Abstract.php" hash="44340d16439984b02edd6f26d7a1885e"/><file name="Atom.php" hash="a2642776469712e0e2dfcc0912e98aa3"/><file name="Rss.php" hash="93e478df77e9c9c43c55334ce2165a8d"/></dir><file name="Exception.php" hash="3ce015184369dd3392923dba02ccb4ab"/><dir name="Pubsubhubbub"><file name="CallbackAbstract.php" hash="5fc3da695c59069c88f54206485038c9"/><file name="CallbackInterface.php" hash="3b8478bc6bac3d9309c0fe7ba6f89dd0"/><file name="Exception.php" hash="028e2d741379246df90e62b96393ffe9"/><file name="HttpResponse.php" hash="6a929e3ac877b89fd0b8664b9894f953"/><dir name="Model"><file name="ModelAbstract.php" hash="ce0a0b0b03f77348b066a947e4d4a087"/><file name="Subscription.php" hash="99c0b396f4e21b0fe2bc3c068220958e"/><file name="SubscriptionInterface.php" hash="63f95bde2e9254d0e3c31b905fea78bc"/></dir><file name="Publisher.php" hash="44d781a089ad5ac1ee949b74badad6ca"/><dir name="Subscriber"><file name="Callback.php" hash="c50e22f4bec18ed4365b7a7fd472db69"/></dir><file name="Subscriber.php" hash="3a06e76251527da315017fd545595ee2"/></dir><file name="Pubsubhubbub.php" hash="9187f4accebd9b1b23010e141485f2c8"/><dir name="Reader"><dir name="Collection"><file name="Author.php" hash="bd0aee1688a6905cfa60ad3df2876d42"/><file name="Category.php" hash="0ac74f5a4ea9492998e7f76e6e959283"/><file name="CollectionAbstract.php" hash="a0d023979ca9ca7c2fdf93e0acb36745"/></dir><file name="Collection.php" hash="6a92b8355578f92468d24f03c33f6e7b"/><dir name="Entry"><file name="Atom.php" hash="c4f9ba356c97d5ad4ad6a5a210fa5d31"/><file name="Rss.php" hash="01b9d9b750ec9c730bc3fa624629deeb"/></dir><file name="EntryAbstract.php" hash="b9e05d05ad657e24bca3947764bf4aba"/><file name="EntryInterface.php" hash="3e33c60c08158ac0398bb9f05ec2090b"/><dir name="Extension"><dir name="Atom"><file name="Entry.php" hash="6baacc2e3ddc23ad3cfa9e190fd54157"/><file name="Feed.php" hash="16e84c49d96b759d10b1fe86982cca2f"/></dir><dir name="Content"><file name="Entry.php" hash="4a01e7b785bc08518739d03825f8c7af"/></dir><dir name="CreativeCommons"><file name="Entry.php" hash="4c7cc6a5ddcb6971e2a7d30c701151b7"/><file name="Feed.php" hash="40b8c9f5146271c2fe7433f7daff07ac"/></dir><dir name="DublinCore"><file name="Entry.php" hash="3ff54fc3fe5df35c8ba4075ed42dabeb"/><file name="Feed.php" hash="56f06a3e2739c70c66da54e7608c9496"/></dir><file name="EntryAbstract.php" hash="fb62ce68f7a440fac11ec666e9e4bc22"/><file name="FeedAbstract.php" hash="c1283a62809662e762cd0a7875b0b913"/><dir name="Podcast"><file name="Entry.php" hash="738c47a9b19c44bedbce6a6e901ee173"/><file name="Feed.php" hash="23c593352bc891c6bbce22e98da18f6e"/></dir><dir name="Slash"><file name="Entry.php" hash="29d24797987342ea6a580a48af0accb5"/></dir><dir name="Syndication"><file name="Feed.php" hash="67ec064681ba8a77b4f6d44a35d4d8f7"/></dir><dir name="Thread"><file name="Entry.php" hash="202da1cb171c55d435b125cfb264d874"/></dir><dir name="WellFormedWeb"><file name="Entry.php" hash="88c3ee8f88632712522d206426a2927c"/></dir></dir><dir name="Feed"><dir name="Atom"><file name="Source.php" hash="71d4bceda67dd3a4acbc45bbee33853a"/></dir><file name="Atom.php" hash="042c93075ae2e933e5241750c101d3de"/><file name="Rss.php" hash="e354bd24fbf48a5bab9d518e3912bd93"/></dir><file name="FeedAbstract.php" hash="e577cfdd039f4025877f12d2d08dcce6"/><file name="FeedInterface.php" hash="7eaed63ef055848aa1b299bc98d8cc11"/><file name="FeedSet.php" hash="5ba5f156ac7607b73929dac85826c659"/></dir><file name="Reader.php" hash="d9bc6e5b898eb8be4fa72e313e89bccb"/><file name="Rss.php" hash="e14ca674ad56d9ce18df5d9728c770bc"/><dir name="Writer"><file name="Deleted.php" hash="35aad5db793b86ca638a81d052c6ae14"/><file name="Entry.php" hash="87c1a1d4b637d4918f5fabe8b56c1a9a"/><dir name="Exception"><file name="InvalidMethodException.php" hash="02419d36ca4d923b7ae46f8cf5e9808b"/></dir><dir name="Extension"><dir name="Atom"><dir name="Renderer"><file name="Feed.php" hash="e1c642e0775de8ace9639daff1a932aa"/></dir></dir><dir name="Content"><dir name="Renderer"><file name="Entry.php" hash="f86cd399902d04ab6652aa952c81916f"/></dir></dir><dir name="DublinCore"><dir name="Renderer"><file name="Entry.php" hash="6f79082f7b75e1d7b73930169ff6d5e0"/><file name="Feed.php" hash="8b6825b40579ce795e0018eac48a0fa6"/></dir></dir><dir name="ITunes"><file name="Entry.php" hash="e23d802f1cc74b432a3c5362be650c55"/><file name="Feed.php" hash="ffa388bb1b1c868a92978ee85f3c8d50"/><dir name="Renderer"><file name="Entry.php" hash="184f5e6f780c987cb55374c6b899dee2"/><file name="Feed.php" hash="c5df3307f99f2349024d3a31612d67a5"/></dir></dir><file name="RendererAbstract.php" hash="427c8bd29a3f0aec64f2034405b8fa89"/><file name="RendererInterface.php" hash="2cbb9d13b450a08098921fe99f5084bf"/><dir name="Slash"><dir name="Renderer"><file name="Entry.php" hash="95b4d946971ccd12e852d36125e241ad"/></dir></dir><dir name="Threading"><dir name="Renderer"><file name="Entry.php" hash="81fa4f73e25ce35482f8ea2d01ceac48"/></dir></dir><dir name="WellFormedWeb"><dir name="Renderer"><file name="Entry.php" hash="45c4795ca01add23d35af6ca1961a27b"/></dir></dir></dir><dir name="Feed"><file name="FeedAbstract.php" hash="65fa012f95547e0e63deb8715038c9c0"/></dir><file name="Feed.php" hash="699463ea19aa24d3cf48d9ddf37d63d4"/><dir name="Renderer"><dir name="Entry"><dir name="Atom"><file name="Deleted.php" hash="65126201b8fb20b29f945956c3c7aa14"/></dir><file name="Atom.php" hash="fd98f2be04963b4a660c49cd0bb9db5e"/><file name="Rss.php" hash="f0e70e6a183416e6c04a1aa58d91b128"/></dir><dir name="Feed"><dir name="Atom"><file name="AtomAbstract.php" hash="2762eb27cc4182026d7cb5d4a2d8e7d0"/><file name="Source.php" hash="b4432fc84152c9922c2a0318043431e2"/></dir><file name="Atom.php" hash="a4e0a7056233cc18c1abcbcf45895b3a"/><file name="Rss.php" hash="b01a32487ec79c8e29848e56d12f4fef"/></dir><file name="RendererAbstract.php" hash="e818b72ef7cccb7e411218194c4a90c2"/><file name="RendererInterface.php" hash="b9d0002ea9fd72117b6438231ca2db9e"/></dir><file name="Source.php" hash="3cce4bf24782f65948e0078eee3af8b8"/></dir><file name="Writer.php" hash="31915fe86b889b38f29cd365dfa2eef8"/></dir><file name="Feed.php" hash="90930372cd8489f1be5480df69e492a3"/><dir name="File"><file name="ClassFileLocator.php" hash="a763041253fb82e55d99e50078f9e791"/><file name="PhpClassFile.php" hash="95812fdfe2ea77215eaf98220970d2bc"/><dir name="Transfer"><dir name="Adapter"><file name="Abstract.php" hash="9f8caf0965ee20c3e394cc9abd39dc64"/><file name="Http.php" hash="98db3d564539a149becd025db2996089"/></dir><file name="Exception.php" hash="825fcee61f10cdfe37140f8053177a3f"/></dir><file name="Transfer.php" hash="3b238f59905a999aa851bd4e7b641d64"/></dir><dir name="Filter"><file name="Alnum.php" hash="4ca46f20de00a3ae2c141f1ceff56bad"/><file name="Alpha.php" hash="5b07ed4ed80ac52058355dc25eab7f17"/><file name="BaseName.php" hash="625ce144adaded5d1a792f2cdff08ddb"/><file name="Boolean.php" hash="8a4ccc8b5fe35cc6371f2a876c1687c4"/><file name="Callback.php" hash="877df95b6818f3919ff98ef2b792beab"/><dir name="Compress"><file name="Bz2.php" hash="85a13672065e12d52a4a53c7d57b5956"/><file name="CompressAbstract.php" hash="e31d6c9f72772def373f5f947ebb4857"/><file name="CompressInterface.php" hash="fea3425ce29a7262ac9aa37ca15e7ccd"/><file name="Gz.php" hash="e1a5c9d4301ba780b0fc2a2ab69b9cef"/><file name="Lzf.php" hash="238dbeb23d34fab2ce1fd53c5728c981"/><file name="Rar.php" hash="ee424491867ca2fce1556bdcf01e0a7f"/><file name="Tar.php" hash="e9fc01174f800ebf4e87294361714fe8"/><file name="Zip.php" hash="1adcddd63511b526c388dbbfb2693ca5"/></dir><file name="Compress.php" hash="17af88fb4588855a0fa2ad0c747e567c"/><file name="Decompress.php" hash="9900b029a91c9c1620903061b15d8b5d"/><file name="Decrypt.php" hash="ea36fb417859a47bc8090908f91c79b0"/><file name="Digits.php" hash="988e652d047ccb2b3f51368702b39932"/><file name="Dir.php" hash="ded6da050ac44e21c8729c4fd74559f0"/><dir name="Encrypt"><file name="Interface.php" hash="02481da5488767e23939a73b434d6728"/><file name="Mcrypt.php" hash="2320868b4e3235e934023f6339edb9ee"/><file name="Openssl.php" hash="37f02c9e5fd864557aca070ca8525e36"/></dir><file name="Encrypt.php" hash="41b1fa4536947b9ce5e4dcadb3bf80b7"/><file name="Exception.php" hash="ee7fa3aa3daed6b376e4fe3ff0533a65"/><dir name="File"><file name="Decrypt.php" hash="f82c770a201d0016ed0054874f39c90f"/><file name="Encrypt.php" hash="63c6232b0c216381bee8c18df751ab59"/><file name="LowerCase.php" hash="664f911dfcba8fb26ad86605eda4ad93"/><file name="Rename.php" hash="d854b8b98abd89db4d4b0eca30a2b496"/><file name="UpperCase.php" hash="9aad43cc07b024188734fe231ec7a80e"/></dir><file name="HtmlEntities.php" hash="6ce1c0425b0b5f48c21649c15ffe1d26"/><file name="Inflector.php" hash="b6b671c8956fe8c359af7739c56867a8"/><file name="Input.php" hash="fc8cc25c2f9da1b1da7b2839eb914c99"/><file name="Int.php" hash="41724f5b9f96f08b6b01281891bc3eab"/><file name="Interface.php" hash="0f810dcab23fc1f455c960af3f317a04"/><file name="LocalizedToNormalized.php" hash="6b98acca5dc278027620e0d5361a316e"/><file name="NormalizedToLocalized.php" hash="27f9795714f46c3d4a143330e77219ce"/><file name="Null.php" hash="fe5c2ff3f08d7ef9ffc140ad251dd6da"/><file name="PregReplace.php" hash="7b0c18825dcc9016d0cc2a0fea8fee53"/><file name="RealPath.php" hash="133f0776eaa042a0712e2d8e7db3ed7c"/><file name="StringToLower.php" hash="9a7352bfa73b4ac825bc2af9fef3c286"/><file name="StringToUpper.php" hash="ec2165f772585dcf346b589bbf9bc716"/><file name="StringTrim.php" hash="ca76b8743fd9ec88290ef11a24d48a03"/><file name="StripNewlines.php" hash="fe69c99129f9bd2b69ea16c0bbfc61c1"/><file name="StripTags.php" hash="78d7393075f2327644e873d4e9196082"/><dir name="Word"><file name="CamelCaseToDash.php" hash="3793e4ef36c6778b9e5df032dfc15b67"/><file name="CamelCaseToSeparator.php" hash="cd445e16f5d3ef145c4b0f35a10b1dcd"/><file name="CamelCaseToUnderscore.php" hash="932bcf0ead2bda7d9ba9544458fe2de8"/><file name="DashToCamelCase.php" hash="705245ae67e4a9eede0bb3c0bf0e6ac4"/><file name="DashToSeparator.php" hash="6edcb2382b8fc7acc8448679d6fb46b4"/><file name="DashToUnderscore.php" hash="1075b2edc67d246d7f300c336a00a745"/><dir name="Separator"><file name="Abstract.php" hash="7c13a127a26229fc8d5e0678e8efcb5f"/></dir><file name="SeparatorToCamelCase.php" hash="87f3c3a2ab24e2146db100710050d873"/><file name="SeparatorToDash.php" hash="d13f2d966ffd8cfb05114fbb9f3906b1"/><file name="SeparatorToSeparator.php" hash="3f70eae82b1616c098cd9aec7be41f9c"/><file name="UnderscoreToCamelCase.php" hash="5f19c37337b901edd5fe5080a8353116"/><file name="UnderscoreToDash.php" hash="2f25783e6e165b827fc113f046f30f44"/><file name="UnderscoreToSeparator.php" hash="b0e92b24b679b3dcbee459cd752a2478"/></dir></dir><file name="Filter.php" hash="383fca34ab08e0a803adb2c7766fad95"/><dir name="Form"><dir name="Decorator"><file name="Abstract.php" hash="8522e625655a35646b477ad4ff99dfe5"/><file name="Callback.php" hash="190782b871a222c75dfc8444b863da11"/><dir name="Captcha"><file name="ReCaptcha.php" hash="39b4156e05bfd86a8bc607c94f437e32"/><file name="Word.php" hash="880894024cfbed08b5f1078076512a25"/></dir><file name="Captcha.php" hash="1d07f76a5ba267e35b801bbfa6437b1f"/><file name="Description.php" hash="4c386b676076f9d5839eea503b633567"/><file name="DtDdWrapper.php" hash="124076232159f0fa26fc9fe67685830f"/><file name="Errors.php" hash="e10d634460b6dae52065a83cd5c3b3a2"/><file name="Exception.php" hash="7540f704e53237cd3a6715d1e480c3b9"/><file name="Fieldset.php" hash="6bd5c5b9ff8e9e489e5a7c560aff175a"/><file name="File.php" hash="c06f2200db61e4ebffa266d99260c726"/><file name="Form.php" hash="c0117ea6a352a32b780baae652d717b9"/><file name="FormElements.php" hash="8cb9c8f03fb877b45696b534c1b39b14"/><file name="FormErrors.php" hash="723036887204776c398e63c715b762fa"/><file name="HtmlTag.php" hash="2b90f769619b1e6624e14922dc2c32ec"/><file name="Image.php" hash="2a1a7dd1624ee71cfc13b7c96b4796e9"/><file name="Interface.php" hash="60d51f6f15d396b5a16519ba5eeec204"/><file name="Label.php" hash="277f64b41efc25890d78eba58db9b780"/><dir name="Marker"><dir name="File"><file name="Interface.php" hash="30667e6ff2ccced89c3b62cf0e13f931"/></dir></dir><file name="PrepareElements.php" hash="0ff6fb16d6c5a748c9c3d3e48037755d"/><file name="Tooltip.php" hash="bb7394628ade765908544c69c6790844"/><file name="ViewHelper.php" hash="c5cc8db2e0cec01b77be69fa2e1b9299"/><file name="ViewScript.php" hash="23ef6fc6fdac5fd8c9105738c5cd3ccf"/></dir><file name="DisplayGroup.php" hash="ee080ba86203eeb41ac17d38877651f5"/><dir name="Element"><file name="Button.php" hash="730df0b76e3957882f877197447d5f1d"/><file name="Captcha.php" hash="0752ad99fb0f43536c91367c70a494df"/><file name="Checkbox.php" hash="e39255d645c7c1b2ac042cc64c2e7cc9"/><file name="Exception.php" hash="c1a78bc6fbcad9d8544ef102ee578bd7"/><file name="File.php" hash="8a78cdb33c6d598fee1f22fe008e7479"/><file name="Hash.php" hash="98a63f7085dc662488f510b8341a450a"/><file name="Hidden.php" hash="4f1b7d49e10c937cbe9bc1f481a24e9e"/><file name="Image.php" hash="050990ff646853c7def62d5912a3a57e"/><file name="Multi.php" hash="546108cee3f938abc94159392b279638"/><file name="MultiCheckbox.php" hash="8da3e1c8f63673889aa82c8a477bc19e"/><file name="Multiselect.php" hash="70685894797a172bfbfeed0b3ca0c8c9"/><file name="Note.php" hash="db0386ab8c66da2df8c912e37b11110f"/><file name="Password.php" hash="4cee94cd5c56812e101f9cae256d79cf"/><file name="Radio.php" hash="088e0a26f8b959fd252edc7080cbe3c6"/><file name="Reset.php" hash="782f1aa0cbe1a792a0d05a51d58d8beb"/><file name="Select.php" hash="ee8919ec27665b02cc44cc0083609878"/><file name="Submit.php" hash="0a97601d86f82bd50d3ea6777937254c"/><file name="Text.php" hash="781ee2e638e37fc613ad760bbd2d30bb"/><file name="Textarea.php" hash="85a7119e8e0fa3377b0576b16aa05c51"/><file name="Xhtml.php" hash="4c20761fbbb7ca24ea9b49ac3cd41e58"/></dir><file name="Element.php" hash="f03fcc6dcd7b3e0da5a36046d36d727f"/><file name="Exception.php" hash="d33a48b9d1ec7e213210383b1f7bca68"/><file name="SubForm.php" hash="ba968be3402ccdf8b4185f4d53234120"/></dir><file name="Form.php" hash="b8fa77ff51bbafd5e695162d6ef2965f"/><dir name="Gdata"><dir name="Analytics"><file name="AccountEntry.php" hash="e12468f4c63d78e8edecbc473933aa4a"/><file name="AccountFeed.php" hash="a2f9b14dbdc470693a82907f57c4d258"/><file name="AccountQuery.php" hash="8f5b153ae38c2c0598dcdd0f4ca851a4"/><file name="DataEntry.php" hash="e45ec9042ba8356cdf29505e1e9e2d0b"/><file name="DataFeed.php" hash="5db9ffeb61cefb3659e9be8400ed20e8"/><file name="DataQuery.php" hash="f42425d8f43dada50bb8f128d8f975f6"/><dir name="Extension"><file name="Dimension.php" hash="38282ab7af5abb515f4aa658f820fc34"/><file name="Goal.php" hash="2c46c1d7db9b5f507a47e4bb121e2b4c"/><file name="Metric.php" hash="8560747659930f23b28cc94bd837440b"/><file name="Property.php" hash="d1ba271f052e44a1152eed24533824b0"/><file name="TableId.php" hash="60e5a4486c861d393b6f3183c2485267"/></dir></dir><file name="Analytics.php" hash="a97cd7d0faa0f65351e65f55c28fcc60"/><dir name="App"><file name="AuthException.php" hash="6f8d23065cd17d239b2cec093015ad8e"/><file name="BadMethodCallException.php" hash="86fe8ce683680f512145d94a22ab21d5"/><file name="Base.php" hash="109e590e151826d3347d1f2f58dcab56"/><file name="BaseMediaSource.php" hash="d1ec6648e8c89711225d42a07e4738d7"/><file name="CaptchaRequiredException.php" hash="7a3e3893b6f8a9c282d920acb9928e21"/><file name="Entry.php" hash="06786f3fe9e30b60c79888be9c70c067"/><file name="Exception.php" hash="82c41ada4e9863867adb2795fe7b1ca0"/><dir name="Extension"><file name="Author.php" hash="2df6f04ec34d35d1d79bbd189a9c53a8"/><file name="Category.php" hash="273bbd08b463d8394b8528294f2f43ef"/><file name="Content.php" hash="ba2ae463fc480db7c017c495c47f8380"/><file name="Contributor.php" hash="b06a5ee82e874422c7053e9bc4efa7a7"/><file name="Control.php" hash="2215659703162befaa49e7a18ad7abe1"/><file name="Draft.php" hash="45da888e1837d3002d099e483cc4e117"/><file name="Edited.php" hash="94503a1886214c959eb189dc1331a1e3"/><file name="Element.php" hash="1ff84c0f8b8e3e9be1edf28774125044"/><file name="Email.php" hash="f3733ecc80e481cd3e35b93df18a216d"/><file name="Generator.php" hash="aef1362208e44f2be51e4094089b4795"/><file name="Icon.php" hash="36d027f0cf96a2deb42b6c1aab0468ef"/><file name="Id.php" hash="9609dfb9218d0b8263086504e6b0d63c"/><file name="Link.php" hash="de21b9578b8592c5b3e3fcfb84419671"/><file name="Logo.php" hash="23c88a04e6897da7a7606733d5880094"/><file name="Name.php" hash="bcefb468fb70012b66b7322b1b9c618f"/><file name="Person.php" hash="5190427185a73d6cd253d4ad37d3130e"/><file name="Published.php" hash="f5b6d374545f8fea7382644413c786ee"/><file name="Rights.php" hash="add154a43b16eea075f70fef1dc0c614"/><file name="Source.php" hash="9b5c51a557d100b8d32f04c2e631d51e"/><file name="Subtitle.php" hash="87ccbc9582dabb57b4e5254c3cdb5419"/><file name="Summary.php" hash="308fcbd2860bac275a68bbaa455d75e5"/><file name="Text.php" hash="bcb0f1d994917499bb98c2045839cf78"/><file name="Title.php" hash="37736e9d970dbfb6508fe95c8b1d4c4a"/><file name="Updated.php" hash="3a00f1cac5e73b47fe960a4568d753a2"/><file name="Uri.php" hash="c8a0fd8b1e0ef4620dcb4f8d3bdf2f02"/></dir><file name="Extension.php" hash="e8d500cede8625e9a513241cb9340b8b"/><file name="Feed.php" hash="2a9b8a370e645cac248df5cec9752bf4"/><file name="FeedEntryParent.php" hash="03a2448db19430ce9d63af5a794c49ee"/><file name="FeedSourceParent.php" hash="ad513f8bba194a7c597d62332e1b748d"/><file name="HttpException.php" hash="e235854ac6db814217beb8e0f4432bda"/><file name="IOException.php" hash="4fe86dbdc8efd68b4f4e91eb720476fe"/><file name="InvalidArgumentException.php" hash="bb79aa3b093b89f2d1740e3de29c591b"/><file name="LoggingHttpClientAdapterSocket.php" hash="6c6fcbec1d914d2f0f1b4c9f9f9d6ded"/><file name="MediaEntry.php" hash="665829aa3a0b00efad9d39516ac20296"/><file name="MediaFileSource.php" hash="33e29faf6b09ad55399f8c4605de560b"/><file name="MediaSource.php" hash="956d976c017eb2969ec6980ba6a10227"/><file name="Util.php" hash="a978ace39e376ebb7a77168bb980e500"/><file name="VersionException.php" hash="46a96dcdf49d163f2b558f6af76770f8"/></dir><file name="App.php" hash="0611ada3705cf91a416144719aa34f4d"/><file name="AuthSub.php" hash="7d6c8fa90f00569465838f7485e6f8c9"/><dir name="Books"><file name="CollectionEntry.php" hash="e9400464091b197c1406c31904c89f46"/><file name="CollectionFeed.php" hash="50eb4262a08af25008fc23dc8ce38261"/><dir name="Extension"><file name="AnnotationLink.php" hash="229515a8187537875bec1df18a216e70"/><file name="BooksCategory.php" hash="94043b4e41582b92bd585a2f6ca55401"/><file name="BooksLink.php" hash="d4d4d737a079e5a06f9ec239156acc3b"/><file name="Embeddability.php" hash="02ea13af1b4c9e4bdf019cf85bd2e1e3"/><file name="InfoLink.php" hash="e901bc048235143eca51ac93750e148f"/><file name="PreviewLink.php" hash="96cc9f7155d4a8420b59dfab337df144"/><file name="Review.php" hash="8263c22752814fc5b8ed79f5b8fb0c64"/><file name="ThumbnailLink.php" hash="d39c8c46fdcd113b6e78b0a291e3fb7e"/><file name="Viewability.php" hash="00ab00c410d09d756c1f4eac2617dd85"/></dir><file name="VolumeEntry.php" hash="c792cd0a1600d1f82b359e4488ca96d6"/><file name="VolumeFeed.php" hash="df63b570832f03352f8fd9caf5dd0ad9"/><file name="VolumeQuery.php" hash="7c4eafbfe2dffe63d19da553d7116784"/></dir><file name="Books.php" hash="2b24e8b1f35eeb6c045c82aaea8ff279"/><dir name="Calendar"><file name="EventEntry.php" hash="3a8929e9b816b58b948bb27c5f5b7b11"/><file name="EventFeed.php" hash="cb77e63f75b7b00e3ad977160bf1df3b"/><file name="EventQuery.php" hash="c87b0d6fb40e7b41509bbf0c72c35563"/><dir name="Extension"><file name="AccessLevel.php" hash="0c08117546cfc5687e831e7c1c911386"/><file name="Color.php" hash="173b3b7765f71816d9474b4d662fa78b"/><file name="Hidden.php" hash="e013d7fa1de0281467fd342b68d82e47"/><file name="Link.php" hash="9024ffbc848c26dc7142791d334ed4c6"/><file name="QuickAdd.php" hash="b27ef7921a5f849c6d3670e80205a826"/><file name="Selected.php" hash="af19756358007c35c1e97b25d3c40f98"/><file name="SendEventNotifications.php" hash="ad25cf943facb4ca07b5eea08b29d6c0"/><file name="Timezone.php" hash="f42b5243c11888a5ba4075b0e9663d64"/><file name="WebContent.php" hash="b7097ddc1f180e4a85097a414b96bba9"/></dir><file name="ListEntry.php" hash="0579d1450de838b1b893f9720a7dacc1"/><file name="ListFeed.php" hash="e21a404f7d250f78fdac64f729d2b377"/></dir><file name="Calendar.php" hash="507e33fa6d185c57b0c2c351c0fbc060"/><file name="ClientLogin.php" hash="d5025122f58267716ea25d7546da7d62"/><dir name="Docs"><file name="DocumentListEntry.php" hash="08219506950f07c0cb16e1196dc4e09c"/><file name="DocumentListFeed.php" hash="dd7d591781ad9cf3293f73bc94e64e78"/><file name="Query.php" hash="e6c962a8f8cfe02d3ca0701b932dd5c9"/></dir><file name="Docs.php" hash="f29d7a621a95734e8b83a4afa5a6fe42"/><dir name="DublinCore"><dir name="Extension"><file name="Creator.php" hash="c56d34f65d24a0ad25e60a4e913fd54a"/><file name="Date.php" hash="54b46f21e08d7ca7d230c6b7e83e7210"/><file name="Description.php" hash="6f4bb927deae9cb5b501b37e4cbdeca7"/><file name="Format.php" hash="a2eb4fd88c1197f1b122adfcca64e4c5"/><file name="Identifier.php" hash="7900202e14b61bf0323069f736521521"/><file name="Language.php" hash="b47e4dafd3fcebd4d11b4ac0806cea70"/><file name="Publisher.php" hash="1660d7ee8e0fa26d24376ed8414849e3"/><file name="Rights.php" hash="1cddf53544c56ad8a29f012f1501501e"/><file name="Subject.php" hash="a287af1b176e22b3f7001e4a8d69129f"/><file name="Title.php" hash="77bbd2f9afb01b6337b03b12c19cd0ba"/></dir></dir><file name="DublinCore.php" hash="6fa896e35490d67182eb013b08ef6d75"/><file name="Entry.php" hash="b2f85f13672d64d288bbcf9824058488"/><dir name="Exif"><file name="Entry.php" hash="cba9027e69ca0d3431f5fa8e84519d22"/><dir name="Extension"><file name="Distance.php" hash="69d8d71b3c8f02fd85e22e72453f5e7c"/><file name="Exposure.php" hash="5b4f1e1c91ada58e661412e391c9167c"/><file name="FStop.php" hash="78c90acf5134d6a8cd7debc8dfff3942"/><file name="Flash.php" hash="bc1c363115d8ee05fc043ae829ca9398"/><file name="FocalLength.php" hash="ba8dba20995e7ad0dc5fbe056a13a431"/><file name="ImageUniqueId.php" hash="3007c391ed138e7db78cca05ad964cb5"/><file name="Iso.php" hash="9b7340beb6cd2f991d0b590da9929207"/><file name="Make.php" hash="b96528e1c95904dcf7a32b6d2b855c4a"/><file name="Model.php" hash="de354ebd3ac53b26c7ba7d07b7eaf74e"/><file name="Tags.php" hash="0b6dca99d61d601cd89ddfe6d9af5990"/><file name="Time.php" hash="880ab5825cab35d85036460d54b18148"/></dir><file name="Feed.php" hash="d102e026496f926fa8dbf0024e75ea22"/></dir><file name="Exif.php" hash="31c98117fa58af3fbc8a9504aed7f05d"/><dir name="Extension"><file name="AttendeeStatus.php" hash="dac3c0490bccbf09f924948ad44232cd"/><file name="AttendeeType.php" hash="3b42bd943b0536d5bde7e735fd8615d4"/><file name="Comments.php" hash="9afbcf4a4ce1d7dd52706e0e8928a8ee"/><file name="EntryLink.php" hash="5a280e630417eb616c257813c3ead727"/><file name="EventStatus.php" hash="61f988f2bfafa564543cabe4e7f86f29"/><file name="ExtendedProperty.php" hash="2d80f08e6e2e79da98134e959b58fbbd"/><file name="FeedLink.php" hash="679a6f5c9ebed486b6b41bac1522fba3"/><file name="OpenSearchItemsPerPage.php" hash="8430c39b6ce1bfb8deb8d2ff4070edf6"/><file name="OpenSearchStartIndex.php" hash="118645c4f8d38b135ebdd9792ba30234"/><file name="OpenSearchTotalResults.php" hash="8e7bbe094d00d023b1ac76184bbc871c"/><file name="OriginalEvent.php" hash="799806cbff3654b92028550a96d3f418"/><file name="Rating.php" hash="96f79437551070a76a0ffc8cf0ce3f93"/><file name="Recurrence.php" hash="da2e478f7368e9fae3e91aa4975769b9"/><file name="RecurrenceException.php" hash="1565fac963250d130a9a18d0e87a9462"/><file name="Reminder.php" hash="84525523e8827d09cda261f02f4c4214"/><file name="Transparency.php" hash="2c99f3896ceaa90632f565d3910eba43"/><file name="Visibility.php" hash="df49298225481498f3a082cc88092ed6"/><file name="When.php" hash="4a02d7db9ade6210d5d01fd401938732"/><file name="Where.php" hash="5d1d9557f1a8a24be5c6076464f35cda"/><file name="Who.php" hash="8d3c827558b62b6fbbdb1786bc6dc8f0"/></dir><file name="Extension.php" hash="3dbf28598313aea3fbcb6ae0a9218373"/><file name="Feed.php" hash="8ae61588a220ed9e612bd0d306ed7be9"/><dir name="Gapps"><file name="EmailListEntry.php" hash="beeaa4d8624538255fd4fa414bf2aa2b"/><file name="EmailListFeed.php" hash="dae8f9390c01ce354aacf7a03b56faa3"/><file name="EmailListQuery.php" hash="38e4255133125d1c3cd461769ff2bbf6"/><file name="EmailListRecipientEntry.php" hash="5042400a2ccf63b598d11098c08a02a8"/><file name="EmailListRecipientFeed.php" hash="e67f7530086c3c3de9bf49ce731ba816"/><file name="EmailListRecipientQuery.php" hash="6b48a9d58feb39241c63a1c448259894"/><file name="Error.php" hash="2739432a885e3aa64112124acf85666a"/><dir name="Extension"><file name="EmailList.php" hash="d83a001f6b79d69a55a534c352df4518"/><file name="Login.php" hash="068572b0a7d975d816564d334aa6cf07"/><file name="Name.php" hash="b895fe7b562ab015bc391c82be75d63e"/><file name="Nickname.php" hash="12ce7eb02489b501861272c13acec59d"/><file name="Property.php" hash="4517466631d6a91e771e3eba6c4d028e"/><file name="Quota.php" hash="18a9c44fdf6146c74b51d123c00bd7d4"/></dir><file name="GroupEntry.php" hash="5c36b2030c5394629693de197c909286"/><file name="GroupFeed.php" hash="13b68ebe7768fabe2f408b5a317bb088"/><file name="GroupQuery.php" hash="fc3f172f6fda1a3b50c6c8c2f3beebd6"/><file name="MemberEntry.php" hash="987fddd8e68938e62d4fb4c80a0b7586"/><file name="MemberFeed.php" hash="aaec820fc096293a6e6f4e5dc9a213a7"/><file name="MemberQuery.php" hash="1fe4b7f18ca161de836a9bf2b18cf123"/><file name="NicknameEntry.php" hash="f0fbcba505a6cac9d64328acf86c168a"/><file name="NicknameFeed.php" hash="80df6633ccad4aea2f1b0ff1fc56fedc"/><file name="NicknameQuery.php" hash="b3fc90f01854679f692ca2d34f1ef867"/><file name="OwnerEntry.php" hash="a66d48e8d46fddf2a9e3ea0330bcea45"/><file name="OwnerFeed.php" hash="98123454cb3cc6dc134d9ad827d297b2"/><file name="OwnerQuery.php" hash="5c829232390b828f06565012b2af3ce6"/><file name="Query.php" hash="a893bb0bebd43c558fac8f7b58477577"/><file name="ServiceException.php" hash="e62bc29c1a67ab44455ebc10fb033887"/><file name="UserEntry.php" hash="327e60ce8bad4fad8aa9d785902a0488"/><file name="UserFeed.php" hash="12a6e44ebb6b809f1ab17884c957d034"/><file name="UserQuery.php" hash="36d9b6e3c53812f1a0b3ba58b8348d1f"/></dir><file name="Gapps.php" hash="006b69cd2b4bb52efbc481cba3ded85d"/><dir name="Gbase"><file name="Entry.php" hash="d1c0594bd7f509ee8b71a0d4c6e93cef"/><dir name="Extension"><file name="BaseAttribute.php" hash="9860f259d07b1d7c48953ac145e91173"/></dir><file name="Feed.php" hash="a3a9a55b4dafc0c71da475d0b8ab4ed3"/><file name="ItemEntry.php" hash="4ad3d155cdb9fce8010cb9ff27d3ff54"/><file name="ItemFeed.php" hash="44ffbf3810fe7d602fa50a219f4d0c6b"/><file name="ItemQuery.php" hash="d85aa16b033dfc7478cbfa9cd38cbd69"/><file name="Query.php" hash="feaa71301ffc82297a5c768b267ff5b2"/><file name="SnippetEntry.php" hash="023249497ffc22f6fbad8645c50dc78d"/><file name="SnippetFeed.php" hash="5197182ca6edcf33fa8452f809597510"/><file name="SnippetQuery.php" hash="17365d8dc24d1da93b8b730c6fe6d864"/></dir><file name="Gbase.php" hash="78c17b83a499c8c31d31762990d83d3b"/><dir name="Geo"><file name="Entry.php" hash="bf5d39448208c58aba61ec64d6a79ad8"/><dir name="Extension"><file name="GeoRssWhere.php" hash="914e0e1155c117f5908f07dadc6ee889"/><file name="GmlPoint.php" hash="a5bf5b02bdec49c06e1aa44763bba1a8"/><file name="GmlPos.php" hash="8ef27447e497a39031e475372a8cb08a"/></dir><file name="Feed.php" hash="c2adb51ac77e046f74ac15f7bcfb53d3"/></dir><file name="Geo.php" hash="2a5a5a2dfa2462e061234e4946fbc8f4"/><dir name="Health"><dir name="Extension"><file name="Ccr.php" hash="5f6686a6c63958e949db8bf5deb92f2b"/></dir><file name="ProfileEntry.php" hash="a2c0dd3747b54680f62089aa25ca26c0"/><file name="ProfileFeed.php" hash="1a41a46d2871e28239c45f23f0b50868"/><file name="ProfileListEntry.php" hash="ee7b66b18af7f3d7406c10c82dbe903a"/><file name="ProfileListFeed.php" hash="1d15e991cf6dc94a83b52ec64aed7a2a"/><file name="Query.php" hash="6dd89b579a5aa4d35de32e74c0df5502"/></dir><file name="Health.php" hash="6b0a156697fe84a09efbde31eea3f497"/><file name="HttpAdapterStreamingProxy.php" hash="6b2964e32bf7c0e110b8ab25445ed53f"/><file name="HttpAdapterStreamingSocket.php" hash="b5b74e5c1cb8206da4b163666a81fed4"/><file name="HttpClient.php" hash="9cee0a291d6c4b11f7358628923f925f"/><dir name="Kind"><file name="EventEntry.php" hash="1f1204191536089911a984770ce0cb47"/></dir><dir name="Media"><file name="Entry.php" hash="9cc1bd304119ff7d428225d3107c3a34"/><dir name="Extension"><file name="MediaCategory.php" hash="8f9345afe735f43c0936d2741556db13"/><file name="MediaContent.php" hash="947b1ca390fa6021690d0a67f81c0c28"/><file name="MediaCopyright.php" hash="947dadff8c8d2708ccb7af6aaa5d928e"/><file name="MediaCredit.php" hash="6d2b9d4be6e3c896fc9c9f9a9581ce9d"/><file name="MediaDescription.php" hash="eeaf98530facd9f42d2e3c46661db3f3"/><file name="MediaGroup.php" hash="9e6dcb6e453393b23d7efb8dde3fb4b0"/><file name="MediaHash.php" hash="2f84bf6db86d3302709347222ad1eba4"/><file name="MediaKeywords.php" hash="6a1a4c5eee620173c5c1995a8bc0aa25"/><file name="MediaPlayer.php" hash="c7d51126d6604718daec1674785e90af"/><file name="MediaRating.php" hash="915d64d3fa690969aa6697c945ef7b28"/><file name="MediaRestriction.php" hash="8921f3bd9d80f7a530b826ab009668c4"/><file name="MediaText.php" hash="557defecdbd618e8917ed5fcd6ccddbf"/><file name="MediaThumbnail.php" hash="e5e272a715318c877fae805dc78e3fee"/><file name="MediaTitle.php" hash="4134d9c00494d89ba462ae9500d1e2bc"/></dir><file name="Feed.php" hash="f67c9bb85cbfbf098fb53ae50a026044"/></dir><file name="Media.php" hash="752e78b67dca41a50ffb85dee3b3e483"/><file name="MediaMimeStream.php" hash="de9b3dd42e0f9f62341fa075bb900c6c"/><file name="MimeBodyString.php" hash="ea742b4f32d34ddac64454b990d4ef37"/><file name="MimeFile.php" hash="0afbad3bc750c1cc5d3f93c54c3c5019"/><dir name="Photos"><file name="AlbumEntry.php" hash="1ab5e6bdc070df30938e912d52eada85"/><file name="AlbumFeed.php" hash="07c42ecd6819d25e428b94f31882c1a0"/><file name="AlbumQuery.php" hash="5da3a372fe52f8c076e9d97a35f823e1"/><file name="CommentEntry.php" hash="f7822566e08ea7b3f74c955abf89a41f"/><dir name="Extension"><file name="Access.php" hash="8d4c3dfe21dbb25632e87659070125d1"/><file name="AlbumId.php" hash="45b3059567bf5e49a6f8edf6b8a16937"/><file name="BytesUsed.php" hash="fd2a43339909b5c7402208dccbdf68c0"/><file name="Checksum.php" hash="5ca31e3430e2e9b747d91c94c000de8a"/><file name="Client.php" hash="2a3276f0666bc92c7d7155bcfbc74f42"/><file name="CommentCount.php" hash="48176e51ea9b1c3c0de6edcf24e25d19"/><file name="CommentingEnabled.php" hash="5b460e8f02be0079867d34af9ab54bce"/><file name="Height.php" hash="d913feb4798b7f3c8ba645bc6ecd1d59"/><file name="Id.php" hash="c5c6fcef6647a1523b99463cfb0a6ebe"/><file name="Location.php" hash="b2b10096aeca032d37e138b09f4ce18e"/><file name="MaxPhotosPerAlbum.php" hash="d1b61411c47e1eb91cb0b80be60998a0"/><file name="Name.php" hash="7e6637d23584ef1ebc3834940fc2ad52"/><file name="Nickname.php" hash="c4345329b15d815de6527d0f8e0277e6"/><file name="NumPhotos.php" hash="160edc7a3b4837435a36befe5378e01e"/><file name="NumPhotosRemaining.php" hash="a3b358f036c2fbefdf93830c92a027fd"/><file name="PhotoId.php" hash="ff997a353b24d944f439702d4ece0966"/><file name="Position.php" hash="cf9f8b0c29c98c1680b2675ebf47e6b2"/><file name="QuotaCurrent.php" hash="a57ff86ba83287a1f145f272ca463756"/><file name="QuotaLimit.php" hash="00c6e94954fbe136a09d4b7ca8f7128c"/><file name="Rotation.php" hash="513a2712c12e10fb61dde21976824b7e"/><file name="Size.php" hash="ab29ba1766a003c1b3ad22db180d18cc"/><file name="Thumbnail.php" hash="6a59c5bebc192e34992e8058ccfd11c1"/><file name="Timestamp.php" hash="b52abdc854529af5cb545691692375ec"/><file name="User.php" hash="3a21cef935fd5fb42f97e308b1997583"/><file name="Version.php" hash="9625bc1c6aefcf580c5fbe0d2f045b4e"/><file name="Weight.php" hash="a8bc3ed41e626323f92adf87410af458"/><file name="Width.php" hash="06f910c1bb1e4e747c38c26ed409522b"/></dir><file name="PhotoEntry.php" hash="ada12abf9bb991fa672ca9a05cb979a5"/><file name="PhotoFeed.php" hash="3b29ec6d750456cdd799bcbaa751e89b"/><file name="PhotoQuery.php" hash="93b28eba3750d181f44fe41181e45663"/><file name="TagEntry.php" hash="8c088bb0af6e8a14eced2775aa3a291c"/><file name="UserEntry.php" hash="15e59c396a645fc30f03cb42d2efc351"/><file name="UserFeed.php" hash="e1498967cc3f5d361c96a0bcde82437d"/><file name="UserQuery.php" hash="26f3ef6227851523817358a97544ebd6"/></dir><file name="Photos.php" hash="c46ff72fca949809ff42f17b0079c069"/><file name="Query.php" hash="100dee31d0a572c4d2e990a96f7e9a0e"/><dir name="Spreadsheets"><file name="CellEntry.php" hash="93cc5079095d6daa6c2147b62131a890"/><file name="CellFeed.php" hash="ca07b9478e1b6ecae9147bc2105c8bd7"/><file name="CellQuery.php" hash="bc7fbfd4e84481e19df568357bc22e37"/><file name="DocumentQuery.php" hash="fd2935ddca76445d1bea58c4f6799ebc"/><dir name="Extension"><file name="Cell.php" hash="917abed62f74a5101511f4449c805140"/><file name="ColCount.php" hash="dba4f0796d79fe80ff15d4dc9bebcd24"/><file name="Custom.php" hash="8f805dee81206d515ab43097cecedb1b"/><file name="RowCount.php" hash="be76b9f5b367cb349576283ab9765d34"/></dir><file name="ListEntry.php" hash="7b8c759afeb6cee40fc5ce231dcf6f2e"/><file name="ListFeed.php" hash="688c2cd0aab8cffabce85d835e4fe077"/><file name="ListQuery.php" hash="2bd4f1eb97b6b3c92c8d2f52fcdbbccf"/><file name="SpreadsheetEntry.php" hash="e43a1862baadf19907770d4a61a56626"/><file name="SpreadsheetFeed.php" hash="2cd1cf91c61a54ea236e1aaf73877009"/><file name="WorksheetEntry.php" hash="7091ab92f732197dbf7e45dcc9c87bf3"/><file name="WorksheetFeed.php" hash="3a4c334028cc35e76255507be1efe061"/></dir><file name="Spreadsheets.php" hash="5706fa18d101c716c73b5f1f6869f33b"/><dir name="YouTube"><file name="ActivityEntry.php" hash="19c73663008cbcbb141c35e8717521aa"/><file name="ActivityFeed.php" hash="5e45cff4ae0df9e35683067769a26386"/><file name="CommentEntry.php" hash="8f17768b645f4165b9601e59fab4045a"/><file name="CommentFeed.php" hash="a391a8ea8c0b27904e365eace8b03458"/><file name="ContactEntry.php" hash="440d8c1c0196e59dd80c6c52e30b2459"/><file name="ContactFeed.php" hash="ae3698b6ccf9d339f7a30b4a5789f698"/><dir name="Extension"><file name="AboutMe.php" hash="8011ef3b524bea9fff089882ea4ed0ab"/><file name="Age.php" hash="e2a9893b2e911b3db507465320cbcf63"/><file name="Books.php" hash="89b35f4bc0027463f91824b5cd2e47cb"/><file name="Company.php" hash="549c355f976cc892cebc6811fe2580a1"/><file name="Control.php" hash="578a083eabf62931b62d095600b80003"/><file name="CountHint.php" hash="666969cd9d5d77e06c9a115fae9de6b8"/><file name="Description.php" hash="8a7dbf10f59ccd573eb0c90cc5971cf6"/><file name="Duration.php" hash="24f2181f720fe6db1cb22503ffee459c"/><file name="FirstName.php" hash="d28dd3cd580a2fa7c6bfb829e8711166"/><file name="Gender.php" hash="260b84dc18e9c01eac563404d0fa5f5d"/><file name="Hobbies.php" hash="2dd89e1c8199ef743d771702ecc95c8f"/><file name="Hometown.php" hash="fda3ebb42524b3ab8d54467887da61f5"/><file name="LastName.php" hash="f19b93c1d745cafe6ecf20c7bc8d0c3d"/><file name="Link.php" hash="d93c9801f25b8c8cb13d87ff3b3b460e"/><file name="Location.php" hash="20909b4d155c9fd517081322b835f306"/><file name="MediaContent.php" hash="1b53bccaa9f1de51c19378fc8c442868"/><file name="MediaCredit.php" hash="4571da70916493177e72f0aebeaa78ac"/><file name="MediaGroup.php" hash="36cca7fb741bb294f4dcb4142733d100"/><file name="MediaRating.php" hash="099d0984cdb2c9110ca259311047d0de"/><file name="Movies.php" hash="464957a1f90eb56899ec503c4ede6ef9"/><file name="Music.php" hash="947c3294f34d0f35ab88c7f7a9c4f4b3"/><file name="NoEmbed.php" hash="1e6e4a5995de606554e7145a0df0b6d4"/><file name="Occupation.php" hash="b33c3053639572a312fec678395d7436"/><file name="PlaylistId.php" hash="af87bcfda7115ae9c55bf3c1f2986754"/><file name="PlaylistTitle.php" hash="79b89ae7bdce993a758fd1bf45188252"/><file name="Position.php" hash="d92a78e714b2f7afdfabd8d09f73ff1d"/><file name="Private.php" hash="93bd6eeaf228e882ccceda591813228f"/><file name="QueryString.php" hash="5e5c57c2e219ef2e5ca3184997d87ccd"/><file name="Racy.php" hash="ad019d20c5c40d12da9cfc9df9daeaec"/><file name="Recorded.php" hash="7af195c7f3f045946f13504cc38522a0"/><file name="Relationship.php" hash="b42aac9538b504662222635a29149436"/><file name="ReleaseDate.php" hash="beb4a4d9830ff40a06816a341de8dd15"/><file name="School.php" hash="51a1ff928489cc7cd3aacc7a7aaf08a3"/><file name="State.php" hash="04cd3d54d4050aafc5ce27e719d234e9"/><file name="Statistics.php" hash="73270160b45c7ec91914467ccda850ef"/><file name="Status.php" hash="aadcb325d6f3b51cae180406d4caf9a4"/><file name="Token.php" hash="8686b59bd2a0048283389bc01acf77bb"/><file name="Uploaded.php" hash="9ee6ea6660e515f1440d92b2ef4d97dd"/><file name="Username.php" hash="c3782552a9accafea073e8f0081e43f3"/><file name="VideoId.php" hash="30fdd4c5cd5b212a1e4c17cd28fbb12b"/></dir><file name="InboxEntry.php" hash="24eb593b56341f919f0bc0446b4b71f8"/><file name="InboxFeed.php" hash="69487f9424ad1686f1b00e2b1f73ad29"/><file name="MediaEntry.php" hash="924fd5fcbfec4c44e965812618c08b6e"/><file name="PlaylistListEntry.php" hash="367ad32e10ea7203408d99bcfae836a2"/><file name="PlaylistListFeed.php" hash="6a2db1a031b1f749231326b4bd57d9bd"/><file name="PlaylistVideoEntry.php" hash="5453811dc274201e95b9ca6450180669"/><file name="PlaylistVideoFeed.php" hash="54be8eb4c90f3a5a4b6ce1ce578f7e56"/><file name="SubscriptionEntry.php" hash="f602292610ce553fb7493cda0bc25cb0"/><file name="SubscriptionFeed.php" hash="576b63779940d7e3576a1c505bff284f"/><file name="UserProfileEntry.php" hash="4eafc0f86b477f85405429572ba1ba62"/><file name="VideoEntry.php" hash="1ef39076a4e9cd95f91bf8d69bf4f52c"/><file name="VideoFeed.php" hash="aa4889f83dab3ed5524583b48a7a5a22"/><file name="VideoQuery.php" hash="a2a973590b187f7314e994d824a6a288"/></dir><file name="YouTube.php" hash="a8dc12d5116ec45b159b59dacddbf946"/></dir><file name="Gdata.php" hash="f1583b57defcf04cb1b35c2875a95ea1"/><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="67d08c9af9c140e31a9ddc2f164571ed"/><file name="Exception.php" hash="edeae8782f6926386f145d8a873d23bb"/><file name="Interface.php" hash="588b60a6607675c8698be8b3fd2d4e22"/><file name="Proxy.php" hash="34368ca022a77f24cf63f769303fba7d"/><file name="Socket.php" hash="6078a103596ba3a8b2544563d252d505"/><file name="Stream.php" hash="14a0106f768a6388688690a54a3eef27"/><file name="Test.php" hash="35e3087f1d6baa3b6fa2cda8228febf9"/></dir><file name="Exception.php" hash="a5f986ab6d87cb83bed91a1caf56ac00"/></dir><file name="Client.php" hash="1390293da783df64744f9133c397085a"/><file name="Cookie.php" hash="a56a600d64c9bae67c66ae784de2fe58"/><file name="CookieJar.php" hash="7d93690c2caf40108c35a66b10e25586"/><file name="Exception.php" hash="b345b84b1e9b8a1ae2478ff04f37fc2f"/><dir name="Header"><dir name="Exception"><file name="InvalidArgumentException.php" hash="02d00d00a945c0595a648ea418fe3673"/><file name="RuntimeException.php" hash="8c166ae41ab4e516abda9289f19e973c"/></dir><file name="SetCookie.php" hash="bd0394babcd18f01c40e1b498e3b13c0"/></dir><dir name="Response"><file name="Stream.php" hash="8a41b22b489629a6766dfb3cb96e0ed2"/></dir><file name="Response.php" hash="97c97e4e6069bf08519201c0527a351a"/><dir name="UserAgent"><file name="AbstractDevice.php" hash="d68516193c17c08361776e107bdd007d"/><file name="Bot.php" hash="e5679a2e30d3f1ef581d508446c1f482"/><file name="Checker.php" hash="0b6bb9cb341b75ca7bfb749cb2c871bd"/><file name="Console.php" hash="93650b34bd1238887e88c238291853c0"/><file name="Desktop.php" hash="9829ee285a2cdc4388326a07644d042c"/><file name="Device.php" hash="72533d95dea2a7fe6366bd2145b5b938"/><file name="Email.php" hash="f0a3fab08e59378c0189073237611af7"/><file name="Exception.php" hash="beb38f75f587ac56cbb7a843f59a84ae"/><dir name="Features"><dir name="Adapter"><file name="Browscap.php" hash="a88ccf8fa0b5aca789f32a08f83c98e7"/><file name="DeviceAtlas.php" hash="725061814353e65cc2d89e2a67a00673"/><file name="TeraWurfl.php" hash="1f91bc3ded39c5b108d8232d18cd17f4"/></dir><file name="Adapter.php" hash="a4dcf44cd31de8969f3e941f9a14d0a5"/><file name="Exception.php" hash="a8fba4a7bf9a1a58225ab313b5fa4dd3"/></dir><file name="Feed.php" hash="716918e5334ac352997eac35ca5956dc"/><file name="Mobile.php" hash="00d3e607c4ac5e298492bd3d7762c555"/><file name="Offline.php" hash="6c1ce88c65a43a63416928292c5f9f5c"/><file name="Probe.php" hash="b4df007dbdeb6ef7c49f599d728eed49"/><file name="Spam.php" hash="a4402ccfc92bdf4c49ed1a27bb1905eb"/><dir name="Storage"><file name="Exception.php" hash="ab40f3958bb905a85cfa5cf14af640d4"/><file name="NonPersistent.php" hash="9c8d459eb114f70df099bd397a542a1f"/><file name="Session.php" hash="6b94c84a472e0a767d42be7e26aec3c7"/></dir><file name="Storage.php" hash="ec42c71aae122ea711cbf87ef261c4e4"/><file name="Text.php" hash="711458780f3c17ad437f3d56b5109321"/><file name="Validator.php" hash="69d6afb8a82293c61a642c791f5a16db"/></dir><file name="UserAgent.php" hash="460734f564ed89053481a1204db01c79"/></dir><dir name="Json"><file name="Decoder.php" hash="be80f4b8fe57afd69752fc51c349dcc8"/><file name="Encoder.php" hash="0282ee4cb81e78771c8829398f64082f"/><file name="Exception.php" hash="949bff931d3430258aa0d8688d70df18"/><file name="Expr.php" hash="5985e830701d7f8d5daeb230ce56b1a3"/><dir name="Server"><file name="Cache.php" hash="149b4bcdb085ccd0d535903aa463a0a6"/><file name="Error.php" hash="f3bec127c343a8e14a7a9b1339ab28aa"/><file name="Exception.php" hash="1b0ac33c450ec1bee800421995576fa7"/><dir name="Request"><file name="Http.php" hash="832d82cb88edefb954c4d4d730d0a95c"/></dir><file name="Request.php" hash="35999aec48306723cd44da4c5a62fe35"/><dir name="Response"><file name="Http.php" hash="a5f156d547e04bd224295be634e864da"/></dir><file name="Response.php" hash="a3c115766d7a5e6e57cb4a27887cad2a"/><dir name="Smd"><file name="Service.php" hash="9aef500f4cef8c72886b6103820397e5"/></dir><file name="Smd.php" hash="c8dce4255950f809a22ee60febb2bc2c"/></dir><file name="Server.php" hash="90dcadb42953db253627a783aafa0b80"/></dir><file name="Json.php" hash="9c8bd17cde28999638cd2f05fe470cbb"/><dir name="Layout"><dir name="Controller"><dir name="Action"><dir name="Helper"><file name="Layout.php" hash="c049699d9228b85c2823d7bfdba7d8de"/></dir></dir><dir name="Plugin"><file name="Layout.php" hash="2af276e070314489ccdd514b841d86ad"/></dir></dir><file name="Exception.php" hash="a479f33598f2c4e1cb228883ae6f22ac"/></dir><file name="Layout.php" hash="6d7b1d2ad0c1bf5d5d1ea058ca5a24f7"/><dir name="Ldap"><file name="Attribute.php" hash="a334347a968defb0fda698c3c54f46d7"/><dir name="Collection"><dir name="Iterator"><file name="Default.php" hash="8f8a4876cf258d6b1f71582a805df017"/></dir></dir><file name="Collection.php" hash="ac57de545867cf7cd1df3d6c113263ca"/><dir name="Converter"><file name="Exception.php" hash="4e029f2da6d5c7df7644bfd2c434c6d0"/></dir><file name="Converter.php" hash="8e09bff7ca34d3051cee4a873f5b58a1"/><file name="Dn.php" hash="b5653205b12da006a91e498ca7fc7dc4"/><file name="Exception.php" hash="e12baa19246087c376b7d5cbf0ab7eca"/><dir name="Filter"><file name="Abstract.php" hash="efc802cd50bc28c4181e5bbab247e725"/><file name="And.php" hash="662ca1c25383de02b569c76bc62a058f"/><file name="Exception.php" hash="4f8ae5e40c68e60f00550dd5ccd7aa34"/><file name="Logical.php" hash="06aad3c5c574bae76adc46927ae21474"/><file name="Mask.php" hash="904d6707c87b202d9b66e1e3532fbd94"/><file name="Not.php" hash="028697704f21551b33dcb7c160369691"/><file name="Or.php" hash="8dec15db06446ad375c61c7f46912d7c"/><file name="String.php" hash="b1cc0c074d1822be6124f6c48e351a86"/></dir><file name="Filter.php" hash="c50df357d992c35c217ac7803ce314b2"/><dir name="Ldif"><file name="Encoder.php" hash="d1116ef8bfa81ce18fd5cbae52942227"/></dir><dir name="Node"><file name="Abstract.php" hash="e84bbf67046f975a1f5775aa0d49348d"/><file name="ChildrenIterator.php" hash="8b0c6775e5111e80938ccc9cb60aed0c"/><file name="Collection.php" hash="11098b8c84df455895877fad99f30a20"/><dir name="RootDse"><file name="ActiveDirectory.php" hash="c5f5e80b8dd2cb1e31ac3e03fc279024"/><file name="OpenLdap.php" hash="dcd6e7ebc3775e6a5cba8485bd78c8d6"/><file name="eDirectory.php" hash="f946fccdb3015b015d3cff00829a6ea6"/></dir><file name="RootDse.php" hash="c247acc47a79441717304abade296309"/><dir name="Schema"><file name="ActiveDirectory.php" hash="85bc7915ab42dae47c2d4fb8e3dba51c"/><dir name="AttributeType"><file name="ActiveDirectory.php" hash="04a142f499e0848e9ae43a64786328d4"/><file name="Interface.php" hash="ae4ab45b50efa4e032e32912d9c6a776"/><file name="OpenLdap.php" hash="a823f4b81c597a3820e4fe67e5454e70"/></dir><file name="Item.php" hash="fe670cbd69aa5863f9f66efadfcd3dd2"/><dir name="ObjectClass"><file name="ActiveDirectory.php" hash="e678fbe8c0e965cf7db01e829adff67f"/><file name="Interface.php" hash="166b71e4032d84ecfc88365d89b1de11"/><file name="OpenLdap.php" hash="428b8707dc060e1f9e7854005c51d58e"/></dir><file name="OpenLdap.php" hash="2e52c69ae03823a1d0f42e83aff2f316"/></dir><file name="Schema.php" hash="2745fb40a9578d326a48718ee91cc5fa"/></dir><file name="Node.php" hash="648c759b832b68b000e8bf08af0339ce"/></dir><file name="Ldap.php" hash="da470d2a2a451bc59b2ed1ecb118ec5d"/><dir name="Loader"><dir name="Autoloader"><file name="Interface.php" hash="5a8847bbf702beb3c5d03d9b6620291a"/><file name="Resource.php" hash="b9e4409e67051a21f4e2ae855c1bd691"/></dir><file name="Autoloader.php" hash="8b501e8e33091a30e52be2094677826b"/><file name="AutoloaderFactory.php" hash="3ec199fa5c2dec860143b37f17b5ce65"/><file name="ClassMapAutoloader.php" hash="2acb3037511952ac7eb2bab70501dcd9"/><dir name="Exception"><file name="InvalidArgumentException.php" hash="4286045d7c3bad36fa3e101f0beadfaa"/></dir><file name="Exception.php" hash="81dbec797bf5464d3dd93886de055be3"/><dir name="PluginLoader"><file name="Exception.php" hash="fba867bd38d0dbb235f86cc6899d834e"/><file name="Interface.php" hash="60638720a3d503c41b6679d1a12c9e59"/></dir><file name="PluginLoader.php" hash="6be3d7edad844778eb79c52494f04eb8"/><file name="SplAutoloader.php" hash="b35315f66536a170485d6a91cc962a4f"/><file name="StandardAutoloader.php" hash="181406bd273d500ef771e5f24b0bd909"/></dir><file name="Loader.php" hash="817eebfff3c19cf057a8bd92f0c9c679"/><dir name="Log"><file name="Exception.php" hash="b163db6d6600897c6d7d9675f5b2082a"/><file name="FactoryInterface.php" hash="950fce8f1016b9149a3afa78cb5d6bdd"/><dir name="Filter"><file name="Abstract.php" hash="588c7a33b8cc18516fb09f45b6e4df27"/><file name="Interface.php" hash="8e207e5fde37a093bc429eca471abdb5"/><file name="Message.php" hash="42c00aa794507e263369816ebd6ecfb9"/><file name="Priority.php" hash="3bc818826edb7d8d47778c71534968ca"/><file name="Suppress.php" hash="6198f609922c91844696ad749f8f988b"/></dir><dir name="Formatter"><file name="Abstract.php" hash="f6b6a3a2f08104b92f02916dfae10819"/><file name="Firebug.php" hash="18bf525dd98a338a0068adc7223004aa"/><file name="Interface.php" hash="f304a62a7dc3774938c9a4c0386e312a"/><file name="Simple.php" hash="e99de8b500f61444ef4ffd6bd44f8b28"/><file name="Xml.php" hash="dc3361c1aeaa94dca0dac28920c7ea8d"/></dir><dir name="Writer"><file name="Abstract.php" hash="79ccb8a60f0146adc3d1019487a99a69"/><file name="Db.php" hash="e9dd86777ca1735ccec177c7e385316e"/><file name="Firebug.php" hash="6227fe3e164c36db1829e4afd5fdddd2"/><file name="Mail.php" hash="3f76aaf2c1bfa288b7f126efd127c306"/><file name="Mock.php" hash="be44a2526cd397f294cb3350334479cc"/><file name="Null.php" hash="7dc63aa32e13ee72975d68873d87d85d"/><file name="Stream.php" hash="5a287635e4c1d74763215959ba19b70a"/><file name="Syslog.php" hash="06022b333a8ca4d896eaea75f92fe543"/><file name="ZendMonitor.php" hash="3e508d727439f6c10212e70617d68b20"/></dir></dir><file name="Log.php" hash="eb362799326368edbb09d03b5ecce1a1"/><dir name="Mail"><file name="Exception.php" hash="8d01b40eca451bee7c9401d2498ae65d"/><dir name="Message"><file name="File.php" hash="7415d6300a134322e1f9b5723f456375"/><file name="Interface.php" hash="37f65eeadf5f7d8c46e5740810a91f31"/></dir><file name="Message.php" hash="0b9280e314b793db259877a3d4873662"/><dir name="Part"><file name="File.php" hash="2973a0c512d8a12ae250f0310e7ab715"/><file name="Interface.php" hash="5a08dd0d4abfeba0e2b6a3bcd0647cb0"/></dir><file name="Part.php" hash="c83162d6c8664bd25b17a33789bc8c76"/><dir name="Protocol"><file name="Abstract.php" hash="75f76eb34f20aef472da005983e4ade4"/><file name="Exception.php" hash="324b88f119661b2fb45e50e03fdbb797"/><file name="Imap.php" hash="4be011d91db7e932867a9ef04b9e3f1c"/><file name="Pop3.php" hash="a3f36e5260b3fdf15ff91afb4edd06c8"/><dir name="Smtp"><dir name="Auth"><file name="Crammd5.php" hash="989efed470312ec3d252f04f48b13f1f"/><file name="Login.php" hash="eeb279a39d84d0c34b5b3c57a0d8e1fb"/><file name="Plain.php" hash="4e4fb49d2c0a4c3cc6326b9362663812"/></dir></dir><file name="Smtp.php" hash="a99437c462526c3ab7c4a16e6dd73dd5"/></dir><dir name="Storage"><file name="Abstract.php" hash="c80a746bb73014c266f2785247770e77"/><file name="Exception.php" hash="8dfb9dc508a506017fa2aba591171706"/><dir name="Folder"><file name="Interface.php" hash="e46d56b2092b8e66b0de59f089f28dbc"/><file name="Maildir.php" hash="2ffec84ff5cebbc06f42a4bf4e8e49a0"/><file name="Mbox.php" hash="a6bc27702d0e9acbc52d83efdbb623c0"/></dir><file name="Folder.php" hash="710f0f79f55eb9c16523b59b3e46026d"/><file name="Imap.php" hash="86cc553b8a10025750989057403776f9"/><file name="Maildir.php" hash="c298cee3127aebf1d902bc6a263cd67f"/><file name="Mbox.php" hash="96e1d239b5d88772aacd245255d35cc5"/><file name="Pop3.php" hash="fe599c6260e22c23dcd3bfd698271b77"/><dir name="Writable"><file name="Interface.php" hash="a5a3487a8b0dcc8c1f957e10b9535c96"/><file name="Maildir.php" hash="f9dc51e0430fed3cb7fb06a6fc46b4c1"/></dir></dir><file name="Storage.php" hash="566fa7311354b78bfa9afd1ae17fd49a"/><dir name="Transport"><file name="Abstract.php" hash="b5e088f0f4a65356307e1e6048558c5a"/><file name="Exception.php" hash="2fc585f21c0c0bbfb8d9218788a99d91"/><file name="File.php" hash="976dec70144df18e87d527ff7e516758"/><file name="Sendmail.php" hash="fbe6f6bdf5a6b750a687e1ab5b572fa0"/><file name="Smtp.php" hash="6f916608a1b6f93dc6d116e8d8f40b94"/></dir></dir><file name="Mail.php" hash="233f0679a2a5101183c73419cc14e184"/><dir name="Markup"><file name="Exception.php" hash="6acb9e012348c31a98e8016f689bd83b"/><dir name="Parser"><file name="Bbcode.php" hash="fe5258254d43407c8ebf45121d5d3443"/><file name="Exception.php" hash="96b47171a5e4994dcb75bfeb964a3261"/><file name="ParserInterface.php" hash="22f4cab8c966e18965cc16bf1ac58a2e"/></dir><dir name="Renderer"><file name="Exception.php" hash="c27375ebcd69a8eb56a5c3e3229ef88c"/><dir name="Html"><file name="Code.php" hash="c919be3dcefb797b425cd65153302f6e"/><file name="HtmlAbstract.php" hash="7dc1ee614c7d125582f34ded495bd5a3"/><file name="Img.php" hash="6a130ace451a6ed0a2d0a1f1ea3bff58"/><file name="List.php" hash="e8474711d02734026d531708832e1310"/><file name="Url.php" hash="6bb6f2015aa632299941bf9997e8110e"/></dir><file name="Html.php" hash="b607c5add3adcb046c58771b79ecdca5"/><file name="RendererAbstract.php" hash="bf2e4d797e26ef28885babcf2d9e2722"/><file name="TokenConverterInterface.php" hash="e5b38c0b3ba387f0df071a35c7fb1f3f"/></dir><file name="Token.php" hash="925b6878c35fd1e0855a73ecf684f25c"/><file name="TokenList.php" hash="590aa72556941d672184f1aca02ef30c"/></dir><file name="Markup.php" hash="70327a385551a40429dbf98def244565"/><dir name="Measure"><file name="Abstract.php" hash="a844b711aca6638ea933630264ab309f"/><file name="Acceleration.php" hash="f6b1c64dd6bacb4f38d91f72cd8db6d9"/><file name="Angle.php" hash="6c7ec7f864050be14c1735017d149b18"/><file name="Area.php" hash="88b0f14de44d235235da841062691dd1"/><file name="Binary.php" hash="5f9e527c1e8d01535d9bfea7105ac76c"/><file name="Capacitance.php" hash="8bff74324cadcd21836b5acc547a544e"/><dir name="Cooking"><file name="Volume.php" hash="334d3bd9a1023acfed66eb41bf307a15"/><file name="Weight.php" hash="d970ef6d6f08a37db72285917d30ccd6"/></dir><file name="Current.php" hash="1747ffe7532a5c7c060343e3271a27f2"/><file name="Density.php" hash="f4cb05733337475f59762b41a29ae3bc"/><file name="Energy.php" hash="2ed086e65b6f7a4ce1280d8ef9d0f1c3"/><file name="Exception.php" hash="d00039899c6aa43c6b250588bbc07e35"/><dir name="Flow"><file name="Mass.php" hash="2d322913557ff2bfc45afc2ab480babd"/><file name="Mole.php" hash="ff0fe19858605f8c65cbc6f1f377aba4"/><file name="Volume.php" hash="66df34980d0aa473755280393b0f0d7c"/></dir><file name="Force.php" hash="9525a6c47d1e4cbaded7b3477d3c4ba7"/><file name="Frequency.php" hash="80bf10cfe7eeebc3d281b7ed11b397ea"/><file name="Illumination.php" hash="98ee18ab173727ba4dc93a3ada6edd33"/><file name="Length.php" hash="7318f5740bfe039f8c6bda66f172251a"/><file name="Lightness.php" hash="ea419ded90ccd0f5c053262458cc80eb"/><file name="Number.php" hash="d06e176f50de23249f33d4f56586970e"/><file name="Power.php" hash="c896cc783192f260057584f2ba881f87"/><file name="Pressure.php" hash="49c451f9eacd6d162ba6bb629e9118e1"/><file name="Speed.php" hash="c601fe3564d6f3d1f8813a0a7013e335"/><file name="Temperature.php" hash="0d5d33464d00562675fd5d801eebe117"/><file name="Time.php" hash="1c8b825d84b6ccffd76906404d92173a"/><file name="Torque.php" hash="1f530a46616ba82d78541493fb321445"/><dir name="Viscosity"><file name="Dynamic.php" hash="5f002bc79a1c1138cacacec371db37ab"/><file name="Kinematic.php" hash="bd10456069dc6d35a3e1713bd4c6dd71"/></dir><file name="Volume.php" hash="0fbf0ca1290f4aa1af5b23982a6914c3"/><file name="Weight.php" hash="a821fffd5941ccd527cc1d0694336b00"/></dir><dir name="Memory"><file name="AccessController.php" hash="a70d4c42eea7b98f61113d798b55259a"/><dir name="Container"><file name="Interface.php" hash="6068d380217bf27b6453cf894edb8695"/><file name="Locked.php" hash="9bc2f25899430f7ad02853e88dfca0a9"/><file name="Movable.php" hash="4c3c042f5e2bcc2531715dde401171cf"/></dir><file name="Container.php" hash="8feed8c3f2b8f5f0e8d688f13c48c2aa"/><file name="Exception.php" hash="3329d69fccf497932b1a2c27e9919c18"/><file name="Manager.php" hash="1a5c0de427d4436a95fb9d2c0953f279"/><file name="Value.php" hash="697a03309f774813690845eac71d4702"/></dir><file name="Memory.php" hash="2e82b15d077661c5c4b8201ea5bab1fc"/><dir name="Mime"><file name="Decode.php" hash="0cd721f3b84a257348cbfcb73919759e"/><file name="Exception.php" hash="994fc2875e99f10a522cb82e4a54b2b7"/><file name="Message.php" hash="4e3dd5e95f8621955641c7e1b4de46c5"/><file name="Part.php" hash="a11ac478688ef12d8cd0ccecff33670c"/></dir><file name="Mime.php" hash="39042a59c2be063d736a04dac55e903f"/><dir name="Mobile"><file name="Exception.php" hash="519a024f65881a7a4237732573710059"/><dir name="Push"><file name="Abstract.php" hash="456f8a825509d342fcfef1439673f54c"/><file name="Apns.php" hash="d8429732ef082dd5db604fea4c8915b5"/><dir name="Exception"><file name="DeviceQuotaExceeded.php" hash="86b9ff4bc83a799a58f7dffea7382284"/><file name="InvalidAuthToken.php" hash="5ad87658c33a7d9cc6f917d0b5920253"/><file name="InvalidPayload.php" hash="25c5f5d11619d662e9274418d98ed4f8"/><file name="InvalidRegistration.php" hash="8658ffa721150d321de50135d2e5a807"/><file name="InvalidToken.php" hash="713a8d260276537743a4d04b4aa81c11"/><file name="InvalidTopic.php" hash="7c829b73a958a1a5b2727d2819061578"/><file name="QuotaExceeded.php" hash="be67af28f9904f0fc42004751daff33a"/><file name="ServerUnavailable.php" hash="ed4b06b1ef3e3c429b90731ae2920412"/></dir><file name="Exception.php" hash="f894173f4a187922ee49522cf8d3353a"/><file name="Gcm.php" hash="920c224bf5d2829b12e860785f1fcb02"/><file name="Interface.php" hash="8ac308916b40869193bfe9f4924c6d8d"/><dir name="Message"><file name="Abstract.php" hash="60010ad2c300cc7aaeef6e09bd1f0eb7"/><file name="Apns.php" hash="3aa335c6ee551991ad704c6ec1965399"/><file name="Exception.php" hash="14efc16a622ee08a4d66f6b966aa8afc"/><file name="Gcm.php" hash="8e5c08acd168e10c7e0b7be393683846"/><file name="Interface.php" hash="aa9b1e963e71262791a2e85f9d5e03d4"/><dir name="Mpns"><file name="Raw.php" hash="cd49049ab99df63e747b3cf21ce49056"/><file name="Tile.php" hash="eeb12c6d00f840c828e8f928ef28e747"/><file name="Toast.php" hash="6b7b461af1ebd47bc8278388762e186d"/></dir><file name="Mpns.php" hash="bfb031f22738438461df23e002feb93c"/></dir><file name="Mpns.php" hash="d027a3baf86b7808b8f5dd097dd748dc"/><dir name="Response"><file name="Gcm.php" hash="02cdfb00622182c505e7c4916fb51397"/></dir><dir name="Test"><file name="ApnsProxy.php" hash="ef5b18b7cac0826d10cca487ab851180"/></dir></dir></dir><dir name="Navigation"><file name="Container.php" hash="ae908f801587df5bbc7a44d94e290365"/><file name="Exception.php" hash="1f907b7d1a68ca8d29b29f8f9694ca3c"/><dir name="Page"><file name="Mvc.php" hash="bb408e6676cc27d470e41f21084d050f"/><file name="Uri.php" hash="45e78f322e869f7570a82cac147f9985"/></dir><file name="Page.php" hash="ecc7fc65c84c45b552ea81d280fc13d2"/></dir><file name="Navigation.php" hash="bee97615ae02af0c039d61863d0b1e00"/><dir name="Oauth"><file name="Client.php" hash="74d6c02debac4961c253da9d8cc2fe5e"/><dir name="Config"><file name="ConfigInterface.php" hash="1cabd35d6a7f0f92529457b4ea62e17a"/></dir><file name="Config.php" hash="a02e7f37acbb42bc34feebc920d49871"/><file name="Consumer.php" hash="3dc938414065746a37763d2b592e1ee5"/><file name="Exception.php" hash="570bf15ce9b8ccf76e4bcd949adeef50"/><dir name="Http"><file name="AccessToken.php" hash="986d7e25f96d5bed67914e08404bbb5f"/><file name="RequestToken.php" hash="f4f86a01a6e424aaa7e8edb99e518f59"/><file name="UserAuthorization.php" hash="758cc6c3df942ac5ac3b103527a99a10"/><file name="Utility.php" hash="9c69fe9d58add25eda7730460eeb4ae1"/></dir><file name="Http.php" hash="cef52b37622bcfb2efd2a9644babc94d"/><dir name="Signature"><file name="Hmac.php" hash="26331323b06095d36ea1b3d8de214c79"/><file name="Plaintext.php" hash="11266c5bf1d868c63fac84ff14c22061"/><file name="Rsa.php" hash="4ea7e936077c094ee6365ee33707c4fb"/><file name="SignatureAbstract.php" hash="09e632d7cfb30720b43cd8e33ca867f7"/></dir><dir name="Token"><file name="Access.php" hash="974b61753e392b577562e7090dec4102"/><file name="AuthorizedRequest.php" hash="2c5a7071f93bfc03e8098a367c1b95ad"/><file name="Request.php" hash="3253abe4f0340e7fa12d6c26c669e1cf"/></dir><file name="Token.php" hash="19cbcf77a287619c7043efc9cf4cc2fb"/></dir><file name="Oauth.php" hash="239174147ad1cac48ff43b86ca768b5d"/><dir name="OpenId"><dir name="Consumer"><dir name="Storage"><file name="File.php" hash="53a1aec62db8e0bf8153d2363b8afdcd"/></dir><file name="Storage.php" hash="96636f4707d5090dd777ca16ff5f9498"/></dir><file name="Consumer.php" hash="d4129677162161a383a8327a8a5f5cb4"/><file name="Exception.php" hash="9ae51477a152a9993db86a2b3e87a792"/><dir name="Extension"><file name="Sreg.php" hash="a46ab3f654e7718b74f256863398070d"/></dir><file name="Extension.php" hash="d0cbcdb2874105fad8d517731ee682dd"/><dir name="Provider"><dir name="Storage"><file name="File.php" hash="78e54dc83e5862422be8c086458815bb"/></dir><file name="Storage.php" hash="a111906ee39dd25c3e8f03edf73a3f0b"/><dir name="User"><file name="Session.php" hash="184de6934deff211975387b3d0eea0c7"/></dir><file name="User.php" hash="1130cc8407f1607fcc19e0e0e7048953"/></dir><file name="Provider.php" hash="e82af61658678702cf9b92879c70494d"/></dir><file name="OpenId.php" hash="3afe8be181b4ee86ebca1531a1bd8b0b"/><dir name="Paginator"><dir name="Adapter"><file name="Array.php" hash="b19b7013fca38d006a2b638b89312764"/><file name="DbSelect.php" hash="3bd5b7dc7a01b4dcb161f396be0b8670"/><file name="DbTableSelect.php" hash="cab2b30b8210b2979b0c6bed4b123fad"/><file name="Interface.php" hash="5762707d8b9db19faf2a773eb78edd76"/><file name="Iterator.php" hash="3a51f92d688197a2967eef55d802f56e"/><file name="Null.php" hash="2e58e92129e83d96b61e5ba5bf679157"/></dir><file name="AdapterAggregate.php" hash="b6ed68617efff6b9dd41ba5d27cde51f"/><file name="Exception.php" hash="bd8961847f8ea166c7e222e2344d586b"/><dir name="ScrollingStyle"><file name="All.php" hash="7a024155b60bcbb024b3ab8418ea1737"/><file name="Elastic.php" hash="a7d8784429dc1e520b3f98d14c5eac09"/><file name="Interface.php" hash="1d6adbef71c9c1966676ede68de7f977"/><file name="Jumping.php" hash="2e2e9f1633d9ec60e0e111a5794aed93"/><file name="Sliding.php" hash="9f768e8bcaf3bd6f12e0e939c00775d4"/></dir><file name="SerializableLimitIterator.php" hash="411f2359e449e170c5dadaa24803a54b"/></dir><file name="Paginator.php" hash="0d3667499c2f0c3a8c9e5907e812b7a5"/><dir name="Pdf"><dir name="Action"><file name="GoTo.php" hash="d1e30bb7d45aedbeaa31b5dc8b40e287"/><file name="GoTo3DView.php" hash="fcd5460403b8433315caeca12418a5cf"/><file name="GoToE.php" hash="599ebb6d2df80852cfca9a9cedb8d6b0"/><file name="GoToR.php" hash="474402a7102d563261bd914a721b36d2"/><file name="Hide.php" hash="8810efbd459a87d1ee9de7cd007d1644"/><file name="ImportData.php" hash="ecd6feef7d654d60b8efc24bf26d4662"/><file name="JavaScript.php" hash="9bdf7f5f8360300bc95e3e293431f425"/><file name="Launch.php" hash="3e3b49828aefff82b9b44b295084e413"/><file name="Movie.php" hash="b65daa361fc8e77f5ffc4ecedb3becff"/><file name="Named.php" hash="7a1ea555152631327d04a9eb263b4a5a"/><file name="Rendition.php" hash="363bd0314e6d20994934dabd3ad63684"/><file name="ResetForm.php" hash="f4637cd51199245ab14aa6021ffe71be"/><file name="SetOCGState.php" hash="301da63cac76237c91818aac076cbddc"/><file name="Sound.php" hash="ee1e489704abce5aa0dee9047bd8b456"/><file name="SubmitForm.php" hash="657a9f4bc9cd87ca3551370d195b7a35"/><file name="Thread.php" hash="ecee0d4d74deafefed77cd0f6798093a"/><file name="Trans.php" hash="d9f99fb44efc3651ca5e2c56fd7e96b6"/><file name="URI.php" hash="7e52db0fd92d4edb87ab4f4e789d45e3"/><file name="Unknown.php" hash="a8602a55e7a0792d6cd0615c9ac23c41"/></dir><file name="Action.php" hash="ec5a813b9a9a0caf8beb63b890c68450"/><dir name="Annotation"><file name="FileAttachment.php" hash="f3864019953d49d9cd83d322f9a54f4d"/><file name="Link.php" hash="bff1663cb2b899d96d2b5e539f516d63"/><file name="Markup.php" hash="ab0f2e3e12ec5c7e75b2daf9851c59d1"/><file name="Text.php" hash="7b507f12f45421db845a74e91a0c78fb"/></dir><file name="Annotation.php" hash="0d098c2160f4b3267e7fd7f367f30290"/><dir name="Canvas"><file name="Abstract.php" hash="364364cb99b19cdf0d622397424e155d"/><file name="Interface.php" hash="1795a31a88af11db1f8eaefae3751d65"/></dir><file name="Canvas.php" hash="00dcbc00ee5b0678292c40c62709bb37"/><dir name="Cmap"><dir name="ByteEncoding"><file name="Static.php" hash="bca21500f7be22a1c6349cce6b489afa"/></dir><file name="ByteEncoding.php" hash="84d9e9e1afe70befb0b7c193516a7ad6"/><file name="SegmentToDelta.php" hash="34570bbef3c618d344e056a65a86310e"/><file name="TrimmedTable.php" hash="1a8eaed30b4393a4ad1972ccfa586275"/></dir><file name="Cmap.php" hash="9d7432c932a1f5260c8752cd0eb09cb9"/><dir name="Color"><file name="Cmyk.php" hash="9024fe208254093dfedb355f1a56bfa3"/><file name="GrayScale.php" hash="ac29a955a5422d31e3c6342c9ba5df7f"/><file name="Html.php" hash="98c75da7b5c1e27d72029a612973c33b"/><file name="Rgb.php" hash="db12cfc9dfbb80831d4b1e5436ff8323"/></dir><file name="Color.php" hash="104cf49d07c358cc85220fc3122e800e"/><dir name="Destination"><file name="Explicit.php" hash="13bd68687766542d36847199a9dd478a"/><file name="Fit.php" hash="1aa3f00fde3170cae69b69bd17786c3b"/><file name="FitBoundingBox.php" hash="b59f2ed44504d9f3df4a8e05450c0f07"/><file name="FitBoundingBoxHorizontally.php" hash="1271088bf2557a2eb8c18f388e1853ee"/><file name="FitBoundingBoxVertically.php" hash="16948b893fe63488b34891f82d409d52"/><file name="FitHorizontally.php" hash="88e880e0528a4f7060d233e687e90667"/><file name="FitRectangle.php" hash="408a9be40986151fff98af1efabe8a28"/><file name="FitVertically.php" hash="136c71dd521fb51103f98a76734fb8c1"/><file name="Named.php" hash="a65c919e6fa48d4453a9581ebb908adb"/><file name="Unknown.php" hash="1a2e8b67ee995941dc43b43070a3971f"/><file name="Zoom.php" hash="c9325d991fc179afcca30c3636e72e1b"/></dir><file name="Destination.php" hash="b7605192c93386f3fd25520d180343dc"/><dir name="Element"><file name="Array.php" hash="b644069461389d8cffe6d3bd1cc49835"/><file name="Boolean.php" hash="d4a4de598d871b0ae391dd72ee4cbd2a"/><file name="Dictionary.php" hash="fa2156732ab46185f1412c3e22c54c92"/><file name="Name.php" hash="be8084d6e0fec7b6941bfcb2cbc93535"/><file name="Null.php" hash="a982c3b2f79e698e80cccc4cd794219a"/><file name="Numeric.php" hash="020e5a151377a7f95b0ab846f4cf5829"/><dir name="Object"><file name="Stream.php" hash="9a4d7197a43ba30df5e1871cf85a05f2"/></dir><file name="Object.php" hash="f0b69fb983587a2f68a1f40e3e417663"/><dir name="Reference"><file name="Context.php" hash="e15ad61d18c94f11179594e9a58cb6d3"/><file name="Table.php" hash="6a90fd67ff295547877255bf8bfbe2a1"/></dir><file name="Reference.php" hash="0725ddc6094e61656354a949986d4def"/><file name="Stream.php" hash="166a0bef11c118de4591b7436a9e999f"/><dir name="String"><file name="Binary.php" hash="f6a6e7ce998124ba104470dcb4734dec"/></dir><file name="String.php" hash="e776be7acc388a17af23bec80954de82"/></dir><file name="Element.php" hash="3595c5f91616d00f51af614feafda5f5"/><dir name="ElementFactory"><file name="Interface.php" hash="d1a6e36aaeee2b4a4a7f8b6111facbec"/><file name="Proxy.php" hash="a07e4d22cba4810f367ca6b7240fbc83"/></dir><file name="ElementFactory.php" hash="024f30704c4c693597c11f4b032dfedc"/><file name="Exception.php" hash="7b3b6c5890b43cd2fb05b68f6282f521"/><dir name="FileParser"><dir name="Font"><dir name="OpenType"><file name="TrueType.php" hash="b493bcd28a5c4006be3f5c0a1081b28c"/></dir><file name="OpenType.php" hash="a5d6ab27fa54d414b01532d4830ef090"/></dir><file name="Font.php" hash="56634e0dcb7ade369b564643c5a5d171"/><dir name="Image"><file name="Png.php" hash="15d071e3ce65f9eb9936ca4149910fb7"/></dir><file name="Image.php" hash="29748c74077a30e3b3d108c316ee1910"/></dir><file name="FileParser.php" hash="4d54f7155401a9fb7df70998a2da9a50"/><dir name="FileParserDataSource"><file name="File.php" hash="1e9148d68ab81b33f2d88c403d9495a5"/><file name="String.php" hash="e4cd122d052ef39e6da5c38ec452d161"/></dir><file name="FileParserDataSource.php" hash="eb883b69beb455a62c8931a878151085"/><dir name="Filter"><file name="Ascii85.php" hash="b65b7f97285f88f9f11265191cf20849"/><file name="AsciiHex.php" hash="ed846de8708cd7026f551d78de57782d"/><dir name="Compression"><file name="Flate.php" hash="faf5cfc2e9c94444e43d7e6944247988"/><file name="Lzw.php" hash="9c28f750f6600ce94877b78ad7c71324"/></dir><file name="Compression.php" hash="73050021440ac2c7b18bd20513157c3f"/><file name="Interface.php" hash="e90f59d18816fbaacd86b59b392686d4"/><file name="RunLength.php" hash="e80a6edbe6fa87c4702d09d65db1a2ea"/></dir><file name="Font.php" hash="51087d7787fad796537357c3ac69dc73"/><file name="Image.php" hash="7877b76dd9e150104b83037266258658"/><file name="NameTree.php" hash="da4cc3e1566938790d1c613174aa23eb"/><dir name="Outline"><file name="Created.php" hash="9d373dc681d5b2805d30b5685ef862c2"/><file name="Loaded.php" hash="d6d0bcbbbc7125de10670b4e6562b59d"/></dir><file name="Outline.php" hash="f26766891dc3d3bce49b037adcfef12e"/><file name="Page.php" hash="13f4483dfd5d93e7e94d273c662b46ac"/><file name="Parser.php" hash="ba36ebc92a1b6e525ed8c0408e251bef"/><file name="RecursivelyIteratableObjectsContainer.php" hash="715f93a595f54a38111141fd5968213d"/><dir name="Resource"><file name="ContentStream.php" hash="a1749fec0cba8e9cb72efb1304de2346"/><file name="Extractor.php" hash="bb8efb4919fa8775f711f61d183a4e12"/><dir name="Font"><dir name="CidFont"><file name="TrueType.php" hash="1290b18c2ed5643477c1e88b0c76987e"/></dir><file name="CidFont.php" hash="382f00c4a207bea2ffd82a5d77da6304"/><file name="Extracted.php" hash="bd8bedaf4a31c4ae1eddf944644ecce5"/><file name="FontDescriptor.php" hash="9fcedd31b44153c7ad83cae939397e42"/><dir name="Simple"><dir name="Parsed"><file name="TrueType.php" hash="e060a25bc471d15d43a51d580679326d"/></dir><file name="Parsed.php" hash="becce62602415adde90984b7590993ba"/><dir name="Standard"><file name="Courier.php" hash="1a8795c6738e56ecc9b223ed823c0e0a"/><file name="CourierBold.php" hash="271652240d7b89827820060a185aef0d"/><file name="CourierBoldOblique.php" hash="f8e6fa84ffdc7ffcb8069c67e813f09b"/><file name="CourierOblique.php" hash="7b4080d45eff2b8fd5d66db97512a8bd"/><file name="Helvetica.php" hash="fdf4947a20fbf3f694f4fe940cec5df2"/><file name="HelveticaBold.php" hash="1340145daef0b6ed9e4d15ede06a0530"/><file name="HelveticaBoldOblique.php" hash="ae26d6990824525b0cb3c99e87674000"/><file name="HelveticaOblique.php" hash="a05d94e11e3e1db842ac7f1795074373"/><file name="Symbol.php" hash="9443a7d26e4c2a752cf3f4ff883ffa05"/><file name="TimesBold.php" hash="b2619f7edcc8abab8ff28a4009123f84"/><file name="TimesBoldItalic.php" hash="433fcd37d348fa4458cf437ea2cdabad"/><file name="TimesItalic.php" hash="76ec1fbba59e77bb848f8696337aadf0"/><file name="TimesRoman.php" hash="953b76c5e03a7858bd8361872e412ded"/><file name="ZapfDingbats.php" hash="548d057f0040392a4828264f24e243cd"/></dir><file name="Standard.php" hash="f332565c96e87d79436790a096f46aef"/></dir><file name="Simple.php" hash="334a3b36ea5235902d79cdb31cd05d73"/><file name="Type0.php" hash="6c0a83ed854fdbb16bf525fcd219a4ca"/></dir><file name="Font.php" hash="6046881c1057ef05d0a420998a05c1a4"/><file name="GraphicsState.php" hash="b51172933cdb59ea271e7a9ae323fe29"/><dir name="Image"><file name="Jpeg.php" hash="0a1a368f9642c0b98d8ff24f0aae7c3e"/><file name="Png.php" hash="f77b42c714316c69714df0a2a94cfb7c"/><file name="Tiff.php" hash="06e9fd0b542ecc53649d868fbb59372b"/></dir><file name="Image.php" hash="dbec25fbc65e673b12f311785249ae4f"/><file name="ImageFactory.php" hash="45222c4b5170b11e9b1fc9f16700f1a2"/><file name="Unified.php" hash="710f5f418d4939a609144eab68a8b797"/></dir><file name="Resource.php" hash="b71cd04a74a88e040f06ea7663ea5e65"/><file name="StringParser.php" hash="5376c86288c13e706f2c76478ae474f5"/><file name="Style.php" hash="8aceb18b61204e8157a46c41bbcdd7e9"/><file name="Target.php" hash="1a2badb1e3ca52a2368a77b0646efef7"/><dir name="Trailer"><file name="Generator.php" hash="2c12f38db376c57935d09f8527fa786d"/><file name="Keeper.php" hash="df14918b0e392a71bd41817f0abfaf55"/></dir><file name="Trailer.php" hash="8069878c1e9320d2b8533cf1e144f4f5"/><file name="UpdateInfoContainer.php" hash="39f4700c55860bb9ec1b3f122258930f"/></dir><file name="Pdf.php" hash="7f96ca856c0dde6e6074711e0db2487b"/><dir name="ProgressBar"><dir name="Adapter"><file name="Console.php" hash="09f7268da0ecd77f2d174f4a8a3de869"/><file name="Exception.php" hash="6a2ed89846b42f86a235044d05555198"/><file name="JsPull.php" hash="582d2e3d4fe457d4c961701b014886d1"/><file name="JsPush.php" hash="229b568b05cf46950fbb3707ca150c01"/></dir><file name="Adapter.php" hash="8297cf770c0ee628158397e3b089c621"/><file name="Exception.php" hash="6fd9c59515c836a7e044c07b146c1e6d"/></dir><file name="ProgressBar.php" hash="581036cf36019829ad17b626f15344f8"/><dir name="Queue"><dir name="Adapter"><file name="Activemq.php" hash="b419df4c2da5f1188e2f9fc07fa17d6b"/><file name="AdapterAbstract.php" hash="77fdf9a85df53d3a3b2a2f5d22e80626"/><file name="AdapterInterface.php" hash="0dcaaa3d94f0c384a3c37e45c7529b3e"/><file name="Array.php" hash="b3227f915782241e3ebdce389d3f0a18"/><dir name="Db"><file name="Message.php" hash="017e049117119a01fd2acf00fac7c5c4"/><file name="Queue.php" hash="0036c67014f3b5787878ecb638088423"/><file name="mysql.sql" hash="487d5a36b9172382351a7cc39d20d221"/><file name="postgresql.sql" hash="42dfaf91f8a425170c9b4b2c9318c875"/><file name="queue_sqlite.sql" hash="b0e5a2e43dfc9a230a5ec397c351eaf1"/><file name="sqlsrv.sql" hash="646346084e937e9239d911485bc0296c"/></dir><file name="Db.php" hash="876370736f86a93dedc206bdaea8ac05"/><file name="Memcacheq.php" hash="f0a6604c99debe72daf655a2f97ddc03"/><file name="Null.php" hash="abbd08fab4a38429460cd70b6170c492"/><file name="PlatformJobQueue.php" hash="0e9187b14fcb15711fc18e6bf0dd1383"/></dir><file name="Exception.php" hash="279bbedb61b1778812827fb636c62bd2"/><dir name="Message"><file name="Iterator.php" hash="11ea9382769f547d17a66ac1a54d655b"/><file name="PlatformJob.php" hash="2988e7c33a68ff837ffd7dcbd835de3c"/></dir><file name="Message.php" hash="fb9762a45a532513ff209e2b4820f871"/><dir name="Stomp"><dir name="Client"><file name="Connection.php" hash="aff6c9c41035654ec0d4a4887b4dd218"/><file name="ConnectionInterface.php" hash="e4adc375b6e177fafbd45e47b93ad1b1"/></dir><file name="Client.php" hash="1d64509385a30e21abb7df5e31aa11ae"/><file name="Frame.php" hash="d909edb1b42697e4f557de5a68368932"/><file name="FrameInterface.php" hash="16c13ddfcf2b1bcc50b85c61dc546646"/></dir></dir><file name="Queue.php" hash="1c9e3ec5bc7508a98b7de1f77ee61ba2"/><dir name="Reflection"><file name="Class.php" hash="ba4973471396d116ba92824b47d313a8"/><dir name="Docblock"><dir name="Tag"><file name="Param.php" hash="2a51f3907ad2ee281175d3cdb28a2e6b"/><file name="Return.php" hash="b0200cc0b804828031ab3a8582dbdcad"/></dir><file name="Tag.php" hash="0eebe17d3442b754d9422f8c9721231f"/></dir><file name="Docblock.php" hash="d0856efe818bee5c5d39645662312ba6"/><file name="Exception.php" hash="c43315831b3596fc86aba74529571aad"/><file name="Extension.php" hash="f4dd6dbfb0d48aabdbf359fa6bfaee9b"/><file name="File.php" hash="47206736078efdd5eefc6527408bd922"/><file name="Function.php" hash="1713773cab56cf753f7f90a1108953c8"/><file name="Method.php" hash="25ecb48f4e4f7029ea6fd759fba663f9"/><file name="Parameter.php" hash="7a34d5982a0dec35c6323160114dcb62"/><file name="Property.php" hash="7ca9b4aca176f18bf89b711b5f0929d3"/></dir><file name="Registry.php" hash="4cf30c96877cfbc7e67e0a1a2d1fb5a5"/><dir name="Rest"><dir name="Client"><file name="Exception.php" hash="2e86578bbe604d335a622957c1b0ae26"/><dir name="Result"><file name="Exception.php" hash="49193abd246224f975676b9bdd41349a"/></dir><file name="Result.php" hash="ffc3f1ee709136ab403949d4274098e1"/></dir><file name="Client.php" hash="b76ff6282552bcd098403cebc7b08ed6"/><file name="Controller.php" hash="86e1b0b6bc3ad11653dfe9e17c7d075f"/><file name="Exception.php" hash="c62bd750b3b4cd33407d99869c600d14"/><file name="Route.php" hash="20875e10d835e380c294d2edfb56b08f"/><dir name="Server"><file name="Exception.php" hash="235457f9f3a4f7720ac2013b51ad4ee9"/></dir><file name="Server.php" hash="ceb61231f7fc67faa657837a9fb2c9a3"/></dir><dir name="Search"><file name="Exception.php" hash="915c3138aac999bdce9426a8acd40556"/><dir name="Lucene"><dir name="Analysis"><dir name="Analyzer"><dir name="Common"><dir name="Text"><file name="CaseInsensitive.php" hash="307dc051465ca81322c5e85e8ec022cc"/></dir><file name="Text.php" hash="758df150a1df6eba4b64004148a672a4"/><dir name="TextNum"><file name="CaseInsensitive.php" hash="e5940381671ed3f7c321b3fda9862881"/></dir><file name="TextNum.php" hash="36acd4b130e2f8b78e2de06ac9b4f942"/><dir name="Utf8"><file name="CaseInsensitive.php" hash="44697c595e22b385d0a7616e7af30ac6"/></dir><file name="Utf8.php" hash="1b7f394340ca0d04c8e6a19fe22d4d23"/><dir name="Utf8Num"><file name="CaseInsensitive.php" hash="9325aa4566ece4546b23c82d1aedb57d"/></dir><file name="Utf8Num.php" hash="76dfe3f7ab2e55f1e8190054dd788790"/></dir><file name="Common.php" hash="04cd47fabbd6c404aff39664da13df9a"/></dir><file name="Analyzer.php" hash="85a3a397e4d2c53d185523e25e7ae53a"/><file name="Token.php" hash="b7c5544e368acd06d81d7539983ed85b"/><dir name="TokenFilter"><file name="LowerCase.php" hash="d3be32b9f01fa4343a427721fc3b82b3"/><file name="LowerCaseUtf8.php" hash="9293ea00a25a3e7f129723c9f74b3b9a"/><file name="ShortWords.php" hash="1e296157ac5b8dc2f80a441811707202"/><file name="StopWords.php" hash="c935b1d071ab560816f3a591e3a662e9"/></dir><file name="TokenFilter.php" hash="7e7caefe49ee420c8b5c1561e84f012e"/></dir><dir name="Document"><file name="Docx.php" hash="e6730cac4ab560138c45c9db700d28f0"/><file name="Exception.php" hash="d1f92a2cc3ea06517d5626e96429a5af"/><file name="Html.php" hash="64e7ae4d564af7e71f44c01e48c8e03a"/><file name="OpenXml.php" hash="b21a3c28a95e7a0c9980db28bbc65842"/><file name="Pptx.php" hash="5a2b150c6c2a98b80e1e7765cec8297e"/><file name="Xlsx.php" hash="cae7aa77e2e49c47ecf8a89f169c629f"/></dir><file name="Document.php" hash="81e9c33cd2320e8344181ac5bf78819c"/><file name="Exception.php" hash="2d392bf05fe81a16cd8a3b10618bc6bd"/><file name="FSM.php" hash="5009e011f0b10421ef6e9c6b2c509753"/><file name="FSMAction.php" hash="54cc85832b139caef30d62a66a8008c5"/><file name="Field.php" hash="62d99dc9804e4f352bb55f69a61e5764"/><dir name="Index"><file name="DictionaryLoader.php" hash="dd18c7bb937d629cd0960ba4e8156307"/><file name="DocsFilter.php" hash="a464c3ab082438689658bd370ea21887"/><file name="FieldInfo.php" hash="49cdf39b3445b209adc9370a9970d834"/><file name="SegmentInfo.php" hash="3e9803053f230d7309cce21a643c9e76"/><file name="SegmentMerger.php" hash="335a52ca7e40a79dd6cb95f72cbaa140"/><dir name="SegmentWriter"><file name="DocumentWriter.php" hash="5061bbd3c4b375f3304813ff93a6401b"/><file name="StreamWriter.php" hash="0f6d8ea058813929a7448a4958a3c7c7"/></dir><file name="SegmentWriter.php" hash="13a8736ed2991f513e57f68e61926a76"/><file name="Term.php" hash="490ae3da5ccd138e9b060792766646bb"/><file name="TermInfo.php" hash="4930aa466ba2eb3b65dae3c02aa03221"/><file name="TermsPriorityQueue.php" hash="32663e0ebb7d0279bbcea377903c12df"/><dir name="TermsStream"><file name="Interface.php" hash="751e8ab0d56bb26f7b795d9530dd2494"/></dir><file name="Writer.php" hash="b7ef933d12a1b2f5376584b2420d7976"/></dir><dir name="Interface"><file name="MultiSearcher.php" hash="3f40f5b499a8ee03957fb21aada499da"/></dir><file name="Interface.php" hash="a78e2d90755e526ac9db7eb1c4185f3a"/><file name="LockManager.php" hash="5f61443ba5976b5fa021fb36bba30371"/><file name="MultiSearcher.php" hash="2fde43036355b990e0ac0227a00b6c8e"/><file name="PriorityQueue.php" hash="5c915507c33213ddb4b4ac613f1f68c9"/><file name="Proxy.php" hash="11944c7b4d9879615fd4f3a5d768aed3"/><dir name="Search"><file name="BooleanExpressionRecognizer.php" hash="3896532815243d89040fecb2fd65f606"/><dir name="Highlighter"><file name="Default.php" hash="b1dbdc2d70bb032a5d2b9f9e11273ea0"/><file name="Interface.php" hash="7dca815c9e9f444b9a2a9765fe349dd2"/></dir><dir name="Query"><file name="Boolean.php" hash="5be6706e75dd3e9ccdfaa0eb22f93ca4"/><file name="Empty.php" hash="2e16007df371f28191f785ab85d4d103"/><file name="Fuzzy.php" hash="e66032fc9f9cb06422cac6da95f7b8f6"/><file name="Insignificant.php" hash="1f61e2f1ef8ff38101f2a85c87b9529e"/><file name="MultiTerm.php" hash="ec939add6f7d0424029b12106385afd0"/><file name="Phrase.php" hash="424cc7d460f4bac0907d0170b60ba625"/><dir name="Preprocessing"><file name="Fuzzy.php" hash="cae1047630f98baf520483fa68af463a"/><file name="Phrase.php" hash="d8afc95f2e9da2a44d9495cbce775c98"/><file name="Term.php" hash="b099d749d723fbb53d3991e3f61458be"/></dir><file name="Preprocessing.php" hash="83dba0878c9ed171628b7a9ac70d26b3"/><file name="Range.php" hash="d8bda3ad418d24e0db7e59c446be13fc"/><file name="Term.php" hash="54e883c87d7368fa5be1e105723db357"/><file name="Wildcard.php" hash="9c1c8ebeca45a6332ede6fab8d5bee54"/></dir><file name="Query.php" hash="2a9f2ceda3cfacd24f892dd8bccd8d28"/><dir name="QueryEntry"><file name="Phrase.php" hash="407da910b0015ff8d95432cc193d608a"/><file name="Subquery.php" hash="a33d941498f632d859bec94a1cb9c10b"/><file name="Term.php" hash="808b02c1c1aeae4316fee3c9c466facf"/></dir><file name="QueryEntry.php" hash="9620d76904656a0727091f449603c662"/><file name="QueryHit.php" hash="6d1727ed01abc54503badc7176955882"/><file name="QueryLexer.php" hash="57a592ea29129b28d1144063e152c878"/><file name="QueryParser.php" hash="569f6439976128dbc471bd42fa9511d9"/><file name="QueryParserContext.php" hash="45c71a353821fc29101c1ae2f8eba02a"/><file name="QueryParserException.php" hash="358f89eaca92ac3175b26c419b317640"/><file name="QueryToken.php" hash="f85c3ac0ab04b5abff04d034cf127f43"/><dir name="Similarity"><file name="Default.php" hash="43f6f75cb50b7c7f344a5bac85ef172a"/></dir><file name="Similarity.php" hash="194c9c6c1c2815a8491952ece299ef9e"/><dir name="Weight"><file name="Boolean.php" hash="537c06e5f44c3d014d98a88a39c834f3"/><file name="Empty.php" hash="0bfe83149630af587846c7d5df63e72b"/><file name="MultiTerm.php" hash="c95f65634ed9d8c2896f5ba66a833f10"/><file name="Phrase.php" hash="51bc4912b1784bfa58841e4bf14fb177"/><file name="Term.php" hash="2e0f6fc3511928f1e94349d375dec8b8"/></dir><file name="Weight.php" hash="49ece1259ec183d66d2a1ccc8c319299"/></dir><dir name="Storage"><dir name="Directory"><file name="Filesystem.php" hash="27006f6d429dda681030da9f50b5eba6"/></dir><file name="Directory.php" hash="25a0d0c262a3c4fa7dbc3f1f11f0a4ab"/><dir name="File"><file name="Filesystem.php" hash="5c2819323a9878475d31eba6992e6abd"/><file name="Memory.php" hash="89bce18491ebcd885736c5c9a790eab6"/></dir><file name="File.php" hash="2b77f8354d79c7dd57330677651f8fc6"/></dir><file name="TermStreamsPriorityQueue.php" hash="a26104e3325d2533afffdfc66dd1ead0"/></dir><file name="Lucene.php" hash="fe6103d1d763df12d670dfe5103defb7"/></dir><dir name="Serializer"><dir name="Adapter"><file name="AdapterAbstract.php" hash="8bd5c797ff2230e804b916545a67694b"/><file name="AdapterInterface.php" hash="cb397638959459eef297b8114ebb0504"/><file name="Amf0.php" hash="734f3143371bffe28f65e144f1d4fde3"/><file name="Amf3.php" hash="05a939a59cad0622a7627572f931e909"/><file name="Igbinary.php" hash="dc0da7256a83c6f0a06582b21b160156"/><file name="Json.php" hash="e62019ed95f69a184f735f1d3d4d32c0"/><file name="PhpCode.php" hash="731fc343849f966c1b532284822060a6"/><file name="PhpSerialize.php" hash="d7bc5453b1c516a6895e62fee2f94ec7"/><file name="PythonPickle.php" hash="6d357071165d5eb07e03abaee5b632c4"/><file name="Wddx.php" hash="4321621736a7d3940a27357608c66c28"/></dir><file name="Exception.php" hash="dd736f6d29e3a1f8d688bdf6b24f8d30"/></dir><file name="Serializer.php" hash="47d6232a605b0fc1b0dfd5bc6738d4a4"/><dir name="Server"><file name="Abstract.php" hash="878b796b9b09bac46361e73e3b76943d"/><file name="Cache.php" hash="8851d8d1c35c11be49192fc875141632"/><file name="Definition.php" hash="c37f863e7395e761f9601a4f918f0fc9"/><file name="Exception.php" hash="1ad53d7cdaadfe1377fe30f61814ce33"/><file name="Interface.php" hash="ef219942e75a7dd72f757ae0fee1fe94"/><dir name="Method"><file name="Callback.php" hash="204c77c05f77dab719f7e8d4d9940990"/><file name="Definition.php" hash="6a7435cbdd3791b656f0f7945e68e724"/><file name="Parameter.php" hash="5bb143b2c5472570019deb5c8df7e13e"/><file name="Prototype.php" hash="e6926328f51c97152380eef1cb9503a1"/></dir><dir name="Reflection"><file name="Class.php" hash="7c3040f1cdaa12303fa3aa8a87bbee33"/><file name="Exception.php" hash="81a1918244112e6992e608c37a128f81"/><dir name="Function"><file name="Abstract.php" hash="baf97034eb2f6541a0b04448cdb0c8ee"/></dir><file name="Function.php" hash="b931e2381290e01a62197a41f7d4a43e"/><file name="Method.php" hash="2589efa5b95e88475509c07460869c1a"/><file name="Node.php" hash="a764c4cdbcfd48911882e73801f55c9f"/><file name="Parameter.php" hash="2cb12fe3fdca85cb9056909277002912"/><file name="Prototype.php" hash="c8f4e9fc01efed6ef3b5a10bab70ddc5"/><file name="ReturnValue.php" hash="bd7392e46dac77ad14597e24fbe9297a"/></dir><file name="Reflection.php" hash="7b01bebd0c5e02694d94946a7ff4cd2a"/></dir><dir name="Service"><file name="Abstract.php" hash="057d0faabba16e34faa0ed6d43ca61af"/><file name="Akismet.php" hash="c63f5c6b7b1be4b2bbedb84a7f026bf7"/><dir name="Amazon"><file name="Abstract.php" hash="16b70230ca4bf9fd43feaedc24416f7c"/><file name="Accessories.php" hash="c0f666b47ccd5ca407ca7ab3e62a28cd"/><dir name="Authentication"><file name="Exception.php" hash="f1ba0e03f16bf019c0246384f6797093"/><file name="S3.php" hash="35c859c9bf7221844df79260142e3e55"/><file name="V1.php" hash="a4f6e5db52a4ae4b8200ac26b1bc413b"/><file name="V2.php" hash="b91365a27a1019d793f3821d50cf0209"/></dir><file name="Authentication.php" hash="5e503da9b9bf0a83fd61326aabaa7bc2"/><file name="CustomerReview.php" hash="970806dbbd0244f317183a7d121dd23b"/><dir name="Ec2"><file name="Abstract.php" hash="add0a48733a5b51010fab03133fcf8a9"/><file name="Availabilityzones.php" hash="0df01ed765ce15c35a783a66d7f8ff44"/><file name="CloudWatch.php" hash="e601ca48308ac50dc3727f992f7e62dd"/><file name="Ebs.php" hash="1f82b128c7b5d35d37b3024b6c42f712"/><file name="Elasticip.php" hash="bfad9fcffa9bcd6ad7d7cff8cec45c64"/><file name="Exception.php" hash="b212f735d14f127feb9a33d220bf2261"/><file name="Image.php" hash="335cf797d7a3a3d49e029ef7ce991bca"/><dir name="Instance"><file name="Reserved.php" hash="6027f89632821d100f27363ffbf293f3"/><file name="Windows.php" hash="f823795a24808167f1b87d91ece5cd1a"/></dir><file name="Instance.php" hash="52e9fb6d557898648a7dd9c71bb9100a"/><file name="Keypair.php" hash="e035010eee1a949d1d2b5b1ddd43e5a6"/><file name="Region.php" hash="7283cb6f54f68c09949e4c0535ed8a3b"/><file name="Response.php" hash="ad34c2acb59516d6075d12294fcf6bd3"/><file name="Securitygroups.php" hash="68c70053d0e4284169a5e2c49cb2ef2e"/></dir><file name="Ec2.php" hash="4a39d1eb801af3fd096582c2428e1371"/><file name="EditorialReview.php" hash="edc54626cf681ff42bdbc3207063e50a"/><file name="Exception.php" hash="25e8e93c6e940a70c57e0d4b6b35271c"/><file name="Image.php" hash="8cb0ff1afc2b9f99b7e4db1c61c27e99"/><file name="Item.php" hash="49164d984e1888291b9a1b0b82df2204"/><file name="ListmaniaList.php" hash="d319a0d6c264c92c22196d6a9a84762e"/><file name="Offer.php" hash="a04c4d2faf859a590fe2e74ef0440429"/><file name="OfferSet.php" hash="cce61ade0766251d602204b65ad5f73e"/><file name="Query.php" hash="a8a6c152fa729f7047f352552bee7367"/><file name="ResultSet.php" hash="b15520c352dfb95481aa26509c84211e"/><dir name="S3"><file name="Exception.php" hash="2fa452933db70802a191be880cec481b"/><file name="Stream.php" hash="62544ad7a8d493023c4a62272a68d4f5"/></dir><file name="S3.php" hash="224a86bfc54f7c6df36b8d5eb3febbd0"/><file name="SimilarProduct.php" hash="abcd839cfcc6c194e0b2ee0461216e12"/><dir name="SimpleDb"><file name="Attribute.php" hash="329401b2dac2ad11141f5077093ce70a"/><file name="Exception.php" hash="72cd6853d02b6c4335292d38f310ea54"/><file name="Page.php" hash="4c6b5dda8a61a932584eaf332ba25ae4"/><file name="Response.php" hash="763d18b153c7296ae4a1acc9dd52fea6"/></dir><file name="SimpleDb.php" hash="26a2419a5c73550f8ef47ac2a7c161ce"/><dir name="Sqs"><file name="Exception.php" hash="4d8c014ecb492938b3234fb250dcc21b"/></dir><file name="Sqs.php" hash="e5a368178455cc62f0c1e6272876e31f"/></dir><file name="Amazon.php" hash="8bf9c8bd3d16372566cc6dda58d26f57"/><file name="Audioscrobbler.php" hash="0931bdaeda5594a4b367fd4901b5444e"/><dir name="Console"><dir name="Command"><dir name="ParameterSource"><file name="Argv.php" hash="6acc204436c9d0de0d1e5d2063dff1d3"/><file name="ConfigFile.php" hash="0ac0fcf2907eed649d9f720d9c98cfb1"/><file name="Env.php" hash="83579d583b977fb4a890933d5795588f"/><file name="ParameterSourceInterface.php" hash="c1161355277be3eefdadb4853d8ee1b2"/><file name="Prompt.php" hash="8a9b67aa3eaa61b7ff33aa0110b129fd"/><file name="StdIn.php" hash="fd5c89a584ce532ae64ce2e607e28e02"/></dir></dir><file name="Command.php" hash="c94204e49bc285a615c281253cb41641"/><file name="Exception.php" hash="e1a199ba28f3255efc3ad5f0c272d247"/></dir><dir name="Delicious"><file name="Exception.php" hash="8b4644f2ad354c3e8c668bf6f4d8757c"/><file name="Post.php" hash="00f3ca873d1da362fe1ed121b1d18c32"/><file name="PostList.php" hash="41dbf9ff7c15a8eaec5153cebc705bb2"/><file name="SimplePost.php" hash="9ae5bac1252734db8bda2c2cbceb901c"/></dir><file name="Delicious.php" hash="2f725816f82a4ba6ebeace7bcaf6e0ff"/><dir name="DeveloperGarden"><dir name="BaseUserService"><file name="AccountBalance.php" hash="00527c426ccf1a886409051b81a0f967"/></dir><file name="BaseUserService.php" hash="7aec679e7bbaaea580a7244e6c480c28"/><dir name="Client"><file name="ClientAbstract.php" hash="922fd5bdf9d4ed857737674484eae117"/><file name="Exception.php" hash="9a61788718e0c9d44981804b2eb22624"/><file name="Soap.php" hash="8575677b6620ceccae0c7e36ecbb2bc0"/></dir><dir name="ConferenceCall"><file name="ConferenceAccount.php" hash="04ce472995714973c8ebca2ef95ad891"/><file name="ConferenceDetail.php" hash="4e0ca84354b12b37174fd453469dd551"/><file name="ConferenceSchedule.php" hash="8850fe1551983b76b5d98cca566ab687"/><file name="Exception.php" hash="46fa1b6e5c62ab1b9d36dd88d08e928e"/><file name="Participant.php" hash="09646f1fb1c6aca425d979a0a8f3ba55"/><file name="ParticipantDetail.php" hash="4cf71bcaf0afba4515a7691db7647ae7"/><file name="ParticipantStatus.php" hash="31f35aa067d043d832f4db126fd4dba1"/></dir><file name="ConferenceCall.php" hash="d70d899eadd1ffb5b068deab554a10ec"/><file name="Credential.php" hash="d7839bc87a0c0320f5c52d1ec1784e41"/><file name="Exception.php" hash="29f4846d088bfa40e1455a3b785d7c16"/><dir name="IpLocation"><file name="IpAddress.php" hash="482d840ccd74144979e284925d7cf9df"/></dir><file name="IpLocation.php" hash="5408d38a8e436030e8b036c8a629fd95"/><dir name="LocalSearch"><file name="Exception.php" hash="2e60fa98bc50fc99a331a4d0f2b9e89f"/><file name="SearchParameters.php" hash="12f6422b808a2daae2b09dd7e274350d"/></dir><file name="LocalSearch.php" hash="68466b6cd3d4f9b7543143882c57c52d"/><dir name="Request"><dir name="BaseUserService"><file name="ChangeQuotaPool.php" hash="5d3f2a59e0bcd051677f7bc44b615849"/><file name="GetAccountBalance.php" hash="ce053b9aa1e0be9ac17a5409d14b7763"/><file name="GetQuotaInformation.php" hash="b64a7f9d7306164f54fe7e4cc715ec9c"/></dir><dir name="ConferenceCall"><file name="AddConferenceTemplateParticipantRequest.php" hash="1a9d86416d1ff6eca5aec233ff9eb3de"/><file name="CommitConferenceRequest.php" hash="fcbe5bb37e5f5f22415c3bb12985a19d"/><file name="CreateConferenceRequest.php" hash="f61a1968663bc9d3f1c012c39d702897"/><file name="CreateConferenceTemplateRequest.php" hash="83efb77f1867caf4063228d947b45a96"/><file name="GetConferenceListRequest.php" hash="59ae2617f32e4da1f2938e17a7422836"/><file name="GetConferenceStatusRequest.php" hash="ab5d0cfa92e4e02d8468aa397d6643f0"/><file name="GetConferenceTemplateListRequest.php" hash="8f70231c7c8168b0ebdd80797675a98f"/><file name="GetConferenceTemplateParticipantRequest.php" hash="b3d266866bcb109df6270af49ad943ec"/><file name="GetConferenceTemplateRequest.php" hash="90900ea15023ad82507aacc56b324ce3"/><file name="GetParticipantStatusRequest.php" hash="ee4bf1b962541e540232a1aa7e76d429"/><file name="GetRunningConferenceRequest.php" hash="984354d70ec3d2086cdcd41861db787d"/><file name="NewParticipantRequest.php" hash="fa6c0fdea17bfe7eefe6cb48b767c8bc"/><file name="RemoveConferenceRequest.php" hash="fdd4ed5e41c1812880f432c01c81836e"/><file name="RemoveConferenceTemplateParticipantRequest.php" hash="a7bdb62c286c07ea8d4d0f9595ef3e94"/><file name="RemoveConferenceTemplateRequest.php" hash="90d7747bdcaede0e9db47f9bb9f37b7f"/><file name="RemoveParticipantRequest.php" hash="a70fcff134bad0169f714a3288fe1122"/><file name="UpdateConferenceRequest.php" hash="c77cf1e720a44a1f2e42284569f38970"/><file name="UpdateConferenceTemplateParticipantRequest.php" hash="7e490ab4deeb31a56c8a02dd2893fe9a"/><file name="UpdateConferenceTemplateRequest.php" hash="92d5e2ed5efae3761356b9519218e77b"/><file name="UpdateParticipantRequest.php" hash="d43c862b1ec41042876566b965ffccea"/></dir><file name="Exception.php" hash="406f9bb341ef005152d886e9ac867c97"/><dir name="IpLocation"><file name="LocateIPRequest.php" hash="aed267a87b727c4e059707fbb3f26472"/></dir><dir name="LocalSearch"><file name="LocalSearchRequest.php" hash="4ac946649fa6a9964502e80e18035f0f"/></dir><file name="RequestAbstract.php" hash="aa3a0676fc64eb9e9180c5ea07e10b53"/><dir name="SendSms"><file name="SendFlashSMS.php" hash="decdc37612b62031cc10d4fc5b3e7abb"/><file name="SendSMS.php" hash="51768e3a9efd7285d7a89528891b28ce"/><file name="SendSmsAbstract.php" hash="10890267d114a4800707d480c8e69e47"/></dir><dir name="SmsValidation"><file name="GetValidatedNumbers.php" hash="3403dadc4d8a05f42841e13c7807d754"/><file name="Invalidate.php" hash="13f0141ee507fa986022c76e6156038f"/><file name="SendValidationKeyword.php" hash="055ca13360c5452ea17bb2af8165c80d"/><file name="Validate.php" hash="0e740f52bd469cfaeaa028ab710374e3"/></dir><dir name="VoiceButler"><file name="CallStatus.php" hash="ba77a0955a0bbca1a0cc6f182caa5c58"/><file name="NewCall.php" hash="2f9d46437137f690c4133344b83a5912"/><file name="NewCallSequenced.php" hash="6c9bbd922104a688bbecd03e2b9877a3"/><file name="TearDownCall.php" hash="7c385a8cdedbb3939dfb4677ccf5ce6f"/><file name="VoiceButlerAbstract.php" hash="bb645f08846a9b958e49ae6d383503e8"/></dir></dir><dir name="Response"><file name="BaseType.php" hash="6773d91efd21c217dd359a1e8783c1db"/><dir name="BaseUserService"><file name="ChangeQuotaPoolResponse.php" hash="3f48d494e8893f1fde2e1d208b3a0767"/><file name="GetAccountBalanceResponse.php" hash="ede8a8039e44cd7b8ea23a509867f8a2"/><file name="GetQuotaInformationResponse.php" hash="40fe52c4751c1c1a2a59bd5764113b68"/></dir><dir name="ConferenceCall"><file name="AddConferenceTemplateParticipantResponse.php" hash="a75abeada13f25ab5e08acde71556e79"/><file name="AddConferenceTemplateParticipantResponseType.php" hash="43d56b3fc83cbc926c777b232c5de9d1"/><file name="CCSResponseType.php" hash="d1978d8ccac5a94d25abed468747e46b"/><file name="CommitConferenceResponse.php" hash="1a7d168117f8b593971b1d151789f432"/><file name="ConferenceCallAbstract.php" hash="b21a441b20ff7af47351b2bf174d0ced"/><file name="CreateConferenceResponse.php" hash="4a6c7607045d5c3a0fef0d95ad3dd547"/><file name="CreateConferenceResponseType.php" hash="ddc37c8a9ed54588af64c8233dba9ab5"/><file name="CreateConferenceTemplateResponse.php" hash="70b3363a1f568ea1148bb26d69796ff0"/><file name="CreateConferenceTemplateResponseType.php" hash="d0707772c6bc7985ac6abc2660598601"/><file name="GetConferenceListResponse.php" hash="a2360be3409f754d4bc63fa388de446e"/><file name="GetConferenceListResponseType.php" hash="de93a57c7e04c58a0056a5821d025e4e"/><file name="GetConferenceStatusResponse.php" hash="6fea10c50219cf248480afef52df1386"/><file name="GetConferenceStatusResponseType.php" hash="e8642eca80c40004d4fdf6689c48e3ce"/><file name="GetConferenceTemplateListResponse.php" hash="057bc49ff242c39d5a2b98e14fef2fea"/><file name="GetConferenceTemplateListResponseType.php" hash="b1a148ae679dd928f8a4b21fe01d6d23"/><file name="GetConferenceTemplateParticipantResponse.php" hash="6e33488888831ec5a71b5f2b313d2abe"/><file name="GetConferenceTemplateParticipantResponseType.php" hash="38f66dce28db97785a6e00d683862813"/><file name="GetConferenceTemplateResponse.php" hash="91c2ed1c33e7352752c1ea09e55a3199"/><file name="GetConferenceTemplateResponseType.php" hash="6ea900dabd473cb3f2a5442cec755f91"/><file name="GetParticipantStatusResponse.php" hash="90c635aca959d23f01c3ce7b77b36c5a"/><file name="GetParticipantStatusResponseType.php" hash="91ad266a6e0679161ce25d95ccc5b68e"/><file name="GetRunningConferenceResponse.php" hash="173d93f239fffebc794bd1e60161065c"/><file name="GetRunningConferenceResponseType.php" hash="0c1e7c349d13d151bbc3613fb22485f1"/><file name="NewParticipantResponse.php" hash="a25f6333ef947e09ea2b5836f2de9713"/><file name="NewParticipantResponseType.php" hash="0ecceed8c0db7ef52dfde13799ef1625"/><file name="RemoveConferenceResponse.php" hash="9869dae85508ce337f8b6cbc1d2270c8"/><file name="RemoveConferenceTemplateParticipantResponse.php" hash="fb9b53f5bcd682f7952decea80813cd2"/><file name="RemoveConferenceTemplateResponse.php" hash="85214ab18645f06bb14826f6b33a2124"/><file name="RemoveParticipantResponse.php" hash="daaea0e907ce7d6905a42756124d871e"/><file name="UpdateConferenceResponse.php" hash="1744d9945710c23732de1d81c54dfb14"/><file name="UpdateConferenceTemplateParticipantResponse.php" hash="0fac82b6d4aac990ab60d54b61eec829"/><file name="UpdateConferenceTemplateResponse.php" hash="c05b342a64624339cd699096d465d029"/><file name="UpdateParticipantResponse.php" hash="b2e7028afd3fcdf0ced96b9507fb6976"/></dir><file name="Exception.php" hash="6c5ab2787b931a630e1bfe3feb1a3c6b"/><dir name="IpLocation"><file name="CityType.php" hash="175dba400f90189b3e6840c75ee9ecc9"/><file name="GeoCoordinatesType.php" hash="c897c955dbbc47025c0158b663a05686"/><file name="IPAddressLocationType.php" hash="6563a2a6e6ebee389d275136b9194ef2"/><file name="LocateIPResponse.php" hash="b2bb99f90db695e8615845cf1411fae1"/><file name="LocateIPResponseType.php" hash="71d398b998c04e3616935f2b4e8582e9"/><file name="RegionType.php" hash="0af52c691557e1c2f19e25b7d48be9b6"/></dir><dir name="LocalSearch"><file name="LocalSearchResponse.php" hash="7a97835b1c925c7397a22dc8d6756174"/><file name="LocalSearchResponseType.php" hash="679463f04fd94e4d8b5fbd5776f1b99a"/></dir><file name="ResponseAbstract.php" hash="92b0d1f8c44467cbfbc3ea11f801b992"/><dir name="SecurityTokenServer"><file name="Exception.php" hash="6d254df57a89306c23e876ccf1333873"/><file name="GetTokensResponse.php" hash="c8beedf79f10ee10d89a1c22601fdd6f"/><file name="Interface.php" hash="8a021ee039041879a7a17b82d0bf515a"/><file name="SecurityTokenResponse.php" hash="49f4ab97580faa6cb998b0891c4059a6"/></dir><dir name="SendSms"><file name="SendFlashSMSResponse.php" hash="2061c74bcf6507bc5b7f0745adb3869b"/><file name="SendSMSResponse.php" hash="4523ff505ecd6091a0674ee1c5940113"/><file name="SendSmsAbstract.php" hash="9f5a90a0d023114d3dea0800ceba3c54"/></dir><dir name="SmsValidation"><file name="GetValidatedNumbersResponse.php" hash="fe6a046d1d9029edbd7a68d5bc5d3147"/><file name="InvalidateResponse.php" hash="276f8a9a781058e1d19e5cf32f7b1c54"/><file name="SendValidationKeywordResponse.php" hash="41b415f3a169ba551d32706cb746ecdc"/><file name="ValidateResponse.php" hash="e650155ba8a3155aec289b28a9a94d5f"/><file name="ValidatedNumber.php" hash="55c981cda45e24adb9a4b41246640731"/></dir><dir name="VoiceButler"><file name="CallStatus2Response.php" hash="ad4fc71a007c12214def4270a710a49a"/><file name="CallStatusResponse.php" hash="0f8d1c9188ee6870416a9c265610a571"/><file name="NewCallResponse.php" hash="59e807ebeb6a8b8ab0d185cd5be4317a"/><file name="NewCallSequencedResponse.php" hash="53dc07e3dbe1d54ecd7259b904713260"/><file name="TearDownCallResponse.php" hash="8ab108d972048fb736985fa405e2e146"/><file name="VoiceButlerAbstract.php" hash="0e0bf53a24b685c22e564d8845e29d6c"/></dir></dir><dir name="SecurityTokenServer"><file name="Cache.php" hash="f593ec47d02a48eb5fdc7d05e3c9308d"/></dir><file name="SecurityTokenServer.php" hash="b8af29212d9a3d8bc3dd5e196a475cbc"/><file name="SendSms.php" hash="7611ba6d7a0c3a8ba48cea17132b54ae"/><file name="SmsValidation.php" hash="fc6f19376d84ad91b77242006337e887"/><file name="VoiceCall.php" hash="bbdc2252179764a1c9862920bb5dbb25"/><dir name="Wsdl"><file name="IPLocation.wsdl" hash="c6d3ec9355a53217ad19e3a88bf93d58"/><file name="IPLocation.xsd" hash="828d9148850480554d495d5e3136e8ad"/><file name="ODGBaseUserService.wsdl" hash="f3f1b7f55039ada10b478442379bd0dc"/><file name="ODGBaseUserService.xsd" hash="bf1ebd5fac02d016dd0448da2cbe604e"/><file name="SmsService.wsdl" hash="d6f841c5f5c937d969b33b35ae064872"/><file name="SmsValidationUserService.wsdl" hash="54b3bc77215341815f463a67ab1618b1"/><file name="TokenService.wsdl" hash="1e114a47c300e39ccfae7aab5554b836"/><file name="VoiceButlerService.wsdl" hash="7295acf53bff893089620a0cd2c5aebf"/><file name="VoiceButlerService.xsd" hash="987d9ff2acf4c96325fb76577149f232"/><file name="ccsPort.wsdl" hash="8ce7db8dd24a15728a0d807b1d96c678"/><file name="ccsPort.xsd" hash="fa40ee2be9265fbbae88939636c047a5"/><file name="localsearch.wsdl" hash="e8b8663a0188732466b2e8d360b49611"/><file name="localsearch.xsd" hash="49309d306556a321d32349831ddbd193"/></dir></dir><dir name="Ebay"><file name="Abstract.php" hash="2e334688b614c983b6a7ce3592e08899"/><file name="Exception.php" hash="83aa9409ac7d1e2bf9fd83e86c39a6c6"/><dir name="Finding"><file name="Abstract.php" hash="7238678f990b585b50271ceafe5058f3"/><dir name="Aspect"><dir name="Histogram"><file name="Container.php" hash="45aab272db8949fc7ef41c1f5b9a5d65"/><dir name="Value"><file name="Set.php" hash="6a00192243d8ab215f368459e932d145"/></dir><file name="Value.php" hash="ffd36e8de497a77bd42cccb63ce3235b"/></dir><file name="Set.php" hash="c39339e0e65827c882eac9fa8d4d4fff"/></dir><file name="Aspect.php" hash="df96cb57c1c2b88a8244384894f1b9dc"/><dir name="Category"><dir name="Histogram"><file name="Container.php" hash="e99d9fdf2028e7f627fa7692d6e5e5af"/><file name="Set.php" hash="d10aeaf449c591a7884a38a1b5f90399"/></dir><file name="Histogram.php" hash="5fda3e21a2a68bbca36838425d54c454"/></dir><file name="Category.php" hash="aef46c1abec0621af48a4398de94bca0"/><dir name="Error"><dir name="Data"><file name="Set.php" hash="51d6f2c75eb549150dbb4255a747e238"/></dir><file name="Data.php" hash="06579aec01d55e0e27e48b66b32814a5"/><file name="Message.php" hash="f0082bf2e41b9fa997891d55536d6c94"/></dir><file name="Exception.php" hash="0d04308f626b6d80255403034766b93f"/><file name="ListingInfo.php" hash="37689bb7f7f1312e0a8690b1ec55d17f"/><file name="PaginationOutput.php" hash="dbd144ea4155492ca485092140ed7342"/><dir name="Response"><file name="Abstract.php" hash="13c8ef07cd6c8b9e0b54b183099d3c2d"/><file name="Histograms.php" hash="7e67ea07bdf9e34cb277b87cdad8db8c"/><file name="Items.php" hash="87e78262a0463b3689f75ade1a97bf0d"/><file name="Keywords.php" hash="501b1eb2db688abcb8926a924b2467c4"/></dir><dir name="Search"><dir name="Item"><file name="Set.php" hash="72dc95aa03723a96c6ad4e16bb6c1f04"/></dir><file name="Item.php" hash="8cc709c5b81a662e1b42f6fdcfbcd057"/><file name="Result.php" hash="bde45f1eff1c6745093e1fb16a25fa21"/></dir><file name="SellerInfo.php" hash="0a3e7e31682c1b4139860b692e3a7a93"/><file name="SellingStatus.php" hash="40cc9f7feb5534c9b7ffd77cde164d8e"/><dir name="Set"><file name="Abstract.php" hash="d68b570966c8c13d07ecc8e1c093a3f8"/></dir><file name="ShippingInfo.php" hash="ef20bffb5c3917bd631a79f6520aaa47"/><file name="Storefront.php" hash="59e0796869417ef09b2fabf17a0f51a2"/></dir><file name="Finding.php" hash="38297aa7141bd29cb58f499a6f301958"/></dir><file name="Exception.php" hash="065ed88e73a47544f5432781b553b095"/><dir name="Flickr"><file name="Image.php" hash="c18c420085a325a88aa32c6e8940febe"/><file name="Result.php" hash="3dae64d1fed5642f400e5a3ed34001e0"/><file name="ResultSet.php" hash="1141813d476af74ac4482982352df257"/></dir><file name="Flickr.php" hash="80ee3a6a56f644931629923efaa74f58"/><dir name="LiveDocx"><file name="Exception.php" hash="b7c0f8f23822ab34863ae7c8ba65fca0"/><file name="MailMerge.php" hash="9c3df9f5097d2426f98f3e4afd5417b2"/></dir><file name="LiveDocx.php" hash="bb79b5d68e67e91aa7c6678cf9d33fe5"/><dir name="Rackspace"><file name="Abstract.php" hash="38c670e3ba06278b4fed19a7a20ffa09"/><file name="Exception.php" hash="0e02a57f8eb16972b101ec5b2d5ee5c8"/><dir name="Files"><file name="Container.php" hash="59b5965b06c12c8f32f191d6d81578ed"/><file name="ContainerList.php" hash="60cab750d4475f791b0f6ef9487b2b5f"/><file name="Exception.php" hash="ff4c1a6d5b3c15b0134eea798aaebb5a"/><file name="Object.php" hash="fa7d117f207e2a26dfa5db744a098cdf"/><file name="ObjectList.php" hash="d2eaf4ebe570b3ca456844b294cfc6f6"/></dir><file name="Files.php" hash="fba4bd666821a5eec5cf17f5f91dd15a"/><dir name="Servers"><file name="Exception.php" hash="90e7248491ba6728731b35821a6797b3"/><file name="Image.php" hash="6977cee9fc642f32c2a3dd9b99739ab6"/><file name="ImageList.php" hash="0bc789d18d41f62ae1db82159487edc0"/><file name="Server.php" hash="73f6c2a5e062bf36b3b89ed8d1041eaf"/><file name="ServerList.php" hash="f76bf22857872982ce35e7afa2ea49f1"/><file name="SharedIpGroup.php" hash="75bc0d1b089228114a5bdbbc764f6799"/><file name="SharedIpGroupList.php" hash="97feec662c70d87bf02c0dd689d59962"/></dir><file name="Servers.php" hash="d7c9cd6f524ef033e9c4836623171ad4"/></dir><dir name="ReCaptcha"><file name="Exception.php" hash="e49c53a3c431f49911028b571a76bc06"/><dir name="MailHide"><file name="Exception.php" hash="fc56e06dc9697c40498f1015c0e76c08"/></dir><file name="MailHide.php" hash="ff143c31b0aaac1c852ae438ccc57a4a"/><file name="Response.php" hash="10d73062279da9040e445fe8d1820c36"/></dir><file name="ReCaptcha.php" hash="518a917f321d64422010babcdc82921a"/><dir name="ShortUrl"><file name="AbstractShortener.php" hash="7e0fa90e0324b377677bd8847412ffa5"/><file name="BitLy.php" hash="3e07fa8e265d44e7225af2f11ac75607"/><file name="Exception.php" hash="fa58bd8ee297581ecafe8e15d9c41858"/><file name="IsGd.php" hash="5d18b0c134f1da253893391c720144e7"/><file name="JdemCz.php" hash="6892d0e3e81cc3aeca234d4fb5164ac5"/><file name="MetamarkNet.php" hash="747c5d10917401f1d0d11ba38b1af8e2"/><file name="Shortener.php" hash="64e2ceca93f66c375605e62d6431a628"/><file name="TinyUrlCom.php" hash="1b7f09510d1b029c117e6c59c5419714"/></dir><dir name="SlideShare"><file name="Exception.php" hash="67b547c02b4b9c9440f5c11e570171f1"/><file name="SlideShow.php" hash="9d01060ec6c7a7583a21c824a3e74e21"/></dir><file name="SlideShare.php" hash="1cdc74e57a3be59df8d702bc3d9f7362"/><dir name="SqlAzure"><file name="Exception.php" hash="24d9e2d3dfca7d6ce54137652027152c"/><dir name="Management"><file name="Client.php" hash="e46b9564db9ae2344357919b4760ac4f"/><file name="Exception.php" hash="731e875bfd4df360b37ca082877bc1c6"/><file name="FirewallRuleInstance.php" hash="f564f5454ee9cb2b1ffa97499124d0e7"/><file name="ServerInstance.php" hash="7f3198f120d54ca4b70b5f58399cf0ab"/><file name="ServiceEntityAbstract.php" hash="72ca3fc5ef5341bf549685beb08dad5f"/></dir></dir><dir name="StrikeIron"><file name="Base.php" hash="0b1451704136ab44598ac7204bde94a1"/><file name="Decorator.php" hash="68741c986d506462846a6aa007f94cef"/><file name="Exception.php" hash="e61ee74d3ae19b3e61c1894264d6530a"/><file name="SalesUseTaxBasic.php" hash="43823d20d58aaf73be598f5282e7f841"/><file name="USAddressVerification.php" hash="f5dd585a282a046ebfb95125c29ed866"/><file name="ZipCodeInfo.php" hash="76beb6125d1035ffd7e67101cbd9df44"/></dir><file name="StrikeIron.php" hash="7eca35cee7479ac035ec83f456ddb2ec"/><dir name="Technorati"><file name="Author.php" hash="38cc3b4c27dc3db1a9b8fe956111274e"/><file name="BlogInfoResult.php" hash="ef42384e8074f95433bfc78b5e479414"/><file name="CosmosResult.php" hash="922fdd5aea26f6b2b732e4a02cf0d45f"/><file name="CosmosResultSet.php" hash="7c4f9e087a017ee14b6243f37bdfc41e"/><file name="DailyCountsResult.php" hash="711f244404005a234e4ccdbfecd4c115"/><file name="DailyCountsResultSet.php" hash="7cbccf9e97147a3356aebec2ba5f8df0"/><file name="Exception.php" hash="ad26c4ad4a97e561b3a5df9d129f9873"/><file name="GetInfoResult.php" hash="cbbf30f47eb02843d0b00ffd66c609f5"/><file name="KeyInfoResult.php" hash="0bdfff2ec4ba193ae494aaa63149dd87"/><file name="Result.php" hash="d1d832275e95ecac32379f6a64d4753d"/><file name="ResultSet.php" hash="91fd5f5149f8cf0d64219f97743eed5b"/><file name="SearchResult.php" hash="2365e57d7effdd5c54efdf05aa6a2109"/><file name="SearchResultSet.php" hash="30c0b443d3efbee33e1aaff533f70200"/><file name="TagResult.php" hash="82f22b811ededc15b4ae9a0da08c9ed6"/><file name="TagResultSet.php" hash="44bf9e20d45051480abf4afd92c49a69"/><file name="TagsResult.php" hash="5772d64d211700ea87ae677a72e05ab0"/><file name="TagsResultSet.php" hash="d010e49ebe3c43952fc80f3ec0240d14"/><file name="Utils.php" hash="254e294147aa97502659b4346e5b29d1"/><file name="Weblog.php" hash="54306d9da28408f9e236b51cd097e235"/></dir><file name="Technorati.php" hash="879270280d246c292435873a294ce799"/><dir name="Twitter"><file name="Exception.php" hash="d5a3fb65437ac5663d5262b19c226483"/><file name="Response.php" hash="f78d457745cd7df85d83b33e9b43a01f"/></dir><file name="Twitter.php" hash="8b3dc7c575b35c1351a9a00afd1b57c5"/><dir name="WindowsAzure"><dir name="CommandLine"><file name="Certificate.php" hash="82f6c9535209f9d9800b1ec5227ea5a8"/><file name="Deployment.php" hash="d77fb324a62e1d5bbec2ce07dbcd6051"/><file name="GetAsynchronousOperation.php" hash="da2b5c820d693a4fdcdc5f53378a317c"/><file name="Package.php" hash="4ed8d218b529fa358b9bad365caeda1c"/><dir name="PackageScaffolder"><file name="PackageScaffolderAbstract.php" hash="d84cec7780e3137e81d0e2e35c6ff546"/></dir><dir name="Scaffolders"><dir name="DefaultScaffolder"><file name="build.bat" hash="651c7fb8b72233f40f4f25ca8905573b"/><file name="index.php" hash="894c44229a940ea713205338f8e490f7"/><dir name="resources"><dir name="PhpOnAzure.Web"><file name="Web.config" hash="65f639e413e4ff122d92623a1c14b2ae"/><dir name="bin"><file name="add-environment-variables.cmd" hash="b0e00d591398ec40968189bc4e35c139"/><file name="add-environment-variables.ps1" hash="19a5afae543fd10d118ad21136fc4bec"/><file name="install-php.cmd" hash="8248bad7c6981ab8f8ad34cbb6e224c3"/></dir><file name="diagnostics.wadcfg" hash="5188e0200f5446cae89c1be78db568c2"/><dir name="resources"><dir name="WebPICmdLine"><file name="Microsoft.Web.Deployment.dll" hash="ce4bedba97839fb3b3991c9e76d9a5f8"/><file name="Microsoft.Web.PlatformInstaller.UI.dll" hash="c692c64ac1ff35a256b05b3d0389d77a"/><file name="Microsoft.Web.PlatformInstaller.dll" hash="b3c7917c493dc73aab9ad4f3b32d3722"/><file name="WebpiCmdLine.exe" hash="23ee0847ce84831042e2094f8bb946a7"/><file name="license.rtf" hash="e19c7c8161a0d2cf8cd2bfa815edd707"/></dir></dir></dir><file name="ServiceConfiguration.cscfg" hash="aef39d43590593be9d2fe5fe4a3b5c80"/><file name="ServiceDefinition.csdef" hash="cc148db5e38df6777513c343f0552408"/></dir></dir><file name="DefaultScaffolder.phar" hash="7213da0e7d624e8c2a4ba1f3b5ff05eb"/></dir><file name="Service.php" hash="ff88b79b64947f883986e77838d8cb24"/><file name="Storage.php" hash="8944ded3eb414aa4826b6f53040049d9"/></dir><dir name="Credentials"><file name="CredentialsAbstract.php" hash="d4f022ee969ebb28059bb4fe1dc15bbd"/><file name="Exception.php" hash="46253077f849f4d86ff19bcd5c4ffbb2"/><file name="SharedAccessSignature.php" hash="b812dfc04bcc4349faa4b684e3c17ffe"/><file name="SharedKey.php" hash="d09970fb25d6649fc3626d016e57a71a"/><file name="SharedKeyLite.php" hash="a7af3a465e3b62edddd79fcfb8b5bfd0"/></dir><dir name="Diagnostics"><file name="ConfigurationDataSources.php" hash="164e443f79bf6b018796cbe4ace8552e"/><file name="ConfigurationDiagnosticInfrastructureLogs.php" hash="5ed3b44951c19fe3899d77e57777ccca"/><file name="ConfigurationDirectories.php" hash="ac9628ef7d6d5291b4a9755ffa83c4bc"/><file name="ConfigurationInstance.php" hash="2ffcb3db9f9ecfe5764d497f08175c1c"/><file name="ConfigurationLogs.php" hash="79cb3324521884a79c422318e9df0996"/><file name="ConfigurationObjectBaseAbstract.php" hash="574ad31edf5de775857d4d9818e09515"/><file name="ConfigurationPerformanceCounters.php" hash="f518fc30a51d61ee73f44fd54304d115"/><file name="ConfigurationWindowsEventLog.php" hash="7b071634e38e532d5faf245310846396"/><file name="DirectoryConfigurationSubscription.php" hash="5c72f815ecb4a4b619a43b05e0767d3e"/><file name="Exception.php" hash="ecc6ffb64bcd2b7e219b9e57ae8261c4"/><file name="LogLevel.php" hash="b63f1b837619bd6475f30b5c2862354b"/><file name="Manager.php" hash="0d92a4ee3426b0a3fa98efabad20850e"/><file name="PerformanceCounterSubscription.php" hash="f3793033b70429e761b5715d26a9b052"/></dir><file name="Exception.php" hash="ae2961639357d61fd0edbb1f8b19e600"/><dir name="Log"><file name="Exception.php" hash="f293efa4c7d400034fdd32b61e398d75"/><dir name="Formatter"><file name="WindowsAzure.php" hash="d2803e471ad8f151337b9b06adf840e2"/></dir><dir name="Writer"><file name="WindowsAzure.php" hash="898cc3aab9ed4a1143ad98af4c82828f"/></dir></dir><dir name="Management"><file name="AffinityGroupInstance.php" hash="999fccb597ded5e9bb1a3a49d0461238"/><file name="CertificateInstance.php" hash="e38186727c337efeb26e1edb3395c3aa"/><file name="Client.php" hash="7ea9a8aeec1b66c29127ce846788caeb"/><file name="DeploymentInstance.php" hash="da71eb3b750c5accba7df6a02a936572"/><file name="Exception.php" hash="e38e9729e738a5c98b7a444377dc390f"/><file name="HostedServiceInstance.php" hash="52a7a4f5e90fcddbba2da67f6ec1a714"/><file name="LocationInstance.php" hash="d7fc5f02f835fbea9bd39e25a2953415"/><file name="OperatingSystemFamilyInstance.php" hash="5463dc6555a2894cf77c15dd015b2bbe"/><file name="OperatingSystemInstance.php" hash="8d8fc32400bbb73a3765f06ccaefc05f"/><file name="OperationStatusInstance.php" hash="acb817c0203ca17237b430c7d086b7b3"/><file name="ServiceEntityAbstract.php" hash="6013b8d4f6378d945e29013d54dc634f"/><file name="StorageServiceInstance.php" hash="6d89ea4e90ac780fce17efba7e38976a"/><file name="SubscriptionOperationInstance.php" hash="9fb50cd722cc80be2d660e78cd42d3de"/></dir><dir name="RetryPolicy"><file name="Exception.php" hash="b83b70d8c828de010cfa12f027a2da23"/><file name="NoRetry.php" hash="faa7ed56468ce39f77162aa1888f8480"/><file name="RetryN.php" hash="340d6ccaa8d41eba0f3cd943dbff201b"/><file name="RetryPolicyAbstract.php" hash="57b861c1f66f83295ce1ae8284b6870c"/></dir><file name="SessionHandler.php" hash="49abc2db2f8cd60249889013eeb6c28f"/><dir name="Storage"><file name="Batch.php" hash="54321d9853919241064631b7fd5e404a"/><file name="BatchStorageAbstract.php" hash="1911d06beacc5afdee2e0214fadb48f7"/><dir name="Blob"><file name="Stream.php" hash="fca729afd6bced397324a092598c4348"/></dir><file name="Blob.php" hash="ba54d4c7b42bfb8536df0ace27d68ac5"/><file name="BlobContainer.php" hash="3762000f605bc3b601d33508d11ba9cb"/><file name="BlobInstance.php" hash="3acc55cc558e3003164dde92463f0f74"/><file name="DynamicTableEntity.php" hash="c0f1e5b79b12857c233299a4445bb168"/><file name="LeaseInstance.php" hash="3d0fc9b5d6808aec75d9aa5bfb537e3d"/><file name="PageRegionInstance.php" hash="ad3d6fda6950c0f1fa6516507ca9662b"/><file name="Queue.php" hash="e0f744f5a2c30c4368babc77282987d1"/><file name="QueueInstance.php" hash="fc1d2fe33c92b9709174fdb78b014839"/><file name="QueueMessage.php" hash="1743f7a02f0d443c7a2f85d87dc43e0f"/><file name="SignedIdentifier.php" hash="cd0fa8a05e3acd402a1e337b1ca7eee0"/><file name="StorageEntityAbstract.php" hash="f3ef81a6dbd64aea38bc60b1f0c7bb8b"/><file name="Table.php" hash="3264067c6ef982f7bb216234451f5781"/><file name="TableEntity.php" hash="c9be1c41776a2ae5892d8f8d14b74fd6"/><file name="TableEntityQuery.php" hash="13880ce0f4c805205dcd10a5283c0539"/><file name="TableInstance.php" hash="54f43c27f93bee83a2c9ba42831d9c27"/></dir><file name="Storage.php" hash="cbac5a9bb9efb6e93a3d9871c8699035"/></dir><dir name="Yahoo"><file name="Image.php" hash="aa6abfa0f447d43f4828dc44c0fdf86f"/><file name="ImageResult.php" hash="7a64eac529ce21090e8b58997fc22041"/><file name="ImageResultSet.php" hash="7ad19487bce9a09855cf7d79707af347"/><file name="InlinkDataResult.php" hash="28305ce865dfb4011a285015a40a6a83"/><file name="InlinkDataResultSet.php" hash="fb09080f12f5348b37fdd5d62fc946fc"/><file name="LocalResult.php" hash="306431d361c2097b3b00cdbaba1bb372"/><file name="LocalResultSet.php" hash="68a4cb69982884c1bd7d6a7df86be90b"/><file name="NewsResult.php" hash="ea496bdeee3021d391df58a3be8636af"/><file name="NewsResultSet.php" hash="f80bcd0b1ac7632f3fb3020a7ff83255"/><file name="PageDataResult.php" hash="c8ea663819efe5ec5d374463f04a8f39"/><file name="PageDataResultSet.php" hash="69c99f8806a98868cb77e9db268eb8d8"/><file name="Result.php" hash="221286f5fbe491b570df8cec1fb7c91c"/><file name="ResultSet.php" hash="4477af82dcaac7fcd93ce9c29c68bdd5"/><file name="VideoResult.php" hash="6ba0d1ebb1c288b11b17ff6a9e434a4d"/><file name="VideoResultSet.php" hash="1a434e1b8bcf9b32e755a32e97e52838"/><file name="WebResult.php" hash="eacd11e6aace9570c6064c8fc1b47750"/><file name="WebResultSet.php" hash="bf5f6f43eb71f0469c961b0f5a6e4094"/></dir><file name="Yahoo.php" hash="27616706be89313b7b5be256be21e095"/></dir><dir name="Session"><file name="Abstract.php" hash="b43880e48ff9ee3040eca09d1458f7d5"/><file name="Exception.php" hash="ce01f1ceaa96bef8c71759f7e6c1e578"/><file name="Namespace.php" hash="b3e6effe8f53d5f9f407a4b5507df31c"/><dir name="SaveHandler"><file name="DbTable.php" hash="5b08339aa3e7f044b5602e725e6c65c0"/><file name="Exception.php" hash="06db90dee9421e4a8e09b946de252d41"/><file name="Interface.php" hash="617704bf38e31d51b79c636480447b91"/></dir><dir name="Validator"><file name="Abstract.php" hash="7bc8436592d308a702f37d64a8afbe72"/><file name="HttpUserAgent.php" hash="6a2a83e6baf37967b06cf993170ed03e"/><file name="Interface.php" hash="6e54358cefb41ccb7e591eaba391f74e"/></dir></dir><file name="Session.php" hash="864f8bc6395265c0c84323c5066b7739"/><dir name="Soap"><dir name="AutoDiscover"><file name="Exception.php" hash="3c71353889e5488f16cd0747a1337882"/></dir><file name="AutoDiscover.php" hash="abdfc4afb277a6e0c23216cb1d894dd1"/><dir name="Client"><file name="Common.php" hash="4c196fc850f65702741c044d12507769"/><file name="DotNet.php" hash="61bacfc1a99fabb15c58d5499c064c72"/><file name="Exception.php" hash="fe48793a358a7201ad7faee3a077a7db"/><file name="Local.php" hash="843caaab790dc3a322e570cae31dfda7"/></dir><file name="Client.php" hash="bb395c77d4e6ca127f48e15953c72f90"/><dir name="Server"><file name="Exception.php" hash="b5366c6128550c6904b5f0d83d9a4495"/><file name="Proxy.php" hash="4e3e39bf6b40e758bb8154900c0be4ae"/></dir><file name="Server.php" hash="2d3adb7e3b01a55889f4a9ccd1226758"/><dir name="Wsdl"><file name="Exception.php" hash="c30308763d2f85ccde3e48c399d977fa"/><dir name="Strategy"><file name="Abstract.php" hash="f09e005c0c35a51dbc906815f298a515"/><file name="AnyType.php" hash="7e0f81e8c1bde45bd858ae5c16b4cd11"/><file name="ArrayOfTypeComplex.php" hash="3b9998427588b55e16496ee51a1d7d5d"/><file name="ArrayOfTypeSequence.php" hash="8ea1226e6138e1d162b647b39daed36d"/><file name="Composite.php" hash="7ea40da650826369c79e7a17ff93da40"/><file name="DefaultComplexType.php" hash="9fefac807dbb4c843feec714a05ac521"/><file name="Interface.php" hash="d4f3ed1447d163ae1eedcfc886662719"/></dir></dir><file name="Wsdl.php" hash="8e4ad5d4d160d770740012ec920e30de"/></dir><dir name="Stdlib"><file name="CallbackHandler.php" hash="f33bb03784021305a529525bf125df09"/><dir name="Exception"><file name="InvalidCallbackException.php" hash="977bd070fc4de8c0bce940a2d0a0c530"/></dir><file name="Exception.php" hash="826ef583632fe8b71ce0916ce4c01030"/><file name="PriorityQueue.php" hash="886161c12418c95bda548c5e484db351"/><file name="SplPriorityQueue.php" hash="4ce44425f16b61d5cfa2b37a36c430b9"/></dir><dir name="Tag"><dir name="Cloud"><dir name="Decorator"><file name="Cloud.php" hash="c03f8a8a9acad9b124508cb5ec762ef6"/><file name="Exception.php" hash="da2286643dd90128c9bafdb55d4874d9"/><file name="HtmlCloud.php" hash="ac29df72f5738876b6c5c3220200aea5"/><file name="HtmlTag.php" hash="1c66e72d27e394b7a67e083a6a7e7635"/><file name="Tag.php" hash="38969d4df8dd12f7c75d5886a4309e2d"/></dir><file name="Exception.php" hash="f1f89e1176804f89966ffa1b6057aadc"/></dir><file name="Cloud.php" hash="b563d184a10c5780ac839964d05f5b70"/><file name="Exception.php" hash="bb95c48a0889e48b9621fc24ece1855d"/><file name="Item.php" hash="4d8899476ff7c0edc26227377437184a"/><file name="ItemList.php" hash="a37b92d4346128d6928c3ed75abe85e3"/><file name="Taggable.php" hash="754d26825a791b7b493479ab96de35ac"/></dir><dir name="Test"><file name="DbAdapter.php" hash="9f14c0c71238db11ce231ec608fa0748"/><file name="DbStatement.php" hash="ae071a2e217641e4431dbaffab4b475c"/><dir name="PHPUnit"><dir name="Constraint"><file name="DomQuery.php" hash="4a372f65097fddc842326acfb0873110"/><file name="DomQuery34.php" hash="4cfc2fccf97dcad8979afdeb5051d99d"/><file name="DomQuery37.php" hash="4918ef15cdbf82e30ee35bce62246f6a"/><file name="DomQuery41.php" hash="0e55e6f6ec4df95712cf6ae2592eaa4d"/><file name="Exception.php" hash="08a569be3229aa317e045e0bb5712aee"/><file name="Redirect.php" hash="bd29ebef3a5193019124cbe48e3b57a4"/><file name="Redirect34.php" hash="7fbaaf229a5e72fd9328b6b3355979e0"/><file name="Redirect37.php" hash="25ae9936724abf4f6c655e79a4b017a7"/><file name="Redirect41.php" hash="b15f5d011531a5f341691400758b7b94"/><file name="ResponseHeader.php" hash="d0c824d1d0825eaff50fbff17ad9fe68"/><file name="ResponseHeader34.php" hash="970159fe86220f6d79ae839787445e76"/><file name="ResponseHeader37.php" hash="b45fcfbc270c1dc1be8af6f967d74055"/><file name="ResponseHeader41.php" hash="d898287c0e3c5c5a29c8dfc23258c357"/></dir><file name="ControllerTestCase.php" hash="a1587e2519d6a108213338a8df626983"/><file name="DatabaseTestCase.php" hash="e660d4e0b896a1349b5b3a7b908abed9"/><dir name="Db"><file name="Connection.php" hash="a376a28b4f32640b77896ed71aa94103"/><dir name="DataSet"><file name="DbRowset.php" hash="619ddf7996bdbae5efe2667bf43f97fd"/><file name="DbTable.php" hash="c2f9df7d0a3cf0d37631d8f06c818bc8"/><file name="DbTableDataSet.php" hash="d4399f69a07e07e1cdf51ee779ed4d25"/><file name="QueryDataSet.php" hash="9923dfa4b4f6ec969e05af835f0c9578"/><file name="QueryTable.php" hash="49db01b854018eed9f97f9e87dd8ef99"/></dir><file name="Exception.php" hash="b4db1bec052e5f4326e4f69f8265b1f6"/><dir name="Metadata"><file name="Generic.php" hash="0d50fe34d4d444504a433c495a10f4c7"/></dir><dir name="Operation"><file name="DeleteAll.php" hash="ad2d32c7274f19ffd7ff00f6a9629831"/><file name="Insert.php" hash="76990ebfd7da444a380ef153fd4ec2c7"/><file name="Truncate.php" hash="aeb7cea4a23f9a4978838834184b827c"/></dir><file name="SimpleTester.php" hash="303a002e44573654515318426f06454c"/></dir></dir></dir><dir name="Text"><file name="Exception.php" hash="63dc12adf35209b68cb541fad9d13339"/><dir name="Figlet"><file name="Exception.php" hash="ce4743f212bc9dd406e7c5abd1499a8c"/><file name="zend-framework.flf" hash="e421545f78033d8a6a4324e54ccf0454"/></dir><file name="Figlet.php" hash="342b1851f3fddf6de881bfdcd6dbdc25"/><file name="MultiByte.php" hash="7beb126807547c59a29ff72918ce4cb6"/><dir name="Table"><file name="Column.php" hash="cb652d404e394051bb9463ef0f5e5fac"/><dir name="Decorator"><file name="Ascii.php" hash="642655dbd861110617fe242a5f5b2e49"/><file name="Interface.php" hash="b246cf5bf0cc2ccb3fd612987dda1ac6"/><file name="Unicode.php" hash="78c514875a100d295a884d52cbff6679"/></dir><file name="Exception.php" hash="a9ad309358591313a0b39a9dc6637ead"/><file name="Row.php" hash="2e1210709f13f36070015bf1e7c4bae8"/></dir><file name="Table.php" hash="fa040e017955cd19728968adc4d3263a"/></dir><dir name="TimeSync"><file name="Exception.php" hash="c5c88b4fa22c7aa853c99e80293d6b56"/><file name="Ntp.php" hash="670a72b056bc3ea5c6ca09fd51e5c0d1"/><file name="Protocol.php" hash="81ebccdcfad278c458e8f801743e8035"/><file name="Sntp.php" hash="f491dc0e0e4ad0a6909cc9518c443855"/></dir><file name="TimeSync.php" hash="e68ddd486d397ad8b8072df003f0dbe9"/><dir name="Tool"><dir name="Framework"><dir name="Action"><file name="Base.php" hash="ca10276b0b663e3946f30a7e85e2437a"/><file name="Exception.php" hash="033fe3dfcbe687a8fc14217124485646"/><file name="Interface.php" hash="4971f7cd01f81557e06c52442d1e10ec"/><file name="Repository.php" hash="763980637bc854efdabe4702cf90429a"/></dir><dir name="Client"><file name="Abstract.php" hash="c6aa9afeb508a90fac77fdd01490c917"/><file name="Config.php" hash="88d068ae943aaa028252208d2ffa9737"/><dir name="Console"><file name="ArgumentParser.php" hash="a7aca2e438a4ea02beea9efe4fc322e6"/><file name="HelpSystem.php" hash="c49dfb3e52bc4dbd0fb981d2d2db7ea0"/><file name="Manifest.php" hash="8ecaf5471c98b4adecf441fd0b239fd1"/><dir name="ResponseDecorator"><file name="AlignCenter.php" hash="aea5fb29315c501c879f1414ab30bdf1"/><file name="Blockize.php" hash="f6510cb7f02bdd000eff5b3cfc7c3f94"/><file name="Colorizer.php" hash="b4370450e0af8f8bc5b70bca3a3140e4"/><file name="Indention.php" hash="9d05c40f3bcf99606a4433c4f2f550c8"/></dir></dir><file name="Console.php" hash="70d696d68e6f889e25661568ae0cafef"/><file name="Exception.php" hash="9fc08df23e990977b31c58157458797f"/><dir name="Interactive"><file name="InputHandler.php" hash="d4a71d517cbdfca13bc442f915eadfa3"/><file name="InputInterface.php" hash="b76636ebb7563e128e1653de60a05e47"/><file name="InputRequest.php" hash="01746459e3c0d5114ba84376641ce516"/><file name="InputResponse.php" hash="fe6fb87211d75ac5d43a0afcd12b3438"/><file name="OutputInterface.php" hash="e6473dcec31887ba9fc189cf5ac4b5cb"/></dir><file name="Manifest.php" hash="a04f5f7452adbe2a7b9f572753c282e1"/><file name="Request.php" hash="337a50f6b8ca0346335666825a138400"/><dir name="Response"><dir name="ContentDecorator"><file name="Interface.php" hash="f5f2e4d82017c916a98e600c0ecf10fa"/><file name="Separator.php" hash="0bdedce341d3dc2456856bedb4e6fbfd"/></dir></dir><file name="Response.php" hash="047455ac32ab5c1f0913bd8be80408e2"/><dir name="Storage"><file name="AdapterInterface.php" hash="cbe1be24e10113b8355be82c17257d74"/><file name="Directory.php" hash="7f818fcabc4dd64292ec750d69a2cab2"/></dir><file name="Storage.php" hash="e1e34565e6f12ef7a6914bea4f21b495"/></dir><file name="Exception.php" hash="e8ab7ccbf5e2a5516a35ca4e887b1f5e"/><dir name="Loader"><file name="Abstract.php" hash="ac9b19649683e89c14f162643680d6d2"/><file name="BasicLoader.php" hash="eb441f57c872d051c8bf4ff334516776"/><dir name="IncludePathLoader"><file name="RecursiveFilterIterator.php" hash="e809fc3ffb30c42bd65defb0b841d5ea"/></dir><file name="IncludePathLoader.php" hash="ba1fdc0c41d1ac3ac9b86f7b295d62fe"/><file name="Interface.php" hash="5a982ccd517b7fa2c5d1e7a181f9a66d"/></dir><dir name="Manifest"><file name="ActionManifestable.php" hash="6b75a1363ec0989198f0577519f2a8d8"/><file name="ActionMetadata.php" hash="55c5c7fd4609c3a2c188c68f2b59996b"/><file name="Exception.php" hash="e4adb9a694c21dd46682009e1a25ba80"/><file name="Indexable.php" hash="f2fdb04e846a873a00178d44dfb7c134"/><file name="Interface.php" hash="65fb779fcdd624b743e1c70370ce1a2f"/><file name="Metadata.php" hash="79d13b52ad9aa5bffe103b61a404296e"/><file name="MetadataManifestable.php" hash="2974762fdea9eec82a74a6d3446f676a"/><file name="ProviderManifestable.php" hash="3d59e772c55a5a791844910d9acbb131"/><file name="ProviderMetadata.php" hash="b1fa45e3f1309e25c3e71e43e1a48263"/><file name="Repository.php" hash="b055ec6bcaa48d3536f376c7d196052b"/></dir><dir name="Metadata"><file name="Attributable.php" hash="3a1ae646ad3127bcd9d7f0b590b49d75"/><file name="Basic.php" hash="f8e243b4883d1f53ef6dd440c0d8b618"/><file name="Dynamic.php" hash="2ae310d375a9f1e29f0322c03350b718"/><file name="Interface.php" hash="dd418e0cfd979aa8caac73abbe8d65d7"/><file name="Tool.php" hash="d4cf6475ece71a871144a646c4653b88"/></dir><dir name="Provider"><file name="Abstract.php" hash="54efa5905a09985cfc5261116cdc808f"/><file name="DocblockManifestable.php" hash="0bb7be516c01ef1df2db65cac6782604"/><file name="Exception.php" hash="8340027bd3f883ce3bc60e5a4a779e1c"/><file name="Initializable.php" hash="21203810d42fc2c661b5a74a4db22afd"/><file name="Interactable.php" hash="1645bf6768d35a154b409e9fc8d23629"/><file name="Interface.php" hash="5acbcaa43439912bfc3f9be9aae48561"/><file name="Pretendable.php" hash="7320be8f080b47a7a3c7768ed5b82655"/><file name="Repository.php" hash="06ac616d5eca5d9769ad7d1d1a7ca9bc"/><file name="Signature.php" hash="5be099c081171cd11a6c5e6a80011f2c"/></dir><dir name="Registry"><file name="EnabledInterface.php" hash="87fe89d72c54ad50ec51bb2d683d2992"/><file name="Exception.php" hash="eccc229c4505a1ed3e85902496e1935e"/><file name="Interface.php" hash="85731cc24ee6598ac544956ba02a4847"/></dir><file name="Registry.php" hash="430ca6afc053d09a02faafa778f05ddc"/><dir name="System"><dir name="Action"><file name="Create.php" hash="ece59a9bf0b39f4c7731dd2c3c6a3687"/><file name="Delete.php" hash="93a02ef0a268f9a46140122e6b658831"/></dir><file name="Manifest.php" hash="2dc6db96a2eaec2f041f73eb9784426e"/><dir name="Provider"><file name="Config.php" hash="0f0ac44a62caaea96bdd741dc8d10fe1"/><file name="Manifest.php" hash="9834badd5250276130dd8f035fa3aa69"/><file name="Phpinfo.php" hash="a18c9de3ae3099a941d257fd8bb83286"/><file name="Version.php" hash="235916637c0ec94a08f86894dd211da4"/></dir></dir></dir><dir name="Project"><dir name="Context"><dir name="Content"><dir name="Engine"><file name="CodeGenerator.php" hash="28294bea1645211c3a55b04b03eb97e5"/><file name="Phtml.php" hash="b635fe45ef2a8b9de27be338ff80e0c8"/></dir><file name="Engine.php" hash="3edec5f50d35068768bd1ddb7cfcb242"/></dir><file name="Exception.php" hash="903019115f2291dac64e2d8316b069d0"/><dir name="Filesystem"><file name="Abstract.php" hash="7de036baa7d7a11fde54ba3d0d9e199c"/><file name="Directory.php" hash="346bbbf87ee7515d0b1ea6d468a23bbb"/><file name="File.php" hash="82a28fef9d3d33f3de763e2f4415ef66"/></dir><file name="Interface.php" hash="ec12cc9de36ab46a2afb96f61f3af90e"/><file name="Repository.php" hash="652c4bea315e3239fd99f22103c51140"/><dir name="System"><file name="Interface.php" hash="9011f3458a2b39fdf8867e639414a7bc"/><file name="NotOverwritable.php" hash="de0a563d5079199bf642b6811b7e5bac"/><file name="ProjectDirectory.php" hash="f5d33f4805cc35574112532f2f262579"/><file name="ProjectProfileFile.php" hash="48ff62386762440129ae4fb7337deb2f"/><file name="ProjectProvidersDirectory.php" hash="b5a9d7bba0ccd8554ca26f0149128acc"/><file name="TopLevelRestrictable.php" hash="2309be1ddaf737de9b7adafa6cb8632a"/></dir><dir name="Zf"><file name="AbstractClassFile.php" hash="22a8a9cc341edc796112df20983a43bc"/><file name="ActionMethod.php" hash="2f16d745e3a323f9ff416e2217358f54"/><file name="ApisDirectory.php" hash="0b39c81c051cc37f5492df965835eba1"/><file name="ApplicationConfigFile.php" hash="677abcc2fc67896b511af1f1181a8f81"/><file name="ApplicationDirectory.php" hash="42a08abbb3ecc267cd883a87f817981b"/><file name="BootstrapFile.php" hash="b76b4cf58705698399d06e8d4c9f6d67"/><file name="CacheDirectory.php" hash="5bb06a72dcd025a283c76c03a1ce9599"/><file name="ConfigFile.php" hash="2462d7d79f673c397d3a2f7284ccde66"/><file name="ConfigsDirectory.php" hash="b1cccd4669781cc33b9171a186236219"/><file name="ControllerFile.php" hash="090e5fe4d3b57933b9e7aed8eeef7cc5"/><file name="ControllersDirectory.php" hash="8543ca965e6d7a4cf78177ef0dcfc4eb"/><file name="DataDirectory.php" hash="5f8d27eca9e789c24dc039ea0f62748e"/><file name="DbTableDirectory.php" hash="92eda9ff83054cc8818bee744ed6e463"/><file name="DbTableFile.php" hash="b936fc7a4dd1e4726f0bb49f01ad931a"/><file name="DocsDirectory.php" hash="f58949c95502bd2ff8c31c59009c92b5"/><file name="FormFile.php" hash="b35ea0268fe07098b794eb24082ef53b"/><file name="FormsDirectory.php" hash="ffe9f7939c29068e7a1932dbc374bb7b"/><file name="HtaccessFile.php" hash="8e933afd24df22e6742aa972f8fc470d"/><file name="LayoutScriptFile.php" hash="8bd850a37a308efa3f4c83927fa5d8f5"/><file name="LayoutScriptsDirectory.php" hash="036f5cc0c38ead9183f7dd3f712848e6"/><file name="LayoutsDirectory.php" hash="c86cd320a91a46d439e4b419bd8ee428"/><file name="LibraryDirectory.php" hash="29a3c5283210c444e65284206b3da79c"/><file name="LocalesDirectory.php" hash="029c2897885aa476bd4103c48894ca87"/><file name="LogsDirectory.php" hash="3ee80aca0572bb9c5f6a44c6c021fcdc"/><file name="ModelFile.php" hash="958ed1603c25bd34ceb3f09ceeb6746f"/><file name="ModelsDirectory.php" hash="82dde848d95e686be57804162c11dc63"/><file name="ModuleDirectory.php" hash="7e219e82a6349ed878042cc17ee1faf5"/><file name="ModulesDirectory.php" hash="00182e9148959046c0a7d2d6e261e0b1"/><file name="ProjectProviderFile.php" hash="f3deaf3adf5c501237f22dc653430f91"/><file name="PublicDirectory.php" hash="e93bb7ed0ef00a864c097993ae1a2a94"/><file name="PublicImagesDirectory.php" hash="d769f00ec21961d66b41fffc8035277e"/><file name="PublicIndexFile.php" hash="4d3cf05ca9d35e24242dbf61d8189579"/><file name="PublicScriptsDirectory.php" hash="ff61ddca598a5ce42907b78140187614"/><file name="PublicStylesheetsDirectory.php" hash="8262d74f0f35523a912d95dd261fbc18"/><file name="SearchIndexesDirectory.php" hash="5ddf8701c47bcc6baf68cfdcc0ff7467"/><file name="ServicesDirectory.php" hash="825c4204f9f44f2280de370b0b156733"/><file name="SessionsDirectory.php" hash="af2fd72fa2bcf4d003c0a6368953cdb7"/><file name="TemporaryDirectory.php" hash="46790ecd95da8518c80dd8715fe7f8ad"/><file name="TestApplicationActionMethod.php" hash="4bbc3a869e69c2093bfa02068b6e057b"/><file name="TestApplicationBootstrapFile.php" hash="6f335bc4e4e047c948e77e8b0708f45e"/><file name="TestApplicationControllerDirectory.php" hash="1976699a04927fa3f5a1686934cdd08e"/><file name="TestApplicationControllerFile.php" hash="8f2956d50a3ba47f0b8c1fa96b361025"/><file name="TestApplicationDirectory.php" hash="09f0536bc206b5305862a21b65301016"/><file name="TestApplicationModuleDirectory.php" hash="da78a9b90b270578a9d36f8d62575a2f"/><file name="TestApplicationModulesDirectory.php" hash="4b54130f6c22e995308da7138d85330b"/><file name="TestLibraryBootstrapFile.php" hash="d78b732c8602c082ad1688c9bc6bf68d"/><file name="TestLibraryDirectory.php" hash="3626bc62a7c1c330369eb0001c4a9b16"/><file name="TestLibraryFile.php" hash="b45dc141518eab43f5c89e64b29aebfb"/><file name="TestLibraryNamespaceDirectory.php" hash="2e70388b581499815e6e2ba2c1cc0c81"/><file name="TestPHPUnitBootstrapFile.php" hash="40d55d88d6c84cd153adb2539ee323a9"/><file name="TestPHPUnitConfigFile.php" hash="1f136f46d817445285994244274f9276"/><file name="TestsDirectory.php" hash="0dec72680dea22074c8d370953effac0"/><file name="UploadsDirectory.php" hash="5d72a25ffd1ee7899fa182ddd7c9e028"/><file name="ViewControllerScriptsDirectory.php" hash="0ce107dd0b77183717845592b5be2550"/><file name="ViewFiltersDirectory.php" hash="59d3134c2b27c136adaa07177a72b28c"/><file name="ViewHelpersDirectory.php" hash="305d6bcc8066a02a658d82a69b73828f"/><file name="ViewScriptFile.php" hash="95b593cd475edcfd2a6ecea8f2668ffe"/><file name="ViewScriptsDirectory.php" hash="9aeac85b2f35bd6a666a4da29b465d45"/><file name="ViewsDirectory.php" hash="f36732d4b125b54a661356327d6850cf"/><file name="ZfStandardLibraryDirectory.php" hash="eea898b019c52dafd72f7de1aaa92d50"/></dir></dir><file name="Exception.php" hash="125c1606112c9ce2cfc8b697fb989d5f"/><dir name="Profile"><file name="Exception.php" hash="907a68043581559d3bf42ccc2c4b1322"/><dir name="FileParser"><file name="Interface.php" hash="325d41a29468a70dfe7476e1fcc8d20f"/><file name="Xml.php" hash="59f053468c48c4d9b881bc1b859ec28c"/></dir><dir name="Iterator"><file name="ContextFilter.php" hash="ff51879dcc3452e49ad8bf2d9e2c4910"/><file name="EnabledResourceFilter.php" hash="8d0d4add1f853aa9cfd89aaf138e2de3"/></dir><dir name="Resource"><file name="Container.php" hash="ab368c4da0867a25770b6f7970a782f4"/><file name="SearchConstraints.php" hash="9e4a7578e2879e6c9da8cfeb1fbfa9ba"/></dir><file name="Resource.php" hash="2a5467d1f6ff134cd8e35a2cb92eaedc"/></dir><file name="Profile.php" hash="db1e9708dc20fe27c3b39b9e6f57f1f5"/><dir name="Provider"><file name="Abstract.php" hash="8c55b9fe14b8d37beac8a5d1356c2cdd"/><file name="Action.php" hash="72581e6e7e4acd0a19f8ba9bbc0e73aa"/><file name="Application.php" hash="64fa6f041e1f5727a88bb9cbc7636f22"/><file name="Controller.php" hash="677b3b817a7fdb644cd150be124e9a96"/><file name="DbAdapter.php" hash="b831929398b67e053a395a548227695f"/><file name="DbTable.php" hash="6d922b240f64a010df894b03a44e0132"/><file name="Exception.php" hash="00d67294ec03f48a1e43fede57faee26"/><file name="Form.php" hash="95362baaf1eb17e9698573f6d7fbcb53"/><file name="Layout.php" hash="40528bb34ab9942db935b59b831ab909"/><file name="Manifest.php" hash="9d3a781e8c917a5cdb9e7dd10641cd35"/><file name="Model.php" hash="f561e3f60741f857d2a0a8d8d8509823"/><file name="Module.php" hash="f3cb636991bdb7fa9d69285ff5370a75"/><file name="Profile.php" hash="2bf881a5c9cf4e1032cb8de9d9297b16"/><file name="Project.php" hash="a7b3b98eeb5b8a38d7b003adde3a3c16"/><file name="ProjectProvider.php" hash="63455c931c8fa909d4a413ae91c99cdd"/><file name="Test.php" hash="ef752345daf66c4d3bfcdf94feea8602"/><file name="View.php" hash="1a8b7de4308dea33a847f1c590238d80"/></dir></dir></dir><dir name="Translate"><dir name="Adapter"><file name="Array.php" hash="539a98b29aa0bbcec264db5e29d810ff"/><file name="Csv.php" hash="698388dd2ac2843c3664586596e248f0"/><file name="Gettext.php" hash="321e228017b8049e94ea89f4e41f35b7"/><file name="Ini.php" hash="c03616b55e55e0c62363c4ee5e6b106f"/><file name="Qt.php" hash="19fd28ff1f5135d08c73c5faca961f96"/><file name="Tbx.php" hash="688c8d48dd29565f46d6f49d160e2f4a"/><file name="Tmx.php" hash="829f33d7444e30e4dc5053890fa22ccf"/><file name="Xliff.php" hash="0af804c51c85eea4b76941587aa673cb"/><file name="XmlTm.php" hash="39a37d7374fe3f0e3bf63a1e1f9ccb44"/></dir><file name="Adapter.php" hash="cccb472954697aafd6db4430c57e3873"/><file name="Exception.php" hash="469fbd261b8e8e1b91a8221fad6a79cb"/><file name="Plural.php" hash="90cd1ce756ed655ac7cb5dc2f2e149f0"/></dir><file name="Translate.php" hash="e306b375d370f5d647592268fa54d9b8"/><dir name="Uri"><file name="Exception.php" hash="0d12fb53167123e15aacbdddd8b11797"/><file name="Http.php" hash="55fae6ba863159381838ccc7bf8c651a"/></dir><file name="Uri.php" hash="f20bdab5c9c0694f64dd5b69f090e083"/><dir name="Validate"><file name="Abstract.php" hash="3382bfb0c407a0d3b490685a4f85678e"/><file name="Alnum.php" hash="2fe48d28207f9917e69f5edf99a392e1"/><file name="Alpha.php" hash="abeae56166032b791ae499883857d17d"/><dir name="Barcode"><file name="AdapterAbstract.php" hash="7bf5990b4b1dc34fe1fd7bcddd8f0348"/><file name="AdapterInterface.php" hash="c1b8934e5706e958f6e889e7c04a6931"/><file name="Code25.php" hash="f707195d53cd032ba5a9fbde32e75176"/><file name="Code25interleaved.php" hash="0c2ca046d04c43c4204e6cbb9d6dff7b"/><file name="Code39.php" hash="adff9a47dbf44dca5784dc8cdcc3ddc7"/><file name="Code39ext.php" hash="2e69f0103fbda86142024fc7466958be"/><file name="Code93.php" hash="2377845f1bee4dab114519c8f5dd4c5f"/><file name="Code93ext.php" hash="795aad78199cbc0668c70e12defcf9ec"/><file name="Ean12.php" hash="233d2f57fb2b36f1f2c7b3a36b0ead3b"/><file name="Ean13.php" hash="349560c5d4af7178e257a38c3a24735e"/><file name="Ean14.php" hash="30ab956febdabc3c13a7812f6e703bd1"/><file name="Ean18.php" hash="899007801fc5a8f97b577d711e2d692e"/><file name="Ean2.php" hash="0d73987f006070e0d15a573277a812e0"/><file name="Ean5.php" hash="806813312608a4ade42bbfab5d233711"/><file name="Ean8.php" hash="d0f3b4b0305e5dd0a7ba077fbb4978cd"/><file name="Gtin12.php" hash="da6df50e6751f4872604687602cc9695"/><file name="Gtin13.php" hash="dbd9c8a33ed3669917d10dee00a44a13"/><file name="Gtin14.php" hash="ae9c9fccedb5e71c87950c17bc5a3411"/><file name="Identcode.php" hash="9fed06deab51a31d97a66801fc68921e"/><file name="Intelligentmail.php" hash="9f4a16c7b78b3b1e5d9429569ea2aa11"/><file name="Issn.php" hash="e8de22a236a14b191225614ca730d343"/><file name="Itf14.php" hash="958a09981361b0cc8c83c0ae98831008"/><file name="Leitcode.php" hash="581e77d7ff774564ac3961077e40b27f"/><file name="Planet.php" hash="cda7f2f6910606728d4f6b375b17bbff"/><file name="Postnet.php" hash="9182081361daecfe6f0371fc4cabcd9e"/><file name="Royalmail.php" hash="e5bfd9d4ffd4935ca4b988f651270e4d"/><file name="Sscc.php" hash="eabc46811aff1a4a7f4468bd73a3f1e8"/><file name="Upca.php" hash="bb4f503adce344b6d3eb584843d7378a"/><file name="Upce.php" hash="368d3a61898baad1f968d2292a2692af"/></dir><file name="Barcode.php" hash="b3531dde74c28ed55c868d75615a9d3b"/><file name="Between.php" hash="5ccda5b2ac3d35bcc7faa8d8800108df"/><file name="Callback.php" hash="4e6874a0cb4bba53ef8edb9cde9eed18"/><file name="Ccnum.php" hash="1871fdfe01ac8f50e1b76f103297d7fb"/><file name="CreditCard.php" hash="2b68a89fbd9747e2a7308bc08aab9a12"/><file name="Date.php" hash="ac196efe9a75f1f5052881f0ad0fb7fc"/><dir name="Db"><file name="Abstract.php" hash="f32f786acb59d6936c87698c0ac868ad"/><file name="NoRecordExists.php" hash="de3eab3a488154fd14c3aeaad18c58b7"/><file name="RecordExists.php" hash="6203f6b21b338f28420fffd67f007dcf"/></dir><file name="Digits.php" hash="6536e4f93eea9d40663dc5b8308455c3"/><file name="EmailAddress.php" hash="bbc839dc1c1af834792bbc23cd1b9fc7"/><file name="Exception.php" hash="f05330fae73fa8a6fa5eb13b239492ae"/><dir name="File"><file name="Count.php" hash="fd4240625ed05056050c46051750d42a"/><file name="Crc32.php" hash="37be3ed367b5b7d13170fdc56c083488"/><file name="ExcludeExtension.php" hash="cffccfd1fcdae2be7676722ba8af7d9e"/><file name="ExcludeMimeType.php" hash="071a625f92fac84b76467a0eba3c467f"/><file name="Exists.php" hash="f5ab404939714ebf24c992bb3e4db124"/><file name="Extension.php" hash="21bf334b8b2ee214e82709c7bc1bf489"/><file name="FilesSize.php" hash="ab8dd66b1a133b1851d51927eabea61e"/><file name="Hash.php" hash="fd3f0e2888d1266d78da22e7d6647690"/><file name="ImageSize.php" hash="d277f5533a2aa61b2d5132babaf63c43"/><file name="IsCompressed.php" hash="1a0257de13523c8227a809b5673eb217"/><file name="IsImage.php" hash="7cd64b53b6e4a635e71b69e8ed5af7c4"/><file name="Md5.php" hash="4af983e349f6c2bc3a3fb6bc05d51e32"/><file name="MimeType.php" hash="c996e072363c49d15feba2a7ed35684c"/><file name="NotExists.php" hash="66d36bf5981467b276a1d97ae22ba5a9"/><file name="Sha1.php" hash="bf177eb68980e20cdf4a0db90bc32a08"/><file name="Size.php" hash="e6fe4f698bbe20ca0ccabe817462e0e7"/><file name="Upload.php" hash="a4099691c48b3427cdb144e3333b9145"/><file name="WordCount.php" hash="a2c3afef06b310c0b6a61867dfe25ab2"/></dir><file name="Float.php" hash="7d81882373a3c805ea6d890fd23d534d"/><file name="GreaterThan.php" hash="c8abc03e583058774db68388b71654ae"/><file name="Hex.php" hash="b491553d31f5894f2bd1303d685223f5"/><dir name="Hostname"><file name="Biz.php" hash="7696fce32b01be696c7a3f168ebd56de"/><file name="Cn.php" hash="fb00d241ff6f27a84d1c63758be2a14a"/><file name="Com.php" hash="5deccb0b547e92073687530b13870ce2"/><file name="Jp.php" hash="d22c9a1a27cfc135357a79c4608cbbd6"/></dir><file name="Hostname.php" hash="ae209525148b57de847b8fd643c472d6"/><file name="Iban.php" hash="93312cb157edcb0735182b06a20d22dd"/><file name="Identical.php" hash="35b72f8c75851bb0dddfe4ac2126cef0"/><file name="InArray.php" hash="c75ec63d4745f66be627d1973bd76396"/><file name="Int.php" hash="222edd304fa91776951350e2659597fb"/><file name="Interface.php" hash="dbdfc01be0180334732bf0331fb19468"/><file name="Ip.php" hash="7abc354eed666e6b93c14c9187d2d0a3"/><file name="Isbn.php" hash="aedbe250623c9a9ef228d1863104b839"/><dir name="Ldap"><file name="Dn.php" hash="2716b9bc0c82519ab2fdbb52a0094eaf"/></dir><file name="LessThan.php" hash="e9fd4f35f101acb8fa94df0812ece205"/><file name="NotEmpty.php" hash="84a8e76bc9fd6fce9ce3d93f9e37b36f"/><file name="PostCode.php" hash="4513fb89c9215f1c987354ea552c0925"/><file name="Regex.php" hash="cd9c961f1bc2241a1beb61b8adc6325c"/><dir name="Sitemap"><file name="Changefreq.php" hash="02c174efb2eb92c1f99083d8d8a8201b"/><file name="Lastmod.php" hash="ecb2907a0827ca4f9a902b1842104f0c"/><file name="Loc.php" hash="43a32b211470fd207e614e122b373d5f"/><file name="Priority.php" hash="c4062b2af691dd790e88a80aa5f5400b"/></dir><file name="StringLength.php" hash="b57a08cb0418165feed0c8f3069830dc"/></dir><file name="Validate.php" hash="fdb819323b45ba50c37cefe43410afd6"/><file name="Version.php" hash="9f23d62a33c09e032739225f5c69ebe1"/><dir name="View"><file name="Abstract.php" hash="1319cd055a57d8627ff0ed820f17daa9"/><file name="Exception.php" hash="7a4c976601978de749639c8b0914a03f"/><dir name="Helper"><file name="Abstract.php" hash="e1018e0e93049ac253c920888dc1133e"/><file name="Action.php" hash="786799b58e0fc8729abfde4de463e4df"/><file name="BaseUrl.php" hash="183857156a40c84f03eaea0ff24606bf"/><file name="Currency.php" hash="2ffa077bbe17cbda6974509421cd0582"/><file name="Cycle.php" hash="33bb85798e40541bc8e75cde27cf3499"/><file name="DeclareVars.php" hash="3cbcbf5083117f5f1dad9bac8df3b474"/><file name="Doctype.php" hash="b7e492a249f52859e00c287a8973edb9"/><file name="Fieldset.php" hash="4874b3f6f0658d8f9eae3bf750bf9793"/><file name="Form.php" hash="17d5d7e238c33e8e8cb0efbe043c01e0"/><file name="FormButton.php" hash="c62cf4a51db83501c7c7f1e2fad7cabe"/><file name="FormCheckbox.php" hash="3fefb8a82a8183e4cda683231bad496a"/><file name="FormElement.php" hash="9dc8f7fdd07eb031bc7cee049faa49e2"/><file name="FormErrors.php" hash="eb7e95a90d8a438d4b1043fd32a5f3ab"/><file name="FormFile.php" hash="cf7ec88f4ffd6c732a7df42737069d07"/><file name="FormHidden.php" hash="396bbe9d13da93ee84befb08a5c86f55"/><file name="FormImage.php" hash="3c9adc229035b5972678f634f690cd75"/><file name="FormLabel.php" hash="af00a20fba6e72eb035a605e72a814a7"/><file name="FormMultiCheckbox.php" hash="4033cf623ff32c24f0eaac26e96272d9"/><file name="FormNote.php" hash="94c3fe7ae9857d5d1c0f7e67bd817ee2"/><file name="FormPassword.php" hash="e743953bac753960ee4918c34372ede6"/><file name="FormRadio.php" hash="7df9c01b4e3bac15aca3394bd6bb20ae"/><file name="FormReset.php" hash="7463249d29ef3c895e6d73548c0d2250"/><file name="FormSelect.php" hash="b9076b91b3dd8880a74b9a1ff0f6fb2e"/><file name="FormSubmit.php" hash="abb3c753621b09e8251e88dd7d9cfb1b"/><file name="FormText.php" hash="c059e5863263faaa09d4e7fe99ef4fa1"/><file name="FormTextarea.php" hash="b5a12bd7577c3794b4f7536e1721254c"/><file name="Gravatar.php" hash="8b4c4ce3552c48ec148b81ebb4f843d7"/><file name="HeadLink.php" hash="ae647f1ba8f1033224d6cda9d52d4a4b"/><file name="HeadMeta.php" hash="2cd0bdfad08222191b6c49270afe7e6e"/><file name="HeadScript.php" hash="60f9bbf842dcdf2708ffeffcf95ff81b"/><file name="HeadStyle.php" hash="5e75ee2f68fc5db17ced2aa329b89159"/><file name="HeadTitle.php" hash="329e23739809b5a55dc8d28c447dc91c"/><file name="HtmlElement.php" hash="e5e6b362d6001c20bbb805e31beb36e1"/><file name="HtmlFlash.php" hash="dff36a0bf66c600be3004bdd34cc8b08"/><file name="HtmlList.php" hash="f21ac692428d4c457dc2f3d2db5e7304"/><file name="HtmlObject.php" hash="dda5c4a84c32c4cdd73112a33c322c87"/><file name="HtmlPage.php" hash="d49d3e056e0aab1a8179bd2b3f1917e2"/><file name="HtmlQuicktime.php" hash="4455adb547e6d3a1d3fb52d6746df770"/><file name="InlineScript.php" hash="aabae2682812b3ee88a5bfafaa3d00dd"/><file name="Interface.php" hash="52fa974c83ce1fff7c9d56a994b1fbbc"/><file name="Json.php" hash="78621362d2c630ad5b8b7f7ef2cf2124"/><file name="Layout.php" hash="9e98d798baba317de41bc0cdf75cdf60"/><dir name="Navigation"><file name="Breadcrumbs.php" hash="6482ca2aa2565f318b49ce0458072ae4"/><file name="Helper.php" hash="673a27dfb10aa4442dfa2951e0ef0c4a"/><file name="HelperAbstract.php" hash="0e4097aed9699983790a2c7de613c5de"/><file name="Links.php" hash="b2b7b2403670be61982c1a73851ed2eb"/><file name="Menu.php" hash="8f5c5c42c0b10ac7a68c69b4503ecaa2"/><file name="Sitemap.php" hash="960d3bd171fbe2ca66ba073afd33140a"/></dir><file name="Navigation.php" hash="ad07c3eee7480905937b2f26ee9c2adc"/><file name="PaginationControl.php" hash="b18eee7e9c52256b27384a982a75f0eb"/><dir name="Partial"><file name="Exception.php" hash="047c658de482d2ae0eb5d21ac0cd0a55"/></dir><file name="Partial.php" hash="abe72103b776eeee4a96ccbca003cabe"/><file name="PartialLoop.php" hash="637e144d4c2d369a35848d681b4b6464"/><dir name="Placeholder"><dir name="Container"><file name="Abstract.php" hash="8d885989d99888fc2798a85f07c9f17a"/><file name="Exception.php" hash="326371b5ef3489904fee8e387e7feb46"/><file name="Standalone.php" hash="637e4d2b742d9902ae6de414c0475237"/></dir><file name="Container.php" hash="16d8237399260e817a542e68a4828d4c"/><dir name="Registry"><file name="Exception.php" hash="b9a3969a1431cf44f4cd03764dd92e32"/></dir><file name="Registry.php" hash="ee6d81b2c630c83baac77a0d619ba7d1"/></dir><file name="Placeholder.php" hash="2fced270eb2e3474b4bd538cd73f517a"/><file name="RenderToPlaceholder.php" hash="5ad5803d78bad07455af8f5d3c876977"/><file name="ServerUrl.php" hash="c6a222f4e795320f6f07c6bb8f80d7f3"/><file name="Translate.php" hash="d341ce0f8809b691728672fe506736e6"/><file name="Url.php" hash="71f6c3948d28f8190bfc27b3586d3f93"/><file name="UserAgent.php" hash="dbee4e1b78fad667479a85e8e2d0cbd1"/></dir><file name="Interface.php" hash="eec709b1a8ebb0256a9f752db1a8ad75"/><file name="Stream.php" hash="6f4c3f620f6e2d2f92cd371db18d3a90"/></dir><file name="View.php" hash="d966a4f2d1f25a46973476781c5a52a0"/><dir name="Wildfire"><dir name="Channel"><file name="HttpHeaders.php" hash="62dffc43581615ca6cb052efcb2a43f9"/><file name="Interface.php" hash="0bed6c7ae3ee56a17f5c5187eef3ce10"/></dir><file name="Exception.php" hash="a225536440492a4ef3d37702aea1cb40"/><dir name="Plugin"><dir name="FirePhp"><file name="Message.php" hash="f481d929bbb00bf2bac8dfb008ae37d8"/><file name="TableMessage.php" hash="074faf9136be2ea86add5cdf2b459dd8"/></dir><file name="FirePhp.php" hash="e23b81012ace71de3018a37deb708885"/><file name="Interface.php" hash="c3cb69d35db9a385f7caa140b9634dab"/></dir><dir name="Protocol"><file name="JsonStream.php" hash="38a7d96f9d4ec70f68492f1bcf4022f2"/></dir></dir><dir name="Xml"><file name="Exception.php" hash="2dfb5785f12ed3858b16ab075570d577"/><file name="Security.php" hash="0ac02e77c1aa19a49159e21d776496e9"/></dir><dir name="XmlRpc"><dir name="Client"><file name="Exception.php" hash="8e96419287c2faeeb4412ed9e832d975"/><file name="FaultException.php" hash="28c34f9ec27f280c44d215ee38bd41c3"/><file name="HttpException.php" hash="8c2eac4d043926123b3691562ad47310"/><file name="IntrospectException.php" hash="39d33b723e4fb1d5ce2af5cfd1f41589"/><file name="ServerIntrospection.php" hash="e52c06c394a8c8ac91b5313e5c575024"/><file name="ServerProxy.php" hash="43f25d1783bc1f11462d21ab5a134976"/></dir><file name="Client.php" hash="ea8c5a084405ca13e4f43340e37fe866"/><file name="Exception.php" hash="a04feed37237658eb7c174518a4d9383"/><file name="Fault.php" hash="18685e9a87f2f7750fa968d86ab89625"/><dir name="Generator"><file name="DomDocument.php" hash="5fc0be6304c7a00e58ac39f033d0dd22"/><file name="GeneratorAbstract.php" hash="493eda4b0b32cb59a133c06d63fbef90"/><file name="XmlWriter.php" hash="45013d6c2e24f7ee77439df64a958172"/></dir><dir name="Request"><file name="Http.php" hash="70fcc3ae21a466a9295f42ebae0c2a93"/><file name="Stdin.php" hash="23583af65a719e197a70fcd4c5500ac0"/></dir><file name="Request.php" hash="6945ae9bdf8d76308651611848870e09"/><dir name="Response"><file name="Http.php" hash="50e6859ca7391fd453d7137697f57dc5"/></dir><file name="Response.php" hash="cc7fe267b740ab5c556b7b2d19b6d600"/><dir name="Server"><file name="Cache.php" hash="1cd78db98fe5499e4a64379e97689f77"/><file name="Exception.php" hash="6294a6b1a7d4da4b7a15e7ee489eb119"/><file name="Fault.php" hash="69b89d7568a910f82109b6f3cb0410de"/><file name="System.php" hash="d7b0d17c91367f44eb993da66672dbac"/></dir><file name="Server.php" hash="c0d31b82f5e9bc4fd64e6fbf630a3ff2"/><dir name="Value"><file name="Array.php" hash="b7011fc480c395bfcbc67d68ead94cd7"/><file name="Base64.php" hash="91ea9215e1d57716c0cd79bb1906134e"/><file name="BigInteger.php" hash="10222f3f5cd5eeaaa9813d8ed9f2494c"/><file name="Boolean.php" hash="770874cea876566818fb9135f31e69c5"/><file name="Collection.php" hash="0708fe32732db76ebe9d7e89396b89e0"/><file name="DateTime.php" hash="1a9f56c65375240ee0385ed912731b84"/><file name="Double.php" hash="ee71a5a9eeb026f1eb75387b8158706e"/><file name="Exception.php" hash="b7adf50526128e43c344331e7250b935"/><file name="Integer.php" hash="66c8d75e059a4cf328ff108d15db5c5e"/><file name="Nil.php" hash="ad51cdbcfb5eff5e06d7fc2c6d4661e9"/><file name="Scalar.php" hash="e61890f60aff885a3bed37b093f36e6d"/><file name="String.php" hash="a9d992c1910d76c4ed5330e704a1d438"/><file name="Struct.php" hash="028b64a94eeca406537505ecd52788d1"/></dir><file name="Value.php" hash="7d09b0ce98deeb7a07c01ad1bc94aa0f"/></dir><file name="replace_recursive.php" hash="e886103ea1f75208cc11780718aa3094"/></dir></target></contents> | |
- <compatible/> | |
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Lib_ZF_Locale</name><channel>community</channel><min>1.12.10.0</min><max>1.12.10.0</max></package></required></dependencies> | |
-</package> | |
diff -ruN var/package/Lib_ZF-1.12.10.1.xml var/package/Lib_ZF-1.12.10.1.xml | |
--- var/package/Lib_ZF-1.12.10.1.xml 1970-01-01 01:00:00.000000000 +0100 | |
+++ var/package/Lib_ZF-1.12.10.1.xml 2015-08-03 12:37:40.000000000 +0200 | |
@@ -0,0 +1,18 @@ | |
+<?xml version="1.0"?> | |
+<package> | |
+ <name>Lib_ZF</name> | |
+ <version>1.12.10.1</version> | |
+ <stability>stable</stability> | |
+ <license uri="http://framework.zend.com/license/new-bsd">New BSD</license> | |
+ <channel>community</channel> | |
+ <extends/> | |
+ <summary>Zend Framework</summary> | |
+ <description>Zend Framework</description> | |
+ <notes>1.12.10.1</notes> | |
+ <authors><author><name>Magento Core Team</name><user>core</user><email>[email protected]</email></author></authors> | |
+ <date>2015-07-29</date> | |
+ <time>12:36:14</time> | |
+ <contents><target name="magelib"><dir name="Zend"><dir name="Acl"><dir name="Assert"><file name="Interface.php" hash="753f4c058211502ad047851c4550a121"/></dir><file name="Exception.php" hash="833945ed22a5631224398ec5d1a51736"/><dir name="Resource"><file name="Interface.php" hash="ec27f75c67a2ddb21ede3e8f5cf2188c"/></dir><file name="Resource.php" hash="1eac5e2cda19d6f595ce678ee9b27065"/><dir name="Role"><file name="Interface.php" hash="e61127c46f87a10799582eb5d58673ca"/><dir name="Registry"><file name="Exception.php" hash="1ab8aea40c56fb9754ea4d76cf022893"/></dir><file name="Registry.php" hash="b13b4d4f96691f26328aba33d2a725f6"/></dir><file name="Role.php" hash="4ffca60ba53123c02874b9f412a1d5a0"/></dir><file name="Acl.php" hash="9362ea321157987e2d667ce6ba6640c4"/><dir name="Amf"><dir name="Adobe"><file name="Auth.php" hash="5f1b8fa4bc0646bfc7e1a0248af99e4d"/><file name="DbInspector.php" hash="c945730a861cc8dfb79affc681d935cd"/><file name="Introspector.php" hash="1faa52d4a734963e2114f0244b4eb0fc"/></dir><dir name="Auth"><file name="Abstract.php" hash="eb1eebcde25e987e8cfd64b097a64438"/></dir><file name="Constants.php" hash="27f591080a8aa87a7603079496b03f31"/><file name="Exception.php" hash="c37e40e651b342f39763d2651a86e907"/><dir name="Parse"><dir name="Amf0"><file name="Deserializer.php" hash="91d9e217cf20c9012993d945e3f7e744"/><file name="Serializer.php" hash="fc6f4e7a3adcee15df87e6f5e918891d"/></dir><dir name="Amf3"><file name="Deserializer.php" hash="63f1c82ab2bf8029208347a5d6188cf9"/><file name="Serializer.php" hash="94893d06b63c1c7b89958790051a96b8"/></dir><file name="Deserializer.php" hash="6bf0ed466d51a8ed7d47842ae56b0c2e"/><file name="InputStream.php" hash="8825ad088d82c7b0e1eec7f1fc2a977f"/><file name="OutputStream.php" hash="f6954a735a7abc530b3d08c3a66a1610"/><dir name="Resource"><file name="MysqlResult.php" hash="f93006c3cf636f4426559266c7254301"/><file name="MysqliResult.php" hash="3ff39905a315dc50438612cdfd044003"/><file name="Stream.php" hash="9fac77c33d3b8a5932618b7140eb480e"/></dir><file name="Serializer.php" hash="89f6dade3493238bcebd57f7aec7c441"/><file name="TypeLoader.php" hash="2eb3de6c0c76a88c84e52d053db1b3c3"/></dir><dir name="Request"><file name="Http.php" hash="3ceb2e9419c58b42b8a91dfa518bdbe6"/></dir><file name="Request.php" hash="210fafeb570fabde64f45367aa2b818f"/><dir name="Response"><file name="Http.php" hash="9165da2b40ea937760d21e82d14fccfd"/></dir><file name="Response.php" hash="df120c6bdcd3624007e264387c3ea49d"/><dir name="Server"><file name="Exception.php" hash="b49d17bc0487b1f94e263edc3cd63b80"/></dir><file name="Server.php" hash="d2478b1080c3c4fb1354f74a1858e817"/><dir name="Util"><file name="BinaryStream.php" hash="2be5bd9b9c7daf56a578bb98c79c4393"/></dir><dir name="Value"><file name="ByteArray.php" hash="3501ce99e15b597c7159a47a166585b3"/><file name="MessageBody.php" hash="8b61f8ee1c39105e5c19ee0c3df1eedf"/><file name="MessageHeader.php" hash="3719e3197128d0db242a664278740de3"/><dir name="Messaging"><file name="AbstractMessage.php" hash="3091614466f82c843414c7f780e2713f"/><file name="AcknowledgeMessage.php" hash="0102f33c15054d697d29ab872d587e75"/><file name="ArrayCollection.php" hash="5070cc263f4b56b4aa6a62110c563ae7"/><file name="AsyncMessage.php" hash="ad0d187dc1179ce2cad255fe5fbd00a6"/><file name="CommandMessage.php" hash="46b117af57383509740a975f1d35a801"/><file name="ErrorMessage.php" hash="cd980b1cc29739aa685d714e3645f5bd"/><file name="RemotingMessage.php" hash="acaa5c29b712d4d24168bb384d512bd8"/></dir><file name="TraitsInfo.php" hash="91da9ed050e8e44979a229eadf433bf4"/></dir></dir><dir name="Application"><dir name="Bootstrap"><file name="Bootstrap.php" hash="a54f574a13568e3b0d79f9792b58a77b"/><file name="BootstrapAbstract.php" hash="85403088f5775085724427f2db4e3f41"/><file name="Bootstrapper.php" hash="f6ffc93f65f911d74273c97480019ebc"/><file name="Exception.php" hash="592efcd13a2430fb8a8051c77af2bdbf"/><file name="ResourceBootstrapper.php" hash="b5697b89f0bee36d64f1323ae0e6fad7"/></dir><file name="Exception.php" hash="33b45075f371aa758ab73043d9bb345b"/><dir name="Module"><file name="Autoloader.php" hash="561bbbddfd1d5d66e9950b1c5435e822"/><file name="Bootstrap.php" hash="a982af99ca3f8583e7e06754c932bee6"/></dir><dir name="Resource"><file name="Cachemanager.php" hash="aed3b8889084e6b3b46b9e1ad2482309"/><file name="Db.php" hash="a5bc7745dd9416c3cee07ca45701672d"/><file name="Dojo.php" hash="ed17a22f02f2b4b52219cb1a8f5f283f"/><file name="Exception.php" hash="e7cc6162f923bea3163ab3c72a9144c2"/><file name="Frontcontroller.php" hash="4096de73ec4a62565475ade369fa2f10"/><file name="Layout.php" hash="cc29553ce7af25e5497433b38cb33d96"/><file name="Locale.php" hash="d9ddba5ce3e52cf74e06bcaa28e9f701"/><file name="Log.php" hash="6425ed565c8ffa8d6a2061b4bed90c77"/><file name="Mail.php" hash="43d891a5921b267f2298392f5de16f2e"/><file name="Modules.php" hash="de2fead30f02effe859de66503972e1a"/><file name="Multidb.php" hash="f958bb43354951af50a592a27c1de9c0"/><file name="Navigation.php" hash="fa7ac38efd17722bb2fd0181131af18d"/><file name="Resource.php" hash="fea870fdc0a7fe568ff6f7d1d10ab523"/><file name="ResourceAbstract.php" hash="5808f3f8a2c6a349aa21e4de678fef40"/><file name="Router.php" hash="54f15d496ef84d800897d8571523e5b5"/><file name="Session.php" hash="714544fe025fa8e5db47686b58fd410b"/><file name="Translate.php" hash="9b75da2a9e3f571a90f30f14bbe72582"/><file name="Useragent.php" hash="17a0a2deba744c0fd4091fb48958b782"/><file name="View.php" hash="18803d667bd908ccfc04edc3e39d209b"/></dir></dir><file name="Application.php" hash="ef20e42c33995144dcbf822100b66e03"/><dir name="Auth"><dir name="Adapter"><file name="DbTable.php" hash="c8b79405b8855b67ffd8d6f82e6a4045"/><file name="Digest.php" hash="bbc1edafb9a244774ca986a2790e5661"/><file name="Exception.php" hash="194d445ab6929d8c5a6faefe604c64a0"/><dir name="Http"><dir name="Resolver"><file name="Exception.php" hash="cf95d8463e66b8dcc7eb679aaa0127cb"/><file name="File.php" hash="56c75079c07a8f3081841dff74f4f8b5"/><file name="Interface.php" hash="136ff303d6f17f676641db12415a679e"/></dir></dir><file name="Http.php" hash="0cfb159e07de35d89ab6754c9e409b1e"/><file name="Interface.php" hash="9baba8292deab88415d58155627009ea"/><file name="Ldap.php" hash="5bec476c61237745110b07a6981f0ba7"/><file name="OpenId.php" hash="9b87324993b0882e8add83140b24799b"/></dir><file name="Exception.php" hash="0cbee6397372cb825d4d2330f1e01cbf"/><file name="Result.php" hash="011bad9ebfb3e12cde52dc199c1b9b0c"/><dir name="Storage"><file name="Exception.php" hash="7c0657994ccacd29c396728dd3e40ead"/><file name="Interface.php" hash="336438156ed6a7db4183fbb365ec24e0"/><file name="NonPersistent.php" hash="88366aa8fd16a4c565e7a6cf467c9d45"/><file name="Session.php" hash="128255a8d51a1d9fa137e137f17b773f"/></dir></dir><file name="Auth.php" hash="6ec79877089d5629bf32dc9cfca8a5ed"/><dir name="Barcode"><file name="Exception.php" hash="5cf74c43e0bb3bda36dab4cdcf435a7c"/><dir name="Object"><file name="Code128.php" hash="989d2bf6723d392c704a9d793a0870c6"/><file name="Code25.php" hash="945a62bd63cefd4bc548aca2175a798e"/><file name="Code25interleaved.php" hash="163795899dd207d6777ed489b3652783"/><file name="Code39.php" hash="6a9d919307643317d2670d0b5a0cfc75"/><file name="Ean13.php" hash="d073b0b3b0d548aa553128e61a8f739e"/><file name="Ean2.php" hash="244bfc6ef32a4d56629c045c929138f1"/><file name="Ean5.php" hash="198f60f22d8bb1d165bff02c5820a20b"/><file name="Ean8.php" hash="8cea912422779ab67e11d8a169063216"/><file name="Error.php" hash="20edaea0778ac6253009722af4bc1ba8"/><file name="Exception.php" hash="4222bc4babead0b78ff6cd53aa72e359"/><file name="Identcode.php" hash="8a1ac5c7c3b04d3e62aa8265c4e1c2f7"/><file name="Itf14.php" hash="9384e00165c9961a203d1f135a3eaa5d"/><file name="Leitcode.php" hash="3c805e7d37dfb51e8de1f35d16ed5da5"/><file name="ObjectAbstract.php" hash="017bd4e5560bfddab60971b889d9f0a0"/><file name="Planet.php" hash="e1c10362fbc9baa5aabede9041060d79"/><file name="Postnet.php" hash="5f6845e59e609f8991fa580bbdc5eefc"/><file name="Royalmail.php" hash="8cc2c93b813ed89f4b0f6cd60df29f77"/><file name="Upca.php" hash="1485da9e266c49e993a00f9d287b4019"/><file name="Upce.php" hash="7cbde278294ce55ff3cb0857f5c014c5"/></dir><dir name="Renderer"><file name="Exception.php" hash="8579d580dcc35ccd16c82590ff39c1b9"/><file name="Image.php" hash="dba737459af451c5c51bad867b77a0a6"/><file name="Pdf.php" hash="1e2d590fe769d9ebf74d901a34635aa7"/><file name="RendererAbstract.php" hash="359cbfacb66cc0fb5ae362845b3fbf58"/><file name="Svg.php" hash="93544d770411772a4dc2c995cced685e"/></dir></dir><file name="Barcode.php" hash="0586994cdf9871ebabd7aa8079566258"/><dir name="Cache"><dir name="Backend"><file name="Apc.php" hash="0770aacd96ff057d06978bcc7a22035e"/><file name="BlackHole.php" hash="f51e1f122876be7d7ba667e39c540901"/><file name="ExtendedInterface.php" hash="fb6c1f28d7049d8ebb5b367586a386b4"/><file name="File.php" hash="292986e780e4b420968b5dfa15267a01"/><file name="Interface.php" hash="9e9a235e4aa33de40ff9fbc97efa468d"/><file name="Libmemcached.php" hash="2f9d3d284be576c031ff2195afaabc20"/><file name="Memcached.php" hash="cbee447e2af7453a2a37ddee2206f971"/><file name="Sqlite.php" hash="8c2ffff28dbe7e5c27a2bfb6fa1a4759"/><file name="Static.php" hash="8b4e8ac2f3e416316d447266e1a6f8dd"/><file name="Test.php" hash="6bcaf9deb1e13215d9fada844fa0bb25"/><file name="TwoLevels.php" hash="1d48225fde0e61fc38401841b28740da"/><file name="WinCache.php" hash="57da7293a57294e3cc2878d872230aea"/><file name="Xcache.php" hash="364f350bb7e58a221a9dda26dfd940d3"/><file name="ZendPlatform.php" hash="dd2264172835c8ac2b1cd0eba670d1ee"/><dir name="ZendServer"><file name="Disk.php" hash="092b29cf8ea2e0391e156ca38a9c8dbd"/><file name="ShMem.php" hash="94d219bd689df1b0ce1f5fe48c0fda7e"/></dir><file name="ZendServer.php" hash="6397a63f6ceba054b9c4c774451109a6"/></dir><file name="Backend.php" hash="046904b4b5c7661bbdcb6c3ec7969af3"/><file name="Core.php" hash="26e9ed27936fe7c894f36a1241b6aa35"/><file name="Exception.php" hash="64896658ade26dbd6b15851aee788379"/><dir name="Frontend"><file name="Capture.php" hash="5e7254e902e587587a9f7c1749787690"/><file name="Class.php" hash="e0fba9da74e040fc5fcbfeede03147d2"/><file name="File.php" hash="291450665f2b240c3a1d0b8f81d9e505"/><file name="Function.php" hash="80926f9d0d94953c8534f381b3e9e92b"/><file name="Output.php" hash="b3902a3f0ddf1b4608b84f6172a317e6"/><file name="Page.php" hash="d447d1e18b8c9ccfe95f5cbd4f8ad0aa"/></dir><file name="Manager.php" hash="bba8e1dfc892616eccc5f033d3849aec"/></dir><file name="Cache.php" hash="dd6b3426e3682f832f5e73a5a5e7bbe4"/><dir name="Captcha"><file name="Adapter.php" hash="c80da3e14f86386865a1a11f386509f0"/><file name="Base.php" hash="f3f587f183c8dbb0f71b588a99f56728"/><file name="Dumb.php" hash="42cf7479a157ab4f6d92f4ea2edd402f"/><file name="Exception.php" hash="a1ea444d80d4629ae987f5120d7b6ab4"/><file name="Figlet.php" hash="9434c31c17fa4558d823f72863bda27e"/><file name="Image.php" hash="8f1bb1448407f673d986cc387846bf3f"/><file name="ReCaptcha.php" hash="7213da2f0082b6a209bf5659d5279036"/><file name="Word.php" hash="2b20aa38f1132306e259f4032ad1de6e"/></dir><dir name="Cloud"><file name="AbstractFactory.php" hash="0360f699d631c5eb6f1f5e117a2a6524"/><dir name="DocumentService"><dir name="Adapter"><file name="AbstractAdapter.php" hash="3679fe7eef0b73516d98565b35e90366"/><dir name="SimpleDb"><file name="Query.php" hash="163f21a702cb5aa76d58682d29559bd2"/></dir><file name="SimpleDb.php" hash="78628ea1029ec6f267c83c302611b6e8"/><dir name="WindowsAzure"><file name="Query.php" hash="657934a415bd7d731906ebb3fa42187d"/></dir><file name="WindowsAzure.php" hash="9a48103bc6327e24a98f27307641c397"/></dir><file name="Adapter.php" hash="22799d67b8935e871e9fcb5403617a9d"/><file name="Document.php" hash="e76315e7e307aa99dae6d634b51c2ece"/><file name="DocumentSet.php" hash="53cabe8e2d6454beab6b476953fb9a58"/><file name="Exception.php" hash="e69eb63ef3ac0476422e553c0f9d0b7c"/><file name="Factory.php" hash="d11189e3ba364466584a8461e9bea29b"/><file name="Query.php" hash="dcf377f4d08e1adc178dcef42a7e21d4"/><file name="QueryAdapter.php" hash="b683d5360841a57b8b58f0ac937b4991"/></dir><file name="Exception.php" hash="baa1da441578d83ef668c947bc26993a"/><dir name="Infrastructure"><dir name="Adapter"><file name="AbstractAdapter.php" hash="1a0c85424e055522ed27fd848641adb9"/><file name="Ec2.php" hash="f702d42320cb2a843124faeff6308673"/><file name="Rackspace.php" hash="12ca011eaa260a98e5f0b021497d6d9f"/></dir><file name="Adapter.php" hash="8fd0db5ff41dd87d2730981cf6a651e6"/><file name="Exception.php" hash="dd74945bd044a9b569715d8b8f33d6c6"/><file name="Factory.php" hash="e35fedab839a9897bd494b4525c70d74"/><file name="Image.php" hash="d0b5a851095a8a6d00cc758e66de65d0"/><file name="ImageList.php" hash="330f4330efa43095c73963860719d8dc"/><file name="Instance.php" hash="aa600d04524311d6da4bfac324aae00f"/><file name="InstanceList.php" hash="9f5c27c450518e4090aa5200261e0804"/></dir><file name="OperationNotAvailableException.php" hash="cb15f6dfb2c6caf15bf3d3c7192a2859"/><dir name="QueueService"><dir name="Adapter"><file name="AbstractAdapter.php" hash="6aafd9d7c44e76e68dd7b8ea83aea6fe"/><file name="Sqs.php" hash="03b431d971a7679aa43dba8d235fd9bb"/><file name="WindowsAzure.php" hash="b4762cebc1460850e73552d5a617ea6d"/><file name="ZendQueue.php" hash="d8aaa2f4ec3302693fcaee2833339bac"/></dir><file name="Adapter.php" hash="c950feca6fdab3f115ba62146e9c4061"/><file name="Exception.php" hash="0406a9d40baf106b1e7c7a52c58622ce"/><file name="Factory.php" hash="1489be14015fdbc7364317e2e6fdb4dc"/><file name="Message.php" hash="48907828e50d23674d1500834ac33d96"/><file name="MessageSet.php" hash="f4371e5f68036dbea532b7899c59679c"/></dir><dir name="StorageService"><dir name="Adapter"><file name="FileSystem.php" hash="a916c70022b7554939e2fd73b0e37bd4"/><file name="Rackspace.php" hash="d5b49d598b7a2ca875599df0c07d17e2"/><file name="S3.php" hash="36d663a296803282ec6ffbb4d1f6ecf7"/><file name="WindowsAzure.php" hash="1c266330be81f9034e491cdc5c0becee"/></dir><file name="Adapter.php" hash="4bf256cad4b27a0b4ccd0ea0d2e5df44"/><file name="Exception.php" hash="b1938d4a1d75a132c7896c9d1d49c316"/><file name="Factory.php" hash="e60551fd66495592c25f2143683c0eae"/></dir></dir><dir name="CodeGenerator"><file name="Abstract.php" hash="8bb5c3fb76b0953dad77b8aefd240552"/><file name="Exception.php" hash="2f35c31886c1506cbce95bd48ceb8302"/><dir name="Php"><file name="Abstract.php" hash="7ffc414197119b98d09c089d38b745cf"/><file name="Body.php" hash="4354cf77549e88c8ef742f74df428824"/><file name="Class.php" hash="e96e076b5e9a7a41b9dff5d65d65cbf8"/><dir name="Docblock"><dir name="Tag"><file name="License.php" hash="fa6989bdda9dcc8eed58dfcd5cd11d3e"/><file name="Param.php" hash="c5402463f594b0ada366547e2140c087"/><file name="Return.php" hash="d36a1b1dbd2383043b9703449212218e"/></dir><file name="Tag.php" hash="94c4d5bf7254f1122a9140578562cf4a"/></dir><file name="Docblock.php" hash="3630eee3a36264ed70bb414b1b6659d2"/><file name="Exception.php" hash="4d0d644d274ba0d93c86edabe96a937a"/><file name="File.php" hash="16190c6965142355870ea2d86065c2f3"/><dir name="Member"><file name="Abstract.php" hash="a07d1b1c01755725fd9c670b83e14c6e"/><file name="Container.php" hash="52c0f2936e0dd96e3efaca239e97a537"/></dir><file name="Method.php" hash="facb978030d8ed1148d3fd9b27647a5c"/><dir name="Parameter"><file name="DefaultValue.php" hash="402dc7efb5a973be4b3695d97df9d5e6"/></dir><file name="Parameter.php" hash="f963e92d375973d82c64e9aeeb99aa68"/><dir name="Property"><file name="DefaultValue.php" hash="23583ff2c6b01162f217d3f18e17f5bb"/></dir><file name="Property.php" hash="5d85c620c090d866edd2cc4af3bb0737"/></dir></dir><dir name="Config"><file name="Exception.php" hash="825b93db4d92fc10ff2334d0701ac39a"/><file name="Ini.php" hash="bc377745cc51608820d81f08bb5e622c"/><file name="Json.php" hash="191c7eb21cbb2042491e5548a59087a4"/><dir name="Writer"><file name="Array.php" hash="fa6b3a9d9f68cc5973db7309b93454eb"/><file name="FileAbstract.php" hash="14f344ccee37bac7224aa203e5be6bf5"/><file name="Ini.php" hash="c658c697e401b7fab66edac3e5ab5edf"/><file name="Json.php" hash="675cff174476aab6e44540ce20b9ef6f"/><file name="Xml.php" hash="0ff4954d3f6be816d2911cc236d588de"/><file name="Yaml.php" hash="0a6d7e361af7f4f5cff8a9eb81264318"/></dir><file name="Writer.php" hash="7bca990f32b4a7bf64b6d7bcd6a8b144"/><file name="Xml.php" hash="24d64c4d3269a55f1577d40717069b3f"/><file name="Yaml.php" hash="d559550b7de8c77f03a6d8c5ab1af715"/></dir><file name="Config.php" hash="0ec674c135a25bb65bf7f2f536496373"/><dir name="Console"><dir name="Getopt"><file name="Exception.php" hash="ba4d96e50ff729964f51d3ff320a695b"/></dir><file name="Getopt.php" hash="cce42f5f0fcb389e32e176ee482ea022"/></dir><dir name="Controller"><dir name="Action"><file name="Exception.php" hash="5c5bfb99e09c49bfd42afc92cca046a3"/><dir name="Helper"><file name="Abstract.php" hash="2db15ec4775320a42a86fc96ded791f6"/><file name="ActionStack.php" hash="72d618b0c01345a39b86362d00b519e5"/><file name="AjaxContext.php" hash="d25cd19237deee404b1d78c3babc51e6"/><dir name="AutoComplete"><file name="Abstract.php" hash="8265a4c01db3fc5ef8359855b5bc7de7"/></dir><file name="AutoCompleteDojo.php" hash="bc727565a422d34c4ee642604bca989f"/><file name="AutoCompleteScriptaculous.php" hash="423035f705a0ead78f0b508915f9f11d"/><file name="Cache.php" hash="5e1ee2f20930ce3ce6c9ff95c7986fd5"/><file name="ContextSwitch.php" hash="bbde32302aea3a45df7525ee558ba61b"/><file name="FlashMessenger.php" hash="6f60de563b5b400d75b630f359ce09be"/><file name="Json.php" hash="46f702a70e0d5e4ecff66439b34502aa"/><file name="Redirector.php" hash="2e6a99e37b8c0926db7c2b118298f940"/><file name="Url.php" hash="16c5a98afe9f6f14bee59bbb0ee58583"/><file name="ViewRenderer.php" hash="8467c55662e5afdd65308fca17421a78"/></dir><dir name="HelperBroker"><file name="PriorityStack.php" hash="9919f1af00251ac5d7a362dba0a280c8"/></dir><file name="HelperBroker.php" hash="aa9cf211934ac5b4fc9e4220ad26d7ca"/><file name="Interface.php" hash="0cb0ece63ce5a245010b9c79927149fe"/></dir><file name="Action.php" hash="1eff5915284945de72327a06cb10c10a"/><dir name="Dispatcher"><file name="Abstract.php" hash="3a481b8b2beb61d223f1c90757339a6d"/><file name="Exception.php" hash="21e0c2b4a1f642448f391e0601bf8327"/><file name="Interface.php" hash="323c3bfe932dca40b3f0f18ebaa39bf4"/><file name="Standard.php" hash="ccbde33f1d7616c2c35ee556039b12a0"/></dir><file name="Exception.php" hash="75ef40958ca34b2ce0007a6a9bd11b62"/><file name="Front.php" hash="a0cd827d65e2d2cc1d51d96009d61032"/><dir name="Plugin"><file name="Abstract.php" hash="4f9c2a5fcb32f0f02d01559c2900e2ff"/><file name="ActionStack.php" hash="dc0f223ebf96304711e62b0ff066cbe6"/><file name="Broker.php" hash="4558d24e01418e1a7a4a45f8a0419b05"/><file name="ErrorHandler.php" hash="1b86cb0d967cb3a80091271532e5f29f"/><file name="PutHandler.php" hash="5b65c0f667538e81cd5152060b1fc50e"/></dir><dir name="Request"><file name="Abstract.php" hash="479150985f9f5b1ad60da1c627ba5422"/><file name="Apache404.php" hash="6e4073adcf927bc08c36267350259110"/><file name="Exception.php" hash="401a6bfe6ee4f2eef739d5622d457235"/><file name="Http.php" hash="7cee6c46375e04aafe72986adb2581df"/><file name="HttpTestCase.php" hash="730f41d84663c556e75c6276f307dbb8"/><file name="Simple.php" hash="4debb461f0bf9c865b3ef7e9a2f9eec1"/></dir><dir name="Response"><file name="Abstract.php" hash="41812ba5c1950b91ca6db21c36a65022"/><file name="Cli.php" hash="1be9de58bd3af4e70797422c5936b9f0"/><file name="Exception.php" hash="daf74bb0fb6ffed9c50a414b78947388"/><file name="Http.php" hash="1b97675e6f09aca759dd04cadc2ada31"/><file name="HttpTestCase.php" hash="b8e25dbcd9245fce7f9e985aedb53ab2"/></dir><dir name="Router"><file name="Abstract.php" hash="7c3976721fbba2c462793f6152a7952a"/><file name="Exception.php" hash="10f91dd02d28dfb9c5de84d778f5e451"/><file name="Interface.php" hash="3f0e4586ac18e02e172ff65e1228a197"/><file name="Rewrite.php" hash="333634b9f184476914d985f68d06b12a"/><dir name="Route"><file name="Abstract.php" hash="c0437b622e03a117783fc6d8c2a581da"/><file name="Chain.php" hash="09f85b7090846555fa6f68c0f9dbcecc"/><file name="Hostname.php" hash="b54e6b9f68ffa63f9c493f82606ab2ac"/><file name="Interface.php" hash="80dd1da3a1fe916fcf173891716985cc"/><file name="Module.php" hash="dca7ac356221ebd066c5b17a72557551"/><file name="Regex.php" hash="4bcd3642f6ee8d66b9ec9cf591cfa121"/><file name="Static.php" hash="2bc26cb37610470e8fbb0e9302e76175"/></dir><file name="Route.php" hash="9be953ae63b6074535656826c99f88dd"/></dir></dir><dir name="Crypt"><dir name="DiffieHellman"><file name="Exception.php" hash="27066062da23c7b0b5c8ea405d63424f"/></dir><file name="DiffieHellman.php" hash="b146591071090ba7dc2d120c8d7cfcb1"/><file name="Exception.php" hash="98d264f8b46a12e8e1fa644b37488636"/><dir name="Hmac"><file name="Exception.php" hash="3b8bf2fed9087ce573c7d9e461211d01"/></dir><file name="Hmac.php" hash="7beea2bae905ad98fc8212a5a2ba906c"/><dir name="Math"><dir name="BigInteger"><file name="Bcmath.php" hash="7ad0514366aa1cfbbacf9a841d17209d"/><file name="Exception.php" hash="c7047b1ec96c2c5bf9d2ec8fd516c232"/><file name="Gmp.php" hash="1e136ad9748ff4e120be567de7195084"/><file name="Interface.php" hash="a1a15aadc0d1232e19e3660778e25a4e"/></dir><file name="BigInteger.php" hash="5941fbc6fa7558f254212a5c704de46f"/><file name="Exception.php" hash="0a2a9e2cdf2619549bb1891d31565cb4"/></dir><file name="Math.php" hash="0e54c36e33bb980ba251c42719e72e48"/><dir name="Rsa"><file name="Exception.php" hash="9af79ec754f6202584671b395e9898cb"/><dir name="Key"><file name="Private.php" hash="6b8486eba224159d7c05dea23039ec8e"/><file name="Public.php" hash="8cd4ac9225b58e1a2990659f4a97a45d"/></dir><file name="Key.php" hash="a0c0daf511c3a74d1e754faeaace0f83"/></dir><file name="Rsa.php" hash="e46289dffb56184f7c15faa3b24a0a68"/></dir><file name="Crypt.php" hash="ae1d981cb224263c8625604621d0ffc9"/><dir name="Currency"><file name="CurrencyInterface.php" hash="c52c23140b8d66185e2792cb10c65b40"/><file name="Exception.php" hash="f04c4fcb9b9b4117ab0c91e688904a06"/></dir><file name="Currency.php" hash="e380eca83740d28bb55435c3489204cf"/><dir name="Date"><file name="Cities.php" hash="4698b47f264db687c97ea7fa5ccd717e"/><file name="DateObject.php" hash="9e1b68aa0a0da3652516b00f3b4b0d03"/><file name="Exception.php" hash="b91a2d166cf91afa1325a07747bafe57"/></dir><file name="Date.php" hash="6d17472f661d6b599477f215dda67f82"/><dir name="Db"><dir name="Adapter"><file name="Abstract.php" hash="7d5a1b64e9f292c018fec8fca159311b"/><dir name="Db2"><file name="Exception.php" hash="b64143620db1d7e5cd7b90312aeaf7bf"/></dir><file name="Db2.php" hash="d27757593a5be92da47326b25af8b4a4"/><file name="Exception.php" hash="461a43822f24e3e79bf8a844541235a3"/><dir name="Mysqli"><file name="Exception.php" hash="71ae5837eee0e261ba7639dff878845c"/></dir><file name="Mysqli.php" hash="c997a7381205b413a03efba602f2debd"/><dir name="Oracle"><file name="Exception.php" hash="8a08377363d09d1711c31ed0e2b4f220"/></dir><file name="Oracle.php" hash="2c539f9ac5ce7e656f3432c9aa00daae"/><dir name="Pdo"><file name="Abstract.php" hash="94b52dce22acdcc307e2aa01f88bfde2"/><dir name="Ibm"><file name="Db2.php" hash="b947c61e9abf1f277adb40dc1aaf6319"/><file name="Ids.php" hash="a2d4fcf42c7b9435515399862224d74c"/></dir><file name="Ibm.php" hash="1042d1f01417241dc09679e1edb3a248"/><file name="Mssql.php" hash="65c9aaf2c21a48b5a6768709d8409c62"/><file name="Mysql.php" hash="0ca1bc627085e101ce51e02328b16347"/><file name="Oci.php" hash="819a1b3d31d7f65ba3f9de49ceecdf30"/><file name="Pgsql.php" hash="1b7fde0593b3799e4afa1f74b63499d7"/><file name="Sqlite.php" hash="efb68039f3e1b9e34a81c3dc9d0e8f20"/></dir><dir name="Sqlsrv"><file name="Exception.php" hash="097530f562d1993a992d6f62aadea809"/></dir><file name="Sqlsrv.php" hash="0fb64191a2d9e688410094c736d5eda6"/></dir><file name="Exception.php" hash="aebb5d861915d6a2494c58fc343f2752"/><file name="Expr.php" hash="2dca05427df6b34d6da9fb872517f684"/><dir name="Profiler"><file name="Exception.php" hash="42d03d9fd63aada757d6dabacdb73cb0"/><file name="Firebug.php" hash="1f5b0198a97091bba6ec8a8f74f3cf1a"/><file name="Query.php" hash="fe0bfc38389c14cecc76d528e33bfe83"/></dir><file name="Profiler.php" hash="e7327368b94ae8e094c602e41f617609"/><dir name="Select"><file name="Exception.php" hash="f8b241a9791bc28c77ca8c14cf80ba84"/></dir><file name="Select.php" hash="4f5bd4393d84efa9b8a9930e3071c86c"/><dir name="Statement"><dir name="Db2"><file name="Exception.php" hash="05225962b3d3107841d87d0d6c4ca9de"/></dir><file name="Db2.php" hash="36c397903c5e07ebe5b82b5e76030c7a"/><file name="Exception.php" hash="d41110267373d38bb4af77e1785329ae"/><file name="Interface.php" hash="222f50673200f578767b1e0c43d5a6bd"/><dir name="Mysqli"><file name="Exception.php" hash="1932b0ae9232ab79ccacadd46a45f022"/></dir><file name="Mysqli.php" hash="64e3e41642115ec95cce487da79fe737"/><dir name="Oracle"><file name="Exception.php" hash="59588ef7feadf4b0a726d1e1410f10bd"/></dir><file name="Oracle.php" hash="3fd727a08bbb347495dd6a2fb044defb"/><dir name="Pdo"><file name="Ibm.php" hash="aadb46dbcc67223ab9e240c35301cb0d"/><file name="Oci.php" hash="75a7032f82e8e29f52a8994a847e9533"/></dir><file name="Pdo.php" hash="91da6eddeaa94a88bcea2c3c912480bb"/><dir name="Sqlsrv"><file name="Exception.php" hash="925701544428f06183ecbb6718047839"/></dir><file name="Sqlsrv.php" hash="4d49d2edc91902768b1685768ac0421c"/></dir><file name="Statement.php" hash="48578c5307d13998d3b9dc73486bb666"/><dir name="Table"><file name="Abstract.php" hash="d1f0eb94b3a83abab809a132edec8d70"/><file name="Definition.php" hash="056d17187e24f48f42059889802ade8d"/><file name="Exception.php" hash="4ad0192e2759ce865081bfd65fba1537"/><dir name="Row"><file name="Abstract.php" hash="79e1dca4c87a158d36b171b11ec721a5"/><file name="Exception.php" hash="3182c2febc7a67988a02a2f4e3262c7c"/></dir><file name="Row.php" hash="adb2429446ad01b98bf74a1c79802009"/><dir name="Rowset"><file name="Abstract.php" hash="6474578f17e077f0d176de3d41bd43fa"/><file name="Exception.php" hash="c5e373d4e4d06e728572b3ca8c5d7d40"/></dir><file name="Rowset.php" hash="0534466fa3f58d60e28761013df1035d"/><dir name="Select"><file name="Exception.php" hash="c87230b6b7401370de518e6ad7218203"/></dir><file name="Select.php" hash="4a86cf29c8e383613e79caa5ef51ca36"/></dir><file name="Table.php" hash="bddf2a8c1ee791ef8a75fd81362a95b9"/></dir><file name="Db.php" hash="944811d3042ae76f201ce5ccee064693"/><file name="Debug.php" hash="e91277596844e74a3189f72b260d743f"/><dir name="Dojo"><file name="BuildLayer.php" hash="59fd3f007b9ddfe836308735a4fad349"/><file name="Data.php" hash="584f49393cc79deedcd43f36ff7cf68e"/><file name="Exception.php" hash="ce849ec1ac41925ce396495a4c0b5e5f"/><dir name="Form"><dir name="Decorator"><file name="AccordionContainer.php" hash="5ccfa22f987078a553c8334a1751a78e"/><file name="AccordionPane.php" hash="bfb6959fc54968e6e631a7b812f795cc"/><file name="BorderContainer.php" hash="3630699c89e4d611d463952ab7b616af"/><file name="ContentPane.php" hash="f5e7d589fc667a74c537f1c4a1d2f1ee"/><file name="DijitContainer.php" hash="6e30cb3a91ee447e6d9ae587a5b08fdc"/><file name="DijitElement.php" hash="63a591c8ae6f23a5fac3c4c4799849b6"/><file name="DijitForm.php" hash="3107c8e3a51efd7cd960a4d140fd2552"/><file name="SplitContainer.php" hash="32118776073ace34a7a6e6b775f7a41d"/><file name="StackContainer.php" hash="511f80fb7e777c7420df3a33e5d36df3"/><file name="TabContainer.php" hash="bfba332a70e20ac8e4bc1f9a7b488ffe"/></dir><file name="DisplayGroup.php" hash="4fc35365159beb7532119735b43ac5ae"/><dir name="Element"><file name="Button.php" hash="3ed66e9ab5b21731a355a35cc0bdadc5"/><file name="CheckBox.php" hash="cdf55f6261658dc12c508397228c86d5"/><file name="ComboBox.php" hash="ad263405d78671cb38f39a42f4153306"/><file name="CurrencyTextBox.php" hash="8a0101a9a7fdc7504fe882222df91d8b"/><file name="DateTextBox.php" hash="b1a766b9190c2c124d34d59d8c742f04"/><file name="Dijit.php" hash="8389aeca66aecb8a39d9341f81ded916"/><file name="DijitMulti.php" hash="bd0fe55261b57bcd2c92ea196eceaf08"/><file name="Editor.php" hash="bb3636533a931bc1f9a5782ac4c66565"/><file name="FilteringSelect.php" hash="d330a4330b410089733f8c1eeb1839e2"/><file name="HorizontalSlider.php" hash="b23bd0da212335080121f31e318f743d"/><file name="NumberSpinner.php" hash="9ae185b60accc9edb7baed24b93ca540"/><file name="NumberTextBox.php" hash="cc340c040ab7c8eaa02bf401a9a91bc3"/><file name="PasswordTextBox.php" hash="48b304d5bbfb2417adf1724362e032b6"/><file name="RadioButton.php" hash="80e8b86eaf8258626084f54272a7a576"/><file name="SimpleTextarea.php" hash="69791b92fb7d656676266fe53592b6b0"/><file name="Slider.php" hash="21f9f99bb495bcf2997a022f6a43c276"/><file name="SubmitButton.php" hash="52c7e25fd90d33b9501150746b046e14"/><file name="TextBox.php" hash="874413d9bf8c39f9a7a73d7175842cf5"/><file name="Textarea.php" hash="1fab8c9619163b0fd1cdeaf4bf4113c7"/><file name="TimeTextBox.php" hash="6ab9be9f6555bdc14ba9a02fb18c3157"/><file name="ValidationTextBox.php" hash="dd456a154f47bc74e05834800490ad53"/><file name="VerticalSlider.php" hash="c99c979911b12b2907b9ce727d595f42"/></dir><file name="SubForm.php" hash="46b28da42e2447cdf7f23ce8635a6243"/></dir><file name="Form.php" hash="5dc7b152deef6e0fedf0c0caa73f7c68"/><dir name="View"><file name="Exception.php" hash="fed5a27397fd8fb08841c1db38364df7"/><dir name="Helper"><file name="AccordionContainer.php" hash="3b2eaa765a22ea9a2d3d2e507da446b8"/><file name="AccordionPane.php" hash="94b8d5edb317926ca8aee3539c33ce8a"/><file name="BorderContainer.php" hash="f8b3939b919a3f961c8da6196b2166be"/><file name="Button.php" hash="e1e816f2362a2f973acceadb1414de98"/><file name="CheckBox.php" hash="43f1a6ad27883f62cda4bc1b560c9f89"/><file name="ComboBox.php" hash="d2811e390eb44a4f3e953c241949db0e"/><file name="ContentPane.php" hash="041084c11934376f3f759154a1835abf"/><file name="CurrencyTextBox.php" hash="56f2046e985a0d1cd81ba0d045f91a7a"/><file name="CustomDijit.php" hash="34bfe4e1501f8dc1227adcc9b7e2b20b"/><file name="DateTextBox.php" hash="81bdffce0b2acb693a7c2cbd3941f156"/><file name="Dijit.php" hash="7a1eb3742998cbbabac1b2338a590566"/><file name="DijitContainer.php" hash="3091a920fbfb48215a59f73be1988eaa"/><dir name="Dojo"><file name="Container.php" hash="e40d8395af2e395a2e81d593e8f4602c"/></dir><file name="Dojo.php" hash="6303c9d4ede5b67cc828ead89c4016a6"/><file name="Editor.php" hash="f251624a2b798b53eea465d9938ac276"/><file name="FilteringSelect.php" hash="60bbdd84239febff9241199104b4cf1a"/><file name="Form.php" hash="105f502558eb241c81c39be0e5d85a72"/><file name="HorizontalSlider.php" hash="7b3c19156aee3db41dbaee18abe2ded7"/><file name="NumberSpinner.php" hash="cf27c892acfeb8ba60027bba29d8715a"/><file name="NumberTextBox.php" hash="9674fa01666c5622896d4513da69ce8d"/><file name="PasswordTextBox.php" hash="0ba727cff497c3b580bffaf04eecc75b"/><file name="RadioButton.php" hash="ddd9733fd29a47cf20f224115895d2cb"/><file name="SimpleTextarea.php" hash="8162db2b947a8b380099ee4266bd2edb"/><file name="Slider.php" hash="b09cd129a4885cb799978b234e8ef496"/><file name="SplitContainer.php" hash="8fa96d45ff63d2b0f24250856afea806"/><file name="StackContainer.php" hash="f3f24abf9640124f26274b9663eccd5d"/><file name="SubmitButton.php" hash="9083d4797eb4be0a879951a88be9a6f3"/><file name="TabContainer.php" hash="8b6865aa0b8015b220896d3487ec0966"/><file name="TextBox.php" hash="75b65da85221b840ff6f3bd4d38890e2"/><file name="Textarea.php" hash="58421d644f61edc039bdaf8b2d13af7d"/><file name="TimeTextBox.php" hash="7865f42c62fd06ead74987324d2310d0"/><file name="ValidationTextBox.php" hash="59bc7469004e22811c038791462d67a7"/><file name="VerticalSlider.php" hash="9c113d757c1b99048d09ba8949452034"/></dir></dir></dir><file name="Dojo.php" hash="3d5a5b6120bb16fbde6a24fc082bb2e7"/><dir name="Dom"><file name="Exception.php" hash="764e44b0e7b8346387c4b677e725d6bf"/><dir name="Query"><file name="Css2Xpath.php" hash="84d8020779e37ed005fa2ca53052731c"/><file name="Result.php" hash="2c8f3fdb6f945804d2a2b5881b5c0567"/></dir><file name="Query.php" hash="2453f8d8b245fd5505ce023872a5fcc5"/></dir><dir name="EventManager"><file name="Event.php" hash="73a22bba4a1536ad0bedb311992ed841"/><file name="EventCollection.php" hash="6846535fe1c08a148593082878839b2b"/><file name="EventDescription.php" hash="6cb5b7a743c322cc486c09de9e2466c1"/><file name="EventManager.php" hash="775973335393a6aab98b63fd7e580f6f"/><file name="EventManagerAware.php" hash="616ae31ca46f1f0206e28851f408e777"/><dir name="Exception"><file name="InvalidArgumentException.php" hash="4651b42388b3cc0f6a8c77b8c92a988f"/></dir><file name="Exception.php" hash="a7a76fcb8615694bebfd1b7a6c63cc2e"/><dir name="Filter"><file name="FilterIterator.php" hash="479bdbab563e57ade8718744d6a9eaed"/></dir><file name="Filter.php" hash="a6705be98a15d9abb250329a18bc5f44"/><file name="FilterChain.php" hash="0bbe4e22e4bd7731c91b0d8849e24dd4"/><file name="GlobalEventManager.php" hash="2448f17e7235ad32e0986dccaaf6f21f"/><file name="ListenerAggregate.php" hash="e0bf702bb54b9ba2d54828a2d66d2954"/><file name="ResponseCollection.php" hash="14500f355513b35b17a7dd7e947f5301"/><file name="SharedEventCollection.php" hash="0504cdf3c7168fa6e6a1d164705617c7"/><file name="SharedEventCollectionAware.php" hash="c53dea67b8742191c78911a87cf4c1c5"/><file name="SharedEventManager.php" hash="973daf2597a36f485ec43ae91f53fbef"/><file name="StaticEventManager.php" hash="47bc3c834d44e64eab6ea0b0c0a83eba"/></dir><file name="Exception.php" hash="fdca55eece8acc76af7ec98eca620311"/><dir name="Feed"><file name="Abstract.php" hash="66b85329fd8524fc66b93c16397cc49d"/><file name="Atom.php" hash="24d80774c71e1932b8be5054793d4fd6"/><dir name="Builder"><file name="Entry.php" hash="4871eb1a5d2084552d48b346fb9424ae"/><file name="Exception.php" hash="f8d2074819dd7157b4de4428579958c9"/><dir name="Header"><file name="Itunes.php" hash="da87e20a7e6b587316644377c8cc3c55"/></dir><file name="Header.php" hash="7e1b1053ef90762e3b6d9933cab4964b"/><file name="Interface.php" hash="407dbfd89e522c6e033214974954ad9c"/></dir><file name="Builder.php" hash="9453c5958f2cc22bd37a1e8e8de22ff7"/><file name="Element.php" hash="04f6a067ec047936af106f5a3ee9f0ee"/><dir name="Entry"><file name="Abstract.php" hash="44340d16439984b02edd6f26d7a1885e"/><file name="Atom.php" hash="a2642776469712e0e2dfcc0912e98aa3"/><file name="Rss.php" hash="93e478df77e9c9c43c55334ce2165a8d"/></dir><file name="Exception.php" hash="3ce015184369dd3392923dba02ccb4ab"/><dir name="Pubsubhubbub"><file name="CallbackAbstract.php" hash="5fc3da695c59069c88f54206485038c9"/><file name="CallbackInterface.php" hash="3b8478bc6bac3d9309c0fe7ba6f89dd0"/><file name="Exception.php" hash="028e2d741379246df90e62b96393ffe9"/><file name="HttpResponse.php" hash="6a929e3ac877b89fd0b8664b9894f953"/><dir name="Model"><file name="ModelAbstract.php" hash="ce0a0b0b03f77348b066a947e4d4a087"/><file name="Subscription.php" hash="99c0b396f4e21b0fe2bc3c068220958e"/><file name="SubscriptionInterface.php" hash="63f95bde2e9254d0e3c31b905fea78bc"/></dir><file name="Publisher.php" hash="44d781a089ad5ac1ee949b74badad6ca"/><dir name="Subscriber"><file name="Callback.php" hash="c50e22f4bec18ed4365b7a7fd472db69"/></dir><file name="Subscriber.php" hash="3a06e76251527da315017fd545595ee2"/></dir><file name="Pubsubhubbub.php" hash="9187f4accebd9b1b23010e141485f2c8"/><dir name="Reader"><dir name="Collection"><file name="Author.php" hash="bd0aee1688a6905cfa60ad3df2876d42"/><file name="Category.php" hash="0ac74f5a4ea9492998e7f76e6e959283"/><file name="CollectionAbstract.php" hash="a0d023979ca9ca7c2fdf93e0acb36745"/></dir><file name="Collection.php" hash="6a92b8355578f92468d24f03c33f6e7b"/><dir name="Entry"><file name="Atom.php" hash="c4f9ba356c97d5ad4ad6a5a210fa5d31"/><file name="Rss.php" hash="01b9d9b750ec9c730bc3fa624629deeb"/></dir><file name="EntryAbstract.php" hash="b9e05d05ad657e24bca3947764bf4aba"/><file name="EntryInterface.php" hash="3e33c60c08158ac0398bb9f05ec2090b"/><dir name="Extension"><dir name="Atom"><file name="Entry.php" hash="6baacc2e3ddc23ad3cfa9e190fd54157"/><file name="Feed.php" hash="16e84c49d96b759d10b1fe86982cca2f"/></dir><dir name="Content"><file name="Entry.php" hash="4a01e7b785bc08518739d03825f8c7af"/></dir><dir name="CreativeCommons"><file name="Entry.php" hash="4c7cc6a5ddcb6971e2a7d30c701151b7"/><file name="Feed.php" hash="40b8c9f5146271c2fe7433f7daff07ac"/></dir><dir name="DublinCore"><file name="Entry.php" hash="3ff54fc3fe5df35c8ba4075ed42dabeb"/><file name="Feed.php" hash="56f06a3e2739c70c66da54e7608c9496"/></dir><file name="EntryAbstract.php" hash="fb62ce68f7a440fac11ec666e9e4bc22"/><file name="FeedAbstract.php" hash="c1283a62809662e762cd0a7875b0b913"/><dir name="Podcast"><file name="Entry.php" hash="738c47a9b19c44bedbce6a6e901ee173"/><file name="Feed.php" hash="23c593352bc891c6bbce22e98da18f6e"/></dir><dir name="Slash"><file name="Entry.php" hash="29d24797987342ea6a580a48af0accb5"/></dir><dir name="Syndication"><file name="Feed.php" hash="67ec064681ba8a77b4f6d44a35d4d8f7"/></dir><dir name="Thread"><file name="Entry.php" hash="202da1cb171c55d435b125cfb264d874"/></dir><dir name="WellFormedWeb"><file name="Entry.php" hash="88c3ee8f88632712522d206426a2927c"/></dir></dir><dir name="Feed"><dir name="Atom"><file name="Source.php" hash="71d4bceda67dd3a4acbc45bbee33853a"/></dir><file name="Atom.php" hash="042c93075ae2e933e5241750c101d3de"/><file name="Rss.php" hash="e354bd24fbf48a5bab9d518e3912bd93"/></dir><file name="FeedAbstract.php" hash="e577cfdd039f4025877f12d2d08dcce6"/><file name="FeedInterface.php" hash="7eaed63ef055848aa1b299bc98d8cc11"/><file name="FeedSet.php" hash="5ba5f156ac7607b73929dac85826c659"/></dir><file name="Reader.php" hash="d9bc6e5b898eb8be4fa72e313e89bccb"/><file name="Rss.php" hash="e14ca674ad56d9ce18df5d9728c770bc"/><dir name="Writer"><file name="Deleted.php" hash="35aad5db793b86ca638a81d052c6ae14"/><file name="Entry.php" hash="87c1a1d4b637d4918f5fabe8b56c1a9a"/><dir name="Exception"><file name="InvalidMethodException.php" hash="02419d36ca4d923b7ae46f8cf5e9808b"/></dir><dir name="Extension"><dir name="Atom"><dir name="Renderer"><file name="Feed.php" hash="e1c642e0775de8ace9639daff1a932aa"/></dir></dir><dir name="Content"><dir name="Renderer"><file name="Entry.php" hash="f86cd399902d04ab6652aa952c81916f"/></dir></dir><dir name="DublinCore"><dir name="Renderer"><file name="Entry.php" hash="6f79082f7b75e1d7b73930169ff6d5e0"/><file name="Feed.php" hash="8b6825b40579ce795e0018eac48a0fa6"/></dir></dir><dir name="ITunes"><file name="Entry.php" hash="e23d802f1cc74b432a3c5362be650c55"/><file name="Feed.php" hash="ffa388bb1b1c868a92978ee85f3c8d50"/><dir name="Renderer"><file name="Entry.php" hash="184f5e6f780c987cb55374c6b899dee2"/><file name="Feed.php" hash="c5df3307f99f2349024d3a31612d67a5"/></dir></dir><file name="RendererAbstract.php" hash="427c8bd29a3f0aec64f2034405b8fa89"/><file name="RendererInterface.php" hash="2cbb9d13b450a08098921fe99f5084bf"/><dir name="Slash"><dir name="Renderer"><file name="Entry.php" hash="95b4d946971ccd12e852d36125e241ad"/></dir></dir><dir name="Threading"><dir name="Renderer"><file name="Entry.php" hash="81fa4f73e25ce35482f8ea2d01ceac48"/></dir></dir><dir name="WellFormedWeb"><dir name="Renderer"><file name="Entry.php" hash="45c4795ca01add23d35af6ca1961a27b"/></dir></dir></dir><dir name="Feed"><file name="FeedAbstract.php" hash="65fa012f95547e0e63deb8715038c9c0"/></dir><file name="Feed.php" hash="699463ea19aa24d3cf48d9ddf37d63d4"/><dir name="Renderer"><dir name="Entry"><dir name="Atom"><file name="Deleted.php" hash="65126201b8fb20b29f945956c3c7aa14"/></dir><file name="Atom.php" hash="fd98f2be04963b4a660c49cd0bb9db5e"/><file name="Rss.php" hash="f0e70e6a183416e6c04a1aa58d91b128"/></dir><dir name="Feed"><dir name="Atom"><file name="AtomAbstract.php" hash="2762eb27cc4182026d7cb5d4a2d8e7d0"/><file name="Source.php" hash="b4432fc84152c9922c2a0318043431e2"/></dir><file name="Atom.php" hash="a4e0a7056233cc18c1abcbcf45895b3a"/><file name="Rss.php" hash="b01a32487ec79c8e29848e56d12f4fef"/></dir><file name="RendererAbstract.php" hash="e818b72ef7cccb7e411218194c4a90c2"/><file name="RendererInterface.php" hash="b9d0002ea9fd72117b6438231ca2db9e"/></dir><file name="Source.php" hash="3cce4bf24782f65948e0078eee3af8b8"/></dir><file name="Writer.php" hash="31915fe86b889b38f29cd365dfa2eef8"/></dir><file name="Feed.php" hash="90930372cd8489f1be5480df69e492a3"/><dir name="File"><file name="ClassFileLocator.php" hash="a763041253fb82e55d99e50078f9e791"/><file name="PhpClassFile.php" hash="95812fdfe2ea77215eaf98220970d2bc"/><dir name="Transfer"><dir name="Adapter"><file name="Abstract.php" hash="9f8caf0965ee20c3e394cc9abd39dc64"/><file name="Http.php" hash="98db3d564539a149becd025db2996089"/></dir><file name="Exception.php" hash="825fcee61f10cdfe37140f8053177a3f"/></dir><file name="Transfer.php" hash="3b238f59905a999aa851bd4e7b641d64"/></dir><dir name="Filter"><file name="Alnum.php" hash="4ca46f20de00a3ae2c141f1ceff56bad"/><file name="Alpha.php" hash="5b07ed4ed80ac52058355dc25eab7f17"/><file name="BaseName.php" hash="625ce144adaded5d1a792f2cdff08ddb"/><file name="Boolean.php" hash="8a4ccc8b5fe35cc6371f2a876c1687c4"/><file name="Callback.php" hash="877df95b6818f3919ff98ef2b792beab"/><dir name="Compress"><file name="Bz2.php" hash="85a13672065e12d52a4a53c7d57b5956"/><file name="CompressAbstract.php" hash="e31d6c9f72772def373f5f947ebb4857"/><file name="CompressInterface.php" hash="fea3425ce29a7262ac9aa37ca15e7ccd"/><file name="Gz.php" hash="e1a5c9d4301ba780b0fc2a2ab69b9cef"/><file name="Lzf.php" hash="238dbeb23d34fab2ce1fd53c5728c981"/><file name="Rar.php" hash="ee424491867ca2fce1556bdcf01e0a7f"/><file name="Tar.php" hash="e9fc01174f800ebf4e87294361714fe8"/><file name="Zip.php" hash="1adcddd63511b526c388dbbfb2693ca5"/></dir><file name="Compress.php" hash="17af88fb4588855a0fa2ad0c747e567c"/><file name="Decompress.php" hash="9900b029a91c9c1620903061b15d8b5d"/><file name="Decrypt.php" hash="ea36fb417859a47bc8090908f91c79b0"/><file name="Digits.php" hash="988e652d047ccb2b3f51368702b39932"/><file name="Dir.php" hash="ded6da050ac44e21c8729c4fd74559f0"/><dir name="Encrypt"><file name="Interface.php" hash="02481da5488767e23939a73b434d6728"/><file name="Mcrypt.php" hash="2320868b4e3235e934023f6339edb9ee"/><file name="Openssl.php" hash="37f02c9e5fd864557aca070ca8525e36"/></dir><file name="Encrypt.php" hash="41b1fa4536947b9ce5e4dcadb3bf80b7"/><file name="Exception.php" hash="ee7fa3aa3daed6b376e4fe3ff0533a65"/><dir name="File"><file name="Decrypt.php" hash="f82c770a201d0016ed0054874f39c90f"/><file name="Encrypt.php" hash="63c6232b0c216381bee8c18df751ab59"/><file name="LowerCase.php" hash="664f911dfcba8fb26ad86605eda4ad93"/><file name="Rename.php" hash="d854b8b98abd89db4d4b0eca30a2b496"/><file name="UpperCase.php" hash="9aad43cc07b024188734fe231ec7a80e"/></dir><file name="HtmlEntities.php" hash="6ce1c0425b0b5f48c21649c15ffe1d26"/><file name="Inflector.php" hash="b6b671c8956fe8c359af7739c56867a8"/><file name="Input.php" hash="fc8cc25c2f9da1b1da7b2839eb914c99"/><file name="Int.php" hash="41724f5b9f96f08b6b01281891bc3eab"/><file name="Interface.php" hash="0f810dcab23fc1f455c960af3f317a04"/><file name="LocalizedToNormalized.php" hash="6b98acca5dc278027620e0d5361a316e"/><file name="NormalizedToLocalized.php" hash="27f9795714f46c3d4a143330e77219ce"/><file name="Null.php" hash="fe5c2ff3f08d7ef9ffc140ad251dd6da"/><file name="PregReplace.php" hash="7b0c18825dcc9016d0cc2a0fea8fee53"/><file name="RealPath.php" hash="133f0776eaa042a0712e2d8e7db3ed7c"/><file name="StringToLower.php" hash="9a7352bfa73b4ac825bc2af9fef3c286"/><file name="StringToUpper.php" hash="ec2165f772585dcf346b589bbf9bc716"/><file name="StringTrim.php" hash="ca76b8743fd9ec88290ef11a24d48a03"/><file name="StripNewlines.php" hash="fe69c99129f9bd2b69ea16c0bbfc61c1"/><file name="StripTags.php" hash="78d7393075f2327644e873d4e9196082"/><dir name="Word"><file name="CamelCaseToDash.php" hash="3793e4ef36c6778b9e5df032dfc15b67"/><file name="CamelCaseToSeparator.php" hash="cd445e16f5d3ef145c4b0f35a10b1dcd"/><file name="CamelCaseToUnderscore.php" hash="932bcf0ead2bda7d9ba9544458fe2de8"/><file name="DashToCamelCase.php" hash="705245ae67e4a9eede0bb3c0bf0e6ac4"/><file name="DashToSeparator.php" hash="6edcb2382b8fc7acc8448679d6fb46b4"/><file name="DashToUnderscore.php" hash="1075b2edc67d246d7f300c336a00a745"/><dir name="Separator"><file name="Abstract.php" hash="7c13a127a26229fc8d5e0678e8efcb5f"/></dir><file name="SeparatorToCamelCase.php" hash="87f3c3a2ab24e2146db100710050d873"/><file name="SeparatorToDash.php" hash="d13f2d966ffd8cfb05114fbb9f3906b1"/><file name="SeparatorToSeparator.php" hash="3f70eae82b1616c098cd9aec7be41f9c"/><file name="UnderscoreToCamelCase.php" hash="5f19c37337b901edd5fe5080a8353116"/><file name="UnderscoreToDash.php" hash="2f25783e6e165b827fc113f046f30f44"/><file name="UnderscoreToSeparator.php" hash="b0e92b24b679b3dcbee459cd752a2478"/></dir></dir><file name="Filter.php" hash="383fca34ab08e0a803adb2c7766fad95"/><dir name="Form"><dir name="Decorator"><file name="Abstract.php" hash="8522e625655a35646b477ad4ff99dfe5"/><file name="Callback.php" hash="190782b871a222c75dfc8444b863da11"/><dir name="Captcha"><file name="ReCaptcha.php" hash="39b4156e05bfd86a8bc607c94f437e32"/><file name="Word.php" hash="880894024cfbed08b5f1078076512a25"/></dir><file name="Captcha.php" hash="1d07f76a5ba267e35b801bbfa6437b1f"/><file name="Description.php" hash="4c386b676076f9d5839eea503b633567"/><file name="DtDdWrapper.php" hash="124076232159f0fa26fc9fe67685830f"/><file name="Errors.php" hash="e10d634460b6dae52065a83cd5c3b3a2"/><file name="Exception.php" hash="7540f704e53237cd3a6715d1e480c3b9"/><file name="Fieldset.php" hash="6bd5c5b9ff8e9e489e5a7c560aff175a"/><file name="File.php" hash="c06f2200db61e4ebffa266d99260c726"/><file name="Form.php" hash="c0117ea6a352a32b780baae652d717b9"/><file name="FormElements.php" hash="8cb9c8f03fb877b45696b534c1b39b14"/><file name="FormErrors.php" hash="723036887204776c398e63c715b762fa"/><file name="HtmlTag.php" hash="2b90f769619b1e6624e14922dc2c32ec"/><file name="Image.php" hash="2a1a7dd1624ee71cfc13b7c96b4796e9"/><file name="Interface.php" hash="60d51f6f15d396b5a16519ba5eeec204"/><file name="Label.php" hash="277f64b41efc25890d78eba58db9b780"/><dir name="Marker"><dir name="File"><file name="Interface.php" hash="30667e6ff2ccced89c3b62cf0e13f931"/></dir></dir><file name="PrepareElements.php" hash="0ff6fb16d6c5a748c9c3d3e48037755d"/><file name="Tooltip.php" hash="bb7394628ade765908544c69c6790844"/><file name="ViewHelper.php" hash="c5cc8db2e0cec01b77be69fa2e1b9299"/><file name="ViewScript.php" hash="23ef6fc6fdac5fd8c9105738c5cd3ccf"/></dir><file name="DisplayGroup.php" hash="ee080ba86203eeb41ac17d38877651f5"/><dir name="Element"><file name="Button.php" hash="730df0b76e3957882f877197447d5f1d"/><file name="Captcha.php" hash="0752ad99fb0f43536c91367c70a494df"/><file name="Checkbox.php" hash="e39255d645c7c1b2ac042cc64c2e7cc9"/><file name="Exception.php" hash="c1a78bc6fbcad9d8544ef102ee578bd7"/><file name="File.php" hash="8a78cdb33c6d598fee1f22fe008e7479"/><file name="Hash.php" hash="98a63f7085dc662488f510b8341a450a"/><file name="Hidden.php" hash="4f1b7d49e10c937cbe9bc1f481a24e9e"/><file name="Image.php" hash="050990ff646853c7def62d5912a3a57e"/><file name="Multi.php" hash="546108cee3f938abc94159392b279638"/><file name="MultiCheckbox.php" hash="8da3e1c8f63673889aa82c8a477bc19e"/><file name="Multiselect.php" hash="70685894797a172bfbfeed0b3ca0c8c9"/><file name="Note.php" hash="db0386ab8c66da2df8c912e37b11110f"/><file name="Password.php" hash="4cee94cd5c56812e101f9cae256d79cf"/><file name="Radio.php" hash="088e0a26f8b959fd252edc7080cbe3c6"/><file name="Reset.php" hash="782f1aa0cbe1a792a0d05a51d58d8beb"/><file name="Select.php" hash="ee8919ec27665b02cc44cc0083609878"/><file name="Submit.php" hash="0a97601d86f82bd50d3ea6777937254c"/><file name="Text.php" hash="781ee2e638e37fc613ad760bbd2d30bb"/><file name="Textarea.php" hash="85a7119e8e0fa3377b0576b16aa05c51"/><file name="Xhtml.php" hash="4c20761fbbb7ca24ea9b49ac3cd41e58"/></dir><file name="Element.php" hash="f03fcc6dcd7b3e0da5a36046d36d727f"/><file name="Exception.php" hash="d33a48b9d1ec7e213210383b1f7bca68"/><file name="SubForm.php" hash="ba968be3402ccdf8b4185f4d53234120"/></dir><file name="Form.php" hash="b8fa77ff51bbafd5e695162d6ef2965f"/><dir name="Gdata"><dir name="Analytics"><file name="AccountEntry.php" hash="e12468f4c63d78e8edecbc473933aa4a"/><file name="AccountFeed.php" hash="a2f9b14dbdc470693a82907f57c4d258"/><file name="AccountQuery.php" hash="8f5b153ae38c2c0598dcdd0f4ca851a4"/><file name="DataEntry.php" hash="e45ec9042ba8356cdf29505e1e9e2d0b"/><file name="DataFeed.php" hash="5db9ffeb61cefb3659e9be8400ed20e8"/><file name="DataQuery.php" hash="f42425d8f43dada50bb8f128d8f975f6"/><dir name="Extension"><file name="Dimension.php" hash="38282ab7af5abb515f4aa658f820fc34"/><file name="Goal.php" hash="2c46c1d7db9b5f507a47e4bb121e2b4c"/><file name="Metric.php" hash="8560747659930f23b28cc94bd837440b"/><file name="Property.php" hash="d1ba271f052e44a1152eed24533824b0"/><file name="TableId.php" hash="60e5a4486c861d393b6f3183c2485267"/></dir></dir><file name="Analytics.php" hash="a97cd7d0faa0f65351e65f55c28fcc60"/><dir name="App"><file name="AuthException.php" hash="6f8d23065cd17d239b2cec093015ad8e"/><file name="BadMethodCallException.php" hash="86fe8ce683680f512145d94a22ab21d5"/><file name="Base.php" hash="109e590e151826d3347d1f2f58dcab56"/><file name="BaseMediaSource.php" hash="d1ec6648e8c89711225d42a07e4738d7"/><file name="CaptchaRequiredException.php" hash="7a3e3893b6f8a9c282d920acb9928e21"/><file name="Entry.php" hash="06786f3fe9e30b60c79888be9c70c067"/><file name="Exception.php" hash="82c41ada4e9863867adb2795fe7b1ca0"/><dir name="Extension"><file name="Author.php" hash="2df6f04ec34d35d1d79bbd189a9c53a8"/><file name="Category.php" hash="273bbd08b463d8394b8528294f2f43ef"/><file name="Content.php" hash="ba2ae463fc480db7c017c495c47f8380"/><file n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment