Jmango360_Japi - Version 3.5.1

Version Notes

* Bug fixes

Download this release

Release Info

Developer Duc Ngo
Extension Jmango360_Japi
Version 3.5.1
Comparing to
See all releases


Code changes from version 3.5.0 to 3.5.1

app/code/community/Jmango360/Japi/Helper/Data.php CHANGED
@@ -1208,4 +1208,35 @@ class Jmango360_Japi_Helper_Data extends Mage_Core_Helper_Abstract
1208
  {
1209
  return Mage::getStoreConfigFlag('japi/jmango_rest_bazaarvoice_settings/enable');
1210
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1211
  }
1208
  {
1209
  return Mage::getStoreConfigFlag('japi/jmango_rest_bazaarvoice_settings/enable');
1210
  }
1211
+
1212
+ /**
1213
+ * Get layout direction RTL or LTR
1214
+ *
1215
+ * @return string|null
1216
+ */
1217
+ public function getLayoutDir()
1218
+ {
1219
+ if (Mage::app()->getLocale()->getLocaleCode() == 'ar_SA') {
1220
+ return 'rtl';
1221
+ }
1222
+ }
1223
+
1224
+ /**
1225
+ * Check if we should bypass billing & shipping address step on Onestep checkout
1226
+ *
1227
+ * @return bool
1228
+ */
1229
+ public function isAddressesReady()
1230
+ {
1231
+ if ($isAddressesApiUpdate = Mage::getSingleton('core/session')->getData('is_address_update')) {
1232
+ return $isAddressesApiUpdate;
1233
+ }
1234
+ /** @var Mage_Checkout_Model_Session $checkoutSession */
1235
+ $checkoutSession = Mage::getSingleton('checkout/session');
1236
+ if ($address = $checkoutSession->getQuote()->getBillingAddress()) {
1237
+ return (bool)$address->getCustomerAddressId();
1238
+ }
1239
+
1240
+ return false;
1241
+ }
1242
  }
app/code/community/Jmango360/Japi/Helper/Review/Bazaarvoice.php CHANGED
@@ -11,6 +11,7 @@ class Jmango360_Japi_Helper_Review_Bazaarvoice extends Mage_Core_Helper_Abstract
11
  const URL_STAGING = 'https://stg.api.bazaarvoice.com/';
12
  const URL_PRODUCTION = 'https://api.bazaarvoice.com/';
13
  const API_VERSION = '5.4';
 
14
 
15
  const DEFAULT_LIMIT = 99;
16
  const DEFAULT_SORT = 'relevancy';
@@ -121,15 +122,14 @@ class Jmango360_Japi_Helper_Review_Bazaarvoice extends Mage_Core_Helper_Abstract
121
  }
122
  $locale = Mage::app()->getLocale()->getLocaleCode();
123
  $apikey = $this->_getApiKey();
 
 
124
  $url = $this->_getApiUrl('data/batch.json', array(
125
  'passkey' => $apikey,
126
  'apiVersion' => self::API_VERSION,
127
  'resource.q0' => 'statistics',
128
  'stats.q0' => 'reviews',
129
- 'filter.q0' => array(
130
- sprintf('contentlocale:eq:%s', $locale),
131
- sprintf('productid:eq:%s', join(',', array_keys($productIds)))
132
- ),
133
  'filter_reviews.q0' => sprintf('contentlocale:eq:%s', $locale)
134
  ));
135
 
@@ -189,15 +189,14 @@ class Jmango360_Japi_Helper_Review_Bazaarvoice extends Mage_Core_Helper_Abstract
189
  }
190
 
191
  $productId = $this->getBvProductId($product);
 
 
192
 
193
  $apiKey = $this->_getApiKey();
194
  $url = $this->_getApiUrl('data/reviews.json', array(
195
  'apiVersion' => '5.4',
196
  'passkey' => $apiKey,
197
- 'Filter' => array(
198
- sprintf('ProductId:%s', $productId),
199
- sprintf('ContentLocale:eq:%s', Mage::app()->getLocale()->getLocaleCode())
200
- ),
201
  'Sort' => $this->_getReviewsSort(),
202
  'Offset' => $this->_getReviewsOffset(),
203
  'Limit' => $this->_getReviewsLimit(),
@@ -929,9 +928,35 @@ class Jmango360_Japi_Helper_Review_Bazaarvoice extends Mage_Core_Helper_Abstract
929
 
930
  protected function _getReviewsSort()
931
  {
 
 
 
 
 
 
 
 
 
 
932
  return sprintf('%s:%s', self::DEFAULT_SORT, self::DEFAULT_DIR);
933
  }
934
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
935
  protected function _getApiUrl($uri = null, $params = array())
936
  {
937
  $env = $this->_getEnv();
11
  const URL_STAGING = 'https://stg.api.bazaarvoice.com/';
12
  const URL_PRODUCTION = 'https://api.bazaarvoice.com/';
13
  const API_VERSION = '5.4';
14
+ const XML_PATH_FQ = 'japi/jmango_rest_bazaarvoice_settings/fq';
15
 
16
  const DEFAULT_LIMIT = 99;
17
  const DEFAULT_SORT = 'relevancy';
122
  }
123
  $locale = Mage::app()->getLocale()->getLocaleCode();
124
  $apikey = $this->_getApiKey();
125
+ $filters = array(sprintf('productid:eq:%s', join(',', array_keys($productIds))));
126
+ $filters = array_merge($filters, $this->_getAdditinalFilters());
127
  $url = $this->_getApiUrl('data/batch.json', array(
128
  'passkey' => $apikey,
129
  'apiVersion' => self::API_VERSION,
130
  'resource.q0' => 'statistics',
131
  'stats.q0' => 'reviews',
132
+ 'filter.q0' => $filters,
 
 
 
133
  'filter_reviews.q0' => sprintf('contentlocale:eq:%s', $locale)
134
  ));
135
 
189
  }
190
 
191
  $productId = $this->getBvProductId($product);
192
+ $filters = array(sprintf('ProductId:%s', $productId));
193
+ $filters = array_merge($filters, $this->_getAdditinalFilters());
194
 
195
  $apiKey = $this->_getApiKey();
196
  $url = $this->_getApiUrl('data/reviews.json', array(
197
  'apiVersion' => '5.4',
198
  'passkey' => $apiKey,
199
+ 'Filter' => $filters,
 
 
 
200
  'Sort' => $this->_getReviewsSort(),
201
  'Offset' => $this->_getReviewsOffset(),
202
  'Limit' => $this->_getReviewsLimit(),
928
 
929
  protected function _getReviewsSort()
930
  {
931
+ $fq = Mage::getStoreConfig(self::XML_PATH_FQ);
932
+ $lines = explode("\n", $fq);
933
+ foreach ($lines as $line) {
934
+ if (!$line) continue;
935
+ list($param, $value) = explode('|', $line);
936
+ if ($param && $param == 'Sort' && $value) {
937
+ return $value;
938
+ }
939
+ }
940
+
941
  return sprintf('%s:%s', self::DEFAULT_SORT, self::DEFAULT_DIR);
942
  }
943
 
944
+ protected function _getAdditinalFilters()
945
+ {
946
+ $fq = Mage::getStoreConfig(self::XML_PATH_FQ);
947
+ $lines = explode("\n", $fq);
948
+ $filters = array();
949
+ foreach ($lines as $line) {
950
+ if (!$line) continue;
951
+ list ($param, $value) = explode('|', $line);
952
+ if ($param && $param == 'Filter' && $value) {
953
+ $filters[] = $value;
954
+ }
955
+ }
956
+
957
+ return $filters;
958
+ }
959
+
960
  protected function _getApiUrl($uri = null, $params = array())
961
  {
962
  $env = $this->_getEnv();
app/code/community/Jmango360/Japi/controllers/CheckoutController.php CHANGED
@@ -489,6 +489,33 @@ class Jmango360_Japi_CheckoutController extends Mage_Checkout_OnepageController
489
  </reference>";
490
  }
491
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  try {
493
  $this->getLayout()->getUpdate()->addUpdate($xml);
494
  $this->generateLayoutXml()->generateLayoutBlocks();
489
  </reference>";
490
  }
491
 
492
+ if ($helper->isModuleEnabled('Borgione_General')) {
493
+ $xml .= "
494
+ <reference name=\"checkout.onepage.billing\">
495
+ <action method=\"setTemplate\">
496
+ <template>persistent/checkout/onepage/billing.phtml</template>
497
+ </action>
498
+ </reference>
499
+ <reference name=\"checkout.onepage.shipping\">
500
+ <action method=\"setTemplate\">
501
+ <template>checkout/onepage/shipping.phtml</template>
502
+ </action>
503
+ </reference>";
504
+ }
505
+
506
+ if ($helper->isModuleEnabled('DPD_Shipping')) {
507
+ $xml .= "
508
+ <reference name=\"head\">
509
+ <action method=\"addCss\"><stylesheet>css/dpd/shipping.css</stylesheet></action>
510
+ <action method=\"addJs\"><script>dpd/shipping.js</script></action>
511
+ <action method=\"addJs\"><script>prototype/window.js</script></action>
512
+ <action method=\"addJs\"><script>dpd/window/shipping.js</script></action>
513
+ <action method=\"addCss\"><name>css/dpd/window.css</name></action>
514
+ <action method=\"addJs\"><file helper=\"dpd/data/getOnestepCheckoutJs\"/></action>
515
+ <block type=\"core/template\" name=\"gmapsapi\" template=\"dpd/gmapsapi.phtml\"/>
516
+ </reference>";
517
+ }
518
+
519
  try {
520
  $this->getLayout()->getUpdate()->addUpdate($xml);
521
  $this->generateLayoutXml()->generateLayoutBlocks();
app/code/community/Jmango360/Japi/etc/config.xml CHANGED
@@ -7,7 +7,7 @@
7
  <config>
8
  <modules>
9
  <Jmango360_Japi>
10
- <version>3.5.0</version>
11
  </Jmango360_Japi>
12
  </modules>
13
 
@@ -463,6 +463,7 @@
463
  <tc></tc>
464
  <rating_label></rating_label>
465
  <displaycode></displaycode>
 
466
  </jmango_rest_bazaarvoice_settings>
467
  <jmango_rest_developer_settings>
468
  <enable>0</enable>
7
  <config>
8
  <modules>
9
  <Jmango360_Japi>
10
+ <version>3.5.1</version>
11
  </Jmango360_Japi>
12
  </modules>
13
 
463
  <tc></tc>
464
  <rating_label></rating_label>
465
  <displaycode></displaycode>
466
+ <fq></fq>
467
  </jmango_rest_bazaarvoice_settings>
468
  <jmango_rest_developer_settings>
469
  <enable>0</enable>
app/code/community/Jmango360/Japi/etc/system.xml CHANGED
@@ -1017,17 +1017,30 @@
1017
  </depends>
1018
  </shared_key>
1019
  <displaycode translate="label comment" module="japi">
1020
- <label><![CDATA[Deployment zone]]></label>
1021
  <frontend_type>text</frontend_type>
1022
  <sort_order>32</sort_order>
1023
  <show_in_default>1</show_in_default>
1024
  <show_in_website>1</show_in_website>
1025
  <show_in_store>1</show_in_store>
1026
- <comment></comment>
1027
  <depends>
1028
  <enable>1</enable>
1029
  </depends>
1030
  </displaycode>
 
 
 
 
 
 
 
 
 
 
 
 
 
1031
  <tc translate="label comment" module="japi">
1032
  <label><![CDATA[Terms & Conditions]]></label>
1033
  <frontend_type>textarea</frontend_type>
1017
  </depends>
1018
  </shared_key>
1019
  <displaycode translate="label comment" module="japi">
1020
+ <label><![CDATA[Deployment Zone]]></label>
1021
  <frontend_type>text</frontend_type>
1022
  <sort_order>32</sort_order>
1023
  <show_in_default>1</show_in_default>
1024
  <show_in_website>1</show_in_website>
1025
  <show_in_store>1</show_in_store>
1026
+ <comment>Enter display code from Site Manager</comment>
1027
  <depends>
1028
  <enable>1</enable>
1029
  </depends>
1030
  </displaycode>
1031
+ <fq translate="label comment" module="japi">
1032
+ <label><![CDATA[Filtering and Sorting Review]]></label>
1033
+ <frontend_type>textarea</frontend_type>
1034
+ <sort_order>35</sort_order>
1035
+ <show_in_default>1</show_in_default>
1036
+ <show_in_website>1</show_in_website>
1037
+ <show_in_store>1</show_in_store>
1038
+ <comment><![CDATA[Enter each line a query string.<br>
1039
+ Example: Filter|ContentLocale:eq:nl_NL,en_GB]]></comment>
1040
+ <depends>
1041
+ <enable>1</enable>
1042
+ </depends>
1043
+ </fq>
1044
  <tc translate="label comment" module="japi">
1045
  <label><![CDATA[Terms & Conditions]]></label>
1046
  <frontend_type>textarea</frontend_type>
app/design/frontend/base/default/layout/jmango360_japi.xml CHANGED
@@ -44,7 +44,7 @@
44
  <action method="addItem"><type>skin_js</type><file>japi/lib/bootstrap/js/modal.js</file></action>
45
  <action method="addItem"><type>skin_js</type><file>japi/lib/scrollto/scrollTo.js</file></action>
46
  <action method="addItem"><type>skin_js</type><file>js/opcheckout.js</file></action>
47
- <action method="addItem"><type>skin_js</type><file>japi/js/checkout.js?v=3.5.0</file></action>
48
  </block>
49
  <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
50
  <label>Page Top</label>
44
  <action method="addItem"><type>skin_js</type><file>japi/lib/bootstrap/js/modal.js</file></action>
45
  <action method="addItem"><type>skin_js</type><file>japi/lib/scrollto/scrollTo.js</file></action>
46
  <action method="addItem"><type>skin_js</type><file>js/opcheckout.js</file></action>
47
+ <action method="addItem"><type>skin_js</type><file>japi/js/checkout.js?v=3.5.1</file></action>
48
  </block>
49
  <block type="core/text_list" name="after_body_start" as="after_body_start" translate="label">
50
  <label>Page Top</label>
app/design/frontend/base/default/template/japi/checkout/onepage.phtml CHANGED
@@ -69,13 +69,10 @@
69
  editAddressUrl: '<?php echo $this->getUrl('japi/customer/address', array('_secure' => true)) ?>'
70
  });
71
  <?php if (!$error): ?>
72
- <?php if (Mage::getSingleton('core/session')->getData('is_address_update')): ?>
73
- <?php if ($this->getQuote()->getBillingAddress()->getCountryId()): ?>
74
- <?php Mage::getSingleton('core/session')->setData('is_address_update', false) ?>
75
- document.observe("dom:loaded", function () {
76
- checkout.gotoShippingMethodSection();
77
- });
78
- <?php endif ?>
79
  <?php elseif (Mage::getSingleton('core/session')->getData('is_shipping_address_update')): ?>
80
  <?php Mage::getSingleton('core/session')->unsetData('is_shipping_address_update') ?>
81
  document.observe("dom:loaded", function () {
69
  editAddressUrl: '<?php echo $this->getUrl('japi/customer/address', array('_secure' => true)) ?>'
70
  });
71
  <?php if (!$error): ?>
72
+ <?php if (Mage::helper('japi')->isAddressesReady()): ?>
73
+ document.observe("dom:loaded", function () {
74
+ checkout.gotoShippingMethodSection();
75
+ });
 
 
 
76
  <?php elseif (Mage::getSingleton('core/session')->getData('is_shipping_address_update')): ?>
77
  <?php Mage::getSingleton('core/session')->unsetData('is_shipping_address_update') ?>
78
  document.observe("dom:loaded", function () {
app/design/frontend/base/default/template/japi/checkout/onepage/coupon.phtml CHANGED
@@ -39,7 +39,11 @@ $couponCode = Mage::getStoreConfig('japi/jmango_rest_checkout_settings/coupon_co
39
  <ul class="form-list collapse<?php echo strlen($couponCode) || strlen($this->getCouponCode()) ? ' in' : '' ?>"
40
  id="coupon-content">
41
  <li>
42
- <label for="coupon_code"><?php echo $this->__('Enter your coupon code if you have one.') ?></label>
 
 
 
 
43
  <input type="hidden" name="remove" id="remove-coupone" value="0"/>
44
  <div class="input-box">
45
  <input class="input-text" id="coupon_code" name="coupon_code" type="text"
39
  <ul class="form-list collapse<?php echo strlen($couponCode) || strlen($this->getCouponCode()) ? ' in' : '' ?>"
40
  id="coupon-content">
41
  <li>
42
+ <?php if (strpos(Mage::getUrl(), 'deleukstetaartenshop.nl') !== false): ?>
43
+ <label for="coupon_code"><?php echo $this->__('Voer hier je kortingscode in (Cadeaubon via de website)') ?></label>
44
+ <?php else: ?>
45
+ <label for="coupon_code"><?php echo $this->__('Enter your coupon code if you have one.') ?></label>
46
+ <?php endif; ?>
47
  <input type="hidden" name="remove" id="remove-coupone" value="0"/>
48
  <div class="input-box">
49
  <input class="input-text" id="coupon_code" name="coupon_code" type="text"
app/design/frontend/base/default/template/japi/checkout/onepage/style.phtml CHANGED
@@ -19,7 +19,7 @@ $customCss = Mage::getStoreConfig('japi/jmango_rest_checkout_settings/custom_css
19
  $TIGPostNLVersion = Mage::helper('japi')->getExtensionVersion('TIG_PostNL');
20
  ?>
21
  <link type="text/css" rel="stylesheet" media="all"
22
- href="<?php echo $this->getSkinUrl('japi/css/style.css?v=3.5.0') ?>"/>
23
 
24
  <?php if (Mage::helper('japi')->isModuleEnabled('GoMage_Checkout')): ?>
25
  <link type="text/css" rel="stylesheet" media="all"
19
  $TIGPostNLVersion = Mage::helper('japi')->getExtensionVersion('TIG_PostNL');
20
  ?>
21
  <link type="text/css" rel="stylesheet" media="all"
22
+ href="<?php echo $this->getSkinUrl('japi/css/style.css?v=3.5.1') ?>"/>
23
 
24
  <?php if (Mage::helper('japi')->isModuleEnabled('GoMage_Checkout')): ?>
25
  <link type="text/css" rel="stylesheet" media="all"
app/design/frontend/base/default/template/japi/page/rwd.phtml CHANGED
@@ -2,8 +2,10 @@
2
  /**
3
  * Copyright 2015 JMango360
4
  */
5
- ?><!DOCTYPE html>
6
- <html lang="en">
 
 
7
  <head>
8
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
9
  <?php echo $this->getChildHtml('head') ?>
2
  /**
3
  * Copyright 2015 JMango360
4
  */
5
+ ?>
6
+ <?php $layoutDir = Mage::helper('japi')->getLayoutDir() ?>
7
+ <!DOCTYPE html>
8
+ <html lang="en" dir="<?php echo $layoutDir ?>" class="<?php echo $layoutDir ?>">
9
  <head>
10
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
11
  <?php echo $this->getChildHtml('head') ?>
app/locale/ar_SA/Jmango360_Japi.csv CHANGED
@@ -234,3 +234,22 @@
234
  "Attribute whose value is N/A or blank will not be displayed on Additional Information on product detail page", "لسمة التي تقدر قيمتها N / A أو فارغة لن يتم عرض على معلومات إضافية على صفحة المنتج من التفصيل"
235
  "Custom Layout Update", "تحديث التخطيط العرف"
236
  "Custom CSS", "CSS العرف"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  "Attribute whose value is N/A or blank will not be displayed on Additional Information on product detail page", "لسمة التي تقدر قيمتها N / A أو فارغة لن يتم عرض على معلومات إضافية على صفحة المنتج من التفصيل"
235
  "Custom Layout Update", "تحديث التخطيط العرف"
236
  "Custom CSS", "CSS العرف"
237
+ "List of modules need bypass session validation. Enter each line a module name, ex ""TIG_PostNL""","تحتاج قائمة الوحدات دورة جانبية مقننة. أدخل إسم الوحدة فى كل سطر, مثال TIG_PostNL"
238
+ "Exclude modules","إستبعاد وحدات"
239
+ "I do not recommend this product","أنا لا أرجح هذا المنتج"
240
+ "I recommend this product","أرجح هذا المنتج"
241
+ "I agree to the terms & conditions","أوافق على الشروط و الأحكام"
242
+ "Nickname","الإسم المستعار"
243
+ "Back to app","عودة إلى التطبيق"
244
+ "Overall Rating","تقييم عام"
245
+ "Review Title","عنوان التعقيب"
246
+ "Review","تعقيب"
247
+ "Hide on JMango360","إخفاء على JMango360"
248
+ "Hide on JMango360 App","إخفاء على تطبيق JMango360"
249
+ "Re-run SQL upgrade","تحديث إعادة-تشغيل SQL"
250
+ "Re-run successfully.","تم إعادة-التشغيل بنجاح."
251
+ "Enable this option to choose whether or not this product is visible in the app","تفعيل هذا الخيار لتحديد ما إذا كان هذا المنتج مرئى فى التطبيق أم لا"
252
+ "On Manage Products enable Hide on App","على إدارة المنتج قم بتفعيل إخفاء على التطبيق"
253
+ "Please close this form and login with your new account.", "يرجى إغلاق هذا النموذج وتسجيل الدخول بإستخدام الحساب الجديد."
254
+ "Customer Settings","إعدادات العملاء"
255
+ "Sales Settings","إعدادات المبيعات"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Jmango360_Japi</name>
4
- <version>3.5.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
7
  <channel>community</channel>
@@ -19,7 +19,6 @@ Quick list of features specific to Magento:&#xD;
19
  - Payment methods: all payment methods&#xD;
20
  - CMS pages - imported automatically&#xD;
21
  &#xD;
22
- &#xD;
23
  Other generic mobile apps that you can add and configure:&#xD;
24
  &#xD;
25
  - Contact form&#xD;
@@ -31,9 +30,9 @@ Other generic mobile apps that you can add and configure:&#xD;
31
  For more details on JMango360 please visit our website http://www.jmango360.com or out knowledge site http://support.jmango360.com</description>
32
  <notes>* Bug fixes</notes>
33
  <authors><author><name>Duc Ngo</name><user>jmango360</user><email>duc@jmango360.com</email></author></authors>
34
- <date>2017-06-16</date>
35
- <time>02:32:42</time>
36
- <contents><target name="magecommunity"><dir name="Jmango360"><dir name="Japi"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Hide.php" hash="2e9fb95869151bb2a2c7cf7fca6f998f"/></dir></dir></dir></dir></dir><dir name="Order"><file name="Grid.php" hash="22273d3d0acaf1b0a093e524f87c6aff"/></dir><file name="Order.php" hash="04e94160608b989286aebeb190299565"/><dir name="Report"><dir name="Chart"><file name="Customers.php" hash="9a4c7c4af19c584aeb2dd5bc0f6d4735"/><file name="Orders.php" hash="ae5f516c56c5c8c72c14a7b0aa275ac6"/><file name="Sales.php" hash="7d5db491deeaa90571e965bbc2c07e23"/></dir><dir name="Customers"><file name="Chart.php" hash="69f2a7121d61f24d9b75de7281def8e5"/><file name="Grid.php" hash="f1adb7504646338330b7e7ef64a4fc5c"/></dir><file name="Customers.php" hash="6ffd72b1280b6cce39665fd35b5c4a78"/><dir name="Filter"><dir name="Form"><file name="Orders.php" hash="92574de82aa73cdd9de0cc59e20dadc4"/></dir><file name="Form.php" hash="7bf3f161f66abf97fc7db57e0acd59cf"/></dir><dir name="Orders"><file name="Chart.php" hash="75bd0bbe8649f423918dec555d3e9592"/><file name="Grid.php" hash="35590c1a54c8490c3982f0df038b8328"/></dir><file name="Orders.php" hash="6416ac5f6889d5a06f2a32f5ff00cbe2"/><dir name="Sales"><file name="Chart.php" hash="416f4ff4cdaa7f8f099dad3ffccacd68"/><file name="Grid.php" hash="baa9caa57906627ed3f31ec4fd87a500"/></dir><file name="Sales.php" hash="c1d1df3e7b90451e42142bb414a28d6b"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Paypal.php" hash="26ddf9a5b820c3fb23c1c4e0a46d6db4"/></dir><file name="Button.php" hash="2b02a6c90256c9bcc6d99d2d9301413e"/><file name="Log.php" hash="9a228a569090c0fc9a905c5fb29a7c4d"/><file name="User.php" hash="cb7dfc72c7acde78efbabc49617cba3c"/><file name="Version.php" hash="b9802c302ef7ecacf106993e8506d314"/></dir></dir></dir><dir name="Widget"><dir name="Form"><dir name="Renderer"><dir name="Element"><file name="Chart.php" hash="f6f4c2ff80cb71f3e0758809b8ad480d"/></dir></dir></dir></dir></dir><file name="Banner.php" hash="0cafa22b3012e1a3b39f0e72a03534fa"/><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="43581de27feb1a0187bb0aee68bab0e9"/><file name="Category.php" hash="5d01fc7d90af7eccd412ef61056b825b"/><file name="Decimal.php" hash="d40a09709bda7b1011e4d2c970308638"/><file name="Price.php" hash="02dfe6d9429f0190ecf9a41f73653330"/></dir><file name="View.php" hash="e217dfaf2a2ee6c2fa59ba9db0244eb9"/></dir><dir name="Product"><file name="List.php" hash="e1336372e4aa63e0e35c7e9ea1bd3852"/></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="4ba3d242a3343b1786cf081047650bb9"/></dir></dir><file name="Layer.php" hash="4d48db1a2b35151c363ed045646199a9"/></dir><dir name="Checkout"><dir name="Cart"><file name="Totals.php" hash="ed2ac76f7ebb2830c763deb80e1ea59e"/></dir><dir name="Onepage"><file name="Additional.php" hash="22a3c60e8fd44f5dfaec4b51d6fc1a62"/><file name="Addjs.php" hash="077d09b15ec8823c76854a575359cb1a"/><file name="Address.php" hash="bf596c77e982d4350fc532a3deb79e47"/><file name="Billing.php" hash="afc74029a0b8d571e440f50a04ab4340"/><file name="Button.php" hash="039d56b9b7982d5e32433d71f4b53959"/><file name="Shipping.php" hash="aaa1b70ecc095d297d6ab0a90f441c70"/></dir><file name="Onepage.php" hash="f6c3ef9390a3ac38560a34fbecf00eba"/><dir name="Total"><file name="Grandtotal.php" hash="0714677162e5c6e0ca9e1076083ee26e"/><file name="Shipping.php" hash="1bb99456f936de791df3b1e9cb4103d5"/><file name="Subtotal.php" hash="aa7cdd3b66df0ea397ad909848234a0e"/><file name="Tax.php" hash="91c12499a56a034d4733f8040feb7156"/></dir></dir><dir name="Customer"><dir name="Widget"><file name="Name.php" hash="aca4eea6675b64e1bc6d165307e1b958"/></dir></dir><file name="Form.php" hash="e16eaa258cf650bd2106372fcf43ae9b"/><dir name="GiftMessage"><dir name="Message"><file name="Inline.php" hash="8f20e9383634f46b624f15d77b616380"/></dir></dir><file name="Js.php" hash="8e8091283a5a3142fec7486077a9586e"/><dir name="Payment"><file name="Form.php" hash="f014c3faaad4e31a14052a76137f5dac"/><file name="Info.php" hash="2171f7379f4017b7a541926a9224cd54"/></dir><dir name="Socolissimosimplicite"><file name="Iframe.php" hash="91e096613f73e1edc7fcce4c6a17ce39"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="ccb6cc7460e7bbf30293983bbe61a07d"/></dir><file name="Exception.php" hash="bd30a2efecdf9a8197f066d9574cd1ab"/><dir name="Helper"><dir name="Adminhtml"><dir name="Report"><file name="Order.php" hash="9f7a02c48f3f8e0545488375b03d7333"/></dir></dir><file name="Data.php" hash="d4c3ae9c8b84033fa21b512813842099"/><file name="Debug.php" hash="1002a59a5dee41f34da875979e907cbf"/><dir name="GiftMessage"><file name="Message.php" hash="5d1df4710b0aa3154ce0fa744b0244f3"/></dir><file name="Js.php" hash="55565b7d668b993fae6c180b30766d17"/><dir name="Product"><file name="Bundle.php" hash="c89baf5638e81d030f5a72b011af7cfd"/><file name="Configurable.php" hash="ac9d2847adc70af0470f9d1106845cf7"/><file name="Downloadable.php" hash="db531632adda525a91625da8d13296d6"/><file name="File.php" hash="0968c5688015b9c7a002457428607f80"/><file name="Grouped.php" hash="8e9cfa89b62e210744b799a1134ec064"/><file name="Media.php" hash="291003011bdca7299280ef0136089edf"/><file name="Options.php" hash="1bc8973b5a9227b0b7de93f2307c7fb9"/><file name="Review.php" hash="e415a0215a8dfbdac5ed76e6c065c705"/><file name="TierPrice.php" hash="4a7e94d83eed9e7ba47ee196b4ae15d9"/></dir><file name="Product.php" hash="57a49f808ae5146a5c364d4b2e60ac96"/><dir name="Review"><file name="Bazaarvoice.php" hash="bb6f94bc662f6c7faa65454fca5a47a8"/></dir><file name="Tax.php" hash="05c99785012d55fce12c4f094385e25c"/></dir><dir name="Model"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="f058e0ced4579a556cbb969a98c7fc66"/><file name="Decimal.php" hash="849e1dbc11c99fb8f7a1f9d33e0d7908"/><file name="Price.php" hash="2bdc6f1ff06ad5aa736972c72558fd25"/></dir></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="81b287f96c40094c2a3743ddc6f6c6cb"/></dir></dir></dir><dir name="Core"><file name="Session.php" hash="7c5531af03c6a98e14dda3d358270938"/></dir><file name="Dispatcher.php" hash="81004902926427ba06a1a90d6e799554"/><dir name="Magpleasure"><dir name="Tierprices"><file name="Price.php" hash="1bfd6ed086649f518b3e98436513a491"/></dir></dir><dir name="Observer"><dir name="Controller"><file name="Front.php" hash="1098d9b5f6a214e53fb8657fe1fd250d"/></dir></dir><file name="Observer.php" hash="8692e999a2497a472c0bcd64f3d24bea"/><dir name="Payment"><file name="Braintree.php" hash="212d788906a3d94e2e10135d4de6bb58"/><file name="Paypal.php" hash="3a349b8e55f5abae4a960962e2191cd0"/></dir><file name="Payment.php" hash="0e2f9ff405b47e63bb8a3d27e82fb6ea"/><dir name="Renderer"><file name="Json.php" hash="b7c471548eecae7c9d05072aa6695cbb"/></dir><file name="Renderer.php" hash="47c320f795f1328a8df37d4b9af56abc"/><file name="Request.php" hash="ece58a0074c2ba238c102983e05d15a8"/><dir name="Resource"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="5bd13fbb5e8012ad24dc7908bc5ea755"/><file name="Decimal.php" hash="551120b728226ed408292fac732a05d7"/><file name="Price.php" hash="321f70b515b4d3deb9c7cc58eb803bf2"/></dir></dir></dir><dir name="Report"><dir name="Order"><file name="Collection.php" hash="1c5e69f548f2b4a0da8f789d7d03b643"/></dir></dir><dir name="Sales"><dir name="Report"><dir name="Order"><dir name="Collection"><file name="Aggregated.php" hash="61848c0b80699acbf478f279231c161d"/><file name="Live.php" hash="ea323ca0eec324ece97f08ece6639fb9"/></dir></dir><file name="Order.php" hash="53641b24d23bd811c278f65b56d5765f"/></dir></dir><file name="Setup.php" hash="3a97ea2e652869965f5b47b9e3099896"/></dir><file name="Response.php" hash="7209bb2e9c5b97b2a46d10ff97aa6740"/><dir name="Rest"><dir name="Cart"><file name="Coupon.php" hash="a5be6cfe674b46b6ba290b0388edf8ad"/><file name="Update.php" hash="48d85c58183c9696eea1fd2d4da6dfa1"/></dir><file name="Cart.php" hash="39e0f2f2b7630e5884d907f42bc5e11a"/><dir name="Catalog"><dir name="Category"><file name="Assignedproducts.php" hash="930ff28a4e8b2e401629c352c36569ca"/><file name="Tree.php" hash="5dce196312e33d3f7ac4a2235312e587"/></dir><dir name="Search"><file name="Products.php" hash="8b8f43f4f563dc27002884a57d42c858"/><file name="Terms.php" hash="71cadbe1fa7b19c96f2201f087c832ff"/></dir></dir><file name="Catalog.php" hash="a71eed5f39431b40a80b06f566baa653"/><dir name="Checkout"><file name="Methods.php" hash="e8ea7716b28587ecfb73bff7bb37b059"/><file name="Onepage.php" hash="51c0a6cecbc3f5ed55aa781653eba0fd"/><file name="Redirect.php" hash="19932aa45299e5ea3995f52cb9987183"/><file name="Submit.php" hash="f76e5952a9864e8d747c6123757e13bc"/></dir><file name="Checkout.php" hash="7241b560aedbc7eb728af8ea937af335"/><dir name="Cms"><file name="Page.php" hash="93bd77b2b3f2b8b1e72a3e6391553426"/></dir><file name="Cms.php" hash="a12fd4b2a437c8a6c0b2b65a1e471c23"/><dir name="Customer"><file name="Address.php" hash="cef92ca089a5cd7cd1218339104c4894"/><file name="Edit.php" hash="226f77d8cee872c4c622c062cfe1eff0"/><file name="Group.php" hash="c717d5faf52919787aa0f87270856ca3"/><file name="List.php" hash="17f0096755be01327c163a701b9f3780"/><file name="Login.php" hash="77df1e0afcf40e6129fb61397217f053"/><dir name="Order"><file name="List.php" hash="1e6ea53a87108ca487d9a58ac42f382f"/></dir><file name="Order.php" hash="da1565601bac963b72f64b0e6a147704"/><file name="Password.php" hash="6df128903742a8723f0a59c4203f8b12"/><file name="Register.php" hash="e25d0045e0d8ff650ca208b9fe75e3ae"/></dir><file name="Customer.php" hash="ecf57dcf8bbba1ebb12ed10630bd1715"/><file name="Mage.php" hash="731d7a85645d95af3a8fb281d0efaf42"/><dir name="Product"><file name="Crosssell.php" hash="1fbc8c3886de3703a77e911ac459422c"/><file name="List.php" hash="8d84ec9326a6747de6d2ca0a5aceee6c"/><file name="Price.php" hash="d47c9903d5719b0cee73836419e27bb1"/><file name="Purchased.php" hash="feb7fd9176da74e59722984732d04a9a"/><file name="Related.php" hash="8a6b52fc39f099f4339a91ad5709537a"/><file name="Review.php" hash="549ffdfaea3d95ac1f18e9d4ef18d6eb"/><file name="Search.php" hash="f760256b6158dacf44754cc026286c97"/><file name="Upsell.php" hash="319fe08a0a4c52c41ec4418b312e1842"/><file name="Url.php" hash="4b920cc4913b77b1e463afad27ad5b78"/><file name="Viewed.php" hash="c2a9c99a56b57d8288eec75657f9bd47"/></dir><file name="Product.php" hash="33f395e10d5578d948bf32a7bd5388fd"/><file name="Wishlist.php" hash="ee26b4efcbf3b2c39aec2c1e3402c35b"/></dir><file name="Server.php" hash="1f51d81e323af28fd78618e62db11d82"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Icon.php" hash="242de9b094f94e397dc606dc926cc33f"/><file name="Payment.php" hash="5964322419785004a6c3f84a940d8d13"/><file name="Shipping.php" hash="016f22646fbac10cd81c6b7904c9abde"/></dir><dir name="Source"><dir name="Address"><file name="Attributes.php" hash="1a29b64d271693fba3ea76599d3408e2"/><file name="Validatetype.php" hash="6f4d9767ac0e476ec6a6cd3964882721"/></dir><file name="Attributes.php" hash="4b4de29e00623c971038d6fe895e5e76"/><dir name="Bazaarvoice"><file name="Env.php" hash="bc619503d1b175e74f7eaf2ba15ae8b4"/></dir><dir name="Catalog"><file name="Direction.php" hash="68cd86444037506ec39de8eba3c07d8b"/><file name="Sortby.php" hash="d2aba9a3798b8e2eee8c275fbbd202e1"/></dir><file name="Catalogimage.php" hash="500f9994ea13e463a5e5e5d3963cfbd1"/><dir name="Customer"><file name="Attributes.php" hash="8963356aabf88647ab5ecbbbe8cfb9f1"/></dir><file name="Defaultimage.php" hash="04c896116c01b16e2ac8d7f23bbc29d6"/><file name="Payment.php" hash="70e82f4887eb297d6a58160f64bfd204"/><file name="Shipping.php" hash="7d8e5a2dc8a57099d908bef2403aad46"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Japi"><file name="LogController.php" hash="b17e024285aea7b6834cf5bc9b868916"/><file name="OrderController.php" hash="e6b7c1f5a7156a06fa3f51c32e6bbba9"/><file name="PaymentController.php" hash="a6f7cce53b85e2011bfb457cef98683a"/><file name="ReportController.php" hash="e88b2425e0a39f7f2b0c2902a6d2d5e9"/><file name="TroubleshootingController.php" hash="bb8951d1523a56a0f55e827614a38d66"/></dir></dir><file name="CheckoutController.php" hash="379751def26d6bd9b69a526707f4b464"/><dir name="Customer"><file name="AccountController.php" hash="2e055c5b22a2414263a1b7d3fd0607f9"/></dir><file name="CustomerController.php" hash="e3204496e61f58a572ef8f9b3cefe38f"/><file name="ImageController.php" hash="a5b48d4e075faf989c908bd0954d3878"/><file name="KcoController.php" hash="38e15112f3438edd6723478cf18c6cab"/><file name="KlarnaController.php" hash="90474b512fdc813039a86ae8f24a0b39"/><dir name="Rest"><file name="CartController.php" hash="3994aafe8e31094b765fc0120c888fa3"/><file name="CatalogController.php" hash="8df5b798bb0330f5e3182717e1e15bf7"/><file name="CheckoutController.php" hash="65b3a3592cdfc0a51c254451505dedea"/><file name="CmsController.php" hash="cb1bc3f67136434c4d8af1b5660eab1e"/><file name="CustomerController.php" hash="ca2b76f8f4e8a84d81749b37910287bd"/><file name="MageController.php" hash="e267156b2acf82d309b6c8c4680a7371"/><file name="ProductController.php" hash="81c0a0b0afcdfe99d6c651244baa075c"/><file name="WishlistController.php" hash="d7b0c8ff628b4244d120843d54a41248"/></dir><file name="TestController.php" hash="ffb60653808c0e0af00cc73d4755ef99"/></dir><dir name="data"><dir name="japi_setup"><file name="data-install-2.0.0.php" hash="bcf6de66f6b296182268b11b3e80bbeb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9d1888abb4ed93ec7b3e1fa678fb1411"/><file name="config.xml" hash="c18d759dd47bda0ba38102d5f3f48dc7"/><file name="system.xml" hash="c5881750c4f6211ed06612cc856ed228"/></dir><dir name="sql"><dir name="japi_setup"><file name="install-1.0.0.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name="upgrade-2.0.1.2-2.0.2.php" hash="6fc0e0306b685279fc60f298643d181a"/><file name="upgrade-2.1.6-2.2.0.php" hash="947afcf7e20dfc2c3a3e45d8e5c316cd"/><file name="upgrade-2.2.0-2.2.1.php" hash="12a28845acf823eefc5f613b048efe52"/><file name="upgrade-2.8.2-2.9.0.php" hash="2761423f65920af0f8ba05d438710869"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Jmango360_Japi.xml" hash="b60701b3a14084fa1a440ca5fe5bf47b"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="d6e1656e4a8e79dd9e37e0b09a5f57a6"/></dir><dir name="template"><dir name="japi"><dir name="report"><file name="chart.phtml" hash="102704d97cf69793a50fa96538bd767f"/><dir name="grid"><file name="container.phtml" hash="79050f4e2bc7b70ae452e850fc27e0b7"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="button"><file name="paypal.phtml" hash="247d0fd0a221f61bfa5b97dae8d95640"/></dir></dir></dir></dir><dir name="widget"><dir name="form"><dir name="renderer"><dir name="element"><file name="chart.phtml" hash="fb14be221a9ec0faad4ace8579c5dddc"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="23b9be12d2ca7c58fa5f942012ba5e2b"/></dir><dir name="template"><dir name="japi"><dir name="TIG"><dir name="PostNL"><dir name="av"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="6756588fef4d689418cbb4ea8d4ad92e"/><file name="shipping.phtml" hash="95a2f56b36a8111eba9c582b2b3d1d57"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="9a623e8c2184d08c2b288456ba50aef4"/><file name="postcode_check.phtml" hash="cbb8bfd76db65041cafacf976312ceb7"/></dir></dir></dir><dir name="do"><dir name="onepage"><file name="available.phtml" hash="8fce41a1696540a4546b52c025f3dde7"/></dir></dir></dir></dir><dir name="checkout"><dir name="onepage"><file name="additional_agreements.phtml" hash="2169df7f5c0d8b03e046cd000c9bea5f"/><file name="address.phtml" hash="3164ff4fc2d5f798e591a168d9d937d1"/><file name="agreements.phtml" hash="ae43c3b670b0d11a1217ca927a184ff7"/><file name="billing.phtml" hash="105051160f867d8e016593edcb6888b8"/><file name="coupon.phtml" hash="2b75d2b0c7e11276e1c85f7d4c1366bb"/><file name="js.phtml" hash="ac1740fe3e829d228a57b1e1a9dda58b"/><dir name="payment"><file name="info.phtml" hash="26bb640843ee3fb6e72b4f2739f0a111"/><file name="methods.phtml" hash="1680b5e33d8123fdb58ecbd353ff1ba7"/></dir><file name="payment.phtml" hash="966bfc2c8ca160086fa10bf63022172b"/><dir name="review"><file name="button.phtml" hash="e2089ae34e409df2fa13977a55db5f04"/><file name="info.phtml" hash="306936f465adcc1c09ad37b58609085d"/><file name="item.phtml" hash="244bba60d9151be71777e80e138b6ee7"/><dir name="totals"><file name="grand_total.phtml" hash="4ee3bdd1190a459e243249e288e6caff"/><file name="shipping.phtml" hash="75900b7d4cfb370e803d1489148450ad"/><file name="subtotal.phtml" hash="f91e3bc1a39761fa7cea8fc296091430"/><file name="tax.phtml" hash="37173b32341b2692a7890111f02f2938"/></dir><file name="totals.phtml" hash="0decbe242701193fee270e1f0f520a93"/></dir><file name="review.phtml" hash="d2494b8faac5833e747a5d329ee4fab7"/><file name="shipping.phtml" hash="f955c8b11f494041f1a88939219c1590"/><dir name="shipping_method"><file name="additional.phtml" hash="78c6dab72fefb888f587221639bf9177"/><file name="available.phtml" hash="4feca53deabec45bc3b223e64e32c4f0"/></dir><file name="shipping_method.phtml" hash="7f948fdc0601e48be0834178b56dbfb3"/><file name="style.phtml" hash="a1c2a9d43448339e6b9dfe8163e7b784"/></dir><file name="onepage.phtml" hash="d23107c80b94522e00c7d0c1ec5a4577"/></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="900db1b8385f75e448f7ca42c8d113da"/></dir><dir name="form"><file name="additional.phtml" hash="0d413b832a447a524de18c74cbd17844"/><file name="edit.phtml" hash="484b2b56cbf34dba73c78dc97552c024"/><file name="register.phtml" hash="8d41d5471f450633a277feb13502d646"/></dir></dir><dir name="fatturazione"><dir name="customer"><dir name="address"><file name="edit.phtml" hash="e7f27a8a61d9554bfbc4f36dfff60e4d"/></dir></dir></dir><file name="form.phtml" hash="eec0416c8830c4ebe004256d86c7ea59"/><dir name="giftmessage"><file name="inline.phtml" hash="78814da47aed68315b7d1d6b2e64c4c7"/></dir><file name="js.phtml" hash="9af5ac67d9b1a4fc689084e135215f99"/><dir name="kega_checkout"><dir name="onepage"><file name="payment.phtml" hash="a8d62337a136e32bed218f2de0523ac8"/></dir></dir><dir name="nwt"><dir name="kco"><dir name="cart"><dir name="item"><file name="default.phtml" hash="212018e8f0c4472a07fc81633d27c550"/></dir></dir><file name="checkout.phtml" hash="c7781347405e7e59322d9fc3b2f42b3c"/></dir></dir><dir name="page"><dir name="html"><file name="head.phtml" hash="b6a8cc30cd31bf642c2f885ed1fda855"/><file name="smart-app-banner.phtml" hash="8423731f246db33efb61026dd9ef5ddc"/></dir><file name="rwd.phtml" hash="06c53b02ad843574b22a803a709988f6"/></dir><dir name="symfony"><dir name="postcode"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="dea3cefc72e6317c5ea6e0db553d8758"/><file name="shipping.phtml" hash="56d1f7414cc62887b3d9d8de7e192440"/></dir></dir></dir></dir><dir name="vaimo"><dir name="klarna"><dir name="klarnacheckout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="f9f469de9cd1243cab176fc56071db64"/></dir></dir><file name="cart.phtml" hash="b40f17348beb248c4f1ff22374a1a05d"/><dir name="customer"><file name="balance.phtml" hash="198809cb8ebf8a468b89497c9abba07c"/></dir><dir name="discount"><file name="coupon.phtml" hash="1f3686b00a610d3f038c84e3621ef913"/></dir><file name="header.phtml" hash="fed93df0c84265a0f980b0de103945b8"/><file name="main.phtml" hash="94ad4f3aa30ae7db1131a1fe48ea2a99"/><file name="newsletter.phtml" hash="3a2251b9559e8b87b46ddf08b7cd27e2"/><file name="reward.phtml" hash="38c218d3777f11b03c3686067a706d00"/><file name="shipping_method.phtml" hash="44bb3c6efaab76641e02a07c2007a090"/><file name="sidebar.phtml" hash="410508fd9089e0be030915836abb42e2"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="japi"><dir name="css"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="styles_opc.css" hash="9b0ecbbeb22655e2e896ec8134fa8188"/></dir></dir><file name="gomage-checkout.css" hash="223657dbb0aba2783bb9e8de4b633d93"/><dir name="icomoon"><dir name="fonts"><file name="icomoon.eot" hash="842065e274d718c38968a81a721d49f4"/><file name="icomoon.svg" hash="2deea3fcd9ecc464a422aa37943b5848"/><file name="icomoon.ttf" hash="8ffbfccd78de7c37eadeca837ee40344"/><file name="icomoon.woff" hash="32df67c3aed8769c316b3e7ff1bb637c"/></dir><file name="style.css" hash="178c956df2a327dc88e4ef8069caa9bc"/></dir><file name="send-cloud.css" hash="77f77fa89359fe508708ec522a5e76d8"/><file name="style.css" hash="5d7b93ff05aa5148ed80d524f3360040"/><file name="style.less" hash="df960797823955d7a37ba9322c6ef051"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="bg-down.png" hash="04d7cd2963010b610f608aca03a45c63"/><file name="bg-up.png" hash="2882d38108532275fb1d425bbd021c9d"/><file name="glc_sprite.png" hash="5cd6f3ba1df3a6d26db5bbc193ce9c61"/></dir><dir name="js"><file name="checkout.js" hash="3b74e8a4d0fd21b3718ed86812edcc92"/><dir name="vaimo"><dir name="klarna"><file name="klarnautils.js" hash="e29553aa8446af7672c9ba1814fac3a5"/></dir></dir><dir name="varien"><file name="form.js" hash="9abc0bb4419828513b5c6e904a041616"/></dir></dir><dir name="lib"><dir name="bootstrap"><dir name="css"><file name="bootstrap.min.css" hash="5d5357cb3704e1f43a1f5bfed2aebf42"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="f4769f9bdb7466be65088239c12046d1"/><file name="glyphicons-halflings-regular.svg" hash="89889688147bd7575d6327160d64e760"/><file name="glyphicons-halflings-regular.ttf" hash="e18bbf611f2a2e43afc071aa2f4e1512"/><file name="glyphicons-halflings-regular.woff" hash="fa2772327f55d8198301fdb8bcfc8158"/><file name="glyphicons-halflings-regular.woff2" hash="448c34a56d699c29117adc64c43affeb"/></dir><dir name="js"><file name="collapse.js" hash="2bc99ca6c9b060ba5616f41ddd5e2703"/><file name="modal.js" hash="b7d8f688e67e78c07ffde44ec4248fd9"/><file name="transition.js" hash="3cb001675410903ecaadcfeb7c296965"/></dir></dir><dir name="jquery"><file name="jquery-1.11.2.min.js" hash="5790ead7ad3ba27397aedfa3d263b867"/><file name="jquery-noconflict.js" hash="32eb0a33820167f328a227e11210d32a"/></dir><dir name="ladda"><file name="ladda.min.css" hash="614e769024385cf21879d6a238b682e1"/><file name="ladda.min.js" hash="a34bcf417de7fc290ac5b034caca2371"/></dir><dir name="scrollto"><file name="scrollTo.js" hash="5c86793da8a4bfec6338bec965d35f6b"/></dir><dir name="smart-app-banner"><file name="smart-app-banner.css" hash="64c15053dbd22b44a519f55e75f6c2ca"/><file name="smart-app-banner.js" hash="4162cb20424080964b5d886125b73b47"/></dir><dir name="spin"><file name="spin.min.js" hash="1d06ceb800acbeae82d1fa2ad5b571de"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Jmango360_Japi.csv" hash="dda2ffbc3f1c2e60ac21e980e46499cc"/></dir><dir name="fr_FR"><file name="Jmango360_Japi.csv" hash="49fa338f05916214904965ca3009eadf"/></dir><dir name="it_IT"><file name="Jmango360_Japi.csv" hash="2ff891468a5c5fe0bd3775cc155341cb"/></dir><dir name="pt_PT"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="pt_BR"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="ar_SA"><file name="Jmango360_Japi.csv" hash="25b829fa5515c567af7ed8e5e4a2690a"/></dir><dir name="nl_NL"><file name="Jmango360_Japi.csv" hash="e7bf7f06b20dfa3ed3f5fcc49b5591a0"/></dir><dir name="sv_SE"><file name="Jmango360_Japi.csv" hash="3414d54579206e71cabaaea3153bc266"/></dir><dir name="da_DK"><file name="Jmango360_Japi.csv" hash="a8f243d230a312f4d5cee8c99a275ee7"/></dir><dir name="es_ES"><file name="Jmango360_Japi.csv" hash="0f763b984f64e095f863c2e66335c791"/></dir><dir name="de_DE"><file name="Jmango360_Japi.csv" hash="d9b0379bdb87bd4e70c12f131db76dd8"/></dir><dir name="el_GR"><file name="Jmango360_Japi.csv" hash="485815339ffff7bc4aac29803866e60d"/></dir></target><target name="magelib"><dir name="Jmango360"><dir name="Braintree"><file name="LICENSE" hash="7203c8834a3b633e63fba98aaedf7246"/><dir name="lib"><dir name="Braintree"><file name="AccountUpdaterDailyReport.php" hash="24081e5126e923c106d38de6d4bfa206"/><file name="AchMandate.php" hash="1c27b15b8508745e678f9637c495f126"/><file name="AddOn.php" hash="82925560fd6d09575150d03851132999"/><file name="AddOnGateway.php" hash="71f1cf435ad4a0f846cbdb61f54582b6"/><file name="Address.php" hash="80b3e24e93c142cc2fdb0401542c74f9"/><file name="AddressGateway.php" hash="5785772be266f1095ec9badc42872eda"/><file name="AmexExpressCheckoutCard.php" hash="e8638efd3aa53c9029c9a779c9a3c0d3"/><file name="AndroidPayCard.php" hash="b2dea285101ac3a6a811b35f854a8f70"/><file name="ApplePayCard.php" hash="ad86024899c22c02b2fe4661fb9795c3"/><file name="Base.php" hash="e32c757071d8f8effc5660cd1ce58c6b"/><file name="ClientToken.php" hash="81e2f643f912c8943560008d2fa7869d"/><file name="ClientTokenGateway.php" hash="bbac8367658b596480b50e1e7dd049b5"/><file name="CoinbaseAccount.php" hash="a0794c8d29dbab81ecf32dac6c4d66c1"/><file name="Collection.php" hash="ba52af974da21b424c7b9a6a881f4f26"/><file name="Configuration.php" hash="1e4c293d778380623a9806674cf1944f"/><file name="ConnectedMerchantPayPalStatusChanged.php" hash="3ebdd7be5c997c811ae134d6a6451f41"/><file name="ConnectedMerchantStatusTransitioned.php" hash="7ead86a6c4fc0c79d0f9277f0efd0068"/><file name="CredentialsParser.php" hash="85c9539be64146fa3ddde216f4ac20c9"/><file name="CreditCard.php" hash="0452233946373d6a6c3ac4e686a7b572"/><file name="CreditCardGateway.php" hash="e8ebf4e755318acfa0c6c014a64c9675"/><file name="CreditCardVerification.php" hash="b06ad08b7120572732498d2035a25952"/><file name="CreditCardVerificationGateway.php" hash="38a299c6e9a500fbf7e962e39f34e4bf"/><file name="CreditCardVerificationSearch.php" hash="93e08c9a258af84003700013d497cd82"/><file name="Customer.php" hash="4fd732fd33dfcf173fcb39cb005c4e3e"/><file name="CustomerGateway.php" hash="78d8a3f62be79d7ae67846ce6359646c"/><file name="CustomerSearch.php" hash="8e8d024b951a4baa458556d4281fe988"/><file name="Descriptor.php" hash="97dc19a001fb6845c0c0eb0ee396f9bf"/><file name="Digest.php" hash="622fb0f1a11cf4dc8ee0a6f5fe7150e8"/><file name="Disbursement.php" hash="851eb18f89594984838ce1c59f8e6d8c"/><file name="DisbursementDetails.php" hash="ce5af619a858d883453c21c0f9217163"/><file name="Discount.php" hash="ba59054dd8d42d600c6dfb5813267150"/><file name="DiscountGateway.php" hash="8c354a122a23e3ad2136905e1c9b1d95"/><dir name="Dispute"><file name="TransactionDetails.php" hash="3a554f1576f6269d1d7137d14be8b361"/></dir><file name="Dispute.php" hash="1478be0c3c39725eef8976c6531f4ebb"/><file name="EqualityNode.php" hash="62715d694920f751dfa270ee6234eb43"/><dir name="Error"><file name="Codes.php" hash="6f16da1bd831cb48faeb6f62389ed6f5"/><file name="ErrorCollection.php" hash="b32f1904ee32cf078470c109cec497c8"/><file name="Validation.php" hash="f5062b7d7385bac2c9fb8e653e7ecbdf"/><file name="ValidationErrorCollection.php" hash="bb82bf92f7d33e607d59fc9c36aaf8e0"/></dir><file name="EuropeBankAccount.php" hash="8784a357d37c42673e60f8c866228af8"/><dir name="Exception"><file name="Authentication.php" hash="d21bc381984fa6078377aacfe930f27f"/><file name="Authorization.php" hash="4b17dca02c715fcd50d6d80a40e808ce"/><file name="Configuration.php" hash="225dfca2a3fcb48620e971a03acc6213"/><file name="Connection.php" hash="97bf914cc5e53e573932b57eb60167be"/><file name="DownForMaintenance.php" hash="f9827287436a4c51669fad4c637238a6"/><file name="ForgedQueryString.php" hash="c8a65e4c3e20f4f834914d67a9e782cc"/><file name="InvalidChallenge.php" hash="d825f5fc7acf8dd0e92dc886e7351721"/><file name="InvalidSignature.php" hash="a627af00c19b01a92fe01d432e3296d9"/><file name="NotFound.php" hash="7ee49bce52fc34db868443d569300470"/><file name="SSLCaFileNotFound.php" hash="fcc6e63349cad74ae9651af421cfec15"/><file name="SSLCertificate.php" hash="2b23ad8a5f477accd97a5d26db3e9b68"/><file name="ServerError.php" hash="2dbc5d988ed3bf2ba858dfe8c1ce68e6"/><file name="TestOperationPerformedInProduction.php" hash="55dcb7ed8f8886a77edfd754a775567a"/><file name="Timeout.php" hash="48b27846cc5a412148be05ed081288f9"/><file name="TooManyRequests.php" hash="84c506492eae180f47a325871c7e4d5a"/><file name="Unexpected.php" hash="eb871413e9d4c394b2e4a5d4da02c7d4"/><file name="UpgradeRequired.php" hash="22d1766b6d115cd7144ed2b9186afc85"/><file name="ValidationsFailed.php" hash="3ee5ce23d0bda2f2794f5d5451111417"/></dir><file name="Exception.php" hash="cedf12b332e21324f4a6579426a3ab00"/><file name="FacilitatorDetails.php" hash="7a25557b06c663197d1aea39bd93e776"/><file name="Gateway.php" hash="d7705ccfa1caa0734c505651fc1381a2"/><file name="Http.php" hash="6c1428f7a9a397b1a6a45ebcdd0f6897"/><file name="IbanBankAccount.php" hash="fd44b18d5e0e64dec0e1fcffc445e6c1"/><file name="IdealPayment.php" hash="474ea0309045ed88db4de538ec739a4c"/><file name="IdealPaymentGateway.php" hash="b79384c4be5c89f212096cb1cb3c701f"/><file name="Instance.php" hash="827ebd75d39217e53873c82e753fc1ed"/><file name="IsNode.php" hash="783c6ad65c6030a12ad52253cd5bc1a8"/><file name="KeyValueNode.php" hash="6668a312a6aaaddbdcfc940775ed5820"/><file name="MasterpassCard.php" hash="24a6394c5ae1370c01ee35dbd764654b"/><file name="Merchant.php" hash="b1f8444fc109708a43017d6cda9536a2"/><dir name="MerchantAccount"><file name="AddressDetails.php" hash="540f9e79b8df5da5267835dd01db45c1"/><file name="BusinessDetails.php" hash="ca8a0dc16bce3fff5831fd22652b2f6b"/><file name="FundingDetails.php" hash="9ba992a0dda1be9a0cf8bd8b53ea33be"/><file name="IndividualDetails.php" hash="4855a6aa64b35ecab7bada4e3e0fc0c3"/></dir><file name="MerchantAccount.php" hash="a4ba2e530164c06b8e50ef8ff10f76f2"/><file name="MerchantAccountGateway.php" hash="ad62343cbbdb3e0d9732edfb7255d26c"/><file name="MerchantGateway.php" hash="e9d0fc529b7a32f7080201991deb29d1"/><file name="Modification.php" hash="5df7d89d7365e9edf7235f09b9b7ced4"/><file name="MultipleValueNode.php" hash="2555632262d8b7d81a69739817e1887d"/><file name="MultipleValueOrTextNode.php" hash="9d4a49bc8051d47fd820da2ffef03936"/><file name="OAuthCredentials.php" hash="661accf840ad921523b48ec1be8d9075"/><file name="OAuthGateway.php" hash="f1e54a919b9b65117114b8de7ebfc6f0"/><file name="OAuthResult.php" hash="6f7384d12e28b6748ef3cb92128d833d"/><file name="PaginatedCollection.php" hash="c45cd3395c53ac37946ab3defaab84ef"/><file name="PaginatedResult.php" hash="821bdf0de25d98df7054af24c33b1ce4"/><file name="PartialMatchNode.php" hash="084258b5f9f39a493ca6b02e7019a101"/><file name="PartnerMerchant.php" hash="389c4fae22a19d75b312998027b3fe0e"/><file name="PayPalAccount.php" hash="902debd6d7cdc62e018e3541484a8a5e"/><file name="PayPalAccountGateway.php" hash="5d0a865c2d012511f4a2b3e2c9029053"/><file name="PaymentInstrumentType.php" hash="44cfb496a9bd50eae618e18fcf41e856"/><file name="PaymentMethod.php" hash="3e53b3edd2bdd87fec010709c8acab8c"/><file name="PaymentMethodGateway.php" hash="3ac1231bc63edf1fff681442d4474db0"/><file name="PaymentMethodNonce.php" hash="73330240522e5655bbf01bb90629487f"/><file name="PaymentMethodNonceGateway.php" hash="f103b6749b9700a923e4cc1679f8ba4e"/><file name="Plan.php" hash="fcf369071d74d273604fc63ea2548f2b"/><file name="PlanGateway.php" hash="8713f672e916f26460b06a156b511e32"/><file name="RangeNode.php" hash="a3f74af2c4811a68c9f31ca136cc1c82"/><file name="ResourceCollection.php" hash="8e9da02c6ca6bf5e819efe6ad7837bf2"/><dir name="Result"><file name="CreditCardVerification.php" hash="c64c8bb4a76f77688ebc49a4f6769a20"/><file name="Error.php" hash="09b138f5992593ae33ea3e6f588d1ceb"/><file name="Successful.php" hash="9d2d014d188cbadf773ccca83cc2408d"/></dir><file name="RiskData.php" hash="61de70d88d4b40168e54cea84d2afc70"/><file name="SettlementBatchSummary.php" hash="73a3b6b583b5a852b3d1437b2d62ec5f"/><file name="SettlementBatchSummaryGateway.php" hash="d66b1708f32d1bcc4d738bf39df649b7"/><file name="SignatureService.php" hash="566a5d18567a513f4a527ebf3c8cd410"/><dir name="Subscription"><file name="StatusDetails.php" hash="4c01d220704e6d285c77dc2011f8746e"/></dir><file name="Subscription.php" hash="07ed981ef67b946f97598f48ae00e871"/><file name="SubscriptionGateway.php" hash="b82884333c65a8b747e1dae4919bf2a8"/><file name="SubscriptionSearch.php" hash="e97a9a2a7187058082afab7701f37b1a"/><dir name="Test"><file name="CreditCardNumbers.php" hash="c7b8fbac49f64deb33a8ac3d66757d68"/><file name="MerchantAccount.php" hash="2c700e2724472c0af362ecee6de04bc8"/><file name="Nonces.php" hash="19e6111751b9980732ebb00b41d1d35f"/><file name="Transaction.php" hash="54a421889bb7753192d06150758523ac"/><file name="TransactionAmounts.php" hash="aff59733ffd5a23ddd44ed37f6bda9a7"/><file name="VenmoSdk.php" hash="92872ddddd03c83489a81f8da99839a5"/></dir><file name="TestingGateway.php" hash="3ec7fe4a5a11f2db91b5ecaa6ab6d1c1"/><file name="TextNode.php" hash="da1cc61af2896b945552318d67bd2a46"/><file name="ThreeDSecureInfo.php" hash="8cbb2a63c256368123cb01f2e2a2a194"/><dir name="Transaction"><file name="AddressDetails.php" hash="ca29baa27dcc5c7ccddb7c653d6d99d4"/><file name="AmexExpressCheckoutCardDetails.php" hash="18c96b2d98d81918ec128101d8d69709"/><file name="AndroidPayCardDetails.php" hash="0c278d6aa4bddf669c949617ae37a880"/><file name="ApplePayCardDetails.php" hash="1a544ea0efe19943ff1618ada4100fcc"/><file name="CoinbaseDetails.php" hash="5a5e297bcc19f7d5e21c2f2886abaa09"/><file name="CreditCardDetails.php" hash="13385b916ec0e321e61c18e63baf1c58"/><file name="CustomerDetails.php" hash="fe0012e585006193a39cea9fd6c6eb7c"/><file name="EuropeBankAccountDetails.php" hash="520703e2689c99547bde17e8464df7d5"/><file name="IdealPaymentDetails.php" hash="444d3093c700de8217708a94cd2575e7"/><file name="MasterpassCardDetails.php" hash="f4aa0601b94d6ada0f9b29e27f8a4bc6"/><file name="PayPalDetails.php" hash="022041c82de738e45db9cef4da2eee1f"/><file name="StatusDetails.php" hash="59a90119124d8cb1efcb476e66db984e"/><file name="SubscriptionDetails.php" hash="8fe6507f04dda08b8aafc45a93ed2a4f"/><file name="UsBankAccountDetails.php" hash="52fdad1e440a36a8f2ce27719ecf72b6"/><file name="VenmoAccountDetails.php" hash="87f02410e01dea1e68f1d07130dd0539"/><file name="VisaCheckoutCardDetails.php" hash="d4909eb31f17abc5b16775e09c18687f"/></dir><file name="Transaction.php" hash="95e1fcccd0b58c0547646568fe16cc4f"/><file name="TransactionGateway.php" hash="2c4d9dc9f4a1d2a99788db533a868c6f"/><file name="TransactionSearch.php" hash="634b7a51905a41c1f037f186b53b540e"/><file name="TransparentRedirect.php" hash="134d55a603fa9d0c203c6a0635b93605"/><file name="TransparentRedirectGateway.php" hash="30deff1d0369b6a340260dac78f677ce"/><file name="UnknownPaymentMethod.php" hash="2b5d3ccae34ae73cf728ec38266a42e3"/><file name="UsBankAccount.php" hash="51ab8e304753c92de6ea87d019163b78"/><file name="UsBankAccountGateway.php" hash="ccde686657990c8db38a844ab86809ae"/><file name="Util.php" hash="9b2f24aab2919001d2e859ee8fce1207"/><file name="VenmoAccount.php" hash="fe5a40901d3924f956902f88b9490727"/><file name="Version.php" hash="6480d6b1aa6be1647a3c6b665e99e67d"/><file name="VisaCheckoutCard.php" hash="011c44b8bbf554eb5a114b65b8f02dab"/><file name="WebhookNotification.php" hash="fd2cb2c1872d55795140da78368af6d3"/><file name="WebhookNotificationGateway.php" hash="9a021c6b737362d61890e9e43dff57c2"/><file name="WebhookTesting.php" hash="f3a95c38979c11c1ac3d5d55e65b5a74"/><dir name="Xml"><file name="Generator.php" hash="3a4f2ad0e8c6ae17788c218587dcfc03"/><file name="Parser.php" hash="af8f3729c58efd1d8f8fbf2672faf8a8"/></dir><file name="Xml.php" hash="30bb301518e06e41a17eb4d03c4d8db9"/></dir><file name="Braintree.php" hash="40f87e43c5b205b646186e0b638da941"/><file name="autoload.php" hash="700bd7dbe39f8d89d925ccbb33651898"/><dir name="ssl"><file name="api_braintreegateway_com.ca.crt" hash="d1155107b085a1ee04dd13a634b00c42"/></dir></dir></dir></dir></target></contents>
37
  <compatible/>
38
  <dependencies><required><php><min>5.2.0</min><max>7.1.0</max></php></required></dependencies>
39
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Jmango360_Japi</name>
4
+ <version>3.5.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.apache.org/licenses/LICENSE-2.0">Apache License</license>
7
  <channel>community</channel>
19
  - Payment methods: all payment methods&#xD;
20
  - CMS pages - imported automatically&#xD;
21
  &#xD;
 
22
  Other generic mobile apps that you can add and configure:&#xD;
23
  &#xD;
24
  - Contact form&#xD;
30
  For more details on JMango360 please visit our website http://www.jmango360.com or out knowledge site http://support.jmango360.com</description>
31
  <notes>* Bug fixes</notes>
32
  <authors><author><name>Duc Ngo</name><user>jmango360</user><email>duc@jmango360.com</email></author></authors>
33
+ <date>2017-06-30</date>
34
+ <time>08:42:49</time>
35
+ <contents><target name="magecommunity"><dir name="Jmango360"><dir name="Japi"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Hide.php" hash="2e9fb95869151bb2a2c7cf7fca6f998f"/></dir></dir></dir></dir></dir><dir name="Order"><file name="Grid.php" hash="22273d3d0acaf1b0a093e524f87c6aff"/></dir><file name="Order.php" hash="04e94160608b989286aebeb190299565"/><dir name="Report"><dir name="Chart"><file name="Customers.php" hash="9a4c7c4af19c584aeb2dd5bc0f6d4735"/><file name="Orders.php" hash="ae5f516c56c5c8c72c14a7b0aa275ac6"/><file name="Sales.php" hash="7d5db491deeaa90571e965bbc2c07e23"/></dir><dir name="Customers"><file name="Chart.php" hash="69f2a7121d61f24d9b75de7281def8e5"/><file name="Grid.php" hash="f1adb7504646338330b7e7ef64a4fc5c"/></dir><file name="Customers.php" hash="6ffd72b1280b6cce39665fd35b5c4a78"/><dir name="Filter"><dir name="Form"><file name="Orders.php" hash="92574de82aa73cdd9de0cc59e20dadc4"/></dir><file name="Form.php" hash="7bf3f161f66abf97fc7db57e0acd59cf"/></dir><dir name="Orders"><file name="Chart.php" hash="75bd0bbe8649f423918dec555d3e9592"/><file name="Grid.php" hash="35590c1a54c8490c3982f0df038b8328"/></dir><file name="Orders.php" hash="6416ac5f6889d5a06f2a32f5ff00cbe2"/><dir name="Sales"><file name="Chart.php" hash="416f4ff4cdaa7f8f099dad3ffccacd68"/><file name="Grid.php" hash="baa9caa57906627ed3f31ec4fd87a500"/></dir><file name="Sales.php" hash="c1d1df3e7b90451e42142bb414a28d6b"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Paypal.php" hash="26ddf9a5b820c3fb23c1c4e0a46d6db4"/></dir><file name="Button.php" hash="2b02a6c90256c9bcc6d99d2d9301413e"/><file name="Log.php" hash="9a228a569090c0fc9a905c5fb29a7c4d"/><file name="User.php" hash="cb7dfc72c7acde78efbabc49617cba3c"/><file name="Version.php" hash="b9802c302ef7ecacf106993e8506d314"/></dir></dir></dir><dir name="Widget"><dir name="Form"><dir name="Renderer"><dir name="Element"><file name="Chart.php" hash="f6f4c2ff80cb71f3e0758809b8ad480d"/></dir></dir></dir></dir></dir><file name="Banner.php" hash="0cafa22b3012e1a3b39f0e72a03534fa"/><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="43581de27feb1a0187bb0aee68bab0e9"/><file name="Category.php" hash="5d01fc7d90af7eccd412ef61056b825b"/><file name="Decimal.php" hash="d40a09709bda7b1011e4d2c970308638"/><file name="Price.php" hash="02dfe6d9429f0190ecf9a41f73653330"/></dir><file name="View.php" hash="e217dfaf2a2ee6c2fa59ba9db0244eb9"/></dir><dir name="Product"><file name="List.php" hash="e1336372e4aa63e0e35c7e9ea1bd3852"/></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="4ba3d242a3343b1786cf081047650bb9"/></dir></dir><file name="Layer.php" hash="4d48db1a2b35151c363ed045646199a9"/></dir><dir name="Checkout"><dir name="Cart"><file name="Totals.php" hash="ed2ac76f7ebb2830c763deb80e1ea59e"/></dir><dir name="Onepage"><file name="Additional.php" hash="22a3c60e8fd44f5dfaec4b51d6fc1a62"/><file name="Addjs.php" hash="077d09b15ec8823c76854a575359cb1a"/><file name="Address.php" hash="bf596c77e982d4350fc532a3deb79e47"/><file name="Billing.php" hash="afc74029a0b8d571e440f50a04ab4340"/><file name="Button.php" hash="039d56b9b7982d5e32433d71f4b53959"/><file name="Shipping.php" hash="aaa1b70ecc095d297d6ab0a90f441c70"/></dir><file name="Onepage.php" hash="f6c3ef9390a3ac38560a34fbecf00eba"/><dir name="Total"><file name="Grandtotal.php" hash="0714677162e5c6e0ca9e1076083ee26e"/><file name="Shipping.php" hash="1bb99456f936de791df3b1e9cb4103d5"/><file name="Subtotal.php" hash="aa7cdd3b66df0ea397ad909848234a0e"/><file name="Tax.php" hash="91c12499a56a034d4733f8040feb7156"/></dir></dir><dir name="Customer"><dir name="Widget"><file name="Name.php" hash="aca4eea6675b64e1bc6d165307e1b958"/></dir></dir><file name="Form.php" hash="e16eaa258cf650bd2106372fcf43ae9b"/><dir name="GiftMessage"><dir name="Message"><file name="Inline.php" hash="8f20e9383634f46b624f15d77b616380"/></dir></dir><file name="Js.php" hash="8e8091283a5a3142fec7486077a9586e"/><dir name="Payment"><file name="Form.php" hash="f014c3faaad4e31a14052a76137f5dac"/><file name="Info.php" hash="2171f7379f4017b7a541926a9224cd54"/></dir><dir name="Socolissimosimplicite"><file name="Iframe.php" hash="91e096613f73e1edc7fcce4c6a17ce39"/></dir></dir><dir name="Controller"><file name="Abstract.php" hash="ccb6cc7460e7bbf30293983bbe61a07d"/></dir><file name="Exception.php" hash="bd30a2efecdf9a8197f066d9574cd1ab"/><dir name="Helper"><dir name="Adminhtml"><dir name="Report"><file name="Order.php" hash="9f7a02c48f3f8e0545488375b03d7333"/></dir></dir><file name="Data.php" hash="df1bca350a8884423aa2f8e875c6022a"/><file name="Debug.php" hash="1002a59a5dee41f34da875979e907cbf"/><dir name="GiftMessage"><file name="Message.php" hash="5d1df4710b0aa3154ce0fa744b0244f3"/></dir><file name="Js.php" hash="55565b7d668b993fae6c180b30766d17"/><dir name="Product"><file name="Bundle.php" hash="c89baf5638e81d030f5a72b011af7cfd"/><file name="Configurable.php" hash="ac9d2847adc70af0470f9d1106845cf7"/><file name="Downloadable.php" hash="db531632adda525a91625da8d13296d6"/><file name="File.php" hash="0968c5688015b9c7a002457428607f80"/><file name="Grouped.php" hash="8e9cfa89b62e210744b799a1134ec064"/><file name="Media.php" hash="291003011bdca7299280ef0136089edf"/><file name="Options.php" hash="1bc8973b5a9227b0b7de93f2307c7fb9"/><file name="Review.php" hash="e415a0215a8dfbdac5ed76e6c065c705"/><file name="TierPrice.php" hash="4a7e94d83eed9e7ba47ee196b4ae15d9"/></dir><file name="Product.php" hash="57a49f808ae5146a5c364d4b2e60ac96"/><dir name="Review"><file name="Bazaarvoice.php" hash="c2e918b6a5f6fc8671ab016c30fbc1ca"/></dir><file name="Tax.php" hash="05c99785012d55fce12c4f094385e25c"/></dir><dir name="Model"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="f058e0ced4579a556cbb969a98c7fc66"/><file name="Decimal.php" hash="849e1dbc11c99fb8f7a1f9d33e0d7908"/><file name="Price.php" hash="2bdc6f1ff06ad5aa736972c72558fd25"/></dir></dir></dir><dir name="Catalogsearch"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="81b287f96c40094c2a3743ddc6f6c6cb"/></dir></dir></dir><dir name="Core"><file name="Session.php" hash="7c5531af03c6a98e14dda3d358270938"/></dir><file name="Dispatcher.php" hash="81004902926427ba06a1a90d6e799554"/><dir name="Magpleasure"><dir name="Tierprices"><file name="Price.php" hash="1bfd6ed086649f518b3e98436513a491"/></dir></dir><dir name="Observer"><dir name="Controller"><file name="Front.php" hash="1098d9b5f6a214e53fb8657fe1fd250d"/></dir></dir><file name="Observer.php" hash="8692e999a2497a472c0bcd64f3d24bea"/><dir name="Payment"><file name="Braintree.php" hash="212d788906a3d94e2e10135d4de6bb58"/><file name="Paypal.php" hash="3a349b8e55f5abae4a960962e2191cd0"/></dir><file name="Payment.php" hash="0e2f9ff405b47e63bb8a3d27e82fb6ea"/><dir name="Renderer"><file name="Json.php" hash="b7c471548eecae7c9d05072aa6695cbb"/></dir><file name="Renderer.php" hash="47c320f795f1328a8df37d4b9af56abc"/><file name="Request.php" hash="ece58a0074c2ba238c102983e05d15a8"/><dir name="Resource"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="5bd13fbb5e8012ad24dc7908bc5ea755"/><file name="Decimal.php" hash="551120b728226ed408292fac732a05d7"/><file name="Price.php" hash="321f70b515b4d3deb9c7cc58eb803bf2"/></dir></dir></dir><dir name="Report"><dir name="Order"><file name="Collection.php" hash="1c5e69f548f2b4a0da8f789d7d03b643"/></dir></dir><dir name="Sales"><dir name="Report"><dir name="Order"><dir name="Collection"><file name="Aggregated.php" hash="61848c0b80699acbf478f279231c161d"/><file name="Live.php" hash="ea323ca0eec324ece97f08ece6639fb9"/></dir></dir><file name="Order.php" hash="53641b24d23bd811c278f65b56d5765f"/></dir></dir><file name="Setup.php" hash="3a97ea2e652869965f5b47b9e3099896"/></dir><file name="Response.php" hash="7209bb2e9c5b97b2a46d10ff97aa6740"/><dir name="Rest"><dir name="Cart"><file name="Coupon.php" hash="a5be6cfe674b46b6ba290b0388edf8ad"/><file name="Update.php" hash="48d85c58183c9696eea1fd2d4da6dfa1"/></dir><file name="Cart.php" hash="39e0f2f2b7630e5884d907f42bc5e11a"/><dir name="Catalog"><dir name="Category"><file name="Assignedproducts.php" hash="930ff28a4e8b2e401629c352c36569ca"/><file name="Tree.php" hash="5dce196312e33d3f7ac4a2235312e587"/></dir><dir name="Search"><file name="Products.php" hash="8b8f43f4f563dc27002884a57d42c858"/><file name="Terms.php" hash="71cadbe1fa7b19c96f2201f087c832ff"/></dir></dir><file name="Catalog.php" hash="a71eed5f39431b40a80b06f566baa653"/><dir name="Checkout"><file name="Methods.php" hash="e8ea7716b28587ecfb73bff7bb37b059"/><file name="Onepage.php" hash="51c0a6cecbc3f5ed55aa781653eba0fd"/><file name="Redirect.php" hash="19932aa45299e5ea3995f52cb9987183"/><file name="Submit.php" hash="f76e5952a9864e8d747c6123757e13bc"/></dir><file name="Checkout.php" hash="7241b560aedbc7eb728af8ea937af335"/><dir name="Cms"><file name="Page.php" hash="93bd77b2b3f2b8b1e72a3e6391553426"/></dir><file name="Cms.php" hash="a12fd4b2a437c8a6c0b2b65a1e471c23"/><dir name="Customer"><file name="Address.php" hash="cef92ca089a5cd7cd1218339104c4894"/><file name="Edit.php" hash="226f77d8cee872c4c622c062cfe1eff0"/><file name="Group.php" hash="c717d5faf52919787aa0f87270856ca3"/><file name="List.php" hash="17f0096755be01327c163a701b9f3780"/><file name="Login.php" hash="77df1e0afcf40e6129fb61397217f053"/><dir name="Order"><file name="List.php" hash="1e6ea53a87108ca487d9a58ac42f382f"/></dir><file name="Order.php" hash="da1565601bac963b72f64b0e6a147704"/><file name="Password.php" hash="6df128903742a8723f0a59c4203f8b12"/><file name="Register.php" hash="e25d0045e0d8ff650ca208b9fe75e3ae"/></dir><file name="Customer.php" hash="ecf57dcf8bbba1ebb12ed10630bd1715"/><file name="Mage.php" hash="731d7a85645d95af3a8fb281d0efaf42"/><dir name="Product"><file name="Crosssell.php" hash="1fbc8c3886de3703a77e911ac459422c"/><file name="List.php" hash="8d84ec9326a6747de6d2ca0a5aceee6c"/><file name="Price.php" hash="d47c9903d5719b0cee73836419e27bb1"/><file name="Purchased.php" hash="feb7fd9176da74e59722984732d04a9a"/><file name="Related.php" hash="8a6b52fc39f099f4339a91ad5709537a"/><file name="Review.php" hash="549ffdfaea3d95ac1f18e9d4ef18d6eb"/><file name="Search.php" hash="f760256b6158dacf44754cc026286c97"/><file name="Upsell.php" hash="319fe08a0a4c52c41ec4418b312e1842"/><file name="Url.php" hash="4b920cc4913b77b1e463afad27ad5b78"/><file name="Viewed.php" hash="c2a9c99a56b57d8288eec75657f9bd47"/></dir><file name="Product.php" hash="33f395e10d5578d948bf32a7bd5388fd"/><file name="Wishlist.php" hash="ee26b4efcbf3b2c39aec2c1e3402c35b"/></dir><file name="Server.php" hash="1f51d81e323af28fd78618e62db11d82"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Icon.php" hash="242de9b094f94e397dc606dc926cc33f"/><file name="Payment.php" hash="5964322419785004a6c3f84a940d8d13"/><file name="Shipping.php" hash="016f22646fbac10cd81c6b7904c9abde"/></dir><dir name="Source"><dir name="Address"><file name="Attributes.php" hash="1a29b64d271693fba3ea76599d3408e2"/><file name="Validatetype.php" hash="6f4d9767ac0e476ec6a6cd3964882721"/></dir><file name="Attributes.php" hash="4b4de29e00623c971038d6fe895e5e76"/><dir name="Bazaarvoice"><file name="Env.php" hash="bc619503d1b175e74f7eaf2ba15ae8b4"/></dir><dir name="Catalog"><file name="Direction.php" hash="68cd86444037506ec39de8eba3c07d8b"/><file name="Sortby.php" hash="d2aba9a3798b8e2eee8c275fbbd202e1"/></dir><file name="Catalogimage.php" hash="500f9994ea13e463a5e5e5d3963cfbd1"/><dir name="Customer"><file name="Attributes.php" hash="8963356aabf88647ab5ecbbbe8cfb9f1"/></dir><file name="Defaultimage.php" hash="04c896116c01b16e2ac8d7f23bbc29d6"/><file name="Payment.php" hash="70e82f4887eb297d6a58160f64bfd204"/><file name="Shipping.php" hash="7d8e5a2dc8a57099d908bef2403aad46"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Japi"><file name="LogController.php" hash="b17e024285aea7b6834cf5bc9b868916"/><file name="OrderController.php" hash="e6b7c1f5a7156a06fa3f51c32e6bbba9"/><file name="PaymentController.php" hash="a6f7cce53b85e2011bfb457cef98683a"/><file name="ReportController.php" hash="e88b2425e0a39f7f2b0c2902a6d2d5e9"/><file name="TroubleshootingController.php" hash="bb8951d1523a56a0f55e827614a38d66"/></dir></dir><file name="CheckoutController.php" hash="19871cfc809f5b5cd268d07aa815e3d3"/><dir name="Customer"><file name="AccountController.php" hash="2e055c5b22a2414263a1b7d3fd0607f9"/></dir><file name="CustomerController.php" hash="e3204496e61f58a572ef8f9b3cefe38f"/><file name="ImageController.php" hash="a5b48d4e075faf989c908bd0954d3878"/><file name="KcoController.php" hash="38e15112f3438edd6723478cf18c6cab"/><file name="KlarnaController.php" hash="90474b512fdc813039a86ae8f24a0b39"/><dir name="Rest"><file name="CartController.php" hash="3994aafe8e31094b765fc0120c888fa3"/><file name="CatalogController.php" hash="8df5b798bb0330f5e3182717e1e15bf7"/><file name="CheckoutController.php" hash="65b3a3592cdfc0a51c254451505dedea"/><file name="CmsController.php" hash="cb1bc3f67136434c4d8af1b5660eab1e"/><file name="CustomerController.php" hash="ca2b76f8f4e8a84d81749b37910287bd"/><file name="MageController.php" hash="e267156b2acf82d309b6c8c4680a7371"/><file name="ProductController.php" hash="81c0a0b0afcdfe99d6c651244baa075c"/><file name="WishlistController.php" hash="d7b0c8ff628b4244d120843d54a41248"/></dir><file name="TestController.php" hash="ffb60653808c0e0af00cc73d4755ef99"/></dir><dir name="data"><dir name="japi_setup"><file name="data-install-2.0.0.php" hash="bcf6de66f6b296182268b11b3e80bbeb"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="9d1888abb4ed93ec7b3e1fa678fb1411"/><file name="config.xml" hash="5388cacea7f6a80d074049cba865d3e7"/><file name="system.xml" hash="61edbb36eebc78b9f268ea6778d48a0d"/></dir><dir name="sql"><dir name="japi_setup"><file name="install-1.0.0.php" hash="ce407ff5715c837d02b1aba7975bf512"/><file name="upgrade-2.0.1.2-2.0.2.php" hash="6fc0e0306b685279fc60f298643d181a"/><file name="upgrade-2.1.6-2.2.0.php" hash="947afcf7e20dfc2c3a3e45d8e5c316cd"/><file name="upgrade-2.2.0-2.2.1.php" hash="12a28845acf823eefc5f613b048efe52"/><file name="upgrade-2.8.2-2.9.0.php" hash="2761423f65920af0f8ba05d438710869"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Jmango360_Japi.xml" hash="b60701b3a14084fa1a440ca5fe5bf47b"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="d6e1656e4a8e79dd9e37e0b09a5f57a6"/></dir><dir name="template"><dir name="japi"><dir name="report"><file name="chart.phtml" hash="102704d97cf69793a50fa96538bd767f"/><dir name="grid"><file name="container.phtml" hash="79050f4e2bc7b70ae452e850fc27e0b7"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="button"><file name="paypal.phtml" hash="247d0fd0a221f61bfa5b97dae8d95640"/></dir></dir></dir></dir><dir name="widget"><dir name="form"><dir name="renderer"><dir name="element"><file name="chart.phtml" hash="fb14be221a9ec0faad4ace8579c5dddc"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="jmango360_japi.xml" hash="b3b8841444995cae18a5cdf133a628ab"/></dir><dir name="template"><dir name="japi"><dir name="TIG"><dir name="PostNL"><dir name="av"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="6756588fef4d689418cbb4ea8d4ad92e"/><file name="shipping.phtml" hash="95a2f56b36a8111eba9c582b2b3d1d57"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="9a623e8c2184d08c2b288456ba50aef4"/><file name="postcode_check.phtml" hash="cbb8bfd76db65041cafacf976312ceb7"/></dir></dir></dir><dir name="do"><dir name="onepage"><file name="available.phtml" hash="8fce41a1696540a4546b52c025f3dde7"/></dir></dir></dir></dir><dir name="checkout"><dir name="onepage"><file name="additional_agreements.phtml" hash="2169df7f5c0d8b03e046cd000c9bea5f"/><file name="address.phtml" hash="3164ff4fc2d5f798e591a168d9d937d1"/><file name="agreements.phtml" hash="ae43c3b670b0d11a1217ca927a184ff7"/><file name="billing.phtml" hash="105051160f867d8e016593edcb6888b8"/><file name="coupon.phtml" hash="85175029f770fe8ba6a3800197372904"/><file name="js.phtml" hash="ac1740fe3e829d228a57b1e1a9dda58b"/><dir name="payment"><file name="info.phtml" hash="26bb640843ee3fb6e72b4f2739f0a111"/><file name="methods.phtml" hash="1680b5e33d8123fdb58ecbd353ff1ba7"/></dir><file name="payment.phtml" hash="966bfc2c8ca160086fa10bf63022172b"/><dir name="review"><file name="button.phtml" hash="e2089ae34e409df2fa13977a55db5f04"/><file name="info.phtml" hash="306936f465adcc1c09ad37b58609085d"/><file name="item.phtml" hash="244bba60d9151be71777e80e138b6ee7"/><dir name="totals"><file name="grand_total.phtml" hash="4ee3bdd1190a459e243249e288e6caff"/><file name="shipping.phtml" hash="75900b7d4cfb370e803d1489148450ad"/><file name="subtotal.phtml" hash="f91e3bc1a39761fa7cea8fc296091430"/><file name="tax.phtml" hash="37173b32341b2692a7890111f02f2938"/></dir><file name="totals.phtml" hash="0decbe242701193fee270e1f0f520a93"/></dir><file name="review.phtml" hash="d2494b8faac5833e747a5d329ee4fab7"/><file name="shipping.phtml" hash="f955c8b11f494041f1a88939219c1590"/><dir name="shipping_method"><file name="additional.phtml" hash="78c6dab72fefb888f587221639bf9177"/><file name="available.phtml" hash="4feca53deabec45bc3b223e64e32c4f0"/></dir><file name="shipping_method.phtml" hash="7f948fdc0601e48be0834178b56dbfb3"/><file name="style.phtml" hash="9add6c466b63a71629d0647f3bbe1bb6"/></dir><file name="onepage.phtml" hash="f6b196294ae1df82dde40f0931457cf4"/></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="900db1b8385f75e448f7ca42c8d113da"/></dir><dir name="form"><file name="additional.phtml" hash="0d413b832a447a524de18c74cbd17844"/><file name="edit.phtml" hash="484b2b56cbf34dba73c78dc97552c024"/><file name="register.phtml" hash="8d41d5471f450633a277feb13502d646"/></dir></dir><dir name="fatturazione"><dir name="customer"><dir name="address"><file name="edit.phtml" hash="e7f27a8a61d9554bfbc4f36dfff60e4d"/></dir></dir></dir><file name="form.phtml" hash="eec0416c8830c4ebe004256d86c7ea59"/><dir name="giftmessage"><file name="inline.phtml" hash="78814da47aed68315b7d1d6b2e64c4c7"/></dir><file name="js.phtml" hash="9af5ac67d9b1a4fc689084e135215f99"/><dir name="kega_checkout"><dir name="onepage"><file name="payment.phtml" hash="a8d62337a136e32bed218f2de0523ac8"/></dir></dir><dir name="nwt"><dir name="kco"><dir name="cart"><dir name="item"><file name="default.phtml" hash="212018e8f0c4472a07fc81633d27c550"/></dir></dir><file name="checkout.phtml" hash="c7781347405e7e59322d9fc3b2f42b3c"/></dir></dir><dir name="page"><dir name="html"><file name="head.phtml" hash="b6a8cc30cd31bf642c2f885ed1fda855"/><file name="smart-app-banner.phtml" hash="8423731f246db33efb61026dd9ef5ddc"/></dir><file name="rwd.phtml" hash="be4381f91e46165ddb760ce8fca4da30"/></dir><dir name="symfony"><dir name="postcode"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="dea3cefc72e6317c5ea6e0db553d8758"/><file name="shipping.phtml" hash="56d1f7414cc62887b3d9d8de7e192440"/></dir></dir></dir></dir><dir name="vaimo"><dir name="klarna"><dir name="klarnacheckout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="f9f469de9cd1243cab176fc56071db64"/></dir></dir><file name="cart.phtml" hash="b40f17348beb248c4f1ff22374a1a05d"/><dir name="customer"><file name="balance.phtml" hash="198809cb8ebf8a468b89497c9abba07c"/></dir><dir name="discount"><file name="coupon.phtml" hash="1f3686b00a610d3f038c84e3621ef913"/></dir><file name="header.phtml" hash="fed93df0c84265a0f980b0de103945b8"/><file name="main.phtml" hash="94ad4f3aa30ae7db1131a1fe48ea2a99"/><file name="newsletter.phtml" hash="3a2251b9559e8b87b46ddf08b7cd27e2"/><file name="reward.phtml" hash="38c218d3777f11b03c3686067a706d00"/><file name="shipping_method.phtml" hash="44bb3c6efaab76641e02a07c2007a090"/><file name="sidebar.phtml" hash="410508fd9089e0be030915836abb42e2"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="japi"><dir name="css"><dir name="TIG"><dir name="Buckaroo3Extended"><file name="styles_opc.css" hash="9b0ecbbeb22655e2e896ec8134fa8188"/></dir></dir><file name="gomage-checkout.css" hash="223657dbb0aba2783bb9e8de4b633d93"/><dir name="icomoon"><dir name="fonts"><file name="icomoon.eot" hash="842065e274d718c38968a81a721d49f4"/><file name="icomoon.svg" hash="2deea3fcd9ecc464a422aa37943b5848"/><file name="icomoon.ttf" hash="8ffbfccd78de7c37eadeca837ee40344"/><file name="icomoon.woff" hash="32df67c3aed8769c316b3e7ff1bb637c"/></dir><file name="style.css" hash="178c956df2a327dc88e4ef8069caa9bc"/></dir><file name="send-cloud.css" hash="77f77fa89359fe508708ec522a5e76d8"/><file name="style.css" hash="03b9a1564468c430bfb85c2293d4943e"/><file name="style.less" hash="4e15664e7e649adc6efbf50b27468bf3"/></dir><dir name="images"><file name="ajax-loader.gif" hash="f48ee069890b16455c3ddcacee9b5f75"/><file name="bg-down.png" hash="04d7cd2963010b610f608aca03a45c63"/><file name="bg-up.png" hash="2882d38108532275fb1d425bbd021c9d"/><file name="glc_sprite.png" hash="5cd6f3ba1df3a6d26db5bbc193ce9c61"/></dir><dir name="js"><file name="checkout.js" hash="4b5fd941afad32667d86c9b22853f927"/><dir name="vaimo"><dir name="klarna"><file name="klarnautils.js" hash="e29553aa8446af7672c9ba1814fac3a5"/></dir></dir><dir name="varien"><file name="form.js" hash="9abc0bb4419828513b5c6e904a041616"/></dir></dir><dir name="lib"><dir name="bootstrap"><dir name="css"><file name="bootstrap.min.css" hash="5d5357cb3704e1f43a1f5bfed2aebf42"/></dir><dir name="fonts"><file name="glyphicons-halflings-regular.eot" hash="f4769f9bdb7466be65088239c12046d1"/><file name="glyphicons-halflings-regular.svg" hash="89889688147bd7575d6327160d64e760"/><file name="glyphicons-halflings-regular.ttf" hash="e18bbf611f2a2e43afc071aa2f4e1512"/><file name="glyphicons-halflings-regular.woff" hash="fa2772327f55d8198301fdb8bcfc8158"/><file name="glyphicons-halflings-regular.woff2" hash="448c34a56d699c29117adc64c43affeb"/></dir><dir name="js"><file name="collapse.js" hash="2bc99ca6c9b060ba5616f41ddd5e2703"/><file name="modal.js" hash="b7d8f688e67e78c07ffde44ec4248fd9"/><file name="transition.js" hash="3cb001675410903ecaadcfeb7c296965"/></dir></dir><dir name="jquery"><file name="jquery-1.11.2.min.js" hash="5790ead7ad3ba27397aedfa3d263b867"/><file name="jquery-noconflict.js" hash="32eb0a33820167f328a227e11210d32a"/></dir><dir name="ladda"><file name="ladda.min.css" hash="614e769024385cf21879d6a238b682e1"/><file name="ladda.min.js" hash="a34bcf417de7fc290ac5b034caca2371"/></dir><dir name="scrollto"><file name="scrollTo.js" hash="5c86793da8a4bfec6338bec965d35f6b"/></dir><dir name="smart-app-banner"><file name="smart-app-banner.css" hash="64c15053dbd22b44a519f55e75f6c2ca"/><file name="smart-app-banner.js" hash="4162cb20424080964b5d886125b73b47"/></dir><dir name="spin"><file name="spin.min.js" hash="1d06ceb800acbeae82d1fa2ad5b571de"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Jmango360_Japi.csv" hash="dda2ffbc3f1c2e60ac21e980e46499cc"/></dir><dir name="fr_FR"><file name="Jmango360_Japi.csv" hash="49fa338f05916214904965ca3009eadf"/></dir><dir name="it_IT"><file name="Jmango360_Japi.csv" hash="2ff891468a5c5fe0bd3775cc155341cb"/></dir><dir name="pt_PT"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="pt_BR"><file name="Jmango360_Japi.csv" hash="3a70c94cf76ccf0649ab2c525f2acece"/></dir><dir name="ar_SA"><file name="Jmango360_Japi.csv" hash="d364cb3eac3e2048ec4786bd3245c617"/></dir><dir name="nl_NL"><file name="Jmango360_Japi.csv" hash="e7bf7f06b20dfa3ed3f5fcc49b5591a0"/></dir><dir name="sv_SE"><file name="Jmango360_Japi.csv" hash="3414d54579206e71cabaaea3153bc266"/></dir><dir name="da_DK"><file name="Jmango360_Japi.csv" hash="a8f243d230a312f4d5cee8c99a275ee7"/></dir><dir name="es_ES"><file name="Jmango360_Japi.csv" hash="0f763b984f64e095f863c2e66335c791"/></dir><dir name="de_DE"><file name="Jmango360_Japi.csv" hash="d9b0379bdb87bd4e70c12f131db76dd8"/></dir><dir name="el_GR"><file name="Jmango360_Japi.csv" hash="485815339ffff7bc4aac29803866e60d"/></dir></target><target name="magelib"><dir name="Jmango360"><dir name="Braintree"><file name="LICENSE" hash="7203c8834a3b633e63fba98aaedf7246"/><dir name="lib"><dir name="Braintree"><file name="AccountUpdaterDailyReport.php" hash="24081e5126e923c106d38de6d4bfa206"/><file name="AchMandate.php" hash="1c27b15b8508745e678f9637c495f126"/><file name="AddOn.php" hash="82925560fd6d09575150d03851132999"/><file name="AddOnGateway.php" hash="71f1cf435ad4a0f846cbdb61f54582b6"/><file name="Address.php" hash="80b3e24e93c142cc2fdb0401542c74f9"/><file name="AddressGateway.php" hash="5785772be266f1095ec9badc42872eda"/><file name="AmexExpressCheckoutCard.php" hash="e8638efd3aa53c9029c9a779c9a3c0d3"/><file name="AndroidPayCard.php" hash="b2dea285101ac3a6a811b35f854a8f70"/><file name="ApplePayCard.php" hash="ad86024899c22c02b2fe4661fb9795c3"/><file name="Base.php" hash="e32c757071d8f8effc5660cd1ce58c6b"/><file name="ClientToken.php" hash="81e2f643f912c8943560008d2fa7869d"/><file name="ClientTokenGateway.php" hash="bbac8367658b596480b50e1e7dd049b5"/><file name="CoinbaseAccount.php" hash="a0794c8d29dbab81ecf32dac6c4d66c1"/><file name="Collection.php" hash="ba52af974da21b424c7b9a6a881f4f26"/><file name="Configuration.php" hash="1e4c293d778380623a9806674cf1944f"/><file name="ConnectedMerchantPayPalStatusChanged.php" hash="3ebdd7be5c997c811ae134d6a6451f41"/><file name="ConnectedMerchantStatusTransitioned.php" hash="7ead86a6c4fc0c79d0f9277f0efd0068"/><file name="CredentialsParser.php" hash="85c9539be64146fa3ddde216f4ac20c9"/><file name="CreditCard.php" hash="0452233946373d6a6c3ac4e686a7b572"/><file name="CreditCardGateway.php" hash="e8ebf4e755318acfa0c6c014a64c9675"/><file name="CreditCardVerification.php" hash="b06ad08b7120572732498d2035a25952"/><file name="CreditCardVerificationGateway.php" hash="38a299c6e9a500fbf7e962e39f34e4bf"/><file name="CreditCardVerificationSearch.php" hash="93e08c9a258af84003700013d497cd82"/><file name="Customer.php" hash="4fd732fd33dfcf173fcb39cb005c4e3e"/><file name="CustomerGateway.php" hash="78d8a3f62be79d7ae67846ce6359646c"/><file name="CustomerSearch.php" hash="8e8d024b951a4baa458556d4281fe988"/><file name="Descriptor.php" hash="97dc19a001fb6845c0c0eb0ee396f9bf"/><file name="Digest.php" hash="622fb0f1a11cf4dc8ee0a6f5fe7150e8"/><file name="Disbursement.php" hash="851eb18f89594984838ce1c59f8e6d8c"/><file name="DisbursementDetails.php" hash="ce5af619a858d883453c21c0f9217163"/><file name="Discount.php" hash="ba59054dd8d42d600c6dfb5813267150"/><file name="DiscountGateway.php" hash="8c354a122a23e3ad2136905e1c9b1d95"/><dir name="Dispute"><file name="TransactionDetails.php" hash="3a554f1576f6269d1d7137d14be8b361"/></dir><file name="Dispute.php" hash="1478be0c3c39725eef8976c6531f4ebb"/><file name="EqualityNode.php" hash="62715d694920f751dfa270ee6234eb43"/><dir name="Error"><file name="Codes.php" hash="6f16da1bd831cb48faeb6f62389ed6f5"/><file name="ErrorCollection.php" hash="b32f1904ee32cf078470c109cec497c8"/><file name="Validation.php" hash="f5062b7d7385bac2c9fb8e653e7ecbdf"/><file name="ValidationErrorCollection.php" hash="bb82bf92f7d33e607d59fc9c36aaf8e0"/></dir><file name="EuropeBankAccount.php" hash="8784a357d37c42673e60f8c866228af8"/><dir name="Exception"><file name="Authentication.php" hash="d21bc381984fa6078377aacfe930f27f"/><file name="Authorization.php" hash="4b17dca02c715fcd50d6d80a40e808ce"/><file name="Configuration.php" hash="225dfca2a3fcb48620e971a03acc6213"/><file name="Connection.php" hash="97bf914cc5e53e573932b57eb60167be"/><file name="DownForMaintenance.php" hash="f9827287436a4c51669fad4c637238a6"/><file name="ForgedQueryString.php" hash="c8a65e4c3e20f4f834914d67a9e782cc"/><file name="InvalidChallenge.php" hash="d825f5fc7acf8dd0e92dc886e7351721"/><file name="InvalidSignature.php" hash="a627af00c19b01a92fe01d432e3296d9"/><file name="NotFound.php" hash="7ee49bce52fc34db868443d569300470"/><file name="SSLCaFileNotFound.php" hash="fcc6e63349cad74ae9651af421cfec15"/><file name="SSLCertificate.php" hash="2b23ad8a5f477accd97a5d26db3e9b68"/><file name="ServerError.php" hash="2dbc5d988ed3bf2ba858dfe8c1ce68e6"/><file name="TestOperationPerformedInProduction.php" hash="55dcb7ed8f8886a77edfd754a775567a"/><file name="Timeout.php" hash="48b27846cc5a412148be05ed081288f9"/><file name="TooManyRequests.php" hash="84c506492eae180f47a325871c7e4d5a"/><file name="Unexpected.php" hash="eb871413e9d4c394b2e4a5d4da02c7d4"/><file name="UpgradeRequired.php" hash="22d1766b6d115cd7144ed2b9186afc85"/><file name="ValidationsFailed.php" hash="3ee5ce23d0bda2f2794f5d5451111417"/></dir><file name="Exception.php" hash="cedf12b332e21324f4a6579426a3ab00"/><file name="FacilitatorDetails.php" hash="7a25557b06c663197d1aea39bd93e776"/><file name="Gateway.php" hash="d7705ccfa1caa0734c505651fc1381a2"/><file name="Http.php" hash="6c1428f7a9a397b1a6a45ebcdd0f6897"/><file name="IbanBankAccount.php" hash="fd44b18d5e0e64dec0e1fcffc445e6c1"/><file name="IdealPayment.php" hash="474ea0309045ed88db4de538ec739a4c"/><file name="IdealPaymentGateway.php" hash="b79384c4be5c89f212096cb1cb3c701f"/><file name="Instance.php" hash="827ebd75d39217e53873c82e753fc1ed"/><file name="IsNode.php" hash="783c6ad65c6030a12ad52253cd5bc1a8"/><file name="KeyValueNode.php" hash="6668a312a6aaaddbdcfc940775ed5820"/><file name="MasterpassCard.php" hash="24a6394c5ae1370c01ee35dbd764654b"/><file name="Merchant.php" hash="b1f8444fc109708a43017d6cda9536a2"/><dir name="MerchantAccount"><file name="AddressDetails.php" hash="540f9e79b8df5da5267835dd01db45c1"/><file name="BusinessDetails.php" hash="ca8a0dc16bce3fff5831fd22652b2f6b"/><file name="FundingDetails.php" hash="9ba992a0dda1be9a0cf8bd8b53ea33be"/><file name="IndividualDetails.php" hash="4855a6aa64b35ecab7bada4e3e0fc0c3"/></dir><file name="MerchantAccount.php" hash="a4ba2e530164c06b8e50ef8ff10f76f2"/><file name="MerchantAccountGateway.php" hash="ad62343cbbdb3e0d9732edfb7255d26c"/><file name="MerchantGateway.php" hash="e9d0fc529b7a32f7080201991deb29d1"/><file name="Modification.php" hash="5df7d89d7365e9edf7235f09b9b7ced4"/><file name="MultipleValueNode.php" hash="2555632262d8b7d81a69739817e1887d"/><file name="MultipleValueOrTextNode.php" hash="9d4a49bc8051d47fd820da2ffef03936"/><file name="OAuthCredentials.php" hash="661accf840ad921523b48ec1be8d9075"/><file name="OAuthGateway.php" hash="f1e54a919b9b65117114b8de7ebfc6f0"/><file name="OAuthResult.php" hash="6f7384d12e28b6748ef3cb92128d833d"/><file name="PaginatedCollection.php" hash="c45cd3395c53ac37946ab3defaab84ef"/><file name="PaginatedResult.php" hash="821bdf0de25d98df7054af24c33b1ce4"/><file name="PartialMatchNode.php" hash="084258b5f9f39a493ca6b02e7019a101"/><file name="PartnerMerchant.php" hash="389c4fae22a19d75b312998027b3fe0e"/><file name="PayPalAccount.php" hash="902debd6d7cdc62e018e3541484a8a5e"/><file name="PayPalAccountGateway.php" hash="5d0a865c2d012511f4a2b3e2c9029053"/><file name="PaymentInstrumentType.php" hash="44cfb496a9bd50eae618e18fcf41e856"/><file name="PaymentMethod.php" hash="3e53b3edd2bdd87fec010709c8acab8c"/><file name="PaymentMethodGateway.php" hash="3ac1231bc63edf1fff681442d4474db0"/><file name="PaymentMethodNonce.php" hash="73330240522e5655bbf01bb90629487f"/><file name="PaymentMethodNonceGateway.php" hash="f103b6749b9700a923e4cc1679f8ba4e"/><file name="Plan.php" hash="fcf369071d74d273604fc63ea2548f2b"/><file name="PlanGateway.php" hash="8713f672e916f26460b06a156b511e32"/><file name="RangeNode.php" hash="a3f74af2c4811a68c9f31ca136cc1c82"/><file name="ResourceCollection.php" hash="8e9da02c6ca6bf5e819efe6ad7837bf2"/><dir name="Result"><file name="CreditCardVerification.php" hash="c64c8bb4a76f77688ebc49a4f6769a20"/><file name="Error.php" hash="09b138f5992593ae33ea3e6f588d1ceb"/><file name="Successful.php" hash="9d2d014d188cbadf773ccca83cc2408d"/></dir><file name="RiskData.php" hash="61de70d88d4b40168e54cea84d2afc70"/><file name="SettlementBatchSummary.php" hash="73a3b6b583b5a852b3d1437b2d62ec5f"/><file name="SettlementBatchSummaryGateway.php" hash="d66b1708f32d1bcc4d738bf39df649b7"/><file name="SignatureService.php" hash="566a5d18567a513f4a527ebf3c8cd410"/><dir name="Subscription"><file name="StatusDetails.php" hash="4c01d220704e6d285c77dc2011f8746e"/></dir><file name="Subscription.php" hash="07ed981ef67b946f97598f48ae00e871"/><file name="SubscriptionGateway.php" hash="b82884333c65a8b747e1dae4919bf2a8"/><file name="SubscriptionSearch.php" hash="e97a9a2a7187058082afab7701f37b1a"/><dir name="Test"><file name="CreditCardNumbers.php" hash="c7b8fbac49f64deb33a8ac3d66757d68"/><file name="MerchantAccount.php" hash="2c700e2724472c0af362ecee6de04bc8"/><file name="Nonces.php" hash="19e6111751b9980732ebb00b41d1d35f"/><file name="Transaction.php" hash="54a421889bb7753192d06150758523ac"/><file name="TransactionAmounts.php" hash="aff59733ffd5a23ddd44ed37f6bda9a7"/><file name="VenmoSdk.php" hash="92872ddddd03c83489a81f8da99839a5"/></dir><file name="TestingGateway.php" hash="3ec7fe4a5a11f2db91b5ecaa6ab6d1c1"/><file name="TextNode.php" hash="da1cc61af2896b945552318d67bd2a46"/><file name="ThreeDSecureInfo.php" hash="8cbb2a63c256368123cb01f2e2a2a194"/><dir name="Transaction"><file name="AddressDetails.php" hash="ca29baa27dcc5c7ccddb7c653d6d99d4"/><file name="AmexExpressCheckoutCardDetails.php" hash="18c96b2d98d81918ec128101d8d69709"/><file name="AndroidPayCardDetails.php" hash="0c278d6aa4bddf669c949617ae37a880"/><file name="ApplePayCardDetails.php" hash="1a544ea0efe19943ff1618ada4100fcc"/><file name="CoinbaseDetails.php" hash="5a5e297bcc19f7d5e21c2f2886abaa09"/><file name="CreditCardDetails.php" hash="13385b916ec0e321e61c18e63baf1c58"/><file name="CustomerDetails.php" hash="fe0012e585006193a39cea9fd6c6eb7c"/><file name="EuropeBankAccountDetails.php" hash="520703e2689c99547bde17e8464df7d5"/><file name="IdealPaymentDetails.php" hash="444d3093c700de8217708a94cd2575e7"/><file name="MasterpassCardDetails.php" hash="f4aa0601b94d6ada0f9b29e27f8a4bc6"/><file name="PayPalDetails.php" hash="022041c82de738e45db9cef4da2eee1f"/><file name="StatusDetails.php" hash="59a90119124d8cb1efcb476e66db984e"/><file name="SubscriptionDetails.php" hash="8fe6507f04dda08b8aafc45a93ed2a4f"/><file name="UsBankAccountDetails.php" hash="52fdad1e440a36a8f2ce27719ecf72b6"/><file name="VenmoAccountDetails.php" hash="87f02410e01dea1e68f1d07130dd0539"/><file name="VisaCheckoutCardDetails.php" hash="d4909eb31f17abc5b16775e09c18687f"/></dir><file name="Transaction.php" hash="95e1fcccd0b58c0547646568fe16cc4f"/><file name="TransactionGateway.php" hash="2c4d9dc9f4a1d2a99788db533a868c6f"/><file name="TransactionSearch.php" hash="634b7a51905a41c1f037f186b53b540e"/><file name="TransparentRedirect.php" hash="134d55a603fa9d0c203c6a0635b93605"/><file name="TransparentRedirectGateway.php" hash="30deff1d0369b6a340260dac78f677ce"/><file name="UnknownPaymentMethod.php" hash="2b5d3ccae34ae73cf728ec38266a42e3"/><file name="UsBankAccount.php" hash="51ab8e304753c92de6ea87d019163b78"/><file name="UsBankAccountGateway.php" hash="ccde686657990c8db38a844ab86809ae"/><file name="Util.php" hash="9b2f24aab2919001d2e859ee8fce1207"/><file name="VenmoAccount.php" hash="fe5a40901d3924f956902f88b9490727"/><file name="Version.php" hash="6480d6b1aa6be1647a3c6b665e99e67d"/><file name="VisaCheckoutCard.php" hash="011c44b8bbf554eb5a114b65b8f02dab"/><file name="WebhookNotification.php" hash="fd2cb2c1872d55795140da78368af6d3"/><file name="WebhookNotificationGateway.php" hash="9a021c6b737362d61890e9e43dff57c2"/><file name="WebhookTesting.php" hash="f3a95c38979c11c1ac3d5d55e65b5a74"/><dir name="Xml"><file name="Generator.php" hash="3a4f2ad0e8c6ae17788c218587dcfc03"/><file name="Parser.php" hash="af8f3729c58efd1d8f8fbf2672faf8a8"/></dir><file name="Xml.php" hash="30bb301518e06e41a17eb4d03c4d8db9"/></dir><file name="Braintree.php" hash="40f87e43c5b205b646186e0b638da941"/><file name="autoload.php" hash="700bd7dbe39f8d89d925ccbb33651898"/><dir name="ssl"><file name="api_braintreegateway_com.ca.crt" hash="d1155107b085a1ee04dd13a634b00c42"/></dir></dir></dir></dir></target></contents>
36
  <compatible/>
37
  <dependencies><required><php><min>5.2.0</min><max>7.1.0</max></php></required></dependencies>
38
  </package>
skin/frontend/base/default/japi/css/style.css CHANGED
@@ -129,6 +129,7 @@ a:hover {
129
  }
130
  .sp-methods dd {
131
  background: #fafafa;
 
132
  }
133
  .sp-methods dd ul li {
134
  padding: 1em;
@@ -143,7 +144,7 @@ a:hover {
143
  color: #737373;
144
  display: table-cell;
145
  width: 100%;
146
- padding: 0 0 0 0.5em;
147
  }
148
  .sp-methods label .price {
149
  color: #4d4d4d;
@@ -183,8 +184,7 @@ a:hover {
183
  padding-top: 0;
184
  }
185
  .jm-item td {
186
- padding-top: 1em;
187
- padding-left: 1em;
188
  vertical-align: top;
189
  }
190
  .jm-item td:first-child {
@@ -213,7 +213,7 @@ a:hover {
213
  border-radius: 8px;
214
  }
215
  .jm-item .jm-item-detail {
216
- padding-left: 1em;
217
  }
218
  .jm-item .jm-item-detail .jm-item-desc {
219
  font-size: 0.9em;
@@ -1540,3 +1540,24 @@ label[for="s_method_socolissimosimplicite_socolissimosimplicite"] {
1540
  #socolissimosimplicite_iframe_wrapper iframe {
1541
  width: 100%;
1542
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  }
130
  .sp-methods dd {
131
  background: #fafafa;
132
+ margin: 0;
133
  }
134
  .sp-methods dd ul li {
135
  padding: 1em;
144
  color: #737373;
145
  display: table-cell;
146
  width: 100%;
147
+ padding: 0 0.5em;
148
  }
149
  .sp-methods label .price {
150
  color: #4d4d4d;
184
  padding-top: 0;
185
  }
186
  .jm-item td {
187
+ padding: 0 1em;
 
188
  vertical-align: top;
189
  }
190
  .jm-item td:first-child {
213
  border-radius: 8px;
214
  }
215
  .jm-item .jm-item-detail {
216
+ padding: 0 1em;
217
  }
218
  .jm-item .jm-item-detail .jm-item-desc {
219
  font-size: 0.9em;
1540
  #socolissimosimplicite_iframe_wrapper iframe {
1541
  width: 100%;
1542
  }
1543
+ /** RTL LAYOUT **/
1544
+ .rtl .opc .section .step-title .section-control {
1545
+ left: 0;
1546
+ right: auto;
1547
+ }
1548
+ .rtl .opc .section .step-number-wrapper {
1549
+ padding: 0 0.5em;
1550
+ }
1551
+ .rtl .opc .section .ladda-button .ladda-spinner {
1552
+ margin-left: -15px;
1553
+ }
1554
+ .rtl .opc .section .sp-methods label .price {
1555
+ float: left;
1556
+ }
1557
+ .rtl .opc .section .jm-item .jm-item-img .jm-item-qty {
1558
+ left: -0.75em;
1559
+ right: auto;
1560
+ }
1561
+ .rtl .opc .section .sp-methods .section-control {
1562
+ float: left;
1563
+ }
skin/frontend/base/default/japi/css/style.less CHANGED
@@ -143,6 +143,7 @@ a, a:focus, a:hover {
143
 
144
  dd {
145
  background: #fafafa;
 
146
 
147
  ul {
148
  li {
@@ -164,7 +165,7 @@ a, a:focus, a:hover {
164
  color: #737373;
165
  display: table-cell;
166
  width: 100%;
167
- padding: 0 0 0 0.5em;
168
 
169
  .price {
170
  color: #4d4d4d;
@@ -216,8 +217,7 @@ a, a:focus, a:hover {
216
  }
217
 
218
  td {
219
- padding-top: 1em;
220
- padding-left: 1em;
221
  vertical-align: top;
222
 
223
  &:first-child {
@@ -252,7 +252,7 @@ a, a:focus, a:hover {
252
  }
253
 
254
  .jm-item-detail {
255
- padding-left: 1em;
256
 
257
  .jm-item-desc {
258
  font-size: 0.9em;
@@ -1840,4 +1840,44 @@ label[for="s_method_socolissimosimplicite_socolissimosimplicite"] {
1840
 
1841
  #socolissimosimplicite_iframe_wrapper iframe {
1842
  width: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1843
  }
143
 
144
  dd {
145
  background: #fafafa;
146
+ margin: 0;
147
 
148
  ul {
149
  li {
165
  color: #737373;
166
  display: table-cell;
167
  width: 100%;
168
+ padding: 0 0.5em;
169
 
170
  .price {
171
  color: #4d4d4d;
217
  }
218
 
219
  td {
220
+ padding: 0 1em;
 
221
  vertical-align: top;
222
 
223
  &:first-child {
252
  }
253
 
254
  .jm-item-detail {
255
+ padding: 0 1em;
256
 
257
  .jm-item-desc {
258
  font-size: 0.9em;
1840
 
1841
  #socolissimosimplicite_iframe_wrapper iframe {
1842
  width: 100%;
1843
+ }
1844
+
1845
+ /** RTL LAYOUT **/
1846
+ .rtl {
1847
+ .opc {
1848
+ .section {
1849
+ .step-title {
1850
+ .section-control {
1851
+ left: 0;
1852
+ right: auto;
1853
+ }
1854
+ }
1855
+ .step-number-wrapper {
1856
+ padding: 0 0.5em;
1857
+ }
1858
+ .ladda-button {
1859
+ .ladda-spinner {
1860
+ margin-left: -15px;
1861
+ }
1862
+ }
1863
+ .sp-methods {
1864
+ label .price {
1865
+ float: left;
1866
+ }
1867
+ }
1868
+ .jm-item {
1869
+ .jm-item-img {
1870
+ .jm-item-qty {
1871
+ left: -0.75em;
1872
+ right: auto;
1873
+ }
1874
+ }
1875
+ }
1876
+ .sp-methods {
1877
+ .section-control {
1878
+ float: left;
1879
+ }
1880
+ }
1881
+ }
1882
+ }
1883
  }
skin/frontend/base/default/japi/js/checkout.js CHANGED
@@ -114,10 +114,17 @@ if (typeof Checkout !== "undefined") {
114
  }
115
 
116
  ['billing', 'shipping'].each(function (section) {
117
- $(section + '-buttons-container') && $(section + '-buttons-container').select('button').each(function (button) {
118
- $(button).setAttribute('id', section + '-button');
119
- this.getLaddaButton(button);
120
- }.bind(this));
 
 
 
 
 
 
 
121
  }.bind(this));
122
 
123
  /**
@@ -291,7 +298,24 @@ if (typeof Checkout !== "undefined") {
291
 
292
  if (typeof shippingMethod == 'undefined') return;
293
  checkout.gotoSection('shipping_method');
294
- shippingMethod.load(this.shippingMethodUrl);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  }
296
  });
297
  }
@@ -397,23 +421,6 @@ if (typeof ShippingMethod !== 'undefined') {
397
 
398
  payment.initWhatIsCvvListeners();
399
  };
400
-
401
- ShippingMethod.prototype.load = function (url) {
402
- if (checkout.loadWaiting != false || !url) return;
403
- var additionalElm = $('onepage-checkout-shipping-method-additional-load');
404
- additionalElm && additionalElm.hide();
405
- checkout.setLoadWaiting('shipping-method');
406
- new Ajax.Request(url, {
407
- method: 'get',
408
- onComplete: function () {
409
- checkout.setLoadWaiting(false);
410
- additionalElm && additionalElm.show();
411
- },
412
- onSuccess: function (transport) {
413
- billing && billing.nextStep(transport);
414
- }
415
- });
416
- };
417
  }
418
 
419
  /**
114
  }
115
 
116
  ['billing', 'shipping'].each(function (section) {
117
+ /**
118
+ * Fix site with double #ID, you evil.
119
+ */
120
+ if ($$('#' + section + '-buttons-container').length) {
121
+ $$('#' + section + '-buttons-container').each(function (buttonsSection) {
122
+ $(buttonsSection).select('button').each(function (button) {
123
+ $(button).setAttribute('id', section + '-button');
124
+ this.getLaddaButton(button);
125
+ }.bind(this));
126
+ }.bind(this));
127
+ }
128
  }.bind(this));
129
 
130
  /**
298
 
299
  if (typeof shippingMethod == 'undefined') return;
300
  checkout.gotoSection('shipping_method');
301
+ this.loadShippingMethod(this.shippingMethodUrl);
302
+ },
303
+
304
+ loadShippingMethod: function (url) {
305
+ if (this.loadWaiting != false || !url) return;
306
+ var additionalElm = $('onepage-checkout-shipping-method-additional-load');
307
+ additionalElm && additionalElm.hide();
308
+ checkout.setLoadWaiting('shipping-method');
309
+ new Ajax.Request(url, {
310
+ method: 'get',
311
+ onComplete: function () {
312
+ checkout.setLoadWaiting(false);
313
+ additionalElm && additionalElm.show();
314
+ },
315
+ onSuccess: function (transport) {
316
+ billing && billing.nextStep(transport);
317
+ }
318
+ });
319
  }
320
  });
321
  }
421
 
422
  payment.initWhatIsCvvListeners();
423
  };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  }
425
 
426
  /**