Creativestyle_AmazonPayments - Version 1.8.6

Version Notes

# Improvements
- Added coupon code handling in Amazon checkout review
- Added possibility to disconnect customer account from Amazon account
# Changes
- Removed password form for account matching when customer is logged-in
- Updated Amazon Pay logos in Magento admin
# Fixes
- Fixed PHP versions in Magento Connect package.xml file

Download this release

Release Info

Developer creativestyle GmbH
Extension Creativestyle_AmazonPayments
Version 1.8.6
Comparing to
See all releases


Code changes from version 1.8.4 to 1.8.6

Files changed (22) hide show
  1. app/code/community/Creativestyle/AmazonPayments/Block/Customer/Account/Dashboard/Login.php +25 -0
  2. app/code/community/Creativestyle/AmazonPayments/Model/Service/Login.php +14 -0
  3. app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/CheckoutController.php +38 -0
  4. app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/LoginController.php +9 -1
  5. app/code/community/Creativestyle/AmazonPayments/etc/config.xml +1 -1
  6. app/design/frontend/base/default/layout/amazonpayments.xml +11 -1
  7. app/design/frontend/base/default/template/creativestyle/amazonpayments/checkout/js.phtml +1 -0
  8. app/design/frontend/base/default/template/creativestyle/amazonpayments/checkout/review/coupon.phtml +50 -0
  9. app/design/frontend/base/default/template/creativestyle/amazonpayments/customer/account/dashboard/login.phtml +42 -0
  10. app/locale/de_DE/Creativestyle_AmazonPayments.csv +4 -2
  11. app/locale/en_GB/Creativestyle_AmazonPayments.csv +2 -0
  12. app/locale/en_US/Creativestyle_AmazonPayments.csv +2 -0
  13. app/locale/es_ES/Creativestyle_AmazonPayments.csv +4 -2
  14. app/locale/fr_FR/Creativestyle_AmazonPayments.csv +5 -3
  15. app/locale/it_IT/Creativestyle_AmazonPayments.csv +4 -2
  16. js/creativestyle/apa_checkout.js +24 -1
  17. js/creativestyle/apa_checkout.min.js +1 -1
  18. package.xml +10 -12
  19. skin/adminhtml/default/default/creativestyle/images/amazon-payments-advanced-header.png +0 -0
  20. skin/adminhtml/default/default/creativestyle/images/amazon-payments-advanced-section.png +0 -0
  21. skin/frontend/base/default/creativestyle/css/amazonpayments.css +15 -0
  22. skin/frontend/rwd/default/creativestyle/css/amazonpayments.css +16 -0
app/code/community/Creativestyle/AmazonPayments/Block/Customer/Account/Dashboard/Login.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * This file is part of the official Amazon Payments Advanced extension
5
+ * for Magento (c) creativestyle GmbH <amazon@creativestyle.de>
6
+ * All rights reserved
7
+ *
8
+ * Reuse or modification of this source code is not allowed
9
+ * without written permission from creativestyle GmbH
10
+ *
11
+ * @category Creativestyle
12
+ * @package Creativestyle_AmazonPayments
13
+ * @copyright Copyright (c) 2017 creativestyle GmbH
14
+ * @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
15
+ */
16
+ class Creativestyle_AmazonPayments_Block_Customer_Account_Dashboard_Login extends Creativestyle_AmazonPayments_Block_Abstract {
17
+
18
+ protected function _isActive() {
19
+ return $this->_getConfig()->isLoginActive();
20
+ }
21
+
22
+ protected function isCustomerConnectedWithAmazon() {
23
+ return (bool)$this->_getCustomerSession()->getCustomer()->getAmazonUserId();
24
+ }
25
+ }
app/code/community/Creativestyle/AmazonPayments/Model/Service/Login.php CHANGED
@@ -37,6 +37,13 @@ class Creativestyle_AmazonPayments_Model_Service_Login {
37
  return Mage::getSingleton('amazonpayments/config');
38
  }
39
 
 
 
 
 
 
 
 
40
  protected function _getWebsiteId() {
41
  if (null === $this->_websiteId) {
42
  $this->_websiteId = Mage::app()->getStore()->getWebsiteId();
@@ -139,6 +146,13 @@ class Creativestyle_AmazonPayments_Model_Service_Login {
139
  'customer' => $this->_getCustomer()
140
  ));
141
  } elseif (null !== $this->_getCustomerByEmail()) {
 
 
 
 
 
 
 
142
  return new Varien_Object(array(
143
  'status' => self::ACCOUNT_STATUS_CONFIRM,
144
  'customer' => $this->_getCustomerByEmail()
37
  return Mage::getSingleton('amazonpayments/config');
38
  }
39
 
40
+ /**
41
+ * @return Mage_Customer_Model_Session
42
+ */
43
+ protected function _getCustomerSession() {
44
+ return Mage::getSingleton('customer/session');
45
+ }
46
+
47
  protected function _getWebsiteId() {
48
  if (null === $this->_websiteId) {
49
  $this->_websiteId = Mage::app()->getStore()->getWebsiteId();
146
  'customer' => $this->_getCustomer()
147
  ));
148
  } elseif (null !== $this->_getCustomerByEmail()) {
149
+ if ($this->_getCustomerSession()->isLoggedIn()) {
150
+ $this->_getCustomerByEmail()->setAmazonUserId($this->_amazonUserData->getUserId())->save();
151
+ return new Varien_Object(array(
152
+ 'status' => self::ACCOUNT_STATUS_OK,
153
+ 'customer' => $this->_getCustomerByEmail()
154
+ ));
155
+ }
156
  return new Varien_Object(array(
157
  'status' => self::ACCOUNT_STATUS_CONFIRM,
158
  'customer' => $this->_getCustomerByEmail()
app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/CheckoutController.php CHANGED
@@ -366,4 +366,42 @@ class Creativestyle_AmazonPayments_Advanced_CheckoutController extends Mage_Core
366
  return;
367
  }
368
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  }
366
  return;
367
  }
368
 
369
+ public function couponPostAction() {
370
+ if ($this->getRequest()->isPost()) {
371
+ try {
372
+ if ($this->_expireAjax()) {
373
+ return;
374
+ }
375
+ $couponCode = (string) $this->getRequest()->getParam('coupon_code');
376
+ if ($this->getRequest()->getParam('remove') == 1) {
377
+ $couponCode = '';
378
+ }
379
+
380
+ $this->_getQuote()->getShippingAddress()->setCollectShippingRates(true);
381
+ $result = $this->_getQuote()->setCouponCode($couponCode)
382
+ ->collectTotals()
383
+ ->save();
384
+
385
+ } catch (Exception $e) {
386
+ Creativestyle_AmazonPayments_Model_Logger::logException($e);
387
+ $result = array(
388
+ 'error' => -1,
389
+ 'error_messages' => $e->getMessage()
390
+ );
391
+ }
392
+
393
+ if (!isset($result['error'])) {
394
+ $result = array(
395
+ 'render_widget' => array(
396
+ 'review' => $this->_getReviewHtml()
397
+ ),
398
+ 'allow_submit' => $this->_isSubmitAllowed()
399
+ );
400
+ };
401
+ } else {
402
+ $this->_forward('noRoute');
403
+ }
404
+
405
+ $this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
406
+ }
407
  }
app/code/community/Creativestyle/AmazonPayments/controllers/Advanced/LoginController.php CHANGED
@@ -10,7 +10,7 @@
10
  *
11
  * @category Creativestyle
12
  * @package Creativestyle_AmazonPayments
13
- * @copyright Copyright (c) 2014 creativestyle GmbH
14
  * @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
15
  */
16
  class Creativestyle_AmazonPayments_Advanced_LoginController extends Mage_Core_Controller_Front_Action {
@@ -205,4 +205,12 @@ class Creativestyle_AmazonPayments_Advanced_LoginController extends Mage_Core_Co
205
  $this->renderLayout();
206
  }
207
 
 
 
 
 
 
 
 
 
208
  }
10
  *
11
  * @category Creativestyle
12
  * @package Creativestyle_AmazonPayments
13
+ * @copyright Copyright (c) 2014 - 2017 creativestyle GmbH
14
  * @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
15
  */
16
  class Creativestyle_AmazonPayments_Advanced_LoginController extends Mage_Core_Controller_Front_Action {
205
  $this->renderLayout();
206
  }
207
 
208
+ public function disconnectAction() {
209
+ if ($customer = $this->_getCustomerSession()->getCustomer()) {
210
+ if ($customer->getAmazonUserId()) {
211
+ $customer->setAmazonUserId(null)->save();
212
+ }
213
+ }
214
+ $this->_redirect('customer/account');
215
+ }
216
  }
app/code/community/Creativestyle/AmazonPayments/etc/config.xml CHANGED
@@ -17,7 +17,7 @@
17
  <config>
18
  <modules>
19
  <Creativestyle_AmazonPayments>
20
- <version>1.8.4</version>
21
  </Creativestyle_AmazonPayments>
22
  </modules>
23
  <global>
17
  <config>
18
  <modules>
19
  <Creativestyle_AmazonPayments>
20
+ <version>1.8.6</version>
21
  </Creativestyle_AmazonPayments>
22
  </modules>
23
  <global>
app/design/frontend/base/default/layout/amazonpayments.xml CHANGED
@@ -10,7 +10,7 @@
10
  *
11
  * @category Creativestyle
12
  * @package Creativestyle_AmazonPayments
13
- * @copyright Copyright (c) 2014 creativestyle GmbH
14
  * @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
15
  */
16
  -->
@@ -112,6 +112,7 @@
112
  </block>
113
  <block type="core/text_list" name="checkout.onepage.review.info.items.after" as="items_after" translate="label">
114
  <label>Items After</label>
 
115
  </block>
116
  <block type="checkout/agreements" name="checkout.onepage.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
117
  <block type="core/template" name="checkout.onepage.review.button" as="button" template="creativestyle/amazonpayments/checkout/review/button.phtml"/>
@@ -165,4 +166,13 @@
165
  <block type="amazonpayments/login_account_update" name="amazonpayments_login_account_update" template="creativestyle/amazonpayments/login/form/account_update.phtml" />
166
  </reference>
167
  </amazonpayments_account_update>
 
 
 
 
 
 
 
 
 
168
  </layout>
10
  *
11
  * @category Creativestyle
12
  * @package Creativestyle_AmazonPayments
13
+ * @copyright Copyright (c) 2014 - 2017 creativestyle GmbH
14
  * @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
15
  */
16
  -->
112
  </block>
113
  <block type="core/text_list" name="checkout.onepage.review.info.items.after" as="items_after" translate="label">
114
  <label>Items After</label>
115
+ <block type="checkout/cart_coupon" name="checkout.onepage.review.coupon" as="coupon" template="creativestyle/amazonpayments/checkout/review/coupon.phtml"/>
116
  </block>
117
  <block type="checkout/agreements" name="checkout.onepage.agreements" as="agreements" template="checkout/onepage/agreements.phtml"/>
118
  <block type="core/template" name="checkout.onepage.review.button" as="button" template="creativestyle/amazonpayments/checkout/review/button.phtml"/>
166
  <block type="amazonpayments/login_account_update" name="amazonpayments_login_account_update" template="creativestyle/amazonpayments/login/form/account_update.phtml" />
167
  </reference>
168
  </amazonpayments_account_update>
169
+ <customer_account_index>
170
+ <reference name="my.account.wrapper">
171
+ <block type="amazonpayments/customer_account_dashboard_login" name="customer_account_dashboard_amazon_login" template="creativestyle/amazonpayments/customer/account/dashboard/login.phtml">
172
+ <block type="amazonpayments/login_button" name="customer_account_dashboard_amazon_login.button" as="button" template="creativestyle/amazonpayments/login/button.phtml">
173
+ <action method="setIdSuffix"><value>dashboard</value></action>
174
+ </block>
175
+ </block>
176
+ </reference>
177
+ </customer_account_index>
178
  </layout>
app/design/frontend/base/default/template/creativestyle/amazonpayments/checkout/js.phtml CHANGED
@@ -31,6 +31,7 @@ APA.setup('<?php echo $this->getMerchantId(); ?>', {
31
  saveShipping: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/saveShipping'); ?>',
32
  saveShippingMethod: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/saveShippingMethod'); ?>',
33
  saveOrder: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/saveOrder'); ?>',
 
34
  clear: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/clearOrderReference'); ?>',
35
  void: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/voidOrderReference'); ?>',
36
  success: '<?php echo $this->getUrl('checkout/onepage/success'); ?>',
31
  saveShipping: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/saveShipping'); ?>',
32
  saveShippingMethod: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/saveShippingMethod'); ?>',
33
  saveOrder: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/saveOrder'); ?>',
34
+ coupon: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/couponPost'); ?>',
35
  clear: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/clearOrderReference'); ?>',
36
  void: '<?php echo $this->getUrl('amazonpayments/advanced_checkout/voidOrderReference'); ?>',
37
  success: '<?php echo $this->getUrl('checkout/onepage/success'); ?>',
app/design/frontend/base/default/template/creativestyle/amazonpayments/checkout/review/coupon.phtml ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file is part of the official Amazon Payments Advanced extension
4
+ * for Magento (c) creativestyle GmbH <amazon@creativestyle.de>
5
+ * All rights reserved
6
+ *
7
+ * Reuse or modification of this source code is not allowed
8
+ * without written permission from creativestyle GmbH
9
+ *
10
+ * @category Creativestyle
11
+ * @package Creativestyle_AmazonPayments
12
+ * @copyright Copyright (c) 2017 creativestyle GmbH
13
+ * @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
14
+ */
15
+ ?>
16
+ <form id="discount-coupon-form" method="post" onsubmit="return false;">
17
+ <div class="discount">
18
+ <div class="discount-form">
19
+ <label for="coupon_code"><?php echo $this->helper('checkout')->__('Discount Codes') ?></label>
20
+ <input type="hidden" name="remove" id="remove-coupone" value="0" />
21
+ <div class="field-wrapper">
22
+ <input class="input-text" type="text" id="coupon_code" name="coupon_code" value="<?php echo $this->escapeHtml($this->getCouponCode()) ?>" />
23
+ <div class="button-wrapper">
24
+ <button type="button" id="coupon_code_apply_button" title="<?php echo Mage::helper('core')->quoteEscape($this->helper('checkout')->__('Apply')) ?>" class="button2" onclick="APA.submitCoupon()" value="<?php echo $this->helper('checkout')->__('Apply') ?>"><span><span><?php echo $this->helper('checkout')->__('Apply') ?></span></span></button>
25
+ <?php if (strlen($this->getCouponCode())): ?>
26
+ <button type="button" title="<?php echo Mage::helper('core')->quoteEscape($this->helper('checkout')->__('Cancel')) ?>" class="button2 cancel-coupon" onclick="APA.cancelCoupon()" value="<?php echo $this->helper('checkout')->__('Cancel') ?>"><span><span><?php echo $this->helper('checkout')->__('Cancel') ?></span></span>
27
+ </button>
28
+ <?php endif;?>
29
+ </div>
30
+ </div>
31
+ </div>
32
+ </div>
33
+ </form>
34
+ <script type="text/javascript">
35
+ //<![CDATA[
36
+ document.getElementById('coupon_code').addEventListener('keyup', function(event) {
37
+ event.preventDefault();
38
+ if (event.keyCode == 13) {
39
+ document.getElementById('coupon_code_apply_button').click();
40
+ }
41
+ });
42
+ document.getElementById('coupon_code').addEventListener('change', function(event) {
43
+ event.preventDefault();
44
+ var couponCode = document.getElementById('coupon_code').value;
45
+ if (couponCode && couponCode != '<?php echo $this->getCouponCode(); ?>' && couponCode.length > 1) {
46
+ document.getElementById('coupon_code_apply_button').click();
47
+ }
48
+ });
49
+ //]]>
50
+ </script>
app/design/frontend/base/default/template/creativestyle/amazonpayments/customer/account/dashboard/login.phtml ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * This file is part of the official Amazon Payments Advanced extension
4
+ * for Magento (c) creativestyle GmbH <amazon@creativestyle.de>
5
+ * All rights reserved
6
+ *
7
+ * Reuse or modification of this source code is not allowed
8
+ * without written permission from creativestyle GmbH
9
+ *
10
+ * @category Creativestyle
11
+ * @package Creativestyle_AmazonPayments
12
+ * @copyright Copyright (c) 2017 creativestyle GmbH
13
+ * @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
14
+ */
15
+ ?>
16
+ <div class="dashboard">
17
+ <div class="box-amazon-account box-info">
18
+ <div class="box-head">
19
+ <h2><?php echo $this->helper('amazonpayments')->__('Login with Amazon'); ?></h2>
20
+ <?php if ($this->isCustomerConnectedWithAmazon()): ?>
21
+ <a href="<?php echo $this->getUrl('amazonpayments/advanced_login/disconnect'); ?>"><?php echo $this->helper('amazonpayments')->__('Disconnect'); ?></a>
22
+ <?php endif; ?>
23
+ </div>
24
+ <div class="box">
25
+ <div class="box-content">
26
+ <?php if ($this->isCustomerConnectedWithAmazon()): ?>
27
+ <p><?php echo $this->helper('amazonpayments')->__('Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on "Disconnect".'); ?></p>
28
+ <?php else: ?>
29
+ <p>
30
+ <?php echo $this->helper('amazonpayments')->__('With Amazon Pay, you can use the shipping and payment information stored in your Amazon account to place an order on this website. It\'s a convenient and trusted way to pay that\'s enjoyed by millions of people.'); ?>
31
+ <?php echo $this->helper('amazonpayments')->__('By selecting Login with Amazon, you will be asked to sign-in securely to your Amazon account without leaving the shop.'); ?>
32
+ </p>
33
+ <?php endif; ?>
34
+ </div>
35
+ <?php if (!$this->isCustomerConnectedWithAmazon()): ?>
36
+ <div class="buttons">
37
+ <?php echo $this->getChildHtml('button'); ?>
38
+ </div>
39
+ <?php endif; ?>
40
+ </div>
41
+ </div>
42
+ </div>
app/locale/de_DE/Creativestyle_AmazonPayments.csv CHANGED
@@ -80,6 +80,7 @@
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Glückwunsch! Ihre Amazon Payments Kontoinformationen sind korrekt."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Bitte kopieren Sie Ihre Zugangsdaten von Seller Central (JSON Format) und fügen Sie diese hier ein"
82
  "creativestyle Extensions","creativestyle Erweiterungen"
 
83
  "Dark gray","Dunkelgrau"
84
  "Data polling frequency","Datenpollingfrequenz"
85
  "Date","Datum"
@@ -88,6 +89,7 @@
88
  "Declined Payment Email Sender","Absender für die Email für abgelehnte Zahlungen"
89
  "Declined Payment Email Template","Email Template für abgelehnte Zahlungen"
90
  "Developer Options","Entwickler Optionen"
 
91
  "Display Language","Sprache"
92
  "Don't have a merchant account yet? Register here","Sie haben noch kein Amazon Payments Verkäuferkonto? Dann registrieren Sie sich bitte hier"
93
  "Download as CSV","Herunterladen als CSV"
@@ -179,8 +181,8 @@
179
  "Small","Klein"
180
  "Spanish","Spanisch"
181
  "Stack trace","Stack trace"
182
- "Store Options","Store Options"
183
- "Store name","Store name"
184
  "Stores","Stores"
185
  "Synchronous","Synchron"
186
  "Tan","Beige"
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Glückwunsch! Ihre Amazon Payments Kontoinformationen sind korrekt."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Bitte kopieren Sie Ihre Zugangsdaten von Seller Central (JSON Format) und fügen Sie diese hier ein"
82
  "creativestyle Extensions","creativestyle Erweiterungen"
83
+ "Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect"".","Aktuell können Sie sich mit Hilfe Ihres Amazon-Kundenkontos im Webshop anmelden. Um die Verbindung zu Ihrem Amazon-Kundenkonto aufzuheben, klicken Sie auf ""Trennen""."
84
  "Dark gray","Dunkelgrau"
85
  "Data polling frequency","Datenpollingfrequenz"
86
  "Date","Datum"
89
  "Declined Payment Email Sender","Absender für die Email für abgelehnte Zahlungen"
90
  "Declined Payment Email Template","Email Template für abgelehnte Zahlungen"
91
  "Developer Options","Entwickler Optionen"
92
+ "Disconnect","Trennen"
93
  "Display Language","Sprache"
94
  "Don't have a merchant account yet? Register here","Sie haben noch kein Amazon Payments Verkäuferkonto? Dann registrieren Sie sich bitte hier"
95
  "Download as CSV","Herunterladen als CSV"
181
  "Small","Klein"
182
  "Spanish","Spanisch"
183
  "Stack trace","Stack trace"
184
+ "Store Options","Store-Optionen"
185
+ "Store name","Store-Name"
186
  "Stores","Stores"
187
  "Synchronous","Synchron"
188
  "Tan","Beige"
app/locale/en_GB/Creativestyle_AmazonPayments.csv CHANGED
@@ -80,6 +80,7 @@
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Congratulations! Your Amazon Payments account settings seem to be OK."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copy your keys from Seller Central (JSON) and paste them here"
82
  "creativestyle Extensions","creativestyle Extensions"
 
83
  "Dark gray","Dark gray"
84
  "Data polling frequency","Data polling frequency"
85
  "Date","Date"
@@ -88,6 +89,7 @@
88
  "Declined Payment Email Sender","Declined Payment Email Sender"
89
  "Declined Payment Email Template","Declined Payment Email Template"
90
  "Developer Options","Developer Options"
 
91
  "Display Language","Display Language"
92
  "Don't have a merchant account yet? Register here","Don't have a merchant account yet? Register here"
93
  "Download as CSV","Download as CSV"
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Congratulations! Your Amazon Payments account settings seem to be OK."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copy your keys from Seller Central (JSON) and paste them here"
82
  "creativestyle Extensions","creativestyle Extensions"
83
+ "Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect"".","Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect""."
84
  "Dark gray","Dark gray"
85
  "Data polling frequency","Data polling frequency"
86
  "Date","Date"
89
  "Declined Payment Email Sender","Declined Payment Email Sender"
90
  "Declined Payment Email Template","Declined Payment Email Template"
91
  "Developer Options","Developer Options"
92
+ "Disconnect","Disconnect"
93
  "Display Language","Display Language"
94
  "Don't have a merchant account yet? Register here","Don't have a merchant account yet? Register here"
95
  "Download as CSV","Download as CSV"
app/locale/en_US/Creativestyle_AmazonPayments.csv CHANGED
@@ -80,6 +80,7 @@
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Congratulations! Your Amazon Payments account settings seem to be OK."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copy your keys from Seller Central (JSON) and paste them here"
82
  "creativestyle Extensions","creativestyle Extensions"
 
83
  "Dark gray","Dark gray"
84
  "Data polling frequency","Data polling frequency"
85
  "Date","Date"
@@ -88,6 +89,7 @@
88
  "Declined Payment Email Sender","Declined Payment Email Sender"
89
  "Declined Payment Email Template","Declined Payment Email Template"
90
  "Developer Options","Developer Options"
 
91
  "Display Language","Display Language"
92
  "Don't have a merchant account yet? Register here","Don't have a merchant account yet? Register here"
93
  "Download as CSV","Download as CSV"
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Congratulations! Your Amazon Payments account settings seem to be OK."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copy your keys from Seller Central (JSON) and paste them here"
82
  "creativestyle Extensions","creativestyle Extensions"
83
+ "Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect"".","Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect""."
84
  "Dark gray","Dark gray"
85
  "Data polling frequency","Data polling frequency"
86
  "Date","Date"
89
  "Declined Payment Email Sender","Declined Payment Email Sender"
90
  "Declined Payment Email Template","Declined Payment Email Template"
91
  "Developer Options","Developer Options"
92
+ "Disconnect","Disconnect"
93
  "Display Language","Display Language"
94
  "Don't have a merchant account yet? Register here","Don't have a merchant account yet? Register here"
95
  "Download as CSV","Download as CSV"
app/locale/es_ES/Creativestyle_AmazonPayments.csv CHANGED
@@ -80,6 +80,7 @@
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","¡Enhorabuena! Parece que la configuración de tu cuenta de Amazon Payments es correcta."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copia las claves de Seller Central (JSON) y pégalas aquí"
82
  "creativestyle Extensions","Extensiones creativestyle"
 
83
  "Dark gray","Gris oscuro"
84
  "Data polling frequency","Frecuencia de polling de datos"
85
  "Date","Fecha"
@@ -88,6 +89,7 @@
88
  "Declined Payment Email Sender","Remitente del email de pago"
89
  "Declined Payment Email Template","Plantilla del email de pago rechazado"
90
  "Developer Options","Opciones de desarrollo"
 
91
  "Display Language","Mostrar idioma"
92
  "Don't have a merchant account yet? Register here","¿Aún no tienes una cuenta de vendedor? Registrate aquí"
93
  "Download as CSV","Descargar en formato CSV"
@@ -179,8 +181,8 @@
179
  "Small","Pequeño"
180
  "Spanish","Español"
181
  "Stack trace","Stack trace"
182
- "Store Options","Store Options"
183
- "Store name","Store name"
184
  "Stores","Tiendas"
185
  "Synchronous","Síncrono"
186
  "Tan","Tan"
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","¡Enhorabuena! Parece que la configuración de tu cuenta de Amazon Payments es correcta."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copia las claves de Seller Central (JSON) y pégalas aquí"
82
  "creativestyle Extensions","Extensiones creativestyle"
83
+ "Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect"".","Actualmente puedes utilizar tu cuenta de Amazon para ingresar en la cuenta de tu tienda. Para remover la conexión con tu cuenta de Amazon haz click en ""Desconectar""."
84
  "Dark gray","Gris oscuro"
85
  "Data polling frequency","Frecuencia de polling de datos"
86
  "Date","Fecha"
89
  "Declined Payment Email Sender","Remitente del email de pago"
90
  "Declined Payment Email Template","Plantilla del email de pago rechazado"
91
  "Developer Options","Opciones de desarrollo"
92
+ "Disconnect","Desconectar"
93
  "Display Language","Mostrar idioma"
94
  "Don't have a merchant account yet? Register here","¿Aún no tienes una cuenta de vendedor? Registrate aquí"
95
  "Download as CSV","Descargar en formato CSV"
181
  "Small","Pequeño"
182
  "Spanish","Español"
183
  "Stack trace","Stack trace"
184
+ "Store Options","Opciones de la tienda"
185
+ "Store name","Nombre de la tienda"
186
  "Stores","Tiendas"
187
  "Synchronous","Síncrono"
188
  "Tan","Tan"
app/locale/fr_FR/Creativestyle_AmazonPayments.csv CHANGED
@@ -80,6 +80,7 @@
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Félicitations! Les paramètres de votre compte Amazon Payments semblent corrects."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copiez vos clés depuis Seller Central (JSON) et collez-les ici"
82
  "creativestyle Extensions","Extensions creativestyle"
 
83
  "Dark gray","Gris foncé"
84
  "Data polling frequency","Fréquence polling"
85
  "Date","Date"
@@ -88,6 +89,7 @@
88
  "Declined Payment Email Sender","Expéditeur pour les emails de refus de payment"
89
  "Declined Payment Email Template","Modèle email payment refusé"
90
  "Developer Options","Options dévelopeurs"
 
91
  "Display Language","Langue d'afficahge"
92
  "Don't have a merchant account yet? Register here","Vous n'avez pas encore de compte marchand? Inscrivez-vous ici"
93
  "Download as CSV","Télécharger sous forme CSV"
@@ -179,9 +181,9 @@
179
  "Small","Petit"
180
  "Spanish","Espagnol"
181
  "Stack trace","Stack trace"
182
- "Store Options","Store Options"
183
- "Store name","Store name"
184
- "Stores","Boutiques"
185
  "Synchronous","Synchrone"
186
  "Tan","Beige"
187
  "There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Un problème est survenu avec le mode de paiement sélectionné sur votre compte Amazon. Accédez à votre compte Amazon ou retournez sur le panier pour sélectionner un autre mode de paiement."
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Félicitations! Les paramètres de votre compte Amazon Payments semblent corrects."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copiez vos clés depuis Seller Central (JSON) et collez-les ici"
82
  "creativestyle Extensions","Extensions creativestyle"
83
+ "Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect"".","Vous pouvez actuellement utiliser votre compte Amazon pour vous connectez sur notre site. Pour mettre fin à votre session ouverte avec votre compte Amazon, cliquer sur «Déconnexion»."
84
  "Dark gray","Gris foncé"
85
  "Data polling frequency","Fréquence polling"
86
  "Date","Date"
89
  "Declined Payment Email Sender","Expéditeur pour les emails de refus de payment"
90
  "Declined Payment Email Template","Modèle email payment refusé"
91
  "Developer Options","Options dévelopeurs"
92
+ "Disconnect","Déconnexion"
93
  "Display Language","Langue d'afficahge"
94
  "Don't have a merchant account yet? Register here","Vous n'avez pas encore de compte marchand? Inscrivez-vous ici"
95
  "Download as CSV","Télécharger sous forme CSV"
181
  "Small","Petit"
182
  "Spanish","Espagnol"
183
  "Stack trace","Stack trace"
184
+ "Store Options","Options du magasin"
185
+ "Store name","Nom du magasin"
186
+ "Stores","Magasins"
187
  "Synchronous","Synchrone"
188
  "Tan","Beige"
189
  "There has been a problem with the selected payment method from your Amazon account, please choose another payment method from you Amazon account or return to the cart to choose another checkout method.","Un problème est survenu avec le mode de paiement sélectionné sur votre compte Amazon. Accédez à votre compte Amazon ou retournez sur le panier pour sélectionner un autre mode de paiement."
app/locale/it_IT/Creativestyle_AmazonPayments.csv CHANGED
@@ -80,6 +80,7 @@
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Congratulazioni! Le impostazioni del tuo conto Amazon Payments sono corrette."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copia le chiavi da Seller Central (JSON) e inseriscile qui"
82
  "creativestyle Extensions","Estensioni creativestyle"
 
83
  "Dark gray","Grigio scuro"
84
  "Data polling frequency","Datenpollingfrequenz"
85
  "Date","Data"
@@ -88,6 +89,7 @@
88
  "Declined Payment Email Sender","Mittente e-mail pagamento rifiutato"
89
  "Declined Payment Email Template","Modello e-mail pagamento rifiutato"
90
  "Developer Options","Opzioni sviluppatori"
 
91
  "Display Language","Lingua visualizzata"
92
  "Don't have a merchant account yet? Register here","Non hai ancora un account venditore? Registrati qui"
93
  "Download as CSV","Scarica come CSV"
@@ -179,8 +181,8 @@
179
  "Small","Piccolo"
180
  "Spanish","Spagnolo"
181
  "Stack trace","Stack trace"
182
- "Store Options","Store Options"
183
- "Store name","Store name"
184
  "Stores","Negozi"
185
  "Synchronous","Sincrono"
186
  "Tan","Marrone chiaro"
80
  "Congratulations! Your Amazon Payments account settings seem to be OK.","Congratulazioni! Le impostazioni del tuo conto Amazon Payments sono corrette."
81
  "Copy your keys from Seller Central (JSON) and paste them here","Copia le chiavi da Seller Central (JSON) e inseriscile qui"
82
  "creativestyle Extensions","Estensioni creativestyle"
83
+ "Currently, you can use your Amazon account to log into your shop account. In order to remove the connection to your Amazon account click on ""Disconnect"".","Al momento puoi utilizzare il tuo account Amazon per accedere all'account del negozio. Per rimuovere la connessione con il tuo account Amazon fai click su ""Disconnetti""."
84
  "Dark gray","Grigio scuro"
85
  "Data polling frequency","Datenpollingfrequenz"
86
  "Date","Data"
89
  "Declined Payment Email Sender","Mittente e-mail pagamento rifiutato"
90
  "Declined Payment Email Template","Modello e-mail pagamento rifiutato"
91
  "Developer Options","Opzioni sviluppatori"
92
+ "Disconnect","Disconnetti"
93
  "Display Language","Lingua visualizzata"
94
  "Don't have a merchant account yet? Register here","Non hai ancora un account venditore? Registrati qui"
95
  "Download as CSV","Scarica come CSV"
181
  "Small","Piccolo"
182
  "Spanish","Spagnolo"
183
  "Stack trace","Stack trace"
184
+ "Store Options","Opzioni Negozio"
185
+ "Store name","Nome Negozio"
186
  "Stores","Negozi"
187
  "Synchronous","Sincrono"
188
  "Tan","Marrone chiaro"
js/creativestyle/apa_checkout.js CHANGED
@@ -201,7 +201,7 @@ var APA = {
201
  var tooltip = document.createElement('div');
202
  tooltip.setAttribute('id', 'pay-with-amazon-tooltip');
203
  tooltip.addClassName('pay-with-amazon-tooltip');
204
- tooltip.setStyle({display: 'none', zIndex: 10});
205
  tooltip.update(tooltipContent);
206
  document.body.appendChild(tooltip);
207
  tooltipButtons.each(function(button) {
@@ -500,6 +500,28 @@ var APA = {
500
  });
501
  },
502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
  getSaveOrderParams: function() {
504
  var params = '';
505
  if (APA.virtual) {
@@ -594,6 +616,7 @@ var APA = {
594
  saveShipping: null,
595
  saveShippingMethod: null,
596
  saveOrder: null,
 
597
  clear: null,
598
  void: null,
599
  success: null,
201
  var tooltip = document.createElement('div');
202
  tooltip.setAttribute('id', 'pay-with-amazon-tooltip');
203
  tooltip.addClassName('pay-with-amazon-tooltip');
204
+ tooltip.setStyle({display: 'none'});
205
  tooltip.update(tooltipContent);
206
  document.body.appendChild(tooltip);
207
  tooltipButtons.each(function(button) {
500
  });
501
  },
502
 
503
+ submitCoupon: function() {
504
+ APA.setLoadWaiting(APA.layers.review);
505
+ new Ajax.Request(APA.urls.coupon, {
506
+ method: 'post',
507
+ parameters: Form.serialize($('discount-coupon-form')),
508
+ evalScripts: true,
509
+ onSuccess: APA.successCallback,
510
+ onFailure: APA.ajaxFailureCallback
511
+ });
512
+ },
513
+
514
+ cancelCoupon: function() {
515
+ APA.setLoadWaiting(APA.layers.review);
516
+ new Ajax.Request(APA.urls.coupon, {
517
+ method: 'post',
518
+ parameters: {remove: 1},
519
+ evalScripts: true,
520
+ onSuccess: APA.successCallback,
521
+ onFailure: APA.ajaxFailureCallback
522
+ });
523
+ },
524
+
525
  getSaveOrderParams: function() {
526
  var params = '';
527
  if (APA.virtual) {
616
  saveShipping: null,
617
  saveShippingMethod: null,
618
  saveOrder: null,
619
+ coupon: null,
620
  clear: null,
621
  void: null,
622
  success: null,
js/creativestyle/apa_checkout.min.js CHANGED
@@ -1 +1 @@
1
- if(!window.Review)var Review=function(){};var APA={submitAllowed:!1,paymentSelected:!1,reloaded:!1,Widgets:{ShippingMethod:Class.create({initialize:function(e){this.layer=$(APA.layers.shippingMethod),Object.extend(this,e),Event.stopObserving(this.layer,"widget:update").observe("widget:update",this.onUpdate.bindAsEventListener(this))},update:function(e){try{if(Element.update(this.layer,e),!this.layer.down("input[type=radio]:checked")){var t=this.layer.down("input[type=radio]");t&&(t.checked=!0)}Event.stopObserving(this.layer,"change").observe("change",this.onShippingMethodSelect.bindAsEventListener(this)),Event.stopObserving(this.layer,"widget:checked").observe("widget:checked",this.onShippingMethodSelect.bindAsEventListener(this)),Event.fire(this.layer,"widget:update")}catch(r){this.onError(r)}}}),Review:Class.create({initialize:function(e){this.layer=$(APA.layers.review),Object.extend(this,e)},update:function(e){try{Element.update(this.layer,e)}catch(t){this.onError(t)}}})},setLoadWaiting:function(){for(var e=0;e<arguments.length;e++)if($(arguments[e])){var t=$(arguments[e]).up("li");t.addClassName("loading")}return this},unsetLoadWaiting:function(){for(var e=0;e<arguments.length;e++)if($(arguments[e])){var t=$(arguments[e]).up("li");t.removeClassName("loading")}return this},setOrderSaveWaiting:function(){if($(APA.layers.review)){var e=$(APA.layers.review).down(".please-wait");e&&Element.show(e)}return this.showOverlay(),this.disableSubmit(),this},unsetOrderSaveWaiting:function(){if($(APA.layers.review)){var e=$(APA.layers.review).down(".please-wait");e&&Element.hide(e)}return this.hideOverlay(),this},showOverlay:function(){return $("checkoutSteps")&&$("checkoutSteps").insert({top:new Element("div",{"class":"amazon-widget-overlay"})}),this},hideOverlay:function(){return $("checkoutSteps")&&$("checkoutSteps").down(".amazon-widget-overlay")&&$("checkoutSteps").down(".amazon-widget-overlay").remove(),this.toggleSubmit(),this},initCheckout:function(){return this.disableSubmit().scaffoldPaymentWidget(),this.virtual?this.setLoadWaiting(APA.layers.wallet).renderWalletWidget().allowSubmit(!0):this.orderReferenceId?this.setLoadWaiting(APA.layers.shippingMethod,APA.layers.wallet,APA.layers.review).renderAddressBookWidget().renderWalletWidget():this.setLoadWaiting(APA.layers.shippingMethod,APA.layers.wallet,APA.layers.review).renderAddressBookWidget()},scaffoldPaymentWidget:function(){return"undefined"==typeof APA.design.wallet.size||APA.design.responsive||(APA.design.wallet.size.width&&$(APA.layers.wallet).up().setStyle({width:APA.design.wallet.size.width}),APA.design.wallet.size.height&&$(APA.layers.wallet).up().setStyle({height:APA.design.wallet.size.height})),this},renderButtonWidget:function(e){if(null!==APA.urls.login?($$(APA.layers.payButtons).each(function(e){var t={type:e.buttonType||APA.design.payButton.type||"PwA",size:e.buttonSize||APA.design.payButton.size,color:e.buttonColor||APA.design.payButton.color,authorization:function(){amazon.Login.authorize({scope:"profile payments:widget payments:shipping_address payments:billing_address",popup:APA.popup},APA.urls.pay)},onError:APA.buttonErrorCallback};APA.language&&(t.language=APA.language),new OffAmazonPayments.Button(e.identify(),APA.sellerId,t)}),$$(APA.layers.loginButtons).each(function(e){var t={type:e.buttonType||APA.design.loginButton.type||"LwA",size:e.buttonSize||APA.design.loginButton.size,color:e.buttonColor||APA.design.loginButton.color,authorization:function(){amazon.Login.authorize({scope:"profile payments:widget payments:shipping_address payments:billing_address",popup:APA.popup},APA.urls.login)},onError:APA.buttonErrorCallback};APA.language&&(t.language=APA.language),new OffAmazonPayments.Button(e.identify(),APA.sellerId,t)})):$$(APA.layers.payButtons).each(function(e){new OffAmazonPayments.Widgets.Button({sellerId:APA.sellerId,useAmazonAddressBook:!APA.virtual,onSignIn:APA.signInCallback,onError:APA.buttonErrorCallback}).bind(e.identify())}),e&&"undefined"!=typeof Tooltip&&!APA.isMobileDevice()){var t=$$(APA.layers.payButtons+","+APA.layers.loginButtons).findAll(function(e){return e.hasClassName("with-tooltip")});if(t.length){var r=document.createElement("div");r.setAttribute("id","pay-with-amazon-tooltip"),r.addClassName("pay-with-amazon-tooltip"),r.setStyle({display:"none",zIndex:10}),r.update(e),document.body.appendChild(r),t.each(function(e){var t=e.down("img");t&&new Tooltip(t,r)})}}},signInCallback:function(e){var t=document.createElement("input");t.setAttribute("type","hidden"),t.setAttribute("name","orderReferenceId"),t.setAttribute("value",e.getAmazonOrderReferenceId());var r=document.createElement("form");r.setAttribute("method","post"),r.setAttribute("action",APA.urls.checkout),r.appendChild(t),document.body.appendChild(r),r.submit()},renderAddressBookWidget:function(){return APA.setLoadWaiting(APA.layers.shippingMethod,APA.layers.review),new OffAmazonPayments.Widgets.AddressBook({sellerId:APA.sellerId,onOrderReferenceCreate:APA.orderReferenceCreateCallback,amazonOrderReferenceId:APA.orderReferenceId,design:APA.design.responsive?{designMode:"responsive"}:APA.design.addressBook,onAddressSelect:APA.addressSelectCallback,onError:APA.amazonErrorCallback}).bind(APA.layers.addressBook),this},renderReadOnlyAddressBookWidget:function(){return new OffAmazonPayments.Widgets.AddressBook({sellerId:APA.sellerId,amazonOrderReferenceId:APA.orderReferenceId,design:APA.design.responsive?{designMode:"responsive"}:APA.design.addressBook,onError:APA.amazonErrorCallback,displayMode:"Read"}).bind(APA.layers.addressBook),this},orderReferenceCreateCallback:function(e){APA.orderReferenceId||(APA.orderReferenceId=e.getAmazonOrderReferenceId(),APA.virtual||APA.renderWalletWidget())},addressSelectCallback:function(){APA.selectPayment(!1),APA.setLoadWaiting(APA.layers.shippingMethod,APA.layers.review),new Ajax.Request(APA.urls.saveShipping,{method:"post",parameters:{orderReferenceId:APA.orderReferenceId},evalScripts:!0,onSuccess:APA.successCallback,onFailure:APA.ajaxFailureCallback})},renderShippingMethodWidget:function(e){return APA.setLoadWaiting(APA.layers.review),new APA.Widgets.ShippingMethod({onShippingMethodSelect:APA.shippingMethodSelectCallback,onUpdate:APA.shippingMethodUpdateCallback,onError:APA.magentoErrorCallback}).update(e),this},shippingMethodSelectCallback:function(e){APA.setLoadWaiting(APA.layers.review),new Ajax.Request(APA.urls.saveShippingMethod,{method:"post",parameters:Form.serialize($("co-shipping-method-form")),evalScripts:!0,onSuccess:APA.successCallback,onFailure:APA.ajaxFailureCallback})},shippingMethodUpdateCallback:function(e){var t=Event.element(e);Event.fire(t,"widget:checked")},renderWalletWidget:function(){return new OffAmazonPayments.Widgets.Wallet({sellerId:APA.sellerId,onOrderReferenceCreate:APA.orderReferenceCreateCallback,amazonOrderReferenceId:APA.orderReferenceId,design:APA.design.responsive?{designMode:"responsive"}:APA.design.wallet,onPaymentSelect:APA.paymentSelectCallback,onError:APA.amazonErrorCallback}).bind(APA.layers.wallet),this},paymentSelectCallback:function(){APA.selectPayment(!0)},reloadWallet:function(){return this.renderReadOnlyAddressBookWidget().renderWalletWidget(),this},renderReviewWidget:function(e){return new APA.Widgets.Review({onError:APA.magentoErrorCallback}).update(e),this.toggleSubmit(),this},successCallback:function(transport){response=eval("("+transport.responseText+")"),response.error&&APA.magentoErrorCallback(response.error_messages),response.render_widget&&$H(response.render_widget).each(function(e){APA["render"+e.key.capitalize().camelize()+"Widget"](e.value),e.value&&APA.unsetLoadWaiting(APA.layers[e.key.camelize()])}),response.allow_submit?APA.allowSubmit(!0):APA.allowSubmit(!1)},saveOrderCallback:function(transport){response=eval("("+transport.responseText+")"),response.success&&(window.location=APA.urls.success),response.logout&&"undefined"!=typeof amazon&&amazon.Login.logout(),response.error&&(APA.unsetOrderSaveWaiting(),APA.magentoErrorCallback(response.error_messages),response.reload&&(APA.reloaded=!1,APA.orderReferenceId=null,APA.initCheckout()),response.reload_wallet&&(APA.reloaded=!0,APA.disableSubmit().reloadWallet())),response.redirect&&(window.location=response.redirect)},ajaxFailureCallback:function(){window.location.href=APA.urls.failure},confirmErrorRedirect:function(e,t){return confirm("An error occured. Redirect to failure URL?\n\nERROR DETAILS:\n==============\n["+e.getErrorCode()+"]: "+e.getErrorMessage()+"\n\nDEBUG DATA:\n==============\nREDIRECT URL = "+t+(APA.sellerId?"\nMERCHANT ID = "+APA.sellerId:"")+(APA.orderReferenceId?"\nORDER REFERENCE ID = "+APA.orderReferenceId:"")+(APA.language?"\nLANGUAGE = "+APA.language:"")+"\nPOPUP EXPERIENCE = "+(APA.popup?"yes":"no")+"\nVIRTUAL ORDER = "+(APA.virtual?"yes":"no")+"\n\nSTACK TRACE:\n==============\n"+(new Error).stack)},buttonErrorCallback:function(e){APA.live||(console.error("BUTTON ERROR ["+e.getErrorCode()+"]: "+e.getErrorMessage()),console.trace())},amazonErrorCallback:function(e){var t=({"Order Reference ID":APA.orderReferenceId},["InvalidOrderReferenceId"]);if(t.any(function(t){return t==e.getErrorCode()}))return void((APA.live||APA.confirmErrorRedirect(e,APA.urls.clear||APA.urls.failure))&&(window.location.href=APA.urls.clear||APA.urls.failure));var r=["AddressNotModifiable","PaymentMethodNotModifiable"];if(r.any(function(t){return t==e.getErrorCode()}))return void((APA.live||APA.confirmErrorRedirect(e,APA.urls["void"]||APA.urls.failure))&&(window.location.href=APA.urls["void"]||APA.urls.failure));var n=["BuyerNotAssociated","BuyerSessionExpired","StaleOrderReference"];return n.any(function(t){return t==e.getErrorCode()})?void((APA.live||APA.confirmErrorRedirect(e,APA.urls.failure))&&(window.location.href=APA.urls.failure)):void(APA.live||(console.error("AMAZON ERROR ["+e.getErrorCode()+"]: "+e.getErrorMessage()),console.trace()))},magentoErrorCallback:function(e){APA.live||console.trace(),"object"==typeof e&&(e=e.join("\n")),e&&alert(e)},allowSubmit:function(e){return this.submitAllowed=e,this.toggleSubmit()},selectPayment:function(e){return this.paymentSelected=e,this.toggleSubmit()},toggleSubmit:function(){return this.submitAllowed&&this.paymentSelected?this.enableSubmit():this.disableSubmit()},disableSubmit:function(){var e=$("amazonpayments-checkout-place-order-button");if(e){e.disabled=!0;var t=e.up("div.buttons-set");t&&t.addClassName("disabled")}return this},enableSubmit:function(){if(this.submitAllowed&&this.paymentSelected){var e=$("amazonpayments-checkout-place-order-button");if(e){e.disabled=!1;var t=e.up("div.buttons-set");t&&t.removeClassName("disabled")}}return this},saveOrder:function(){APA.setOrderSaveWaiting(),new Ajax.Request(APA.urls.saveOrder,{method:"post",parameters:APA.getSaveOrderParams(),onSuccess:APA.saveOrderCallback,onFailure:APA.ajaxFailureCallback})},getSaveOrderParams:function(){var e="";return APA.virtual?(e+=Object.toQueryString({orderReferenceId:APA.orderReferenceId}),$("checkout-agreements")&&(e+="&"+Form.serialize($("checkout-agreements")))):(e=Form.serialize($("co-shipping-method-form")),$("checkout-agreements")&&(e+="&"+Form.serialize($("checkout-agreements")))),APA.reloaded&&(e+="&"+Object.toQueryString({reloaded:1})),e.save=!0,e},isMobileDevice:function(){return/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(navigator.userAgent||navigator.vendor||window.opera)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test((navigator.userAgent||navigator.vendor||window.opera).substr(0,4))},initialize:function(e,t,r,n,i,o,a){return Object.extend(APA,{sellerId:e,orderReferenceId:t,live:r,virtual:n,urls:Object.extend({login:null,pay:null,checkout:null,saveShipping:null,saveShippingMethod:null,saveOrder:null,success:null,failure:null},i),layers:Object.extend({payButtons:".payButtonWidget",loginButtons:".loginButtonWidget",addressBook:"addressBookWidgetDiv",wallet:"walletWidgetDiv",shippingMethod:"shippingMethodWidgetDiv",review:"reviewWidgetDiv"},o),design:Object.extend({addressBook:{size:{width:"440px",height:"260px"}},wallet:{size:{width:"440px",height:"260px"}},payButton:{type:"PwA"},loginButton:{type:"LwA"}},a)})},setup:function(e,t){return Object.extend(APA,{sellerId:e,orderReferenceId:"undefined"==typeof t.orderReferenceId?null:t.orderReferenceId,language:"undefined"==typeof t.language?null:t.language,live:"undefined"==typeof t.live?!0:t.live,popup:"undefined"==typeof t.popup?!0:t.popup,virtual:"undefined"==typeof t.virtual?!1:t.virtual,layers:Object.extend({payButtons:".payButtonWidget",loginButtons:".loginButtonWidget",addressBook:"addressBookWidgetDiv",wallet:"walletWidgetDiv",shippingMethod:"shippingMethodWidgetDiv",review:"reviewWidgetDiv"},t.layers),urls:Object.extend({login:null,pay:null,checkout:null,saveShipping:null,saveShippingMethod:null,saveOrder:null,clear:null,"void":null,success:null,failure:null},t.urls),design:Object.extend({responsive:!0,addressBook:{size:{width:"440px",height:"260px"}},wallet:{size:{width:"440px",height:"260px"}},payButton:{type:"PwA"},loginButton:{type:"LwA"}},t.design)})}};
1
+ if(!window.Review)var Review=function(){};var APA={submitAllowed:!1,paymentSelected:!1,reloaded:!1,Widgets:{ShippingMethod:Class.create({initialize:function(e){this.layer=$(APA.layers.shippingMethod),Object.extend(this,e),Event.stopObserving(this.layer,"widget:update").observe("widget:update",this.onUpdate.bindAsEventListener(this))},update:function(e){try{if(Element.update(this.layer,e),!this.layer.down("input[type=radio]:checked")){var t=this.layer.down("input[type=radio]");t&&(t.checked=!0)}Event.stopObserving(this.layer,"change").observe("change",this.onShippingMethodSelect.bindAsEventListener(this)),Event.stopObserving(this.layer,"widget:checked").observe("widget:checked",this.onShippingMethodSelect.bindAsEventListener(this)),Event.fire(this.layer,"widget:update")}catch(r){this.onError(r)}}}),Review:Class.create({initialize:function(e){this.layer=$(APA.layers.review),Object.extend(this,e)},update:function(e){try{Element.update(this.layer,e)}catch(t){this.onError(t)}}})},setLoadWaiting:function(){for(var e=0;e<arguments.length;e++)if($(arguments[e])){var t=$(arguments[e]).up("li");t.addClassName("loading")}return this},unsetLoadWaiting:function(){for(var e=0;e<arguments.length;e++)if($(arguments[e])){var t=$(arguments[e]).up("li");t.removeClassName("loading")}return this},setOrderSaveWaiting:function(){if($(APA.layers.review)){var e=$(APA.layers.review).down(".please-wait");e&&Element.show(e)}return this.showOverlay(),this.disableSubmit(),this},unsetOrderSaveWaiting:function(){if($(APA.layers.review)){var e=$(APA.layers.review).down(".please-wait");e&&Element.hide(e)}return this.hideOverlay(),this},showOverlay:function(){return $("checkoutSteps")&&$("checkoutSteps").insert({top:new Element("div",{"class":"amazon-widget-overlay"})}),this},hideOverlay:function(){return $("checkoutSteps")&&$("checkoutSteps").down(".amazon-widget-overlay")&&$("checkoutSteps").down(".amazon-widget-overlay").remove(),this.toggleSubmit(),this},initCheckout:function(){return this.disableSubmit().scaffoldPaymentWidget(),this.virtual?this.setLoadWaiting(APA.layers.wallet).renderWalletWidget().allowSubmit(!0):this.orderReferenceId?this.setLoadWaiting(APA.layers.shippingMethod,APA.layers.wallet,APA.layers.review).renderAddressBookWidget().renderWalletWidget():this.setLoadWaiting(APA.layers.shippingMethod,APA.layers.wallet,APA.layers.review).renderAddressBookWidget()},scaffoldPaymentWidget:function(){return"undefined"==typeof APA.design.wallet.size||APA.design.responsive||(APA.design.wallet.size.width&&$(APA.layers.wallet).up().setStyle({width:APA.design.wallet.size.width}),APA.design.wallet.size.height&&$(APA.layers.wallet).up().setStyle({height:APA.design.wallet.size.height})),this},renderButtonWidget:function(e){if(null!==APA.urls.login?($$(APA.layers.payButtons).each(function(e){var t={type:e.buttonType||APA.design.payButton.type||"PwA",size:e.buttonSize||APA.design.payButton.size,color:e.buttonColor||APA.design.payButton.color,authorization:function(){amazon.Login.authorize({scope:"profile payments:widget payments:shipping_address payments:billing_address",popup:APA.popup},APA.urls.pay)},onError:APA.buttonErrorCallback};APA.language&&(t.language=APA.language),new OffAmazonPayments.Button(e.identify(),APA.sellerId,t)}),$$(APA.layers.loginButtons).each(function(e){var t={type:e.buttonType||APA.design.loginButton.type||"LwA",size:e.buttonSize||APA.design.loginButton.size,color:e.buttonColor||APA.design.loginButton.color,authorization:function(){amazon.Login.authorize({scope:"profile payments:widget payments:shipping_address payments:billing_address",popup:APA.popup},APA.urls.login)},onError:APA.buttonErrorCallback};APA.language&&(t.language=APA.language),new OffAmazonPayments.Button(e.identify(),APA.sellerId,t)})):$$(APA.layers.payButtons).each(function(e){new OffAmazonPayments.Widgets.Button({sellerId:APA.sellerId,useAmazonAddressBook:!APA.virtual,onSignIn:APA.signInCallback,onError:APA.buttonErrorCallback}).bind(e.identify())}),e&&"undefined"!=typeof Tooltip&&!APA.isMobileDevice()){var t=$$(APA.layers.payButtons+","+APA.layers.loginButtons).findAll(function(e){return e.hasClassName("with-tooltip")});if(t.length){var r=document.createElement("div");r.setAttribute("id","pay-with-amazon-tooltip"),r.addClassName("pay-with-amazon-tooltip"),r.setStyle({display:"none"}),r.update(e),document.body.appendChild(r),t.each(function(e){var t=e.down("img");t&&new Tooltip(t,r)})}}},signInCallback:function(e){var t=document.createElement("input");t.setAttribute("type","hidden"),t.setAttribute("name","orderReferenceId"),t.setAttribute("value",e.getAmazonOrderReferenceId());var r=document.createElement("form");r.setAttribute("method","post"),r.setAttribute("action",APA.urls.checkout),r.appendChild(t),document.body.appendChild(r),r.submit()},renderAddressBookWidget:function(){return APA.setLoadWaiting(APA.layers.shippingMethod,APA.layers.review),new OffAmazonPayments.Widgets.AddressBook({sellerId:APA.sellerId,onOrderReferenceCreate:APA.orderReferenceCreateCallback,amazonOrderReferenceId:APA.orderReferenceId,design:APA.design.responsive?{designMode:"responsive"}:APA.design.addressBook,onAddressSelect:APA.addressSelectCallback,onError:APA.amazonErrorCallback}).bind(APA.layers.addressBook),this},renderReadOnlyAddressBookWidget:function(){return new OffAmazonPayments.Widgets.AddressBook({sellerId:APA.sellerId,amazonOrderReferenceId:APA.orderReferenceId,design:APA.design.responsive?{designMode:"responsive"}:APA.design.addressBook,onError:APA.amazonErrorCallback,displayMode:"Read"}).bind(APA.layers.addressBook),this},orderReferenceCreateCallback:function(e){APA.orderReferenceId||(APA.orderReferenceId=e.getAmazonOrderReferenceId(),APA.virtual||APA.renderWalletWidget())},addressSelectCallback:function(){APA.selectPayment(!1),APA.setLoadWaiting(APA.layers.shippingMethod,APA.layers.review),new Ajax.Request(APA.urls.saveShipping,{method:"post",parameters:{orderReferenceId:APA.orderReferenceId},evalScripts:!0,onSuccess:APA.successCallback,onFailure:APA.ajaxFailureCallback})},renderShippingMethodWidget:function(e){return APA.setLoadWaiting(APA.layers.review),new APA.Widgets.ShippingMethod({onShippingMethodSelect:APA.shippingMethodSelectCallback,onUpdate:APA.shippingMethodUpdateCallback,onError:APA.magentoErrorCallback}).update(e),this},shippingMethodSelectCallback:function(e){APA.setLoadWaiting(APA.layers.review),new Ajax.Request(APA.urls.saveShippingMethod,{method:"post",parameters:Form.serialize($("co-shipping-method-form")),evalScripts:!0,onSuccess:APA.successCallback,onFailure:APA.ajaxFailureCallback})},shippingMethodUpdateCallback:function(e){var t=Event.element(e);Event.fire(t,"widget:checked")},renderWalletWidget:function(){return new OffAmazonPayments.Widgets.Wallet({sellerId:APA.sellerId,onOrderReferenceCreate:APA.orderReferenceCreateCallback,amazonOrderReferenceId:APA.orderReferenceId,design:APA.design.responsive?{designMode:"responsive"}:APA.design.wallet,onPaymentSelect:APA.paymentSelectCallback,onError:APA.amazonErrorCallback}).bind(APA.layers.wallet),this},paymentSelectCallback:function(){APA.selectPayment(!0)},reloadWallet:function(){return this.renderReadOnlyAddressBookWidget().renderWalletWidget(),this},renderReviewWidget:function(e){return new APA.Widgets.Review({onError:APA.magentoErrorCallback}).update(e),this.toggleSubmit(),this},successCallback:function(transport){response=eval("("+transport.responseText+")"),response.error&&APA.magentoErrorCallback(response.error_messages),response.render_widget&&$H(response.render_widget).each(function(e){APA["render"+e.key.capitalize().camelize()+"Widget"](e.value),e.value&&APA.unsetLoadWaiting(APA.layers[e.key.camelize()])}),response.allow_submit?APA.allowSubmit(!0):APA.allowSubmit(!1)},saveOrderCallback:function(transport){response=eval("("+transport.responseText+")"),response.success&&(window.location=APA.urls.success),response.logout&&"undefined"!=typeof amazon&&amazon.Login.logout(),response.error&&(APA.unsetOrderSaveWaiting(),APA.magentoErrorCallback(response.error_messages),response.reload&&(APA.reloaded=!1,APA.orderReferenceId=null,APA.initCheckout()),response.reload_wallet&&(APA.reloaded=!0,APA.disableSubmit().reloadWallet())),response.redirect&&(window.location=response.redirect)},ajaxFailureCallback:function(){window.location.href=APA.urls.failure},confirmErrorRedirect:function(e,t){return confirm("An error occured. Redirect to failure URL?\n\nERROR DETAILS:\n==============\n["+e.getErrorCode()+"]: "+e.getErrorMessage()+"\n\nDEBUG DATA:\n==============\nREDIRECT URL = "+t+(APA.sellerId?"\nMERCHANT ID = "+APA.sellerId:"")+(APA.orderReferenceId?"\nORDER REFERENCE ID = "+APA.orderReferenceId:"")+(APA.language?"\nLANGUAGE = "+APA.language:"")+"\nPOPUP EXPERIENCE = "+(APA.popup?"yes":"no")+"\nVIRTUAL ORDER = "+(APA.virtual?"yes":"no")+"\n\nSTACK TRACE:\n==============\n"+(new Error).stack)},buttonErrorCallback:function(e){APA.live||(console.error("BUTTON ERROR ["+e.getErrorCode()+"]: "+e.getErrorMessage()),console.trace())},amazonErrorCallback:function(e){var t=({"Order Reference ID":APA.orderReferenceId},["InvalidOrderReferenceId"]);if(t.any(function(t){return t==e.getErrorCode()}))return void((APA.live||APA.confirmErrorRedirect(e,APA.urls.clear||APA.urls.failure))&&(window.location.href=APA.urls.clear||APA.urls.failure));var r=["AddressNotModifiable","PaymentMethodNotModifiable"];if(r.any(function(t){return t==e.getErrorCode()}))return void((APA.live||APA.confirmErrorRedirect(e,APA.urls["void"]||APA.urls.failure))&&(window.location.href=APA.urls["void"]||APA.urls.failure));var n=["BuyerNotAssociated","BuyerSessionExpired","StaleOrderReference"];return n.any(function(t){return t==e.getErrorCode()})?void((APA.live||APA.confirmErrorRedirect(e,APA.urls.failure))&&(window.location.href=APA.urls.failure)):void(APA.live||(console.error("AMAZON ERROR ["+e.getErrorCode()+"]: "+e.getErrorMessage()),console.trace()))},magentoErrorCallback:function(e){APA.live||console.trace(),"object"==typeof e&&(e=e.join("\n")),e&&alert(e)},allowSubmit:function(e){return this.submitAllowed=e,this.toggleSubmit()},selectPayment:function(e){return this.paymentSelected=e,this.toggleSubmit()},toggleSubmit:function(){return this.submitAllowed&&this.paymentSelected?this.enableSubmit():this.disableSubmit()},disableSubmit:function(){var e=$("amazonpayments-checkout-place-order-button");if(e){e.disabled=!0;var t=e.up("div.buttons-set");t&&t.addClassName("disabled")}return this},enableSubmit:function(){if(this.submitAllowed&&this.paymentSelected){var e=$("amazonpayments-checkout-place-order-button");if(e){e.disabled=!1;var t=e.up("div.buttons-set");t&&t.removeClassName("disabled")}}return this},saveOrder:function(){APA.setOrderSaveWaiting(),new Ajax.Request(APA.urls.saveOrder,{method:"post",parameters:APA.getSaveOrderParams(),onSuccess:APA.saveOrderCallback,onFailure:APA.ajaxFailureCallback})},submitCoupon:function(){APA.setLoadWaiting(APA.layers.review),new Ajax.Request(APA.urls.coupon,{method:"post",parameters:Form.serialize($("discount-coupon-form")),evalScripts:!0,onSuccess:APA.successCallback,onFailure:APA.ajaxFailureCallback})},cancelCoupon:function(){APA.setLoadWaiting(APA.layers.review),new Ajax.Request(APA.urls.coupon,{method:"post",parameters:{remove:1},evalScripts:!0,onSuccess:APA.successCallback,onFailure:APA.ajaxFailureCallback})},getSaveOrderParams:function(){var e="";return APA.virtual?(e+=Object.toQueryString({orderReferenceId:APA.orderReferenceId}),$("checkout-agreements")&&(e+="&"+Form.serialize($("checkout-agreements")))):(e=Form.serialize($("co-shipping-method-form")),$("checkout-agreements")&&(e+="&"+Form.serialize($("checkout-agreements")))),APA.reloaded&&(e+="&"+Object.toQueryString({reloaded:1})),e.save=!0,e},isMobileDevice:function(){return/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(navigator.userAgent||navigator.vendor||window.opera)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test((navigator.userAgent||navigator.vendor||window.opera).substr(0,4))},initialize:function(e,t,r,n,i,a,o){return Object.extend(APA,{sellerId:e,orderReferenceId:t,live:r,virtual:n,urls:Object.extend({login:null,pay:null,checkout:null,saveShipping:null,saveShippingMethod:null,saveOrder:null,success:null,failure:null},i),layers:Object.extend({payButtons:".payButtonWidget",loginButtons:".loginButtonWidget",addressBook:"addressBookWidgetDiv",wallet:"walletWidgetDiv",shippingMethod:"shippingMethodWidgetDiv",review:"reviewWidgetDiv"},a),design:Object.extend({addressBook:{size:{width:"440px",height:"260px"}},wallet:{size:{width:"440px",height:"260px"}},payButton:{type:"PwA"},loginButton:{type:"LwA"}},o)})},setup:function(e,t){return Object.extend(APA,{sellerId:e,orderReferenceId:"undefined"==typeof t.orderReferenceId?null:t.orderReferenceId,language:"undefined"==typeof t.language?null:t.language,live:"undefined"==typeof t.live||t.live,popup:"undefined"==typeof t.popup||t.popup,virtual:"undefined"!=typeof t.virtual&&t.virtual,layers:Object.extend({payButtons:".payButtonWidget",loginButtons:".loginButtonWidget",addressBook:"addressBookWidgetDiv",wallet:"walletWidgetDiv",shippingMethod:"shippingMethodWidgetDiv",review:"reviewWidgetDiv"},t.layers),urls:Object.extend({login:null,pay:null,checkout:null,saveShipping:null,saveShippingMethod:null,saveOrder:null,coupon:null,clear:null,"void":null,success:null,failure:null},t.urls),design:Object.extend({responsive:!0,addressBook:{size:{width:"440px",height:"260px"}},wallet:{size:{width:"440px",height:"260px"}},payButton:{type:"PwA"},loginButton:{type:"LwA"}},t.design)})}};
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Creativestyle_AmazonPayments</name>
4
- <version>1.8.4</version>
5
  <stability>stable</stability>
6
  <license>Creative Commons Attribution-NoDerivatives 4.0 International</license>
7
  <channel>community</channel>
@@ -9,20 +9,18 @@
9
  <summary>Integration of your Magento shop with Login and Pay with Amazon service</summary>
10
  <description>This extension provides an official integration of your Magento store with Login and Pay with Amazon service. It helps your customers shop quickly, safely and securely. Your customers can pay on your website without re-entering their payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.</description>
11
  <notes># Improvements
12
- - Support for France, Italy and Spain
13
- - Support for PHP 7
14
- - Configurable store name in API calls
15
  # Changes
16
- - `Amazon Payments` re-branding
 
17
  # Fixes
18
- - Fixed legacy payment method bug when trying to list all payment methods
19
- - Fixed missing `original_price` and `base_original_price` item's attributes after order is placed
20
- - Added missing return statement to the IPN controller
21
  </notes>
22
  <authors><author><name>creativestyle GmbH</name><user>creativestyle</user><email>amazon@creativestyle.de</email></author></authors>
23
- <date>2017-02-24</date>
24
- <time>16:00:56</time>
25
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="08f9c3c3cdd9536c28746bb3be7eeb0c"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="advanced"><file name="documentation.phtml" hash="af3ae6ebce4712dd8fb972bef508ca55"/><dir name="log"><dir name="api"><file name="view.phtml" hash="2c2fcd6122b4481ad2cf8b7657f3f187"/></dir><dir name="exception"><file name="view.phtml" hash="c5d01f6de86e47d4da5dfabd60b1b382"/></dir><file name="js.phtml" hash="eb1d2098440a0bac2a6f5b959afa3693"/><dir name="notification"><file name="view.phtml" hash="31d893106f7c7c7f94f05d5cafa36440"/></dir></dir></dir><dir name="debug"><dir name="section"><file name="table.phtml" hash="f4bb8e35b3608cf0639407a3461c3717"/></dir><file name="section.phtml" hash="1472da0e9f07b5583a02e327483d4d75"/></dir><file name="debug.phtml" hash="9748d4fe92986f36ad47ae5b61fc4883"/><file name="info.phtml" hash="c3748d44ad12514e379393e3722c7b82"/><file name="init.phtml" hash="ba9d53045077e63b4e6c25c6b7bb685c"/><file name="notifications.phtml" hash="2bdcecbebc9b0df6d00ad5c49c464e2d"/><dir name="payment"><file name="info.phtml" hash="1604a1ca8c640748023859dee07f1182"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="73e54dbec4a659063a6e6c3b35565159"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="1fb213f3fcc3aeecaa6305c07cff3b73"/></dir></dir><file name="register.phtml" hash="0a232ba7493098b49da82c88c646cc87"/><file name="seller_central.phtml" hash="fa3012b0191ac7175bc6bb68188f654c"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="bcbcd2f41ce44082d3cbccbe18c2a3c1"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="button"><file name="js.phtml" hash="a108a88af0112fd43123a1b37cfc106b"/></dir><dir name="checkout"><file name="capture_notice.phtml" hash="f9c75cd05a596d0a16c55f0169b4ee6c"/><file name="js.phtml" hash="22aefc3f6be0ce5c223d6d4942b7ba69"/><dir name="review"><file name="button.phtml" hash="5fa9b038cc1e91a8203b163411b8bf20"/></dir><file name="sandbox_toolbox.phtml" hash="b1a346f095d83223914e65024f56d19f"/><file name="shipping_method.phtml" hash="852008f89fc32c7af6c250cafdde5f51"/></dir><file name="checkout.phtml" hash="93574891397c9d3cd95272f918f512bd"/><file name="js.phtml" hash="13581f0bcdf7c39da46be530892e8183"/><dir name="login"><dir name="button"><file name="account_login.phtml" hash="d7dc275051ab1973b74cd4b5c4b589d8"/></dir><file name="button.phtml" hash="b5d66280337ecc895ae9a2bc48c469e4"/><dir name="form"><file name="account_confirm.phtml" hash="35adec8936cc612b865bca61e2316a8b"/><file name="account_update.phtml" hash="64fdc50df3b3c49384d5d50a1da82d4d"/></dir><file name="js.phtml" hash="9d542e726fe51739b72fc2e509edadd8"/><file name="logout.phtml" hash="e8b6f4d39047903e4ee8d481ba59543b"/><file name="redirect.phtml" hash="8d395ab25504c0cdb928cf93e684b868"/></dir><dir name="onepage"><file name="button.phtml" hash="199ae967a31b7d92b0a2279e339bb938"/></dir><dir name="pay"><file name="button.phtml" hash="dfcccab45794c81d2d3ca52f709019d4"/></dir><dir name="payment"><file name="info.phtml" hash="3631896707e596d9675f526a7d021617"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="738d0b82322b1df3c315daf5253e001e"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="69549bf3340c19d62f42a556f13e8a1e"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AmazonPayments.xml" hash="3d30f68b24829494a2a66164eba0e5f7"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Creativestyle_AmazonPayments.csv" hash="3f4350da6ae572c1bffef16cbd4f2a2d"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="863d241bc23599124715c1e797a3cae6"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AmazonPayments.csv" hash="a703215724b1d6b65103f300e654fa77"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="f858886b12b6f3e16cab85f5ce57b975"/></dir></dir></dir><dir name="en_US"><file name="Creativestyle_AmazonPayments.csv" hash="e3a8dcbb241663571be4a7bd608b6d31"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="702e0a9ada30a5bb5776b28fe63eda93"/></dir></dir></dir><dir name="es_ES"><file name="Creativestyle_AmazonPayments.csv" hash="a9f2ed21f79e1b388d2975af4cc16e9b"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e1705a091d04cd4da4d0b0cc49bd283f"/></dir></dir></dir><dir name="fr_FR"><file name="Creativestyle_AmazonPayments.csv" hash="4ce7c97fb31da4d7de885dd1a85fe8d4"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e593f24125ecb3ffacbe467d8f39f2de"/></dir></dir></dir><dir name="it_IT"><file name="Creativestyle_AmazonPayments.csv" hash="bda9fadde80b8ed7497fe03a53da537a"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="5c3857cb5465c91415940689eec8dc75"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><file name="apa_checkout.js" hash="cf5c71c03203cb3cb9f9a53560b75f49"/><file name="apa_checkout.min.js" hash="94b18941e9f90dd36f571d61f4920408"/><file name="apa_sandbox_toolbox.min.js" hash="caaeb27b79fb6a26561d5e4bd6a4d851"/><dir name="vendors"><file name="prism.js" hash="c700de3d980f7ef1e056dc5400acfd44"/></dir><dir name="adminhtml"><file name="amazonpayments.min.js" hash="417f5ac42d57cdd42ed3d7005dcbd6a2"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="db97912a183d743b89a5bdfc16a66e71"/><file name="amazonpayments-highlight.css" hash="f6daf03c989ac56ad436300b5520f0df"/></dir><dir name="images"><file name="amazon-payments-advanced-creativestyle-header-logo.png" hash="8591e03aeaa7cbc71a509443de35bfce"/><file name="amazon-payments-advanced-creativestyle-header-logo-white.png" hash="9552112bc27581249cb8e8de1bb91887"/><file name="amazon-payments-advanced-creativestyle-logo.png" hash="abc54550ae7d7a3e5c8a5cd0896d310d"/><file name="amazon-payments-advanced-header.png" hash="60f587870fbdb1242368c8c3b553bd8c"/><file name="amazon-payments-advanced-section.png" hash="8bc620f345eb46c920c51875d4cfad7c"/><file name="logo_a-glyph_16.png" hash="44a3f5f0013cab34d26653eb48b989fc"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="ddb0874cb9525e573679cc6a5e8f375e"/><file name="amazonpayments-responsive-widgets.css" hash="ffca5cdc8a4e0585946c78258044c471"/><file name="amazonpayments-widgets.css" hash="35704192aaeb204e407e8b853c118d16"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments-responsive-widgets.css" hash="389d23ee96bb5305f7ba5b616d930846"/><file name="amazonpayments.css" hash="a39d769454a68e24b724b7555f2e7a15"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Creativestyle"><dir name="AmazonPayments"><dir name="Block"><file name="Abstract.php" hash="1518541acdae0c74473a2f57088165d2"/><dir name="Adminhtml"><dir name="Debug"><dir name="Section"><file name="Table.php" hash="f6947e99e982164a220e3d82fa0f988f"/></dir><file name="Section.php" hash="a249d2fedeaa5e485e40ffaeeb0335c6"/></dir><file name="Debug.php" hash="51fdd651a5a672c75e645fc5974fae95"/><file name="Info.php" hash="5e948aaea093307b3a2d9483e116934f"/><dir name="Log"><file name="Abstract.php" hash="183114e38269e6ad666840127cfe0311"/><dir name="Api"><file name="Grid.php" hash="1f3ab2ee3c884a080babe33d092c97e4"/><file name="View.php" hash="6cfb2d5ac1777a146e9bca3b09e31fc8"/></dir><file name="Api.php" hash="6725b51b926550d4731835245095f9ec"/><dir name="Exception"><file name="Grid.php" hash="e12982b34793ad34c3eb0b24bac9dc1d"/><file name="View.php" hash="f24fa8a264a13ab1f29ada77624bfc09"/></dir><file name="Exception.php" hash="d3ea2ff8dac95796fdb01b0284ccc90a"/><dir name="Grid"><file name="Abstract.php" hash="11ccd78d87834bd73398358f190ef9bd"/></dir><dir name="Ipn"><file name="Grid.php" hash="8efa9f6b1adcac9a3562979ac97bc0c5"/><file name="View.php" hash="6ab63414642658e95258a73a143e6955"/></dir><file name="Ipn.php" hash="a2225b081ccb354bfe94b4a646b0d521"/><dir name="View"><file name="Abstract.php" hash="1b9423b817bc1c0765601d73b78d0d8e"/></dir></dir><file name="Notifications.php" hash="de983b6f26e73bc5ac71b6a979d1125e"/><file name="Register.php" hash="18f5eeb19dee4926183f17e3dc5b6b88"/><dir name="Renderer"><file name="Timestamp.php" hash="190325613c20e2cf97adc28950658e99"/></dir><dir name="Sales"><file name="Order.php" hash="45a5ee919501a2bf26160d38dafccd44"/></dir><file name="SellerCentral.php" hash="2a70da712e0010b76d7f166a010f511d"/></dir><dir name="Button"><file name="Js.php" hash="6081c66a769b6db8a7f607e6f60365af"/></dir><dir name="Checkout"><file name="Abstract.php" hash="db5cf0b3d9dd37ad4552987b9df5e09c"/><file name="Js.php" hash="0e5ba9b3f4ae06139a084816c04a05a3"/><file name="Notice.php" hash="3bd2869322fac80a80436f8e2daa8d70"/><file name="SandboxToolbox.php" hash="047b1bfde3f5469195b9a7ccfee3f16d"/></dir><file name="Checkout.php" hash="6620fc17c1c86deac47709664d6a93f7"/><dir name="Js"><file name="Interface.php" hash="11827746ff821b4cbda1ad041e30321e"/></dir><file name="Js.php" hash="f5c8f0cf7d13387387ad4b2656e8d9a9"/><dir name="Login"><file name="Abstract.php" hash="d260896597dc717bd82bf2d76374a9e4"/><dir name="Account"><file name="Confirm.php" hash="ae8123a65a717a0046aaf1d9dc21f878"/><file name="Update.php" hash="8fdadae9294b17fbb0989f8d0e2016a4"/></dir><file name="Button.php" hash="bad55de20f480d53a15ddedd551ff6dd"/><file name="Js.php" hash="2d144b27681c48f2adfa8cd0fdd5d31e"/><file name="Redirect.php" hash="8634cf4f6bf792006e4ab7674b758e5c"/></dir><dir name="Onepage"><file name="Button.php" hash="9b75d05f91d17a507544fdda247eb1a7"/></dir><dir name="Pay"><file name="Abstract.php" hash="7df3aa69d74f5d11b47e9508c628ca5d"/><file name="Button.php" hash="b76cbc47c91b88ceb9fc1fde609fa2dc"/></dir><dir name="Payment"><file name="Info.php" hash="c6285a5688834b456765317d3471bf2a"/><dir name="Legacy"><file name="Info.php" hash="6d4b1d32a19c80c42bf3acccd1963ba5"/></dir></dir></dir><dir name="Exception"><dir name="InvalidStatus"><file name="Recoverable.php" hash="dc4d8857cf1841bb56f6da11cf92e99e"/><file name="Unrecoverable.php" hash="53a377c09d7c41368adf597e0173e513"/></dir><file name="InvalidStatus.php" hash="614d45747601dea035ff2a3faadd7e18"/></dir><file name="Exception.php" hash="ca655a29842b38dd2ebf438208a6c70c"/><dir name="Helper"><file name="Data.php" hash="a0282202539953a047cb17316def6b28"/><file name="Debug.php" hash="3c9fead1b33537ae7d5a4d15fb799dff"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1814fcd0d61599f15d808d9c2990ebe4"/><file name="Advanced.php" hash="0f5a3f480da20a2f8253f9b78c78f9dd"/><file name="Ipn.php" hash="e672342ca8b1f1f7493e42b9656aeabe"/><file name="Login.php" hash="d9297e66749c6930a1010a5babdfde14"/></dir><file name="Checkout.php" hash="8b80a8ae2a4b2cf595cabded2f5c3c2a"/><file name="Config.php" hash="e242b57817426a77c0f146657ab5374e"/><dir name="Log"><file name="Collection.php" hash="13d71847c4e164af18636a3fe5bf975b"/></dir><file name="Logger.php" hash="181e90628ee324547ed79cd4fb71b58c"/><dir name="Lookup"><file name="Abstract.php" hash="443bbef12f4e7c896e54cf0b7463e04e"/><file name="AccountRegion.php" hash="7be22d7cab69151e409ea7ec7df7fadc"/><file name="Authentication.php" hash="af62e3961a5b00319aa32487c6cc20d6"/><file name="AuthorizationMode.php" hash="b26806dc71de6b55bc37b20a1b804364"/><dir name="Design"><dir name="Button"><dir name="Color"><file name="LoginPay.php" hash="e9a469e82c7805782cf7694c4d50af7a"/></dir><file name="Color.php" hash="81a33471dfefb27897f7b1ff19749671"/><dir name="Size"><file name="LoginPay.php" hash="6cdf3d3633617994783a38f30add86fe"/></dir><file name="Size.php" hash="7c73a97a0fa3f4c6a73b838c0594ad5c"/><dir name="Type"><file name="Login.php" hash="44e852189b0305bbe4cc38848316d4e6"/><file name="Pay.php" hash="8e85dde5088b02f966a35c9b0a053de5"/></dir></dir></dir><file name="Frequency.php" hash="5115fb39b48781e5e97f9b62414a72cc"/><file name="IpnActive.php" hash="b73000f5bfc1e26b80911e125e9eec46"/><file name="Language.php" hash="4a9b8e24251cb3e80e9e22395b947cac"/><file name="PaymentAction.php" hash="6d0c15996ec3caf112d88e07ea703bb4"/><file name="Region.php" hash="8f5cc8ab970aa165e16085368b320f89"/></dir><file name="Observer.php" hash="0316aeff3e7c6bb028d35b6b76a6c494"/><dir name="Payment"><file name="Abstract.php" hash="3c4487ec8b65ce94a7b81b7f6079c60d"/><dir name="Advanced"><file name="Sandbox.php" hash="10e80bd587f2d27fc97bb6e595936b82"/></dir><file name="Advanced.php" hash="15c5dde1d3a82a9bdf01e1681c47ec3b"/><file name="Legacy.php" hash="654ba0aa8692416ca2721f2ebb59a883"/></dir><dir name="Processor"><file name="Ipn.php" hash="e7d757a60ea7e3481cfe3ba3466af1cc"/><file name="Order.php" hash="bea0a609138e58614fe8fdb11426bf40"/><file name="Payment.php" hash="05d099c2b8bf6dcc67ef6ea037c6594c"/><file name="TransactionAdapter.php" hash="8566292e6e7ac85471ac12f2bd155ab8"/></dir><dir name="Service"><file name="Login.php" hash="33f6058caab9bd4791b954d0c19c0b10"/><file name="Quote.php" hash="d566370281e690ca31f3ddd47c21ef1d"/></dir><file name="Setup.php" hash="41f37f025dc543f63d2dccd28f41e255"/><file name="Simulator.php" hash="553bb0c0ca3c74202083b366f4c33e9a"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="DataPolling"><file name="Cron.php" hash="8beaac61d4ebfb4ac74335f5ff121ce0"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Amazonpayments"><file name="DebugController.php" hash="aedfdbe70c652afe31439b991f912e2c"/><dir name="Log"><file name="ApiController.php" hash="9a8e3361c754eec9d78d3aa62411a47b"/><file name="ExceptionController.php" hash="c5bd239ce59de35dc064cc1474d5a005"/><file name="IpnController.php" hash="6e67da69a85eba85f3c44470fab6c5b9"/></dir><file name="OrderController.php" hash="83ffbf0de858765c0c9c7c594e9b2b66"/><file name="SystemController.php" hash="516e0ec1c7cc978a087ec4b7e3d91e44"/></dir></dir><dir name="Advanced"><file name="CheckoutController.php" hash="05b0e511140cce1bc5c99e24c9378672"/><file name="IpnController.php" hash="918297ba173a73e7be05aae9a4fef0c9"/><file name="LoginController.php" hash="2d6d0d201c1ff4bcdeb9a1c19372a888"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cd249bbc1deefba11366dba61ed2386c"/><file name="config.xml" hash="08d5fd827c4d90ea9eb9544d39a4281a"/><file name="system.xml" hash="5eed5c0724b7c889676e62fb639fde12"/></dir><dir name="sql"><dir name="amazonpayments_setup"><file name="mysql4-install-1.0.0.php" hash="d4681b9a39905cc9e9dcc660688dea85"/><file name="mysql4-install-1.6.2.php" hash="6bb2b8656a3c6b2b517b88ca98ff84de"/><file name="mysql4-upgrade-1.1.6-1.2.0.php" hash="27f8e108bac4268d3c17e812b413dbbc"/><file name="mysql4-upgrade-1.7.4-1.7.6.php" hash="cbe499399eac3dcf607dd42e9be239a1"/><file name="mysql4-upgrade-1.7.8-1.8.2.php" hash="7f858b1140aff7a4bf36545c72d0c0fe"/></dir></dir></dir></dir></target><target name="magelib"><dir name="OffAmazonPayments"><dir name="HttpRequest"><file name="HttpException.php" hash="d2feba35467baa6ff61503bb15d5f016"/><file name="IHttpRequest.php" hash="7c7d44deffb15b2db161d8dfc585c4d2"/><file name="IHttpRequestFactory.php" hash="02c9cfe067cd0ae40f14704d58fa2098"/><dir name="Impl"><file name="HttpRequestCurlImpl.php" hash="815a03cc4b5fc1222e0bc9b9f85f3428"/><file name="HttpRequestFactoryCurlImpl.php" hash="09140d0c9518e0e7c1bffb8bd0c98310"/></dir></dir><file name="Model.php" hash="778dfe809587f010352d9ccd2bed8106"/><file name="OffAmazonPaymentsServiceUtils.php" hash="827a9e9f2b04652736406b1cd9672a2c"/></dir><dir name="OffAmazonPaymentsNotifications"><file name="Client.php" hash="a8bfa462188eb5193985e984ff503b04"/><dir name="Impl"><file name="Certificate.php" hash="33aec53879fff368b0f6f52ce7f79f13"/><file name="IpnNotificationParser.php" hash="3f4e203c89d23c2971214a7e0713f6a9"/><file name="Message.php" hash="6cffc2f4b4c09a8411572cdb7ddcc83a"/><file name="OpenSslVerifySignature.php" hash="45449e157fa55ab5c2c16a9207616357"/><file name="SnsMessageParser.php" hash="c6d1b0bfa852441b4ddfdc25cf624c9d"/><file name="SnsMessageValidator.php" hash="7291f2b91f0dc9ace62752c37b69d15f"/><file name="VerifySignature.php" hash="b7c3089f35fba596e16f6f39f7029908"/><file name="XmlNotificationParser.php" hash="a6b6ff48de5cee20db383a2a6c953092"/></dir><file name="Interface.php" hash="3930f956058657059e2ea705fc43333d"/><file name="InvalidCertificateException.php" hash="4711c0ea7b574a8ab3fb04623b2f7453"/><file name="InvalidMessageException.php" hash="c9608c6ecfafeae2db9db9e8786f2a15"/><dir name="Model"><file name="AuthorizationDetails.php" hash="c5e85494dd4b21c49c1d786bf38879da"/><file name="AuthorizationNotification.php" hash="490fd1da11270f9af20a6ca0d87b8149"/><file name="BillingAgreement.php" hash="00f24d00547ddb3320a20f77132feb0e"/><file name="BillingAgreementLimits.php" hash="e972154534547bde777133c2de1e835f"/><file name="BillingAgreementNotification.php" hash="c5ee60508326e840ce02765b175897aa"/><file name="BillingAgreementStatus.php" hash="68da18941f6cc8b17a9157c83e550c0c"/><file name="CaptureDetails.php" hash="f8702f3d5d5afd595814182f847367c5"/><file name="CaptureNotification.php" hash="8d4da47b23888f3cfd94fe9d217c46da"/><file name="IdList.php" hash="4d77007c611ba2a990179ecf506d4ac7"/><file name="IpnNotificationMetadata.php" hash="802e724b1cc35eae31e4aa9288446b8f"/><file name="MerchantRegistrationDetails.php" hash="d4de7689d8e216567abd710dde7ef4ed"/><file name="NotificationImpl.php" hash="17205cb366af769c0563d80ee82de067"/><file name="NotificationMetadataImpl.php" hash="27bdabd2ae04ab753e60b0ab3042859c"/><file name="OrderItemCategories.php" hash="ac5edd66a87e28f1e0a4be758e3d7b8c"/><file name="OrderReference.php" hash="3ff8f8729cc3e398823061b73d8d2789"/><file name="OrderReferenceNotification.php" hash="4b6a0e68f77ff7b710fe00916d5b0546"/><file name="OrderReferenceStatus.php" hash="e09fc390fb5c21afd4764c41dd7418c0"/><file name="OrderTotal.php" hash="ce3157db8b593588c9405030968176a5"/><file name="Price.php" hash="cff064218bbb2d56f463ab489dc907cd"/><file name="ProviderCreditDetails.php" hash="d355185842eb0816de151fb535b14edc"/><file name="ProviderCreditNotification.php" hash="7ddc5d80dee797893171237ecabf10e2"/><file name="ProviderCreditReversalDetails.php" hash="a789bbf3c7074bc800053967e64286c7"/><file name="ProviderCreditReversalNotification.php" hash="56479587ee330013bdffe17719d0edec"/><file name="ProviderCreditReversalSummary.php" hash="577971d363b95fd7a73e8cd4995a240c"/><file name="ProviderCreditReversalSummaryList.php" hash="05ae0f9769e4c46e5c3ba3f9907ae576"/><file name="ProviderCreditSummary.php" hash="4403e12b73867b58021655df3fcf6720"/><file name="ProviderCreditSummaryList.php" hash="667167ed6a427d71086aa4ef8dabc5f5"/><file name="RefundDetails.php" hash="ae08c0447ec12996a465772d55f2c28f"/><file name="RefundNotification.php" hash="fb29285214205fd09c4f9ac7964c1a07"/><file name="SellerBillingAgreementAttributes.php" hash="691b120995ac30f3f542c3ec9cd6c0d6"/><file name="SellerOrderAttributes.php" hash="896cf700231529f39e903d4614579a85"/><file name="SnsNotificationMetadata.php" hash="df453726f714f7ea50cc04b6093123eb"/><file name="SolutionProviderMerchantNotification.php" hash="77e4152a922f1a26582e46546387943d"/><file name="SolutionProviderOption.php" hash="df8fbbb1ad2fef1796e3b42a9a417a64"/><file name="SolutionProviderOptions.php" hash="624d2f4efd3a32eab8baf8628efda4ef"/><file name="Status.php" hash="8726fde00e0f97595115866c1a8000dd"/></dir><file name="Notification.php" hash="562b2a4eb6e292b6df4db3112391ab55"/><file name="NotificationMetadata.php" hash="07f94bf3a41ed0c72f387e900260c48a"/></dir><dir name="OffAmazonPaymentsService"><file name="Client.php" hash="26dd6a2d2c407427c5ea0933e2159351"/><file name="Environments.php" hash="1a9ff744e131c19f5bd0d58c5aa578ab"/><file name="Exception.php" hash="eee23053020a397cf082a28f41001284"/><file name="Interface.php" hash="b681a546f2a5e3690e5e04f9c75ca8a5"/><file name="MerchantValues.php" hash="2cca67c2b1b0557e5a63d4ef35950172"/><file name="MerchantValuesBuilder.php" hash="a6328566f8f5ee48a8b054d8f02897e1"/><dir name="Model"><file name="Address.php" hash="6840237ae7035912f95020ff6d580033"/><file name="AuthorizationDetails.php" hash="159edfb213e12b7ecb847c103c70c5de"/><file name="AuthorizeOnBillingAgreementRequest.php" hash="8b0e8d6ffa94b1f18546b7554ec042ed"/><file name="AuthorizeOnBillingAgreementResponse.php" hash="8770715da01743adeafc25d54bb0c1d9"/><file name="AuthorizeOnBillingAgreementResult.php" hash="a73c77f8fce673257e2dca072ad6fab6"/><file name="AuthorizeRequest.php" hash="08bdab4fe2896f4a2b808c6e8abfeeba"/><file name="AuthorizeResponse.php" hash="0ae054040c36e7362683146b537f551b"/><file name="AuthorizeResult.php" hash="e7dfd388200467e736ff3b7d11c8d2bf"/><file name="BillingAddress.php" hash="93f82f074b62e8b1abf25ae8ae44b676"/><file name="BillingAgreementAttributes.php" hash="e52a2c92f92f7081ac742e24f70385df"/><file name="BillingAgreementDetails.php" hash="359f9bd686d21242f2e27feb8b3379b2"/><file name="BillingAgreementLimits.php" hash="66f84e67052b91092867496d11a28763"/><file name="BillingAgreementStatus.php" hash="adcf9379fb2f6fa88a1d8e230d8cf101"/><file name="Buyer.php" hash="cb691abf757d54025ac43964849dd5fd"/><file name="CancelOrderReferenceRequest.php" hash="ef06ecd8f05a4c032aa28f5b5a132d05"/><file name="CancelOrderReferenceResponse.php" hash="004c4e3a21ea1dc8e11bbba3d733b3ca"/><file name="CancelOrderReferenceResult.php" hash="74b7ad1facdf31263e9bb55544303180"/><file name="CaptureDetails.php" hash="4f360221d888d50d92e7f2ea20b5b54f"/><file name="CaptureRequest.php" hash="5b976a76214f870964d49cf104a50b30"/><file name="CaptureResponse.php" hash="7ece74f93f362d31bc16f9fb7bf2b270"/><file name="CaptureResult.php" hash="e0fccf0fe27efd36d822ddcdaefe97ac"/><file name="CloseAuthorizationRequest.php" hash="cb0e2113e9e36b7b133b539e5ff99c50"/><file name="CloseAuthorizationResponse.php" hash="99be7612c9effdac53fb0bc225a13eb1"/><file name="CloseAuthorizationResult.php" hash="6d77eea8924d2ef6a3acd0dabb3f9f76"/><file name="CloseBillingAgreementRequest.php" hash="89f82b30dd0902faa6feb3a57dfe24cb"/><file name="CloseBillingAgreementResponse.php" hash="1bda191dc9a8b2b1a14b6e11772f05cf"/><file name="CloseBillingAgreementResult.php" hash="f926f5d65d95323647129605a26037ae"/><file name="CloseOrderReferenceRequest.php" hash="b8b592bdc71a4046efead52196f8073c"/><file name="CloseOrderReferenceResponse.php" hash="137da00395052b25099de3a0d152887d"/><file name="CloseOrderReferenceResult.php" hash="81e21f75ae477f07a9b913e1ac2bd89d"/><file name="ConfirmBillingAgreementRequest.php" hash="ab524aa1cc6e51a8b483e4f96b7e1e02"/><file name="ConfirmBillingAgreementResponse.php" hash="0639de39ba58e6c2b806a84b43dc31d3"/><file name="ConfirmBillingAgreementResult.php" hash="42456915a3efa4ccd774a1d5d3a05307"/><file name="ConfirmOrderReferenceRequest.php" hash="632a4b8414aac550fc0ec59a83737be7"/><file name="ConfirmOrderReferenceResponse.php" hash="fb0c329ffa1a54e4c15c531b58561f6f"/><file name="Constraint.php" hash="e46dc3d18486b6639ea5b8f52a92cfdc"/><file name="Constraints.php" hash="cb983d71bda42bdda767ffc9f4feeafc"/><file name="CreateOrderReferenceForIdRequest.php" hash="b1f4e96f1392c427228f5799edc5dc64"/><file name="CreateOrderReferenceForIdResponse.php" hash="630cb4812997fa7c067f393dfb5e2f48"/><file name="CreateOrderReferenceForIdResult.php" hash="4abf7af5eb56058c17996406a877f427"/><file name="Destination.php" hash="737777909588915788398ab86f0de1de"/><file name="Error.php" hash="bb8b6bb6d3c778fc4e1d0a346b5fa03a"/><file name="ErrorResponse.php" hash="8804c6f39d9a0bdcbd76260eba9d261d"/><file name="GetAuthorizationDetailsRequest.php" hash="67d5a478c01fbbfba420dff3cf2098dc"/><file name="GetAuthorizationDetailsResponse.php" hash="0c9fe935bcb953cc9cd9e11bab32b5b2"/><file name="GetAuthorizationDetailsResult.php" hash="02ac4fa6533ccfd705c543160165c31d"/><file name="GetBillingAgreementDetailsRequest.php" hash="761cbdc44a4ac1e28b22d01f7a484b76"/><file name="GetBillingAgreementDetailsResponse.php" hash="061084469683253d1d76d5c881e5062d"/><file name="GetBillingAgreementDetailsResult.php" hash="5a585ad373b11b806ba320bcd988f71b"/><file name="GetCaptureDetailsRequest.php" hash="69252be80c32d911f2ff664904375e7d"/><file name="GetCaptureDetailsResponse.php" hash="5323ed86174064bb1122187457440861"/><file name="GetCaptureDetailsResult.php" hash="962ef27de2778c9ccde55d848b8fa649"/><file name="GetOrderReferenceDetailsRequest.php" hash="edfea06a629f298ab134229d35fef319"/><file name="GetOrderReferenceDetailsResponse.php" hash="4955733fe736a9f51e0bd6823b8bf74b"/><file name="GetOrderReferenceDetailsResult.php" hash="f9ee3738bddff51c6bd545028d275348"/><file name="GetProviderCreditDetailsRequest.php" hash="e51201c7d39935c4fa8da96e822b7075"/><file name="GetProviderCreditDetailsResponse.php" hash="e312b54192343e16230b7436b101766a"/><file name="GetProviderCreditDetailsResult.php" hash="9f0af601e8a716e4e5af3802d8952fe4"/><file name="GetProviderCreditReversalDetailsRequest.php" hash="cf74576ef8dc02e34244aca962d854b3"/><file name="GetProviderCreditReversalDetailsResponse.php" hash="a869c2695416514834c83890d3b080f9"/><file name="GetProviderCreditReversalDetailsResult.php" hash="33f1980d1632034eee8396c6286b5320"/><file name="GetRefundDetailsRequest.php" hash="7ab0f7d756a59a284ffd0ffc361fee42"/><file name="GetRefundDetailsResponse.php" hash="4847a7513f69d3f81c306d26ad7c5291"/><file name="GetRefundDetailsResult.php" hash="0c24e3c8e95f4ee10f5c4e9dd07518bf"/><file name="IdList.php" hash="25fd15394669b4721bdd0e4d367d534f"/><file name="OrderItemCategories.php" hash="995db32a92601555ee9a7550d1daae7e"/><file name="OrderReferenceAttributes.php" hash="78e1735d8fc99c5676d894564d6b88c7"/><file name="OrderReferenceDetails.php" hash="4e9365808e09fe1b1407348c9d05ca41"/><file name="OrderReferenceStatus.php" hash="5c21e44d991a24ab2527e491c435d54c"/><file name="OrderTotal.php" hash="2ff8e8ccc9c7266d72f534485ccd01bf"/><file name="ParentDetails.php" hash="99f7062b4764166637dfc44b4fe4788c"/><file name="Price.php" hash="4ac8de3791146a17a237a914c9f762a6"/><file name="ProviderCredit.php" hash="8f2f21ac5c0dba73e64a35cc7a61fbbe"/><file name="ProviderCreditDetails.php" hash="d9057efbe528a1571eda4252b8ad1813"/><file name="ProviderCreditList.php" hash="4a3eeae90b5a1ed09a528f5254b968a5"/><file name="ProviderCreditReversal.php" hash="07c1d7959a7cfb94164846c276b43ce7"/><file name="ProviderCreditReversalDetails.php" hash="ebfbf919b4a399213c7e312e59873e43"/><file name="ProviderCreditReversalList.php" hash="8eb64497a6a233535c8b0ca55591d06b"/><file name="ProviderCreditReversalSummary.php" hash="7646c582ea5fb3a46dcb09637f7daf01"/><file name="ProviderCreditReversalSummaryList.php" hash="cae281ddee9f766d1d5bf350e238037a"/><file name="ProviderCreditSummary.php" hash="69bc18eefe644e6b851a6daf7e6dfa8a"/><file name="ProviderCreditSummaryList.php" hash="751812d8903ba883036d1bc381c37667"/><file name="RefundDetails.php" hash="b53e480fe8e8e5d96a4b6a0df431e5ac"/><file name="RefundRequest.php" hash="665585551aba39532fe3352abb4859b3"/><file name="RefundResponse.php" hash="fadbc4ad5313395a48e38b1c0502c85a"/><file name="RefundResult.php" hash="9ddad34dd53edfd156651b021bc5137a"/><file name="ResponseHeaderMetadata.php" hash="382fe7bd666eea293b729c5d6c79348f"/><file name="ResponseMetadata.php" hash="073748a20ecd8bddc240dd4c0a4a56b9"/><file name="ReverseProviderCreditRequest.php" hash="802a3709149add8fa192ce389b93c2ea"/><file name="ReverseProviderCreditResponse.php" hash="ff702a7def546f0c6216094f93095bd7"/><file name="ReverseProviderCreditResult.php" hash="84f3e78e1b8b1b47e6f8b92abee7704b"/><file name="SellerBillingAgreementAttributes.php" hash="308899b9e48a95f0b5d48d74a510c915"/><file name="SellerOrderAttributes.php" hash="35b62fe0e130207dfaa2caefa1dfe7ba"/><file name="SetBillingAgreementDetailsRequest.php" hash="347a6c85c5cc8394255efcb9c4b57d52"/><file name="SetBillingAgreementDetailsResponse.php" hash="92299b3338dc7435149f17d8126f7518"/><file name="SetBillingAgreementDetailsResult.php" hash="7cb3e84e58fe2bbf163f8ac34de5eccf"/><file name="SetOrderReferenceDetailsRequest.php" hash="4cf2605f5188116a1526d463638aa768"/><file name="SetOrderReferenceDetailsResponse.php" hash="41720bdf965dcd759cc3278e01610530"/><file name="SetOrderReferenceDetailsResult.php" hash="4281a97da7865e47157c1d22c2094bfd"/><file name="Status.php" hash="28bd007e6c9747417a063e9941cc0dba"/><file name="ValidateBillingAgreementRequest.php" hash="d77beda441fd1688903e96a02fa4e643"/><file name="ValidateBillingAgreementResponse.php" hash="89658fd2a78d7dbb2997dae6ba169f7e"/><file name="ValidateBillingAgreementResult.php" hash="b9244d0496b0bbcfbf7628c775c17ca3"/></dir><file name="Model.php" hash="fafcb3a4318eb7bd9be5b69225187352"/><file name="RegionSpecificProperties.php" hash="f4e77cc63766b42fbef6ef1e07ec4402"/><file name="Regions.php" hash="4676d77db7dde345118e2a6fc021ce3f"/></dir></target></contents>
26
  <compatible/>
27
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
28
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Creativestyle_AmazonPayments</name>
4
+ <version>1.8.6</version>
5
  <stability>stable</stability>
6
  <license>Creative Commons Attribution-NoDerivatives 4.0 International</license>
7
  <channel>community</channel>
9
  <summary>Integration of your Magento shop with Login and Pay with Amazon service</summary>
10
  <description>This extension provides an official integration of your Magento store with Login and Pay with Amazon service. It helps your customers shop quickly, safely and securely. Your customers can pay on your website without re-entering their payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.</description>
11
  <notes># Improvements
12
+ - Added coupon code handling in Amazon checkout review
13
+ - Added possibility to disconnect customer account from Amazon account
 
14
  # Changes
15
+ - Removed password form for account matching when customer is logged-in
16
+ - Updated Amazon Pay logos in Magento admin
17
  # Fixes
18
+ - Fixed PHP versions in Magento Connect package.xml file
 
 
19
  </notes>
20
  <authors><author><name>creativestyle GmbH</name><user>creativestyle</user><email>amazon@creativestyle.de</email></author></authors>
21
+ <date>2017-05-12</date>
22
+ <time>13:47:12</time>
23
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="08f9c3c3cdd9536c28746bb3be7eeb0c"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="advanced"><file name="documentation.phtml" hash="af3ae6ebce4712dd8fb972bef508ca55"/><dir name="log"><dir name="api"><file name="view.phtml" hash="2c2fcd6122b4481ad2cf8b7657f3f187"/></dir><dir name="exception"><file name="view.phtml" hash="c5d01f6de86e47d4da5dfabd60b1b382"/></dir><file name="js.phtml" hash="eb1d2098440a0bac2a6f5b959afa3693"/><dir name="notification"><file name="view.phtml" hash="31d893106f7c7c7f94f05d5cafa36440"/></dir></dir></dir><dir name="debug"><dir name="section"><file name="table.phtml" hash="f4bb8e35b3608cf0639407a3461c3717"/></dir><file name="section.phtml" hash="1472da0e9f07b5583a02e327483d4d75"/></dir><file name="debug.phtml" hash="9748d4fe92986f36ad47ae5b61fc4883"/><file name="info.phtml" hash="c3748d44ad12514e379393e3722c7b82"/><file name="init.phtml" hash="ba9d53045077e63b4e6c25c6b7bb685c"/><file name="notifications.phtml" hash="2bdcecbebc9b0df6d00ad5c49c464e2d"/><dir name="payment"><file name="info.phtml" hash="1604a1ca8c640748023859dee07f1182"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="73e54dbec4a659063a6e6c3b35565159"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="1fb213f3fcc3aeecaa6305c07cff3b73"/></dir></dir><file name="register.phtml" hash="0a232ba7493098b49da82c88c646cc87"/><file name="seller_central.phtml" hash="fa3012b0191ac7175bc6bb68188f654c"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="5b41cce3d289b987f05e09433c7ffb85"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="button"><file name="js.phtml" hash="a108a88af0112fd43123a1b37cfc106b"/></dir><dir name="checkout"><file name="capture_notice.phtml" hash="f9c75cd05a596d0a16c55f0169b4ee6c"/><file name="js.phtml" hash="a47a9b7f24f1f0a2f1f91b802801b194"/><dir name="review"><file name="button.phtml" hash="5fa9b038cc1e91a8203b163411b8bf20"/><file name="coupon.phtml" hash="e7b47c2fdd6a1d38a39fa8c292ad793b"/></dir><file name="sandbox_toolbox.phtml" hash="b1a346f095d83223914e65024f56d19f"/><file name="shipping_method.phtml" hash="852008f89fc32c7af6c250cafdde5f51"/></dir><file name="checkout.phtml" hash="93574891397c9d3cd95272f918f512bd"/><dir name="customer"><dir name="account"><dir name="dashboard"><file name="login.phtml" hash="0eafc3c58b54c194c07a779afcde403e"/></dir></dir></dir><file name="js.phtml" hash="13581f0bcdf7c39da46be530892e8183"/><dir name="login"><dir name="button"><file name="account_login.phtml" hash="d7dc275051ab1973b74cd4b5c4b589d8"/></dir><file name="button.phtml" hash="b5d66280337ecc895ae9a2bc48c469e4"/><dir name="form"><file name="account_confirm.phtml" hash="35adec8936cc612b865bca61e2316a8b"/><file name="account_update.phtml" hash="64fdc50df3b3c49384d5d50a1da82d4d"/></dir><file name="js.phtml" hash="9d542e726fe51739b72fc2e509edadd8"/><file name="logout.phtml" hash="e8b6f4d39047903e4ee8d481ba59543b"/><file name="redirect.phtml" hash="8d395ab25504c0cdb928cf93e684b868"/></dir><dir name="onepage"><file name="button.phtml" hash="199ae967a31b7d92b0a2279e339bb938"/></dir><dir name="pay"><file name="button.phtml" hash="dfcccab45794c81d2d3ca52f709019d4"/></dir><dir name="payment"><file name="info.phtml" hash="3631896707e596d9675f526a7d021617"/><dir name="legacy"><file name="info.phtml" hash="7d35f0a93900f40fb4433f576734595a"/><dir name="pdf"><file name="info.phtml" hash="738d0b82322b1df3c315daf5253e001e"/></dir></dir><dir name="pdf"><file name="info.phtml" hash="69549bf3340c19d62f42a556f13e8a1e"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AmazonPayments.xml" hash="3d30f68b24829494a2a66164eba0e5f7"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Creativestyle_AmazonPayments.csv" hash="c296f98874a5ff2f38a4d6f96359a015"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="863d241bc23599124715c1e797a3cae6"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AmazonPayments.csv" hash="3afdd699a914e9a99317edf97addb18d"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="f858886b12b6f3e16cab85f5ce57b975"/></dir></dir></dir><dir name="en_US"><file name="Creativestyle_AmazonPayments.csv" hash="1ab4e3faab0979a910408f66c0ca95c2"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="702e0a9ada30a5bb5776b28fe63eda93"/></dir></dir></dir><dir name="es_ES"><file name="Creativestyle_AmazonPayments.csv" hash="00213f40cd3a3d46f8e643e14d0322ef"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e1705a091d04cd4da4d0b0cc49bd283f"/></dir></dir></dir><dir name="fr_FR"><file name="Creativestyle_AmazonPayments.csv" hash="a2ccef1fbee52c1dbb2c0e8f174bcd02"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="e593f24125ecb3ffacbe467d8f39f2de"/></dir></dir></dir><dir name="it_IT"><file name="Creativestyle_AmazonPayments.csv" hash="2ab40220504d9113445a57b5c3ba5b8a"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="5c3857cb5465c91415940689eec8dc75"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><file name="apa_checkout.js" hash="090d3f9984ec92992c950fb65b0d7953"/><file name="apa_checkout.min.js" hash="1b1887cfa66cda473f1e2600cb1d2c42"/><file name="apa_sandbox_toolbox.min.js" hash="caaeb27b79fb6a26561d5e4bd6a4d851"/><dir name="vendors"><file name="prism.js" hash="c700de3d980f7ef1e056dc5400acfd44"/></dir><dir name="adminhtml"><file name="amazonpayments.min.js" hash="417f5ac42d57cdd42ed3d7005dcbd6a2"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="db97912a183d743b89a5bdfc16a66e71"/><file name="amazonpayments-highlight.css" hash="f6daf03c989ac56ad436300b5520f0df"/></dir><dir name="images"><file name="amazon-payments-advanced-creativestyle-header-logo.png" hash="8591e03aeaa7cbc71a509443de35bfce"/><file name="amazon-payments-advanced-creativestyle-header-logo-white.png" hash="9552112bc27581249cb8e8de1bb91887"/><file name="amazon-payments-advanced-creativestyle-logo.png" hash="abc54550ae7d7a3e5c8a5cd0896d310d"/><file name="amazon-payments-advanced-header.png" hash="a94ab7de3238be5949eec5139e401615"/><file name="amazon-payments-advanced-section.png" hash="8c137a5960eb6938358644259bf23646"/><file name="logo_a-glyph_16.png" hash="44a3f5f0013cab34d26653eb48b989fc"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="a6aa4506d316e7303eb33fb4d65bd471"/><file name="amazonpayments-responsive-widgets.css" hash="ffca5cdc8a4e0585946c78258044c471"/><file name="amazonpayments-widgets.css" hash="35704192aaeb204e407e8b853c118d16"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments-responsive-widgets.css" hash="389d23ee96bb5305f7ba5b616d930846"/><file name="amazonpayments.css" hash="ac8dee6f92fb5ebafaea7f53b730ca57"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Creativestyle"><dir name="AmazonPayments"><dir name="Block"><file name="Abstract.php" hash="1518541acdae0c74473a2f57088165d2"/><dir name="Adminhtml"><dir name="Debug"><dir name="Section"><file name="Table.php" hash="f6947e99e982164a220e3d82fa0f988f"/></dir><file name="Section.php" hash="a249d2fedeaa5e485e40ffaeeb0335c6"/></dir><file name="Debug.php" hash="51fdd651a5a672c75e645fc5974fae95"/><file name="Info.php" hash="5e948aaea093307b3a2d9483e116934f"/><dir name="Log"><file name="Abstract.php" hash="183114e38269e6ad666840127cfe0311"/><dir name="Api"><file name="Grid.php" hash="1f3ab2ee3c884a080babe33d092c97e4"/><file name="View.php" hash="6cfb2d5ac1777a146e9bca3b09e31fc8"/></dir><file name="Api.php" hash="6725b51b926550d4731835245095f9ec"/><dir name="Exception"><file name="Grid.php" hash="e12982b34793ad34c3eb0b24bac9dc1d"/><file name="View.php" hash="f24fa8a264a13ab1f29ada77624bfc09"/></dir><file name="Exception.php" hash="d3ea2ff8dac95796fdb01b0284ccc90a"/><dir name="Grid"><file name="Abstract.php" hash="11ccd78d87834bd73398358f190ef9bd"/></dir><dir name="Ipn"><file name="Grid.php" hash="8efa9f6b1adcac9a3562979ac97bc0c5"/><file name="View.php" hash="6ab63414642658e95258a73a143e6955"/></dir><file name="Ipn.php" hash="a2225b081ccb354bfe94b4a646b0d521"/><dir name="View"><file name="Abstract.php" hash="1b9423b817bc1c0765601d73b78d0d8e"/></dir></dir><file name="Notifications.php" hash="de983b6f26e73bc5ac71b6a979d1125e"/><file name="Register.php" hash="18f5eeb19dee4926183f17e3dc5b6b88"/><dir name="Renderer"><file name="Timestamp.php" hash="190325613c20e2cf97adc28950658e99"/></dir><dir name="Sales"><file name="Order.php" hash="45a5ee919501a2bf26160d38dafccd44"/></dir><file name="SellerCentral.php" hash="2a70da712e0010b76d7f166a010f511d"/></dir><dir name="Button"><file name="Js.php" hash="6081c66a769b6db8a7f607e6f60365af"/></dir><dir name="Checkout"><file name="Abstract.php" hash="db5cf0b3d9dd37ad4552987b9df5e09c"/><file name="Js.php" hash="0e5ba9b3f4ae06139a084816c04a05a3"/><file name="Notice.php" hash="3bd2869322fac80a80436f8e2daa8d70"/><file name="SandboxToolbox.php" hash="047b1bfde3f5469195b9a7ccfee3f16d"/></dir><file name="Checkout.php" hash="6620fc17c1c86deac47709664d6a93f7"/><dir name="Customer"><dir name="Account"><dir name="Dashboard"><file name="Login.php" hash="0a8a23d61e5ea2029cc3c504e8f65d7d"/></dir></dir></dir><dir name="Js"><file name="Interface.php" hash="11827746ff821b4cbda1ad041e30321e"/></dir><file name="Js.php" hash="f5c8f0cf7d13387387ad4b2656e8d9a9"/><dir name="Login"><file name="Abstract.php" hash="d260896597dc717bd82bf2d76374a9e4"/><dir name="Account"><file name="Confirm.php" hash="ae8123a65a717a0046aaf1d9dc21f878"/><file name="Update.php" hash="8fdadae9294b17fbb0989f8d0e2016a4"/></dir><file name="Button.php" hash="bad55de20f480d53a15ddedd551ff6dd"/><file name="Js.php" hash="2d144b27681c48f2adfa8cd0fdd5d31e"/><file name="Redirect.php" hash="8634cf4f6bf792006e4ab7674b758e5c"/></dir><dir name="Onepage"><file name="Button.php" hash="9b75d05f91d17a507544fdda247eb1a7"/></dir><dir name="Pay"><file name="Abstract.php" hash="7df3aa69d74f5d11b47e9508c628ca5d"/><file name="Button.php" hash="b76cbc47c91b88ceb9fc1fde609fa2dc"/></dir><dir name="Payment"><file name="Info.php" hash="c6285a5688834b456765317d3471bf2a"/><dir name="Legacy"><file name="Info.php" hash="6d4b1d32a19c80c42bf3acccd1963ba5"/></dir></dir></dir><dir name="Exception"><dir name="InvalidStatus"><file name="Recoverable.php" hash="dc4d8857cf1841bb56f6da11cf92e99e"/><file name="Unrecoverable.php" hash="53a377c09d7c41368adf597e0173e513"/></dir><file name="InvalidStatus.php" hash="614d45747601dea035ff2a3faadd7e18"/></dir><file name="Exception.php" hash="ca655a29842b38dd2ebf438208a6c70c"/><dir name="Helper"><file name="Data.php" hash="a0282202539953a047cb17316def6b28"/><file name="Debug.php" hash="3c9fead1b33537ae7d5a4d15fb799dff"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1814fcd0d61599f15d808d9c2990ebe4"/><file name="Advanced.php" hash="0f5a3f480da20a2f8253f9b78c78f9dd"/><file name="Ipn.php" hash="e672342ca8b1f1f7493e42b9656aeabe"/><file name="Login.php" hash="d9297e66749c6930a1010a5babdfde14"/></dir><file name="Checkout.php" hash="8b80a8ae2a4b2cf595cabded2f5c3c2a"/><file name="Config.php" hash="e242b57817426a77c0f146657ab5374e"/><dir name="Log"><file name="Collection.php" hash="13d71847c4e164af18636a3fe5bf975b"/></dir><file name="Logger.php" hash="181e90628ee324547ed79cd4fb71b58c"/><dir name="Lookup"><file name="Abstract.php" hash="443bbef12f4e7c896e54cf0b7463e04e"/><file name="AccountRegion.php" hash="7be22d7cab69151e409ea7ec7df7fadc"/><file name="Authentication.php" hash="af62e3961a5b00319aa32487c6cc20d6"/><file name="AuthorizationMode.php" hash="b26806dc71de6b55bc37b20a1b804364"/><dir name="Design"><dir name="Button"><dir name="Color"><file name="LoginPay.php" hash="e9a469e82c7805782cf7694c4d50af7a"/></dir><file name="Color.php" hash="81a33471dfefb27897f7b1ff19749671"/><dir name="Size"><file name="LoginPay.php" hash="6cdf3d3633617994783a38f30add86fe"/></dir><file name="Size.php" hash="7c73a97a0fa3f4c6a73b838c0594ad5c"/><dir name="Type"><file name="Login.php" hash="44e852189b0305bbe4cc38848316d4e6"/><file name="Pay.php" hash="8e85dde5088b02f966a35c9b0a053de5"/></dir></dir></dir><file name="Frequency.php" hash="5115fb39b48781e5e97f9b62414a72cc"/><file name="IpnActive.php" hash="b73000f5bfc1e26b80911e125e9eec46"/><file name="Language.php" hash="4a9b8e24251cb3e80e9e22395b947cac"/><file name="PaymentAction.php" hash="6d0c15996ec3caf112d88e07ea703bb4"/><file name="Region.php" hash="8f5cc8ab970aa165e16085368b320f89"/></dir><file name="Observer.php" hash="0316aeff3e7c6bb028d35b6b76a6c494"/><dir name="Payment"><file name="Abstract.php" hash="3c4487ec8b65ce94a7b81b7f6079c60d"/><dir name="Advanced"><file name="Sandbox.php" hash="10e80bd587f2d27fc97bb6e595936b82"/></dir><file name="Advanced.php" hash="15c5dde1d3a82a9bdf01e1681c47ec3b"/><file name="Legacy.php" hash="654ba0aa8692416ca2721f2ebb59a883"/></dir><dir name="Processor"><file name="Ipn.php" hash="e7d757a60ea7e3481cfe3ba3466af1cc"/><file name="Order.php" hash="bea0a609138e58614fe8fdb11426bf40"/><file name="Payment.php" hash="05d099c2b8bf6dcc67ef6ea037c6594c"/><file name="TransactionAdapter.php" hash="8566292e6e7ac85471ac12f2bd155ab8"/></dir><dir name="Service"><file name="Login.php" hash="668216c8e815a4490d0c2d7ba0c6a3dc"/><file name="Quote.php" hash="d566370281e690ca31f3ddd47c21ef1d"/></dir><file name="Setup.php" hash="41f37f025dc543f63d2dccd28f41e255"/><file name="Simulator.php" hash="553bb0c0ca3c74202083b366f4c33e9a"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="DataPolling"><file name="Cron.php" hash="8beaac61d4ebfb4ac74335f5ff121ce0"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Amazonpayments"><file name="DebugController.php" hash="aedfdbe70c652afe31439b991f912e2c"/><dir name="Log"><file name="ApiController.php" hash="9a8e3361c754eec9d78d3aa62411a47b"/><file name="ExceptionController.php" hash="c5bd239ce59de35dc064cc1474d5a005"/><file name="IpnController.php" hash="6e67da69a85eba85f3c44470fab6c5b9"/></dir><file name="OrderController.php" hash="83ffbf0de858765c0c9c7c594e9b2b66"/><file name="SystemController.php" hash="516e0ec1c7cc978a087ec4b7e3d91e44"/></dir></dir><dir name="Advanced"><file name="CheckoutController.php" hash="58172a934438d67d402b6f6fb3cb7662"/><file name="IpnController.php" hash="918297ba173a73e7be05aae9a4fef0c9"/><file name="LoginController.php" hash="9d0004a3684163feeefbc9f3672300d2"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="cd249bbc1deefba11366dba61ed2386c"/><file name="config.xml" hash="0490c0c377061012f3f10b10204ccdc2"/><file name="system.xml" hash="5eed5c0724b7c889676e62fb639fde12"/></dir><dir name="sql"><dir name="amazonpayments_setup"><file name="mysql4-install-1.0.0.php" hash="d4681b9a39905cc9e9dcc660688dea85"/><file name="mysql4-install-1.6.2.php" hash="6bb2b8656a3c6b2b517b88ca98ff84de"/><file name="mysql4-upgrade-1.1.6-1.2.0.php" hash="27f8e108bac4268d3c17e812b413dbbc"/><file name="mysql4-upgrade-1.7.4-1.7.6.php" hash="cbe499399eac3dcf607dd42e9be239a1"/><file name="mysql4-upgrade-1.7.8-1.8.2.php" hash="7f858b1140aff7a4bf36545c72d0c0fe"/></dir></dir></dir></dir></target><target name="magelib"><dir name="OffAmazonPayments"><dir name="HttpRequest"><file name="HttpException.php" hash="d2feba35467baa6ff61503bb15d5f016"/><file name="IHttpRequest.php" hash="7c7d44deffb15b2db161d8dfc585c4d2"/><file name="IHttpRequestFactory.php" hash="02c9cfe067cd0ae40f14704d58fa2098"/><dir name="Impl"><file name="HttpRequestCurlImpl.php" hash="815a03cc4b5fc1222e0bc9b9f85f3428"/><file name="HttpRequestFactoryCurlImpl.php" hash="09140d0c9518e0e7c1bffb8bd0c98310"/></dir></dir><file name="Model.php" hash="778dfe809587f010352d9ccd2bed8106"/><file name="OffAmazonPaymentsServiceUtils.php" hash="827a9e9f2b04652736406b1cd9672a2c"/></dir><dir name="OffAmazonPaymentsNotifications"><file name="Client.php" hash="a8bfa462188eb5193985e984ff503b04"/><dir name="Impl"><file name="Certificate.php" hash="33aec53879fff368b0f6f52ce7f79f13"/><file name="IpnNotificationParser.php" hash="3f4e203c89d23c2971214a7e0713f6a9"/><file name="Message.php" hash="6cffc2f4b4c09a8411572cdb7ddcc83a"/><file name="OpenSslVerifySignature.php" hash="45449e157fa55ab5c2c16a9207616357"/><file name="SnsMessageParser.php" hash="c6d1b0bfa852441b4ddfdc25cf624c9d"/><file name="SnsMessageValidator.php" hash="7291f2b91f0dc9ace62752c37b69d15f"/><file name="VerifySignature.php" hash="b7c3089f35fba596e16f6f39f7029908"/><file name="XmlNotificationParser.php" hash="a6b6ff48de5cee20db383a2a6c953092"/></dir><file name="Interface.php" hash="3930f956058657059e2ea705fc43333d"/><file name="InvalidCertificateException.php" hash="4711c0ea7b574a8ab3fb04623b2f7453"/><file name="InvalidMessageException.php" hash="c9608c6ecfafeae2db9db9e8786f2a15"/><dir name="Model"><file name="AuthorizationDetails.php" hash="c5e85494dd4b21c49c1d786bf38879da"/><file name="AuthorizationNotification.php" hash="490fd1da11270f9af20a6ca0d87b8149"/><file name="BillingAgreement.php" hash="00f24d00547ddb3320a20f77132feb0e"/><file name="BillingAgreementLimits.php" hash="e972154534547bde777133c2de1e835f"/><file name="BillingAgreementNotification.php" hash="c5ee60508326e840ce02765b175897aa"/><file name="BillingAgreementStatus.php" hash="68da18941f6cc8b17a9157c83e550c0c"/><file name="CaptureDetails.php" hash="f8702f3d5d5afd595814182f847367c5"/><file name="CaptureNotification.php" hash="8d4da47b23888f3cfd94fe9d217c46da"/><file name="IdList.php" hash="4d77007c611ba2a990179ecf506d4ac7"/><file name="IpnNotificationMetadata.php" hash="802e724b1cc35eae31e4aa9288446b8f"/><file name="MerchantRegistrationDetails.php" hash="d4de7689d8e216567abd710dde7ef4ed"/><file name="NotificationImpl.php" hash="17205cb366af769c0563d80ee82de067"/><file name="NotificationMetadataImpl.php" hash="27bdabd2ae04ab753e60b0ab3042859c"/><file name="OrderItemCategories.php" hash="ac5edd66a87e28f1e0a4be758e3d7b8c"/><file name="OrderReference.php" hash="3ff8f8729cc3e398823061b73d8d2789"/><file name="OrderReferenceNotification.php" hash="4b6a0e68f77ff7b710fe00916d5b0546"/><file name="OrderReferenceStatus.php" hash="e09fc390fb5c21afd4764c41dd7418c0"/><file name="OrderTotal.php" hash="ce3157db8b593588c9405030968176a5"/><file name="Price.php" hash="cff064218bbb2d56f463ab489dc907cd"/><file name="ProviderCreditDetails.php" hash="d355185842eb0816de151fb535b14edc"/><file name="ProviderCreditNotification.php" hash="7ddc5d80dee797893171237ecabf10e2"/><file name="ProviderCreditReversalDetails.php" hash="a789bbf3c7074bc800053967e64286c7"/><file name="ProviderCreditReversalNotification.php" hash="56479587ee330013bdffe17719d0edec"/><file name="ProviderCreditReversalSummary.php" hash="577971d363b95fd7a73e8cd4995a240c"/><file name="ProviderCreditReversalSummaryList.php" hash="05ae0f9769e4c46e5c3ba3f9907ae576"/><file name="ProviderCreditSummary.php" hash="4403e12b73867b58021655df3fcf6720"/><file name="ProviderCreditSummaryList.php" hash="667167ed6a427d71086aa4ef8dabc5f5"/><file name="RefundDetails.php" hash="ae08c0447ec12996a465772d55f2c28f"/><file name="RefundNotification.php" hash="fb29285214205fd09c4f9ac7964c1a07"/><file name="SellerBillingAgreementAttributes.php" hash="691b120995ac30f3f542c3ec9cd6c0d6"/><file name="SellerOrderAttributes.php" hash="896cf700231529f39e903d4614579a85"/><file name="SnsNotificationMetadata.php" hash="df453726f714f7ea50cc04b6093123eb"/><file name="SolutionProviderMerchantNotification.php" hash="77e4152a922f1a26582e46546387943d"/><file name="SolutionProviderOption.php" hash="df8fbbb1ad2fef1796e3b42a9a417a64"/><file name="SolutionProviderOptions.php" hash="624d2f4efd3a32eab8baf8628efda4ef"/><file name="Status.php" hash="8726fde00e0f97595115866c1a8000dd"/></dir><file name="Notification.php" hash="562b2a4eb6e292b6df4db3112391ab55"/><file name="NotificationMetadata.php" hash="07f94bf3a41ed0c72f387e900260c48a"/></dir><dir name="OffAmazonPaymentsService"><file name="Client.php" hash="26dd6a2d2c407427c5ea0933e2159351"/><file name="Environments.php" hash="1a9ff744e131c19f5bd0d58c5aa578ab"/><file name="Exception.php" hash="eee23053020a397cf082a28f41001284"/><file name="Interface.php" hash="b681a546f2a5e3690e5e04f9c75ca8a5"/><file name="MerchantValues.php" hash="2cca67c2b1b0557e5a63d4ef35950172"/><file name="MerchantValuesBuilder.php" hash="a6328566f8f5ee48a8b054d8f02897e1"/><dir name="Model"><file name="Address.php" hash="6840237ae7035912f95020ff6d580033"/><file name="AuthorizationDetails.php" hash="159edfb213e12b7ecb847c103c70c5de"/><file name="AuthorizeOnBillingAgreementRequest.php" hash="8b0e8d6ffa94b1f18546b7554ec042ed"/><file name="AuthorizeOnBillingAgreementResponse.php" hash="8770715da01743adeafc25d54bb0c1d9"/><file name="AuthorizeOnBillingAgreementResult.php" hash="a73c77f8fce673257e2dca072ad6fab6"/><file name="AuthorizeRequest.php" hash="08bdab4fe2896f4a2b808c6e8abfeeba"/><file name="AuthorizeResponse.php" hash="0ae054040c36e7362683146b537f551b"/><file name="AuthorizeResult.php" hash="e7dfd388200467e736ff3b7d11c8d2bf"/><file name="BillingAddress.php" hash="93f82f074b62e8b1abf25ae8ae44b676"/><file name="BillingAgreementAttributes.php" hash="e52a2c92f92f7081ac742e24f70385df"/><file name="BillingAgreementDetails.php" hash="359f9bd686d21242f2e27feb8b3379b2"/><file name="BillingAgreementLimits.php" hash="66f84e67052b91092867496d11a28763"/><file name="BillingAgreementStatus.php" hash="adcf9379fb2f6fa88a1d8e230d8cf101"/><file name="Buyer.php" hash="cb691abf757d54025ac43964849dd5fd"/><file name="CancelOrderReferenceRequest.php" hash="ef06ecd8f05a4c032aa28f5b5a132d05"/><file name="CancelOrderReferenceResponse.php" hash="004c4e3a21ea1dc8e11bbba3d733b3ca"/><file name="CancelOrderReferenceResult.php" hash="74b7ad1facdf31263e9bb55544303180"/><file name="CaptureDetails.php" hash="4f360221d888d50d92e7f2ea20b5b54f"/><file name="CaptureRequest.php" hash="5b976a76214f870964d49cf104a50b30"/><file name="CaptureResponse.php" hash="7ece74f93f362d31bc16f9fb7bf2b270"/><file name="CaptureResult.php" hash="e0fccf0fe27efd36d822ddcdaefe97ac"/><file name="CloseAuthorizationRequest.php" hash="cb0e2113e9e36b7b133b539e5ff99c50"/><file name="CloseAuthorizationResponse.php" hash="99be7612c9effdac53fb0bc225a13eb1"/><file name="CloseAuthorizationResult.php" hash="6d77eea8924d2ef6a3acd0dabb3f9f76"/><file name="CloseBillingAgreementRequest.php" hash="89f82b30dd0902faa6feb3a57dfe24cb"/><file name="CloseBillingAgreementResponse.php" hash="1bda191dc9a8b2b1a14b6e11772f05cf"/><file name="CloseBillingAgreementResult.php" hash="f926f5d65d95323647129605a26037ae"/><file name="CloseOrderReferenceRequest.php" hash="b8b592bdc71a4046efead52196f8073c"/><file name="CloseOrderReferenceResponse.php" hash="137da00395052b25099de3a0d152887d"/><file name="CloseOrderReferenceResult.php" hash="81e21f75ae477f07a9b913e1ac2bd89d"/><file name="ConfirmBillingAgreementRequest.php" hash="ab524aa1cc6e51a8b483e4f96b7e1e02"/><file name="ConfirmBillingAgreementResponse.php" hash="0639de39ba58e6c2b806a84b43dc31d3"/><file name="ConfirmBillingAgreementResult.php" hash="42456915a3efa4ccd774a1d5d3a05307"/><file name="ConfirmOrderReferenceRequest.php" hash="632a4b8414aac550fc0ec59a83737be7"/><file name="ConfirmOrderReferenceResponse.php" hash="fb0c329ffa1a54e4c15c531b58561f6f"/><file name="Constraint.php" hash="e46dc3d18486b6639ea5b8f52a92cfdc"/><file name="Constraints.php" hash="cb983d71bda42bdda767ffc9f4feeafc"/><file name="CreateOrderReferenceForIdRequest.php" hash="b1f4e96f1392c427228f5799edc5dc64"/><file name="CreateOrderReferenceForIdResponse.php" hash="630cb4812997fa7c067f393dfb5e2f48"/><file name="CreateOrderReferenceForIdResult.php" hash="4abf7af5eb56058c17996406a877f427"/><file name="Destination.php" hash="737777909588915788398ab86f0de1de"/><file name="Error.php" hash="bb8b6bb6d3c778fc4e1d0a346b5fa03a"/><file name="ErrorResponse.php" hash="8804c6f39d9a0bdcbd76260eba9d261d"/><file name="GetAuthorizationDetailsRequest.php" hash="67d5a478c01fbbfba420dff3cf2098dc"/><file name="GetAuthorizationDetailsResponse.php" hash="0c9fe935bcb953cc9cd9e11bab32b5b2"/><file name="GetAuthorizationDetailsResult.php" hash="02ac4fa6533ccfd705c543160165c31d"/><file name="GetBillingAgreementDetailsRequest.php" hash="761cbdc44a4ac1e28b22d01f7a484b76"/><file name="GetBillingAgreementDetailsResponse.php" hash="061084469683253d1d76d5c881e5062d"/><file name="GetBillingAgreementDetailsResult.php" hash="5a585ad373b11b806ba320bcd988f71b"/><file name="GetCaptureDetailsRequest.php" hash="69252be80c32d911f2ff664904375e7d"/><file name="GetCaptureDetailsResponse.php" hash="5323ed86174064bb1122187457440861"/><file name="GetCaptureDetailsResult.php" hash="962ef27de2778c9ccde55d848b8fa649"/><file name="GetOrderReferenceDetailsRequest.php" hash="edfea06a629f298ab134229d35fef319"/><file name="GetOrderReferenceDetailsResponse.php" hash="4955733fe736a9f51e0bd6823b8bf74b"/><file name="GetOrderReferenceDetailsResult.php" hash="f9ee3738bddff51c6bd545028d275348"/><file name="GetProviderCreditDetailsRequest.php" hash="e51201c7d39935c4fa8da96e822b7075"/><file name="GetProviderCreditDetailsResponse.php" hash="e312b54192343e16230b7436b101766a"/><file name="GetProviderCreditDetailsResult.php" hash="9f0af601e8a716e4e5af3802d8952fe4"/><file name="GetProviderCreditReversalDetailsRequest.php" hash="cf74576ef8dc02e34244aca962d854b3"/><file name="GetProviderCreditReversalDetailsResponse.php" hash="a869c2695416514834c83890d3b080f9"/><file name="GetProviderCreditReversalDetailsResult.php" hash="33f1980d1632034eee8396c6286b5320"/><file name="GetRefundDetailsRequest.php" hash="7ab0f7d756a59a284ffd0ffc361fee42"/><file name="GetRefundDetailsResponse.php" hash="4847a7513f69d3f81c306d26ad7c5291"/><file name="GetRefundDetailsResult.php" hash="0c24e3c8e95f4ee10f5c4e9dd07518bf"/><file name="IdList.php" hash="25fd15394669b4721bdd0e4d367d534f"/><file name="OrderItemCategories.php" hash="995db32a92601555ee9a7550d1daae7e"/><file name="OrderReferenceAttributes.php" hash="78e1735d8fc99c5676d894564d6b88c7"/><file name="OrderReferenceDetails.php" hash="4e9365808e09fe1b1407348c9d05ca41"/><file name="OrderReferenceStatus.php" hash="5c21e44d991a24ab2527e491c435d54c"/><file name="OrderTotal.php" hash="2ff8e8ccc9c7266d72f534485ccd01bf"/><file name="ParentDetails.php" hash="99f7062b4764166637dfc44b4fe4788c"/><file name="Price.php" hash="4ac8de3791146a17a237a914c9f762a6"/><file name="ProviderCredit.php" hash="8f2f21ac5c0dba73e64a35cc7a61fbbe"/><file name="ProviderCreditDetails.php" hash="d9057efbe528a1571eda4252b8ad1813"/><file name="ProviderCreditList.php" hash="4a3eeae90b5a1ed09a528f5254b968a5"/><file name="ProviderCreditReversal.php" hash="07c1d7959a7cfb94164846c276b43ce7"/><file name="ProviderCreditReversalDetails.php" hash="ebfbf919b4a399213c7e312e59873e43"/><file name="ProviderCreditReversalList.php" hash="8eb64497a6a233535c8b0ca55591d06b"/><file name="ProviderCreditReversalSummary.php" hash="7646c582ea5fb3a46dcb09637f7daf01"/><file name="ProviderCreditReversalSummaryList.php" hash="cae281ddee9f766d1d5bf350e238037a"/><file name="ProviderCreditSummary.php" hash="69bc18eefe644e6b851a6daf7e6dfa8a"/><file name="ProviderCreditSummaryList.php" hash="751812d8903ba883036d1bc381c37667"/><file name="RefundDetails.php" hash="b53e480fe8e8e5d96a4b6a0df431e5ac"/><file name="RefundRequest.php" hash="665585551aba39532fe3352abb4859b3"/><file name="RefundResponse.php" hash="fadbc4ad5313395a48e38b1c0502c85a"/><file name="RefundResult.php" hash="9ddad34dd53edfd156651b021bc5137a"/><file name="ResponseHeaderMetadata.php" hash="382fe7bd666eea293b729c5d6c79348f"/><file name="ResponseMetadata.php" hash="073748a20ecd8bddc240dd4c0a4a56b9"/><file name="ReverseProviderCreditRequest.php" hash="802a3709149add8fa192ce389b93c2ea"/><file name="ReverseProviderCreditResponse.php" hash="ff702a7def546f0c6216094f93095bd7"/><file name="ReverseProviderCreditResult.php" hash="84f3e78e1b8b1b47e6f8b92abee7704b"/><file name="SellerBillingAgreementAttributes.php" hash="308899b9e48a95f0b5d48d74a510c915"/><file name="SellerOrderAttributes.php" hash="35b62fe0e130207dfaa2caefa1dfe7ba"/><file name="SetBillingAgreementDetailsRequest.php" hash="347a6c85c5cc8394255efcb9c4b57d52"/><file name="SetBillingAgreementDetailsResponse.php" hash="92299b3338dc7435149f17d8126f7518"/><file name="SetBillingAgreementDetailsResult.php" hash="7cb3e84e58fe2bbf163f8ac34de5eccf"/><file name="SetOrderReferenceDetailsRequest.php" hash="4cf2605f5188116a1526d463638aa768"/><file name="SetOrderReferenceDetailsResponse.php" hash="41720bdf965dcd759cc3278e01610530"/><file name="SetOrderReferenceDetailsResult.php" hash="4281a97da7865e47157c1d22c2094bfd"/><file name="Status.php" hash="28bd007e6c9747417a063e9941cc0dba"/><file name="ValidateBillingAgreementRequest.php" hash="d77beda441fd1688903e96a02fa4e643"/><file name="ValidateBillingAgreementResponse.php" hash="89658fd2a78d7dbb2997dae6ba169f7e"/><file name="ValidateBillingAgreementResult.php" hash="b9244d0496b0bbcfbf7628c775c17ca3"/></dir><file name="Model.php" hash="fafcb3a4318eb7bd9be5b69225187352"/><file name="RegionSpecificProperties.php" hash="f4e77cc63766b42fbef6ef1e07ec4402"/><file name="Regions.php" hash="4676d77db7dde345118e2a6fc021ce3f"/></dir></target></contents>
24
  <compatible/>
25
+ <dependencies><required><php><min>5.2.0</min><max>8.0.0</max></php></required></dependencies>
26
  </package>
skin/adminhtml/default/default/creativestyle/images/amazon-payments-advanced-header.png CHANGED
Binary file
skin/adminhtml/default/default/creativestyle/images/amazon-payments-advanced-section.png CHANGED
Binary file
skin/frontend/base/default/creativestyle/css/amazonpayments.css CHANGED
@@ -33,6 +33,7 @@
33
  -webkit-box-shadow: 0 0 5px#888;
34
  -moz-box-shadow: 0 0 5px #888;
35
  -o-box-shadow: 0 0 5px #888;
 
36
  }
37
  .pay-with-amazon-tooltip img {
38
  float: right;
@@ -167,3 +168,17 @@ ol.apa {
167
  border-color:#406a83;
168
  background:#618499;
169
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  -webkit-box-shadow: 0 0 5px#888;
34
  -moz-box-shadow: 0 0 5px #888;
35
  -o-box-shadow: 0 0 5px #888;
36
+ z-index: 1000;
37
  }
38
  .pay-with-amazon-tooltip img {
39
  float: right;
168
  border-color:#406a83;
169
  background:#618499;
170
  }
171
+ .dashboard .box-amazon-account {
172
+ padding-bottom: 45px;
173
+ }
174
+ .dashboard .box-amazon-account .box {
175
+ padding-top: 15px;
176
+ }
177
+ .dashboard .box-amazon-account .box .buttons {
178
+ padding-top: 10px;
179
+ }
180
+ .dashboard .box-amazon-account .box .buttons .loginButtonWidget {
181
+ float: right;
182
+ }
183
+ .apa .discount {
184
+ }
skin/frontend/rwd/default/creativestyle/css/amazonpayments.css CHANGED
@@ -171,3 +171,19 @@ ol.apa {
171
  border-color:#406a83;
172
  background:#618499;
173
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  border-color:#406a83;
172
  background:#618499;
173
  }
174
+ .dashboard .box-amazon-account {
175
+ padding-bottom: 45px;
176
+ }
177
+ .dashboard .box-amazon-account .box {
178
+ padding-top: 15px;
179
+ }
180
+ .dashboard .box-amazon-account .box .buttons {
181
+ padding-top: 10px;
182
+ }
183
+ .dashboard .box-amazon-account .box .buttons .loginButtonWidget {
184
+ float: right;
185
+ }
186
+ .apa .discount {
187
+ padding: 15px 0 10px;
188
+ text-align: right;
189
+ }