Interface_Frontend_Base_Default - Version 1.6.2.0

Version Notes

1.6.2.0

Download this release

Release Info

Developer Magento Core Team
Extension Interface_Frontend_Base_Default
Version 1.6.2.0
Comparing to
See all releases


Code changes from version 1.6.1.0 to 1.6.2.0

app/design/frontend/base/default/layout/paypal.xml CHANGED
@@ -178,9 +178,12 @@ Available logo types can be assigned with action="setLogoType":
178
 
179
  <paypal_payflow_link_iframe>
180
  <block type="paypal/payflow_link_iframe" name="payflow.link.iframe" template="paypal/payflowlink/form.phtml" />
181
- <block type="paypal/payflow_link_info" name="payflow.link.info" template="paypal/payflowlink/info.phtml" />
182
  </paypal_payflow_link_iframe>
183
 
 
 
 
 
184
  <paypal_hosted_pro_iframe>
185
  <block type="paypal/hosted_pro_iframe" name="hosted.pro.iframe" template="paypal/hss/form.phtml"/>
186
  </paypal_hosted_pro_iframe>
178
 
179
  <paypal_payflow_link_iframe>
180
  <block type="paypal/payflow_link_iframe" name="payflow.link.iframe" template="paypal/payflowlink/form.phtml" />
 
181
  </paypal_payflow_link_iframe>
182
 
183
+ <paypal_payflow_advanced_iframe>
184
+ <block type="paypal/payflow_advanced_iframe" name="payflow.advanced.iframe" template="paypal/payflowadvanced/form.phtml" />
185
+ </paypal_payflow_advanced_iframe>
186
+
187
  <paypal_hosted_pro_iframe>
188
  <block type="paypal/hosted_pro_iframe" name="hosted.pro.iframe" template="paypal/hss/form.phtml"/>
189
  </paypal_hosted_pro_iframe>
app/design/frontend/base/default/template/paypal/express/review.phtml CHANGED
@@ -89,7 +89,9 @@
89
  <div class="col-1">
90
  <div class="box">
91
  <div class="box-title">
92
- <h3><?php echo $this->__('Payment Method') ?> <span class="separator">|</span> <a href="<?php echo $this->getEditUrl() ?>"><?php echo $this->__('Change Payment Method') ?></a></h3>
 
 
93
  </div>
94
  <div class="box-content">
95
  <?php echo $this->escapeHtml($this->getPaymentMethodTitle()) ?>
@@ -135,6 +137,51 @@ if ($('update_shipping_method_submit')) {
135
  $('update_shipping_method_submit').hide();
136
  }
137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  PayPalExpressAjax = new OrderReviewController($('order_review_form'), $('review_button'),
139
  $('shipping_method'), $('shipping_method_form'), 'details-reload'
140
  );
89
  <div class="col-1">
90
  <div class="box">
91
  <div class="box-title">
92
+ <h3><?php echo $this->__('Payment Method') ?> <span class="separator">|</span>
93
+ <?php if($this->getEditUrl()):?><a href="<?php echo $this->getEditUrl() ?>"><?php echo $this->__('Change Payment Method') ?></a> <?php endif ?>
94
+ </h3>
95
  </div>
96
  <div class="box-content">
97
  <?php echo $this->escapeHtml($this->getPaymentMethodTitle()) ?>
137
  $('update_shipping_method_submit').hide();
138
  }
139
 
140
+ <?php if ($this->getUseAjax()):?>
141
+ OrderReviewController.prototype._submitOrder = function() {
142
+ if (this._canSubmitOrder) {
143
+ if (this._pleaseWait) {
144
+ this._pleaseWait.show();
145
+ }
146
+ new Ajax.Request(this.form.action, {
147
+ parameters: {isAjax: 1, method: 'POST'},
148
+ onSuccess: function(transport) {
149
+ try{
150
+ response = eval('(' + transport.responseText + ')');
151
+ } catch (e) {
152
+ response = {};
153
+ }
154
+ if (response.redirect) {
155
+ setLocation(response.redirect);
156
+ return;
157
+ }
158
+ if (response.success) {
159
+ setLocation('<?php echo $this->getSuccessUrl()?>');
160
+ return;
161
+ } else {
162
+ var msg = response.error_messages;
163
+ if (typeof(msg)=='object') {
164
+ msg = msg.join("\n");
165
+ }
166
+ if (msg) {
167
+ $('review-please-wait').hide();
168
+ alert(msg);
169
+ return;
170
+ }
171
+ }
172
+ $('review-please-wait').hide();
173
+ alert('<?php echo $this->jsQuoteEscape($this->__('Unknown Error. Please try again later.')); ?>');
174
+ return;
175
+ },
176
+ onFailure: function(){
177
+ alert('<?php echo $this->jsQuoteEscape($this->__('Server Error. Please try again.')) ?>');
178
+ $('review-please-wait').hide();
179
+ }
180
+ });
181
+ }
182
+ }
183
+ <?php endif ?>
184
+
185
  PayPalExpressAjax = new OrderReviewController($('order_review_form'), $('review_button'),
186
  $('shipping_method'), $('shipping_method_form'), 'details-reload'
187
  );
app/design/frontend/base/default/template/paypal/payflowadvanced/form.phtml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+
27
+ /**
28
+ * @var $this Mage_Paypal_Block_Payflow_Advanced_Iframe
29
+ */
30
+ ?>
31
+ <html>
32
+ <head></head>
33
+ <body>
34
+ <form id="token_form" method="POST" action="<?php echo $this->getTransactionUrl() ?>">
35
+ <input type="hidden" name="SECURETOKEN" value="<?php echo $this->getSecureToken(); ?>" />
36
+ <input type="hidden" name="SECURETOKENID" value="<?php echo $this->getSecureTokenId(); ?>" />
37
+ <input type="hidden" name="MODE" value="<?php echo $this->isTestMode() ? 'TEST' : 'LIVE'; ?>" />
38
+ </form>
39
+ <script type="text/javascript">
40
+ //<![CDATA[
41
+ document.getElementById('token_form').submit();
42
+ //]]>
43
+ </script>
44
+ </body>
45
+ </html>
app/design/frontend/base/default/template/paypal/payflowadvanced/iframe.phtml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ /** @var $this Mage_Paypal_Block_Payflow_Advanced_Form */
27
+ ?>
28
+ <div id="iframe-warning" class="warning-message">
29
+ <?php echo $this->__('Please do not refresh the page until you complete payment.') ?>
30
+ </div>
31
+ <iframe id="payflow-advanced-iframe" style="display:none;" scrolling="no" frameborder="0" border="0" src="<?php echo $this->getFrameActionUrl() ?>" height="610" width="570"></iframe>
32
+ <script type="text/javascript">
33
+ //<![CDATA[
34
+ var headers = $$('#' + checkout.accordion.container.readAttribute('id') + ' .section');
35
+ headers.each(function(header) {
36
+ header.removeClassName('allow');
37
+ });
38
+ $('payflow-advanced-iframe').observe('load', function(){
39
+ $('payflow-advanced-iframe').show();
40
+ $('iframe-warning').show();
41
+ checkout.loadWaiting = 'review';
42
+ checkout.setLoadWaiting(false);
43
+ if (checkout.accordion.currentSection == 'opc-review') {
44
+ $('checkout-review-submit').hide();
45
+ }
46
+ });
47
+ //]]>
48
+ </script>
app/design/frontend/base/default/template/paypal/payflowadvanced/info.phtml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+
27
+ /**
28
+ * @var $this Mage_Paypal_Block_Payflow_Advanced_Form
29
+ */
30
+ ?>
31
+ <ul id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none" class="form-list">
32
+ <li>
33
+ <?php echo $this->__('You will be required to enter your payment details after you place an order.') ?>
34
+ </li>
35
+ </ul>
app/design/frontend/base/default/template/paypal/payflowadvanced/redirect.phtml ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+
27
+ /**
28
+ * @var $this Mage_Paypal_Block_Payflow_Advanced_Iframe
29
+ */
30
+ ?>
31
+ <html>
32
+ <head>
33
+ <script type="text/javascript">
34
+ //<![CDATA[
35
+ if (window.top == window.self) {
36
+ window.location = "<?php echo $this->getUrl('checkout/cart') ?>";
37
+ }
38
+ var window_top = window.top;
39
+ <?php if ($this->getGotoSection()): ?>
40
+ var checkout_steps;
41
+
42
+ try{
43
+ checkout_steps = window.top.checkout.steps
44
+ }catch(e){
45
+ window_top.location="<?php echo $this->getUrl('checkout/cart') ?>";
46
+ }
47
+
48
+ for (var s = 0; s < checkout_steps.length; s++) {
49
+ if (checkout_steps[s] == '<?php echo $this->getGotoSection() ?>') {
50
+ break;
51
+ }
52
+ if (window_top.document.getElementById('opc-' + checkout_steps[s])) {
53
+ window_top.document.getElementById('opc-' + checkout_steps[s]).addClassName('allow');
54
+ }
55
+ }
56
+ window_top.checkout.gotoSection("<?php echo $this->getGotoSection() ?>");
57
+ window_top.document.getElementById('checkout-review-submit').show();
58
+ window_top.document.getElementById('iframe-warning').hide();
59
+ <?php if ($this->getErrorMsg()): ?>
60
+ alert('<?php echo $this->getErrorMsg() ?>');
61
+ <?php endif; ?>
62
+ <?php elseif ($this->getGotoSuccessPage()) : ?>
63
+ window_top.location="<?php echo $this->getUrl('checkout/onepage/success') ?>";
64
+ <?php else : ?>
65
+ window_top.location="<?php echo $this->getUrl('checkout/cart') ?>";
66
+ <?php endif; ?>
67
+ //]]>
68
+ </script>
69
+ </head>
70
+ <body></body>
71
+ </html>
app/design/frontend/base/default/template/paypal/payflowlink/iframe.phtml CHANGED
@@ -25,95 +25,24 @@
25
  */
26
  /** @var $this Mage_Paypal_Block_Payflow_Link_Form */
27
  ?>
28
- <?php $_code=$this->getMethodCode() ?>
29
- <div id="payment_form_<?php echo $_code ?>" style="display:none;">
30
- <div id="iframe-warning" class="warning-message" style="display:none;">
31
  <?php echo $this->__('Please do not refresh the page until you complete payment.') ?>
32
  </div>
33
-
34
  <script type="text/javascript">
35
  //<![CDATA[
36
- var PayflowLink = Class.create();
37
- PayflowLink.prototype = {
38
- stepName: 'payment',
39
- loadingText: ' <?php echo $this->__('Loading payment information...') ?> ',
40
- loadingDefaultText: '',
41
- buttonContinue: '',
42
- pleaseWaitBox: '',
43
- pleaseWaitBoxTextNode: '',
44
- initialize: function(){
45
- this.buttonContinue = $(this.stepName + '-buttons-container').select('button').first();
46
- this.pleaseWaitBox = $(this.stepName + '-please-wait');
47
-
48
- if (Prototype.Browser.IE) {
49
- this.pleaseWaitBoxTextNode = this.pleaseWaitBox.childNodes[1];
50
- } else {
51
- this.pleaseWaitBoxTextNode = this.pleaseWaitBox.childNodes[2];
52
- }
53
-
54
- this.loadingDefaultText = this.pleaseWaitBoxTextNode.nodeValue;
55
- },
56
- showFrame: function(){
57
- if (!$('payflow-link-iframe')) {
58
- this.showLoading();
59
- checkout.setLoadWaiting(this.stepName);
60
- var payflowLinkIframe = '<iframe id="payflow-link-iframe" style="display:none;" scrolling="no" frameborder="0" border="0" '
61
- + 'src="<?php echo $this->getFrameActionUrl() ?>" height="610" width="570"></iframe>';
62
- $('payment_form_<?php echo $_code ?>').insert({bottom:payflowLinkIframe});
63
- $('payflow-link-iframe').observe('load', function(){
64
- if (!$('payflow-link-iframe').visible()) {
65
- $('payflow-link-iframe').show();
66
- $('iframe-warning').show();
67
- }
68
- payflowLink.setSpinnerDefaultText();
69
- checkout.setLoadWaiting(false, true);
70
- $(payflowLink.buttonContinue).addClassName('disabled');
71
-
72
- window.name = '<?php echo Mage::getBaseUrl(); ?>';
73
- });
74
- } else {
75
- $(this.buttonContinue).addClassName('disabled');
76
- checkout.setLoadWaiting(this.stepName);
77
- checkout.setLoadWaiting(false, true);
78
- }
79
- },
80
- hideFrame: function(){
81
- checkout.setLoadWaiting(this.stepName);
82
- checkout.setLoadWaiting(false);
83
- $(this.buttonContinue).removeClassName('disabled');
84
- },
85
- setSpinnerText: function(text){
86
- if (!text) {
87
- text = this.loadingText;
88
- }
89
- this.pleaseWaitBoxTextNode.nodeValue = text;
90
- },
91
- setSpinnerDefaultText: function(){
92
- this.pleaseWaitBoxTextNode.nodeValue = this.loadingDefaultText;
93
- },
94
- showLoading: function(){
95
- this.setSpinnerText();
96
- $(this.buttonContinue).addClassName('disabled');
97
- checkout.setLoadWaiting(this.stepName);
98
- }
99
- }
100
- var payflowLink;
101
-
102
- Event.observe($('payment_form_<?php echo $_code ?>'), 'payment-method:switched', function(event){
103
- if (!window.payflowLink) {
104
- window.payflowLink = new PayflowLink();
105
- }
106
- if (!payflowLink) {
107
- payflowLink = window.payflowLink;
108
- }
109
- payflowLink.showFrame();
110
  });
111
- Event.observe($('payment_form_<?php echo $_code ?>'), 'payment-method:switched-off', function(event){
112
- payflowLink.hideFrame();
 
 
 
 
 
 
113
  });
114
- if ($('p_method_payflow_link').checked) {
115
- $('payment_form_<?php echo $_code ?>').fire('payment-method:switched', {method_code : '<?php echo $_code ?>'});
116
- }
117
  //]]>
118
  </script>
119
- </div>
25
  */
26
  /** @var $this Mage_Paypal_Block_Payflow_Link_Form */
27
  ?>
28
+ <div id="iframe-warning" class="warning-message">
 
 
29
  <?php echo $this->__('Please do not refresh the page until you complete payment.') ?>
30
  </div>
31
+ <iframe id="payflow-link-iframe" style="display:none;" scrolling="no" frameborder="0" border="0" src="<?php echo $this->getFrameActionUrl() ?>" height="610" width="570"></iframe>
32
  <script type="text/javascript">
33
  //<![CDATA[
34
+ var headers = $$('#' + checkout.accordion.container.readAttribute('id') + ' .section');
35
+ headers.each(function(header) {
36
+ header.removeClassName('allow');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  });
38
+ $('payflow-link-iframe').observe('load', function(){
39
+ $('payflow-link-iframe').show();
40
+ $('iframe-warning').show();
41
+ checkout.loadWaiting = 'review';
42
+ checkout.setLoadWaiting(false);
43
+ if (checkout.accordion.currentSection == 'opc-review') {
44
+ $('checkout-review-submit').hide();
45
+ }
46
  });
 
 
 
47
  //]]>
48
  </script>
 
app/design/frontend/base/default/template/paypal/payflowlink/info.phtml CHANGED
@@ -25,17 +25,11 @@
25
  */
26
 
27
  /**
28
- * @var $this Mage_Paypal_Block_Payflow_Link_Info
29
  */
30
  ?>
31
- <html>
32
- <head></head>
33
- <body>
34
- <script type="text/javascript">
35
- var errorMessage = '<?php echo $this->getErrorMessage() ?>';
36
- if (errorMessage) {
37
- alert(errorMessage);
38
- }
39
- </script>
40
- </body>
41
- </html>
25
  */
26
 
27
  /**
28
+ * @var $this Mage_Paypal_Block_Payflow_Link_Form
29
  */
30
  ?>
31
+ <ul id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none" class="form-list">
32
+ <li>
33
+ <?php echo $this->__('You will be required to enter your payment details after you place an order.') ?>
34
+ </li>
35
+ </ul>
 
 
 
 
 
 
app/design/frontend/base/default/template/paypal/payflowlink/redirect.phtml CHANGED
@@ -23,60 +23,46 @@
23
  * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
 
26
  /**
27
- * @var $this Mage_Paypal_Block_Iframe
28
  */
29
  ?>
30
  <html>
31
  <head>
32
  <script type="text/javascript">
33
  //<![CDATA[
34
- function allowCheckoutSteps(allow)
35
- {
36
- var window_top = window.top;
37
- for (var s = 0; s < window_top.checkout.steps.length; s++) {
38
- if (window_top.checkout.steps[s] == '<?php echo $this->getGotoSection() ?>') {
39
- break;
40
- }
41
- if (window_top.document.getElementById('opc-' + window_top.checkout.steps[s])) {
42
- if (allow) {
43
- window_top.document.getElementById('opc-' + window_top.checkout.steps[s]).addClassName('allow');
44
- } else {
45
- window_top.document.getElementById('opc-' + window_top.checkout.steps[s]).removeClassName('allow');
46
- }
47
- }
48
- }
49
  }
50
- var window_name = '<?php echo Mage::getBaseUrl(); ?>';
51
- var window_top = window.top;
52
- var allowed_domain = false;
53
- try{
54
- allowed_domain = window_name == window_top.name
55
- }catch(e){
56
- allowed_domain = false;
57
- }
58
- <?php if ($this->getErrorMsg()): ?>
59
- alert('<?php echo $this->getErrorMsg() ?>');
60
- if (allowed_domain) {
61
- window_top.payflowLink.showLoading();
62
  }
63
- window.location = "<?php echo $this->getUrl('paypal/payflow/form') ?>";
64
- <?php else: ?>
65
- if (allowed_domain) {
66
- <?php if ($this->getGotoSection()): ?>
67
- allowCheckoutSteps(true);
68
- <?php if ($this->getGotoSection() == 'review'): ?>
69
- allowCheckoutSteps(false);
70
- window_top.payment.save();
71
- <?php else : ?>
72
- window_top.checkout.gotoSection("<?php echo $this->getGotoSection() ?>");
73
- <?php endif; ?>
74
- <?php else : ?>
75
- window_top.location="<?php echo $this->getUrl('checkout/cart') ?>";
76
- <?php endif; ?>
77
- } else {
78
- alert('<?php echo $this->__('Wrong configuration of Payment Method');?>');
79
  }
 
 
 
 
 
 
 
 
 
 
80
  <?php endif; ?>
81
  //]]>
82
  </script>
23
  * @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
+
27
  /**
28
+ * @var $this Mage_Paypal_Block_Payflow_Link_Iframe
29
  */
30
  ?>
31
  <html>
32
  <head>
33
  <script type="text/javascript">
34
  //<![CDATA[
35
+ if (window.top == window.self) {
36
+ window.location = "<?php echo $this->getUrl('checkout/cart') ?>";
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  }
38
+ var window_top = window.top;
39
+ <?php if ($this->getGotoSection()): ?>
40
+ var checkout_steps;
41
+
42
+ try{
43
+ checkout_steps = window.top.checkout.steps
44
+ }catch(e){
45
+ window_top.location="<?php echo $this->getUrl('checkout/cart') ?>";
 
 
 
 
46
  }
47
+
48
+ for (var s = 0; s < checkout_steps.length; s++) {
49
+ if (checkout_steps[s] == '<?php echo $this->getGotoSection() ?>') {
50
+ break;
51
+ }
52
+ if (window_top.document.getElementById('opc-' + checkout_steps[s])) {
53
+ window_top.document.getElementById('opc-' + checkout_steps[s]).addClassName('allow');
54
+ }
 
 
 
 
 
 
 
 
55
  }
56
+ window_top.checkout.gotoSection("<?php echo $this->getGotoSection() ?>");
57
+ window_top.document.getElementById('checkout-review-submit').show();
58
+ window_top.document.getElementById('iframe-warning').hide();
59
+ <?php if ($this->getErrorMsg()): ?>
60
+ alert('<?php echo $this->getErrorMsg() ?>');
61
+ <?php endif; ?>
62
+ <?php elseif ($this->getGotoSuccessPage()) : ?>
63
+ window_top.location="<?php echo $this->getUrl('checkout/onepage/success') ?>";
64
+ <?php else : ?>
65
+ window_top.location="<?php echo $this->getUrl('checkout/cart') ?>";
66
  <?php endif; ?>
67
  //]]>
68
  </script>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Interface_Frontend_Base_Default</name>
4
- <version>1.6.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>This is a Magento themes base</summary>
10
  <description>This is a Magento themes base</description>
11
- <notes>1.6.1.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2011-10-19</date>
14
- <time>11:50:01</time>
15
- <contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="etc"><file name="widget.xml" hash="f63caeba70daa2b5d519f4e4ce600ffd"/></dir><dir name="layout"><file name="authorizenet.xml" hash="3d014b09a6948ca0d07e663f0bb83319"/><file name="bundle.xml" hash="cad0ebd289559fca63923af7b7501c04"/><file name="catalog.xml" hash="5e09bd0bc301c8f0ce9610e27cbb9551"/><file name="catalog_msrp.xml" hash="ff5c4e7f8d08d367656f34e72d411a17"/><file name="cataloginventory.xml" hash="059cd8ec8fe165d4dfb20b1b365e0ad3"/><file name="catalogsearch.xml" hash="9618072bb6a7b560b145b41eb535ff04"/><file name="checkout.xml" hash="f7543b676b5cac8abdf2309e61013cb3"/><file name="cms.xml" hash="48295546e80ab4e5f472e76ea34f8472"/><file name="contacts.xml" hash="ecdd1586728f8592b2218d46b1e88561"/><file name="core.xml" hash="fecc935067e39799313380ea48e9e6c1"/><file name="customer.xml" hash="758374cebc9d0e2543ea84ad6e965904"/><file name="directory.xml" hash="237b6461de0764e4296c9c3c5c742e2d"/><file name="downloadable.xml" hash="3160e7698dfe684f97f5f4a6003d5b0d"/><file name="googleanalytics.xml" hash="86d401b3d4268bc1947ab84694bae81c"/><file name="googlecheckout.xml" hash="8abad55dba3bd1e6cecf5700aeef906b"/><file name="newsletter.xml" hash="2c2e01afa8aff2687b55358fca8223a8"/><file name="page.xml" hash="3392c3162eb8860738d2da6303791dd0"/><file name="pagecache.xml" hash="cfbd54dc05336c777f421d939151df03"/><file name="payment.xml" hash="2726f3e63bff0398c5d3a8a76be4189d"/><file name="paypal.xml" hash="7395e8d20085b799a87956eef4976d70"/><file name="paypaluk.xml" hash="a32906ee52d1c4c552b9ad1240e27a7c"/><file name="persistent.xml" hash="38e568f2c513d03e6312428c67155542"/><file name="poll.xml" hash="be8b61f2898f83c3a575b27866399b1e"/><file name="productalert.xml" hash="aefe2a2415ca235afcbf0eee3160573d"/><file name="reports.xml" hash="5403dc921b7dcf8d0926c9bdf2bd4377"/><file name="review.xml" hash="520ef8a5f50453aaa5f3db2dc7e1996e"/><file name="rss.xml" hash="aa85d144ecfbd0e8a3ae8f9bc174b063"/><dir name="sales"><file name="billing_agreement.xml" hash="6a67c8633d708d7706c1350161a4d25b"/><file name="recurring_profile.xml" hash="afb5dcfc4e5918d59a03a3fcf8d7cdd0"/></dir><file name="sales.xml" hash="0c5257b2d9b7e8d95a0b56140634b2f5"/><file name="sendfriend.xml" hash="3e3fa92effc21537cb89ba7a332d8b59"/><file name="shipping.xml" hash="65df35ef39f20c49ec4a9ea3aba820ab"/><file name="tag.xml" hash="ebefadc88a6e5307e1e7f77c42cd268e"/><file name="weee.xml" hash="3141468e63406d77fbf478257767cce1"/><file name="wishlist.xml" hash="8d5055cfcc8d7f14944edd08f0db716c"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="fe575685affc4388f25080f01408f676"/><file name="iframe.phtml" hash="878ef1268c71be62bda731aec1e8aa79"/><file name="info.phtml" hash="c2ab414445bd1b3368b5c87559c70267"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="list"><file name="partof.phtml" hash="f2bfc20a43080ed1110c3fe4d2384eda"/></dir><file name="price.phtml" hash="2e090cf9179d7b59e8ab81e0a66d4711"/><dir name="view"><dir name="options"><file name="notice.phtml" hash="9c5df8fe4e2c774530968e5026240a3d"/></dir><file name="price.phtml" hash="cd7da22c87a6c9f13941f1435ef3427b"/><file name="tierprices.phtml" hash="70391f19e0bc54a7e8c596ceea57af61"/><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="d10cf4140111655ae1a5e65a73e9448d"/><file name="multi.phtml" hash="30cc14a0b5ce3ecb2ae67864d7dccdeb"/><file name="radio.phtml" hash="4b379381f722086cf3bc13cf7ab32a9c"/><file name="select.phtml" hash="de6e0780829bfd6ce37bcb69d5d3383d"/></dir><file name="options.phtml" hash="6559d2b5784629d24dfff6a612f08986"/></dir><file name="bundle.phtml" hash="6518757d10d74f4b2ae08d912bf99a4f"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="e8b621b4dc1c5195bc6b5feafe112cfe"/></dir><dir name="invoice"><file name="default.phtml" hash="394ea31ea9ac7f1407d7061ca1d77522"/></dir><dir name="order"><file name="default.phtml" hash="2949db6f7484fc9fff5688e298fdf21e"/></dir><dir name="shipment"><file name="default.phtml" hash="dabc362995275cb96c85807451367216"/></dir></dir></dir></dir><dir name="rss"><dir name="catalog"><dir name="product"><file name="price.phtml" hash="1d271485c24dc7e9d18e7c6e2fda59f8"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="8ecc1a7adc816d73b5cdd170ce18dd5a"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="35916c5c3d337262d874daea641f14a3"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="257cb4e7992496bc8bf9a3ae2f3c0e89"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="ee40a81975d9e2a849cd54267af80cd1"/></dir></dir></dir></dir></dir><dir name="callouts"><file name="left_col.phtml" hash="e3322c58170dc9fb0f98226aeb3d8d41"/><file name="right_col.phtml" hash="e3322c58170dc9fb0f98226aeb3d8d41"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="a422afbbc4ad2583f8c0763299b0f5e7"/><file name="view.phtml" hash="029628edc3a221b17e2c4fdf8ad86614"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="ed2e3519fb59d9de1338a2b96b106b16"/><file name="link_inline.phtml" hash="9324821268ac2d7cfbb668c1a35b8b57"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="7f07dae8c69eff41a17b15c27a3e26e7"/><file name="state.phtml" hash="e7a11368a9e6149bba8c820d0ad4e981"/><file name="view.phtml" hash="b6e1e399509132ed39f8ea474a642f60"/></dir><dir name="msrp"><file name="popup.phtml" hash="8bae34b23d5666071f74d00349c4c113"/></dir><dir name="navigation"><file name="left.phtml" hash="3ec84f187ebbea1e9950731a9c1df65c"/><file name="top.phtml" hash="b5afe15b614b67e7ce45c75e93b146d7"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="df52f41d9a0681aa844478f6506ebade"/><file name="sidebar.phtml" hash="4e7f669a8cbd46d91007ab7952e51de9"/></dir><file name="gallery.phtml" hash="ca91ee340cae160702cdb2cdbc7d6151"/><dir name="list"><file name="related.phtml" hash="0aec7474c026bcb63956e6b729a5fd09"/><file name="toolbar.phtml" hash="d87c9cb2faf54c136b3eb4ef0941bd80"/><file name="upsell.phtml" hash="76e2ccfb4e6f91e3dac7aeeb20e6b806"/></dir><file name="list.phtml" hash="64e9d60d16847cb664ff12e9f9d09166"/><file name="new.phtml" hash="9e2d685a596d13d1e7e4426b024ba7d1"/><file name="price.phtml" hash="946ad2821bdbe8b8ef6485262ffcd863"/><file name="price_msrp.phtml" hash="4b0bade08c56a42a3cf4cc1e2ba74c0c"/><file name="price_msrp_item.phtml" hash="3c876155d5aa6f8905fda0f77de22b93"/><file name="price_msrp_noform.phtml" hash="7543a1ba00863b5c8f2612104468118d"/><file name="price_msrp_rss.phtml" hash="b1815194a27b54fed44da2ad045a55bf"/><dir name="view"><file name="additional.phtml" hash="bb4b797e2baba894ea0aa5516b986669"/><file name="addto.phtml" hash="2666193292d9d9ee38dc5e9d0072daa3"/><file name="addtocart.phtml" hash="7a570a21026e649d31b46994cd07178d"/><file name="attributes.phtml" hash="aa0ebbb858612b3b96798868c7bb8b56"/><file name="description.phtml" hash="f694967bf8f4a9520d284eba91913120"/><file name="media.phtml" hash="5d18f9c16fdc8f49f94377c00046d05d"/><dir name="options"><file name="js.phtml" hash="4cef65b9b14c56b134404dcf471eba8c"/><dir name="type"><file name="date.phtml" hash="96bb4e38f428fb6041709e552b733f78"/><file name="default.phtml" hash="545d8cedeb20c23d83f66f473c24e9ee"/><file name="file.phtml" hash="26419fac88298374ed0cd2e9b2c0d22f"/><file name="select.phtml" hash="fc764b2f3e94fc261bf6b8d558d2897a"/><file name="text.phtml" hash="a836aecfc903d0466d96bd4e25f7fa58"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="3ea9a96f4bd6b3efe142ea7d5a6e5a39"/></dir><file name="wrapper.phtml" hash="77ce7d5a4f4fb1d41b72ec507289a235"/></dir><file name="options.phtml" hash="52098ac0825ce56179ff9952956894e9"/><file name="price.phtml" hash="daddc2f288210beabb2e676b3362f6b7"/><file name="price_clone.phtml" hash="d980a8e9aa84f3aeedc2a112f3b89055"/><file name="tierprices.phtml" hash="03f663b881bc83e2c4ac434054e3b3d2"/><dir name="type"><file name="configurable.phtml" hash="ad44caa1bd294a9f0eadef3af0e01355"/><file name="default.phtml" hash="7d681338357b9f5165642b6924da5bb4"/><file name="grouped.phtml" hash="9872f617e94bd27321f0c2d3b8e8a8fa"/><dir name="options"><file name="configurable.phtml" hash="db78b70b5e83be1fddc86f6428c2991c"/></dir><file name="simple.phtml" hash="ad44caa1bd294a9f0eadef3af0e01355"/><file name="virtual.phtml" hash="ad44caa1bd294a9f0eadef3af0e01355"/></dir></dir><file name="view.phtml" hash="4c460373037d049fa9ddd8d0538e5d1d"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="534295a2078ed9feffb31d3fa388e74d"/><file name="link_inline.phtml" hash="5d7b6eba333e3508484efb12fecb8be4"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="e92ce2fb508e23cd14a5a8becb1c06ea"/><file name="new_images_list.phtml" hash="9203d98cb665a69b548cba7b806f7997"/><file name="new_names_list.phtml" hash="f22297b7fb2aebb255b2ffffb4d6d0e0"/></dir><dir name="content"><file name="new_grid.phtml" hash="bf189d468b68dd7add41e993a0c00be0"/><file name="new_list.phtml" hash="ee092a9aa4107d219865c1c1ee51d9ae"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="cc019b43c8faecc3e0498e3715f6bc5a"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="a71d1513ba7368094508e4f721c3efe8"/></dir><file name="sitemap.phtml" hash="6f64266cb06b050a19c6814dbefaa05f"/><file name="tree.phtml" hash="470261b75ae32b0e4df42c82c6d741dc"/></dir></dir><dir name="cataloginventory"><file name="qtyincrements.phtml" hash="8b7d5adee5daf7e06de20801c4361a6c"/><dir name="stockqty"><file name="composite.phtml" hash="efe503de9b4fa8450e124c277d141f20"/><file name="default.phtml" hash="bc4bf2f3da436016f88e0e962fb7d12c"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="3d05449b07acafdcef80ce935638bc1f"/><file name="result.phtml" hash="b907c965ebbc11ecb2c5641bc9a897fd"/></dir><file name="form.mini.phtml" hash="4377724da3b8fe8adc82479c00e98cc4"/><file name="result.phtml" hash="6a1b9285c6360bf2ade9e614910b55eb"/><file name="term.phtml" hash="d9c3661bb61932e8e58b6d84c2ed89ce"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="eba44b9180991c98ce4c293d04da3487"/><file name="crosssell.phtml" hash="12a188c192367e1f65fa5b38ec8c29eb"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="9c7f876a4590cfb42ed0f5b467338a75"/></dir><file name="default.phtml" hash="9e9954605897c26dfbf0f4defb4a4ff8"/></dir><file name="noItems.phtml" hash="e3955e167277acd3d6853b60a40c7887"/><dir name="render"><file name="default.phtml" hash="29ce75bcbf371e45ee9d8d8c62ca2e5d"/><file name="simple.phtml" hash="619bbb0a91946ef78d695298843d92d2"/></dir><file name="shipping.phtml" hash="93c13b60e69aadbf9049ad89f9ba5845"/><dir name="sidebar"><file name="default.phtml" hash="ae1ef6d32c067d080aa54c4be2ea7ef6"/></dir><file name="sidebar.phtml" hash="cb7ddfd840117882765d5907068bfc86"/><file name="totals.phtml" hash="758df523d4cfa396a77ae4e6da36e0a6"/></dir><file name="cart.phtml" hash="03aa15aa9ed98d18483427749825512d"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="5890f841fb8c1836e0aaab46cfea7971"/></dir><file name="addresses.phtml" hash="2a8a8fa4e9178083a132afa458f9af1e"/><file name="agreements.phtml" hash="ee2908b67df859eb11ba40961e238cc4"/><dir name="billing"><file name="items.phtml" hash="9b5ad70cf6030ac066884188f337960e"/></dir><file name="billing.phtml" hash="2a60b67ae559bed4341a71636350d888"/><dir name="item"><file name="default.phtml" hash="1667635f057c3ad6a1b06312818d7689"/></dir><file name="link.phtml" hash="6afc0adeb590ab9ba4913c6ac319780e"/><dir name="overview"><file name="item.phtml" hash="d2034aaebc5017bfa4718dbfe30a5c50"/></dir><file name="overview.phtml" hash="85078bbc7b18e54e72693ed35c55b011"/><file name="shipping.phtml" hash="11eb1a5113c6e4472f53101743a3b919"/><file name="state.phtml" hash="7e23eaf4442153dc77a8dbe56c1a1e23"/><file name="success.phtml" hash="bba79f1bc10619afa55dda7f6f993f7f"/></dir><dir name="onepage"><file name="agreements.phtml" hash="fd268340ecbb77804053350f311b0a6d"/><file name="billing.phtml" hash="df00d4efc259d69d86134ed593ebcac9"/><file name="failure.phtml" hash="aff5c96bf56a4b92b8517f3a0021c887"/><file name="link.phtml" hash="f7d753b83b2c884dee5f6200ba43f4f1"/><file name="login.phtml" hash="5256b8159ac5d40753911a4b8116c670"/><dir name="payment"><file name="methods.phtml" hash="c197a93d7c9aa7d21f1672734da1bce7"/></dir><file name="payment.phtml" hash="152ff2082211ff1f02b827a66b333006"/><file name="progress.phtml" hash="0e02e2bef8a221563fc57008372044d2"/><dir name="review"><file name="button.phtml" hash="28eeca062cba79dc34945807e8c98862"/><file name="info.phtml" hash="ec1a5ee2f5efbb08bc5b842dfc317ac6"/><file name="item.phtml" hash="9a399a320ef6a2658ff13994d0db9241"/><file name="totals.phtml" hash="478258f78b0240ba5618d2b09900ef10"/></dir><file name="review.phtml" hash="bf4f49fcb90e40ba9225c6d362fdf2ff"/><file name="shipping.phtml" hash="c86e20d2d08fc5c8effd769c2cb1908c"/><dir name="shipping_method"><file name="additional.phtml" hash="e63f3af8ccc648c6a72301367237ecbc"/><file name="available.phtml" hash="bb3d64323da99736b2ebdad2d9e8b5a8"/></dir><file name="shipping_method.phtml" hash="ab17c9f73c9eabaace93f509318aabe2"/></dir><file name="onepage.phtml" hash="e60c47a0a87ec81c4fbd39938c315c69"/><file name="success.phtml" hash="9b0492208ddbd2d5d70457e419f43dc3"/><dir name="total"><file name="default.phtml" hash="b8f93b97141a4897770474050933ac8c"/><file name="nominal.phtml" hash="8615df567defcfc7c02b1b9e27db6c60"/><file name="tax.phtml" hash="6effef82ec3f4a2d7afa573e29928c76"/></dir></dir><dir name="cms"><file name="content.phtml" hash="063ff5fefdc9c23a839c61fbf31e6470"/><file name="content_heading.phtml" hash="8f41c0b3480e1f932147ae20be8dc8ee"/><dir name="default"><file name="home.phtml" hash="c8dea1cdfb2769e1a5caa3ce612e20b5"/><file name="no-route.phtml" hash="c178dad9c2ab98233dcc4e6d3990aff5"/></dir><file name="meta.phtml" hash="abe2b7fdcceba1a42868059c6b051070"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="2ddcf6b1b39ff64d796b23525258e46b"/><file name="link_inline.phtml" hash="2cc4ecc541c01fb5fa34d813a2f47fca"/></dir><dir name="static_block"><file name="default.phtml" hash="68f9a573d08c42ac2ce8312a932e620a"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="c50f617f71eb4a3a4a631b5b9f50f8ba"/></dir><dir name="core"><file name="formkey.phtml" hash="1d6b50d2e2f162e2c8e85c6465526766"/><file name="link.phtml" hash="944b23188d46477667f56900d269a9f7"/><file name="messages.phtml" hash="fc66e2492a29a6ae8fb758970251cab4"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="8c2868b6df29ca476baf84fd90150052"/><file name="hello.phtml" hash="14367d6cd3f50a97aa7ac8438fbffcab"/><file name="info.phtml" hash="2c81a1920681022cd4a797f101fb5194"/><file name="newsletter.phtml" hash="44d420a81a7416803ec61f4430f6ba9c"/></dir><file name="dashboard.phtml" hash="2cc3826aee0f41b00635ece20ac0fb3a"/><dir name="link"><file name="back.phtml" hash="9ed3d065f422a9ebdd3153b590e8585b"/></dir><file name="navigation.phtml" hash="07599a5c6e6b772afb4ec9b43f627162"/></dir><dir name="address"><file name="book.phtml" hash="c9dab54993a888f2e98e05499f439473"/><file name="edit.phtml" hash="a3f3e1f50737a57049ab73c74b057393"/></dir><file name="address.phtml" hash="d2132a023dc5d5f69987c95162603bf4"/><file name="balance.phtml" hash="c52b49e85be687018b42ef6c6ea4af13"/><dir name="form"><file name="address.phtml" hash="1d01e813b6236ccc5715b81adf6fa786"/><file name="changepassword.phtml" hash="59470b67a15a2e0a35a6edd4d5a77d03"/><file name="confirmation.phtml" hash="5f98ff9747fb77513c8ec8b15e61f46c"/><file name="edit.phtml" hash="5f0237add360be120afb9b3b4a4a785e"/><file name="forgotpassword.phtml" hash="fe3bd253011b99756b1d2481f27d2091"/><file name="login.phtml" hash="23aa9ce76fefd3f64286823d9bcbe1cb"/><file name="mini.login.phtml" hash="12b47596bb1def2f72f733c79136cda1"/><file name="newsletter.phtml" hash="57e59f4c4cff4301bdba621d796cda1f"/><file name="register.phtml" hash="11d2621c9e0c8920df436d019668b337"/><file name="resetforgottenpassword.phtml" hash="4a6090b6fab7f80c5a008adcca56c787"/></dir><file name="logout.phtml" hash="6bfe50872dac7616174bcbb2db6e7021"/><file name="orders.phtml" hash="e2fb3e8de4f5212e215118d5cdade03c"/><dir name="widget"><file name="dob.phtml" hash="883f9d37699a67058cb72a1d0250203f"/><file name="gender.phtml" hash="dec18426118876686dea6d52eb2ddb9a"/><file name="name.phtml" hash="7cb29dfc7f728ed4a419416b301aa36a"/><file name="taxvat.phtml" hash="90b9148c009b9941024544ae9d6820b0"/></dir><file name="wishlist.phtml" hash="cf892a1a691ffa39a46d20a9507a1663"/></dir><dir name="directory"><dir name="currency"><file name="switch.phtml" hash="d6606b69bc05131a78338d80b31e6588"/></dir><file name="currency.phtml" hash="727e9b664c3df340379f096ceb43da5e"/><dir name="js"><file name="optional_zip_countries.phtml" hash="877d69b700b0f7f85fa95effe2dab499"/></dir></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="links.phtml" hash="aa1fca66e1de2cf93e1dfec4de20e780"/><file name="samples.phtml" hash="4bb362041e14ac0764f6d0cdbc3cf539"/><file name="type.phtml" hash="61b84a1e14fcf7702e3301ecfaa69ac2"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="95eb2edeacae30822d146026f097f1bb"/></dir></dir><dir name="multishipping"><dir name="item"><file name="downloadable.phtml" hash="ffdaa27a7f27b0716dccf1e2dcec818e"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="c9a7687e3f9de4dd02d0c7f8d4ede3ae"/></dir></dir><file name="success.phtml" hash="ee767dce803b8bce5714d3105bd6b8b8"/></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="f06d015a218a8d1e1022aa9dec00bea0"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="cbf8d07b78ef704476b1a7e66b892be2"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="d8f9cf2be0ffe37480c84e1b33107387"/></dir><dir name="order"><file name="downloadable.phtml" hash="dcd7e841202f2504a2f22ec57c134cac"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="e524e29ff5c8862fa3c769d5758ec349"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="d60b6f8f9720b58f6ef88b352d076c8f"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="417a7caa5b6cbc63ddf0704d28be670d"/></dir></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="183ffdcb7f46349b50dd95e6eca171d7"/></dir><dir name="invoice"><file name="items.phtml" hash="45660dec4168af628c21d47eb07cde46"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="4e6ff78c2d1cc3c29a553309d9d9199f"/></dir><dir name="invoice"><file name="default.phtml" hash="4e6ff78c2d1cc3c29a553309d9d9199f"/></dir><dir name="order"><file name="default.phtml" hash="3f6855e57965ef6759793be1c9003278"/></dir><dir name="shipment"><file name="default.phtml" hash="21edf4af2be47ba2f5d7e9e9e33c5ce6"/></dir></dir><file name="items.phtml" hash="e2db101ba23a7fe32934c0bca298ce8f"/><dir name="shipment"><file name="items.phtml" hash="8abfbe44c03aebd010488a180364d936"/><file name="track.phtml" hash="10772b3dec425feb07d06bcc8020dff4"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="5337280735050c7fed3fc991496152d2"/><file name="stock.phtml" hash="eef2511f8a25b068f69de85a5e260936"/></dir></dir><dir name="giftmessage"><file name="inline.phtml" hash="1ccc1b7dd972fef3c71866deab911ff8"/></dir><dir name="googlecheckout"><file name="form.phtml" hash="6cc948fa8d1399192ae7ca0dec694f38"/><file name="link.phtml" hash="a8dcd88f66435ef88fee6ffb2e50e8c9"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="4e34ca91d5a73de122da67185de15697"/></dir><dir name="page"><file name="1column.phtml" hash="cae0a4ce47734fb7b6c37378afcce74d"/><file name="2columns-left.phtml" hash="5adb5fab1739165ec23c20784c66970d"/><file name="2columns-right.phtml" hash="3fbdf6a0f82ac7951d7ac94fe79478b0"/><file name="3columns.phtml" hash="385efb0fb0733343104169a7862e944d"/><file name="empty.phtml" hash="83b27149ba4ecc117e69075aa9ad9d00"/><dir name="html"><file name="breadcrumbs.phtml" hash="fdfa76871d3340eb6e1c59990a7d07b1"/><file name="footer.phtml" hash="8ad5f76cd0680a1c04e5cbc363eb689f"/><file name="head.phtml" hash="52bae233fd72cdb897aad7797a6aee0b"/><file name="header.phtml" hash="81105806e2e0799482556c03ed5cb9bd"/><file name="notices.phtml" hash="2121153df1305e59d159e9833d34a2c4"/><file name="pager.phtml" hash="fceedb53c9ba9a0fd00ddac954855590"/><file name="top.links.phtml" hash="b5567bf97bd53184fb84e23c73ab4778"/><file name="wrapper.phtml" hash="3dfb054e1d344808308e93c7ee65a940"/></dir><dir name="js"><file name="calendar.phtml" hash="ffb6217091bdc3c3653be54d65dde4ba"/><file name="cookie.phtml" hash="00f4c5af34f524169eea6f552db70bdf"/></dir><file name="popup.phtml" hash="b9c5fb830e2d190447a777cdb642ef99"/><file name="print.phtml" hash="9fe82c0b18b8edf5358cccaa46c664cd"/><file name="redirect.phtml" hash="1aa3ca527795bcc80fde72d5ceb61e39"/><dir name="switch"><file name="flags.phtml" hash="3068b3387472198ca78615e7b9ff4186"/><file name="languages.phtml" hash="8f08677ac13ab2e14d1197d1790ec3e5"/><file name="stores.phtml" hash="83d55bacd92f6b452a098bdd1618b268"/></dir><dir name="template"><file name="container.phtml" hash="91f81edee2cc623ff4fc04b266c97829"/><file name="links.phtml" hash="1a7fa639e00caf6bf98a6e4a37260aac"/><file name="linksblock.phtml" hash="934e8dc901db541b832d4321d8ae8204"/></dir></dir><dir name="pagecache"><file name="cookie.phtml" hash="9bd013b4db17aa1251115f023c4516b5"/></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="946900b546f2d0390a85360368ad2ac9"/></dir><dir name="info"><file name="cc.phtml" hash="884c9e4ef149bdf372bbf101a1610b3d"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="5e9b757a45f87fd07a966082cb93f64c"/><file name="schedule.phtml" hash="d9603d2c0039055e7b8bbfb436148ad6"/></dir></dir></dir></dir><dir name="form"><file name="cc.phtml" hash="d473b5f6c11b000a760b834f340a8aab"/><file name="ccsave.phtml" hash="7ed36d33ca5ee1b608da8002d30001b3"/><file name="checkmo.phtml" hash="a46d3f8756a7c7d0bcb618235b58e852"/><file name="purchaseorder.phtml" hash="c4c5d31a5ff7e3142ab64d26e63e35d3"/></dir><dir name="info"><file name="checkmo.phtml" hash="3d5912ea23ce3c87047d96274e5f1c09"/><file name="default.phtml" hash="45910abe3326f2e32f97f4104007ec60"/><file name="purchaseorder.phtml" hash="e26250a7f256b6cd399c60fe305d8d8f"/></dir></dir><dir name="paypal"><dir name="express"><dir name="review"><file name="details.phtml" hash="271acd3c2627c6117b3fca702376780a"/></dir><file name="review.phtml" hash="d375b65ea4664bc6df39f83e57a440ce"/><file name="shortcut.phtml" hash="ede698ae69e1e38aa97c4703a7de56cd"/></dir><dir name="hss"><file name="form.phtml" hash="8405762149f355a37787f92ab9203684"/><file name="iframe.phtml" hash="33c6f2b031162dd9d05b4d4d03b08580"/><file name="info.phtml" hash="7f5bbfc8a9b7af7d62a0626ea30b88b0"/><file name="js.phtml" hash="38c1d60029ab4603ebd484efa6c8f86f"/><file name="redirect.phtml" hash="92751b8b3f91a0bd03ffb9290e4e9a8b"/><dir name="review"><file name="button.phtml" hash="2df913bab010a61e26e6f50f65e75ca2"/></dir></dir><dir name="partner"><file name="logo.phtml" hash="3dd778703c98f87801a2db0a67fb7709"/></dir><dir name="payflowlink"><file name="form.phtml" hash="8405762149f355a37787f92ab9203684"/><file name="iframe.phtml" hash="e14d0e124daf0712ab9a71e7d96315bf"/><file name="info.phtml" hash="93dcd27c4c677e0e414427c8ee7f36cc"/><file name="redirect.phtml" hash="d91a7b8e1d6ede8efcee372b6f45bfc5"/></dir><dir name="payment"><file name="mark.phtml" hash="6f3dd5cc4af3c03f261ef3f582539134"/><file name="redirect.phtml" hash="a418e461fd66e0dbfa7de2873e468507"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="5e6e40a959f59cb2a079fb828b63f1d9"/><file name="login.phtml" hash="45383442d10aaf867a04862e74ef4fe3"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="942ed2d580ce2964b1b4ab06907530cd"/><file name="register.phtml" hash="110cafe656dfce0e95ef373a2dd5a6b9"/></dir></dir><file name="remember_me.phtml" hash="e62ce9daa733a818d9056439374fe4ae"/><file name="remember_me_tooltip.phtml" hash="d91f445020d9423bd977e284b6c19073"/></dir><dir name="poll"><file name="active.phtml" hash="052052d5c1b3392a91acce706f465160"/><file name="result.phtml" hash="506c9fbf70ddb2c401c0c5f48d61439d"/></dir><dir name="productalert"><file name="price.phtml" hash="05fd4e6617bf3e3f808d0ed009334aaf"/><dir name="product"><file name="view.phtml" hash="417ea7db49d42cd5d46356c658ff2480"/></dir><file name="stock.phtml" hash="05fd4e6617bf3e3f808d0ed009334aaf"/></dir><dir name="rating"><file name="detailed.phtml" hash="fd9ac7e46e4d779eee7b991cbae85125"/><file name="empty.phtml" hash="5e29064c6d35e516fedf3bc9ce6ade43"/></dir><dir name="reports"><file name="home_product_compared.phtml" hash="9e477a9aa61ad88045bf89c260810af9"/><file name="home_product_viewed.phtml" hash="3778642fdb4ddfb10456190bfd2c7554"/><file name="product_compared.phtml" hash="e782c39b963c78e631d2069b3b115410"/><file name="product_viewed.phtml" hash="9bb1371fc186049d4b4e8a4ca7f8a1a5"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="c44460e4541183e9820807f6912c076d"/><file name="compared_images_list.phtml" hash="c7f08c2b15b268628fb4703f4daf0330"/><file name="compared_names_list.phtml" hash="c84071829631f33a7ff27a6dac20d31d"/></dir><dir name="content"><file name="compared_grid.phtml" hash="9ce0a867a65714003016f678d945d531"/><file name="compared_list.phtml" hash="dc28fa05aaa9f75e47f9851522aa6b71"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="1aaacfd26a8334acaae2c60098b2cf51"/><file name="viewed_images_list.phtml" hash="98e19e8e80471b8c8b09a5c2f8257420"/><file name="viewed_names_list.phtml" hash="290e25409c187ea7c9f4c3321a11cacc"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="cda9de8fddcc381b952c3066406aee94"/><file name="viewed_list.phtml" hash="aa8d7deaaccf1508892c91211cb04ca5"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="a45a673a79ed22742a41dc9c865d5c27"/><file name="recent.phtml" hash="9089effb0e2cb55380909e0b5496a1f7"/><file name="view.phtml" hash="f9fb00ed826c5faf2d41b6f3acb14c69"/></dir><file name="form.phtml" hash="d050439dea6ed25556628b33423eff39"/><dir name="helper"><file name="summary.phtml" hash="1bc771ee7fdceb39f77439521c1a09a8"/><file name="summary_short.phtml" hash="b3f88661ae4524d9df308658b7a5b99f"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="08a6aac14be6bdf187cee0f57785fa2d"/><file name="list.phtml" hash="6fbde1b8ef9c50216246bcadfe764168"/><file name="other.phtml" hash="f60ccea1886e06ff91dcf56195222eaa"/></dir></dir><file name="view.phtml" hash="5879e758f0cce00e9f7aa841f1f21cc9"/></dir><dir name="rss"><file name="list.phtml" hash="7d89a2e2daa0535f229414634b415be1"/><file name="nofeed.phtml" hash="45dab449e8f5fb370be8d7df7dcafad6"/><dir name="order"><file name="details.phtml" hash="567dfb8b2102096a59d823da77cf394e"/></dir></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="5ab3bc8a41d39bc53f0012e075ff0bad"/></dir><file name="agreements.phtml" hash="8c2c8b2b0c00731c072d1eb7da0cb71b"/></dir><dir name="guest"><file name="form.phtml" hash="67640729a8bde8ff2d9bf773b261e3a4"/></dir><dir name="order"><file name="comments.phtml" hash="accfbecea0eb713622e5bf2a0f3d2388"/><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="69b5338925949aa8d0e78e9de69c3a2f"/></dir></dir><file name="items.phtml" hash="1bd457e8ed3d8754f238cb59f2357f5a"/></dir><file name="creditmemo.phtml" hash="7ce072207d930420f9f0ba2604353a8b"/><file name="details.phtml" hash="ed8bf797dda9076b5e5796c788797e1e"/><file name="history.phtml" hash="de1078115fed539a7d37b71be51808d3"/><dir name="info"><file name="buttons.phtml" hash="050bcda9a80d583fe754da269d0149bf"/></dir><file name="info.phtml" hash="f2f1303e760c4a1da62a1b4a1f84676c"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="fc5480b6aeb16cad678c1155caa84503"/></dir></dir><file name="items.phtml" hash="3380eefefd735545e1c32daded33e300"/></dir><file name="invoice.phtml" hash="5d07b8eb55fe6692c919d7f457f62031"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="5b9a734db36811135b7d17bd6d65bc7d"/></dir></dir><file name="items.phtml" hash="c1afc15429d72caddbc3a8fe91493bb1"/><dir name="print"><file name="creditmemo.phtml" hash="7068c9b159ad223f6c834116c00933f8"/><file name="invoice.phtml" hash="2f41190b07d93eba4b6cee0c7a8cfb99"/><file name="shipment.phtml" hash="379f993d10de6bbab0520ee37124f984"/></dir><file name="print.phtml" hash="598e60e423e1507857728ad6069bcbd8"/><file name="recent.phtml" hash="172c8c357d779282037e7b9307e92ff1"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="5a035a658e6de4d75c3d09ac1393b433"/></dir></dir><file name="items.phtml" hash="846e566762eb53265cc1b3dc842de39b"/></dir><file name="shipment.phtml" hash="02a879cfcd3b36b6aa2d6e269e80807b"/><file name="totals.phtml" hash="f5853735cb7b7332c2681e548dc054d9"/><file name="trackinginfo.phtml" hash="d8e3eae9c8f1f43114b7dc0ed4777a00"/><file name="view.phtml" hash="d000662a180c2e113cd2da3d3772367f"/></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="6896fea9ecb834c152a43b632d96c58e"/></dir></dir></dir><dir name="recurring"><file name="grid.phtml" hash="8ea0a85c1bb0bc757907b51c9697bef9"/><dir name="profile"><dir name="view"><file name="info.phtml" hash="da5e30740f33ca9cb0111200018d8c57"/></dir><file name="view.phtml" hash="856b3203b354cf22534992ba862b263a"/></dir><file name="profiles.phtml" hash="291f5b47f23b644486d7ccd603daa661"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="c6f0e6ff2b7c358be4713b6922e29f40"/></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="c3808f20f5a4abf2fe348cdec5580367"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="b0d49abec317ad26ebc97f4b4fa2e704"/></dir><dir name="shipping"><dir name="tracking"><file name="ajax.phtml" hash="48bd7dc0156f50b97fe306dce65fedb9"/><file name="popup.phtml" hash="b91bdee55629949799ba52b0f0a128f2"/></dir></dir><dir name="tag"><file name="cloud.phtml" hash="aa3e7fbc65d5633fa70ada28f6705ca3"/><dir name="customer"><file name="recent.phtml" hash="d299a71d68fedd43e87e6d6a16a4d678"/><file name="tags.phtml" hash="3f5df7e3dcd3ff115354cc55cf3753a4"/><file name="view.phtml" hash="f1f225ecdc0fc77f9e174a34fad5de98"/></dir><file name="list.phtml" hash="7473a69abf22905d8f267ec634c90c83"/><file name="popular.phtml" hash="d1324c2aea96312a9b282b42927c60dd"/></dir><dir name="tax"><dir name="checkout"><file name="discount.phtml" hash="e62df9c7b45d7c399e9a978177ff1f06"/><file name="grandtotal.phtml" hash="e30c2d94cf5e69a330d296c8f26d69ce"/><file name="shipping.phtml" hash="6b777819d1e1806cc74f18096e0aaeed"/><file name="subtotal.phtml" hash="7f55b7a4c2889859b60502e6ffd09b38"/><file name="tax.phtml" hash="6b3f81a254f235500aa05ba2c08f60be"/></dir><dir name="order"><file name="tax.phtml" hash="f8f2ef21dc7a68bc11c92292589b70a2"/></dir></dir><dir name="wishlist"><dir name="email"><file name="items.phtml" hash="1b91decb967bcd9bdf81ac942c509b6e"/><file name="rss.phtml" hash="f1ed6701c6c0e0d78d658c74e2f30407"/></dir><dir name="item"><dir name="configure"><file name="addto.phtml" hash="534c9ca22b3d4f032a558b4791ba8596"/></dir></dir><file name="options_list.phtml" hash="823f67fb3d61d8fc93b8d2d535a29f77"/><dir name="render"><dir name="item"><file name="price.phtml" hash="42eabf4c8289c6904f45dbb5e8ff89c4"/><file name="price_msrp_item.phtml" hash="db418ffdf6b17ef622621e32098e6e4f"/><file name="price_msrp_rss.phtml" hash="1bd626d6a1b2d4f88cce14e3244d9a3e"/></dir></dir><file name="shared.phtml" hash="e93c3d57babb9f3f966c92915e0dc426"/><file name="sharing.phtml" hash="dd5e13af57673270009d67a59eb4daa0"/><file name="sidebar.phtml" hash="22606baf08da7e6891ca1ef84ea8a156"/><file name="view.phtml" hash="51628f2f579f00f38b632a4d8861bc31"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="widgets.css" hash="f3a4bf95d08d1fdbda18b2fb701dfc9a"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir></dir><dir name="js"><file name="bundle.js" hash="4b5900b9871c5b003a89028f9185f71c"/><dir name="checkout"><file name="review.js" hash="13e4f9205cea637579efab147ec3be55"/></dir><file name="giftmessage.js" hash="ae109c657833d8c29199888acf89b136"/><file name="ie6.js" hash="6b4f858b7ec45561af250200ff567a86"/><file name="msrp.js" hash="94ede6432bdab7039fdf34b221f45269"/><file name="opcheckout.js" hash="8dd380c42b5f082925a79c82a9b9bb3d"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.1.0</min><max>1.7.0.0</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Interface_Frontend_Base_Default</name>
4
+ <version>1.6.2.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>This is a Magento themes base</summary>
10
  <description>This is a Magento themes base</description>
11
+ <notes>1.6.2.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2012-01-11</date>
14
+ <time>11:50:30</time>
15
+ <contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="etc"><file name="widget.xml" hash="f63caeba70daa2b5d519f4e4ce600ffd"/></dir><dir name="layout"><file name="authorizenet.xml" hash="3d014b09a6948ca0d07e663f0bb83319"/><file name="bundle.xml" hash="cad0ebd289559fca63923af7b7501c04"/><file name="catalog.xml" hash="5e09bd0bc301c8f0ce9610e27cbb9551"/><file name="catalog_msrp.xml" hash="ff5c4e7f8d08d367656f34e72d411a17"/><file name="cataloginventory.xml" hash="059cd8ec8fe165d4dfb20b1b365e0ad3"/><file name="catalogsearch.xml" hash="9618072bb6a7b560b145b41eb535ff04"/><file name="checkout.xml" hash="f7543b676b5cac8abdf2309e61013cb3"/><file name="cms.xml" hash="48295546e80ab4e5f472e76ea34f8472"/><file name="contacts.xml" hash="ecdd1586728f8592b2218d46b1e88561"/><file name="core.xml" hash="fecc935067e39799313380ea48e9e6c1"/><file name="customer.xml" hash="758374cebc9d0e2543ea84ad6e965904"/><file name="directory.xml" hash="237b6461de0764e4296c9c3c5c742e2d"/><file name="downloadable.xml" hash="3160e7698dfe684f97f5f4a6003d5b0d"/><file name="googleanalytics.xml" hash="86d401b3d4268bc1947ab84694bae81c"/><file name="googlecheckout.xml" hash="8abad55dba3bd1e6cecf5700aeef906b"/><file name="newsletter.xml" hash="2c2e01afa8aff2687b55358fca8223a8"/><file name="page.xml" hash="3392c3162eb8860738d2da6303791dd0"/><file name="pagecache.xml" hash="cfbd54dc05336c777f421d939151df03"/><file name="payment.xml" hash="2726f3e63bff0398c5d3a8a76be4189d"/><file name="paypal.xml" hash="6f48d7f83d6b620a26c27dd05cb717ad"/><file name="paypaluk.xml" hash="a32906ee52d1c4c552b9ad1240e27a7c"/><file name="persistent.xml" hash="38e568f2c513d03e6312428c67155542"/><file name="poll.xml" hash="be8b61f2898f83c3a575b27866399b1e"/><file name="productalert.xml" hash="aefe2a2415ca235afcbf0eee3160573d"/><file name="reports.xml" hash="5403dc921b7dcf8d0926c9bdf2bd4377"/><file name="review.xml" hash="520ef8a5f50453aaa5f3db2dc7e1996e"/><file name="rss.xml" hash="aa85d144ecfbd0e8a3ae8f9bc174b063"/><dir name="sales"><file name="billing_agreement.xml" hash="6a67c8633d708d7706c1350161a4d25b"/><file name="recurring_profile.xml" hash="afb5dcfc4e5918d59a03a3fcf8d7cdd0"/></dir><file name="sales.xml" hash="0c5257b2d9b7e8d95a0b56140634b2f5"/><file name="sendfriend.xml" hash="3e3fa92effc21537cb89ba7a332d8b59"/><file name="shipping.xml" hash="65df35ef39f20c49ec4a9ea3aba820ab"/><file name="tag.xml" hash="ebefadc88a6e5307e1e7f77c42cd268e"/><file name="weee.xml" hash="3141468e63406d77fbf478257767cce1"/><file name="wishlist.xml" hash="8d5055cfcc8d7f14944edd08f0db716c"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="fe575685affc4388f25080f01408f676"/><file name="iframe.phtml" hash="878ef1268c71be62bda731aec1e8aa79"/><file name="info.phtml" hash="c2ab414445bd1b3368b5c87559c70267"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="list"><file name="partof.phtml" hash="f2bfc20a43080ed1110c3fe4d2384eda"/></dir><file name="price.phtml" hash="2e090cf9179d7b59e8ab81e0a66d4711"/><dir name="view"><dir name="options"><file name="notice.phtml" hash="9c5df8fe4e2c774530968e5026240a3d"/></dir><file name="price.phtml" hash="cd7da22c87a6c9f13941f1435ef3427b"/><file name="tierprices.phtml" hash="70391f19e0bc54a7e8c596ceea57af61"/><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="d10cf4140111655ae1a5e65a73e9448d"/><file name="multi.phtml" hash="30cc14a0b5ce3ecb2ae67864d7dccdeb"/><file name="radio.phtml" hash="4b379381f722086cf3bc13cf7ab32a9c"/><file name="select.phtml" hash="de6e0780829bfd6ce37bcb69d5d3383d"/></dir><file name="options.phtml" hash="6559d2b5784629d24dfff6a612f08986"/></dir><file name="bundle.phtml" hash="6518757d10d74f4b2ae08d912bf99a4f"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="e8b621b4dc1c5195bc6b5feafe112cfe"/></dir><dir name="invoice"><file name="default.phtml" hash="394ea31ea9ac7f1407d7061ca1d77522"/></dir><dir name="order"><file name="default.phtml" hash="2949db6f7484fc9fff5688e298fdf21e"/></dir><dir name="shipment"><file name="default.phtml" hash="dabc362995275cb96c85807451367216"/></dir></dir></dir></dir><dir name="rss"><dir name="catalog"><dir name="product"><file name="price.phtml" hash="1d271485c24dc7e9d18e7c6e2fda59f8"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="8ecc1a7adc816d73b5cdd170ce18dd5a"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="35916c5c3d337262d874daea641f14a3"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="257cb4e7992496bc8bf9a3ae2f3c0e89"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="ee40a81975d9e2a849cd54267af80cd1"/></dir></dir></dir></dir></dir><dir name="callouts"><file name="left_col.phtml" hash="e3322c58170dc9fb0f98226aeb3d8d41"/><file name="right_col.phtml" hash="e3322c58170dc9fb0f98226aeb3d8d41"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="a422afbbc4ad2583f8c0763299b0f5e7"/><file name="view.phtml" hash="029628edc3a221b17e2c4fdf8ad86614"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="ed2e3519fb59d9de1338a2b96b106b16"/><file name="link_inline.phtml" hash="9324821268ac2d7cfbb668c1a35b8b57"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="7f07dae8c69eff41a17b15c27a3e26e7"/><file name="state.phtml" hash="e7a11368a9e6149bba8c820d0ad4e981"/><file name="view.phtml" hash="b6e1e399509132ed39f8ea474a642f60"/></dir><dir name="msrp"><file name="popup.phtml" hash="8bae34b23d5666071f74d00349c4c113"/></dir><dir name="navigation"><file name="left.phtml" hash="3ec84f187ebbea1e9950731a9c1df65c"/><file name="top.phtml" hash="b5afe15b614b67e7ce45c75e93b146d7"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="df52f41d9a0681aa844478f6506ebade"/><file name="sidebar.phtml" hash="4e7f669a8cbd46d91007ab7952e51de9"/></dir><file name="gallery.phtml" hash="ca91ee340cae160702cdb2cdbc7d6151"/><dir name="list"><file name="related.phtml" hash="0aec7474c026bcb63956e6b729a5fd09"/><file name="toolbar.phtml" hash="d87c9cb2faf54c136b3eb4ef0941bd80"/><file name="upsell.phtml" hash="76e2ccfb4e6f91e3dac7aeeb20e6b806"/></dir><file name="list.phtml" hash="64e9d60d16847cb664ff12e9f9d09166"/><file name="new.phtml" hash="9e2d685a596d13d1e7e4426b024ba7d1"/><file name="price.phtml" hash="946ad2821bdbe8b8ef6485262ffcd863"/><file name="price_msrp.phtml" hash="4b0bade08c56a42a3cf4cc1e2ba74c0c"/><file name="price_msrp_item.phtml" hash="3c876155d5aa6f8905fda0f77de22b93"/><file name="price_msrp_noform.phtml" hash="7543a1ba00863b5c8f2612104468118d"/><file name="price_msrp_rss.phtml" hash="b1815194a27b54fed44da2ad045a55bf"/><dir name="view"><file name="additional.phtml" hash="bb4b797e2baba894ea0aa5516b986669"/><file name="addto.phtml" hash="2666193292d9d9ee38dc5e9d0072daa3"/><file name="addtocart.phtml" hash="7a570a21026e649d31b46994cd07178d"/><file name="attributes.phtml" hash="aa0ebbb858612b3b96798868c7bb8b56"/><file name="description.phtml" hash="f694967bf8f4a9520d284eba91913120"/><file name="media.phtml" hash="5d18f9c16fdc8f49f94377c00046d05d"/><dir name="options"><file name="js.phtml" hash="4cef65b9b14c56b134404dcf471eba8c"/><dir name="type"><file name="date.phtml" hash="96bb4e38f428fb6041709e552b733f78"/><file name="default.phtml" hash="545d8cedeb20c23d83f66f473c24e9ee"/><file name="file.phtml" hash="26419fac88298374ed0cd2e9b2c0d22f"/><file name="select.phtml" hash="fc764b2f3e94fc261bf6b8d558d2897a"/><file name="text.phtml" hash="a836aecfc903d0466d96bd4e25f7fa58"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="3ea9a96f4bd6b3efe142ea7d5a6e5a39"/></dir><file name="wrapper.phtml" hash="77ce7d5a4f4fb1d41b72ec507289a235"/></dir><file name="options.phtml" hash="52098ac0825ce56179ff9952956894e9"/><file name="price.phtml" hash="daddc2f288210beabb2e676b3362f6b7"/><file name="price_clone.phtml" hash="d980a8e9aa84f3aeedc2a112f3b89055"/><file name="tierprices.phtml" hash="03f663b881bc83e2c4ac434054e3b3d2"/><dir name="type"><file name="configurable.phtml" hash="ad44caa1bd294a9f0eadef3af0e01355"/><file name="default.phtml" hash="7d681338357b9f5165642b6924da5bb4"/><file name="grouped.phtml" hash="9872f617e94bd27321f0c2d3b8e8a8fa"/><dir name="options"><file name="configurable.phtml" hash="db78b70b5e83be1fddc86f6428c2991c"/></dir><file name="simple.phtml" hash="ad44caa1bd294a9f0eadef3af0e01355"/><file name="virtual.phtml" hash="ad44caa1bd294a9f0eadef3af0e01355"/></dir></dir><file name="view.phtml" hash="4c460373037d049fa9ddd8d0538e5d1d"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="534295a2078ed9feffb31d3fa388e74d"/><file name="link_inline.phtml" hash="5d7b6eba333e3508484efb12fecb8be4"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="e92ce2fb508e23cd14a5a8becb1c06ea"/><file name="new_images_list.phtml" hash="9203d98cb665a69b548cba7b806f7997"/><file name="new_names_list.phtml" hash="f22297b7fb2aebb255b2ffffb4d6d0e0"/></dir><dir name="content"><file name="new_grid.phtml" hash="bf189d468b68dd7add41e993a0c00be0"/><file name="new_list.phtml" hash="ee092a9aa4107d219865c1c1ee51d9ae"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="cc019b43c8faecc3e0498e3715f6bc5a"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="a71d1513ba7368094508e4f721c3efe8"/></dir><file name="sitemap.phtml" hash="6f64266cb06b050a19c6814dbefaa05f"/><file name="tree.phtml" hash="470261b75ae32b0e4df42c82c6d741dc"/></dir></dir><dir name="cataloginventory"><file name="qtyincrements.phtml" hash="8b7d5adee5daf7e06de20801c4361a6c"/><dir name="stockqty"><file name="composite.phtml" hash="efe503de9b4fa8450e124c277d141f20"/><file name="default.phtml" hash="bc4bf2f3da436016f88e0e962fb7d12c"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="3d05449b07acafdcef80ce935638bc1f"/><file name="result.phtml" hash="b907c965ebbc11ecb2c5641bc9a897fd"/></dir><file name="form.mini.phtml" hash="4377724da3b8fe8adc82479c00e98cc4"/><file name="result.phtml" hash="6a1b9285c6360bf2ade9e614910b55eb"/><file name="term.phtml" hash="d9c3661bb61932e8e58b6d84c2ed89ce"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="eba44b9180991c98ce4c293d04da3487"/><file name="crosssell.phtml" hash="12a188c192367e1f65fa5b38ec8c29eb"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="9c7f876a4590cfb42ed0f5b467338a75"/></dir><file name="default.phtml" hash="9e9954605897c26dfbf0f4defb4a4ff8"/></dir><file name="noItems.phtml" hash="e3955e167277acd3d6853b60a40c7887"/><dir name="render"><file name="default.phtml" hash="29ce75bcbf371e45ee9d8d8c62ca2e5d"/><file name="simple.phtml" hash="619bbb0a91946ef78d695298843d92d2"/></dir><file name="shipping.phtml" hash="93c13b60e69aadbf9049ad89f9ba5845"/><dir name="sidebar"><file name="default.phtml" hash="ae1ef6d32c067d080aa54c4be2ea7ef6"/></dir><file name="sidebar.phtml" hash="cb7ddfd840117882765d5907068bfc86"/><file name="totals.phtml" hash="758df523d4cfa396a77ae4e6da36e0a6"/></dir><file name="cart.phtml" hash="03aa15aa9ed98d18483427749825512d"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="5890f841fb8c1836e0aaab46cfea7971"/></dir><file name="addresses.phtml" hash="2a8a8fa4e9178083a132afa458f9af1e"/><file name="agreements.phtml" hash="ee2908b67df859eb11ba40961e238cc4"/><dir name="billing"><file name="items.phtml" hash="9b5ad70cf6030ac066884188f337960e"/></dir><file name="billing.phtml" hash="2a60b67ae559bed4341a71636350d888"/><dir name="item"><file name="default.phtml" hash="1667635f057c3ad6a1b06312818d7689"/></dir><file name="link.phtml" hash="6afc0adeb590ab9ba4913c6ac319780e"/><dir name="overview"><file name="item.phtml" hash="d2034aaebc5017bfa4718dbfe30a5c50"/></dir><file name="overview.phtml" hash="85078bbc7b18e54e72693ed35c55b011"/><file name="shipping.phtml" hash="11eb1a5113c6e4472f53101743a3b919"/><file name="state.phtml" hash="7e23eaf4442153dc77a8dbe56c1a1e23"/><file name="success.phtml" hash="bba79f1bc10619afa55dda7f6f993f7f"/></dir><dir name="onepage"><file name="agreements.phtml" hash="fd268340ecbb77804053350f311b0a6d"/><file name="billing.phtml" hash="df00d4efc259d69d86134ed593ebcac9"/><file name="failure.phtml" hash="aff5c96bf56a4b92b8517f3a0021c887"/><file name="link.phtml" hash="f7d753b83b2c884dee5f6200ba43f4f1"/><file name="login.phtml" hash="5256b8159ac5d40753911a4b8116c670"/><dir name="payment"><file name="methods.phtml" hash="c197a93d7c9aa7d21f1672734da1bce7"/></dir><file name="payment.phtml" hash="152ff2082211ff1f02b827a66b333006"/><file name="progress.phtml" hash="0e02e2bef8a221563fc57008372044d2"/><dir name="review"><file name="button.phtml" hash="28eeca062cba79dc34945807e8c98862"/><file name="info.phtml" hash="ec1a5ee2f5efbb08bc5b842dfc317ac6"/><file name="item.phtml" hash="9a399a320ef6a2658ff13994d0db9241"/><file name="totals.phtml" hash="478258f78b0240ba5618d2b09900ef10"/></dir><file name="review.phtml" hash="bf4f49fcb90e40ba9225c6d362fdf2ff"/><file name="shipping.phtml" hash="c86e20d2d08fc5c8effd769c2cb1908c"/><dir name="shipping_method"><file name="additional.phtml" hash="e63f3af8ccc648c6a72301367237ecbc"/><file name="available.phtml" hash="bb3d64323da99736b2ebdad2d9e8b5a8"/></dir><file name="shipping_method.phtml" hash="ab17c9f73c9eabaace93f509318aabe2"/></dir><file name="onepage.phtml" hash="e60c47a0a87ec81c4fbd39938c315c69"/><file name="success.phtml" hash="9b0492208ddbd2d5d70457e419f43dc3"/><dir name="total"><file name="default.phtml" hash="b8f93b97141a4897770474050933ac8c"/><file name="nominal.phtml" hash="8615df567defcfc7c02b1b9e27db6c60"/><file name="tax.phtml" hash="6effef82ec3f4a2d7afa573e29928c76"/></dir></dir><dir name="cms"><file name="content.phtml" hash="063ff5fefdc9c23a839c61fbf31e6470"/><file name="content_heading.phtml" hash="8f41c0b3480e1f932147ae20be8dc8ee"/><dir name="default"><file name="home.phtml" hash="c8dea1cdfb2769e1a5caa3ce612e20b5"/><file name="no-route.phtml" hash="c178dad9c2ab98233dcc4e6d3990aff5"/></dir><file name="meta.phtml" hash="abe2b7fdcceba1a42868059c6b051070"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="2ddcf6b1b39ff64d796b23525258e46b"/><file name="link_inline.phtml" hash="2cc4ecc541c01fb5fa34d813a2f47fca"/></dir><dir name="static_block"><file name="default.phtml" hash="68f9a573d08c42ac2ce8312a932e620a"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="c50f617f71eb4a3a4a631b5b9f50f8ba"/></dir><dir name="core"><file name="formkey.phtml" hash="1d6b50d2e2f162e2c8e85c6465526766"/><file name="link.phtml" hash="944b23188d46477667f56900d269a9f7"/><file name="messages.phtml" hash="fc66e2492a29a6ae8fb758970251cab4"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="8c2868b6df29ca476baf84fd90150052"/><file name="hello.phtml" hash="14367d6cd3f50a97aa7ac8438fbffcab"/><file name="info.phtml" hash="2c81a1920681022cd4a797f101fb5194"/><file name="newsletter.phtml" hash="44d420a81a7416803ec61f4430f6ba9c"/></dir><file name="dashboard.phtml" hash="2cc3826aee0f41b00635ece20ac0fb3a"/><dir name="link"><file name="back.phtml" hash="9ed3d065f422a9ebdd3153b590e8585b"/></dir><file name="navigation.phtml" hash="07599a5c6e6b772afb4ec9b43f627162"/></dir><dir name="address"><file name="book.phtml" hash="c9dab54993a888f2e98e05499f439473"/><file name="edit.phtml" hash="a3f3e1f50737a57049ab73c74b057393"/></dir><file name="address.phtml" hash="d2132a023dc5d5f69987c95162603bf4"/><file name="balance.phtml" hash="c52b49e85be687018b42ef6c6ea4af13"/><dir name="form"><file name="address.phtml" hash="1d01e813b6236ccc5715b81adf6fa786"/><file name="changepassword.phtml" hash="59470b67a15a2e0a35a6edd4d5a77d03"/><file name="confirmation.phtml" hash="5f98ff9747fb77513c8ec8b15e61f46c"/><file name="edit.phtml" hash="5f0237add360be120afb9b3b4a4a785e"/><file name="forgotpassword.phtml" hash="fe3bd253011b99756b1d2481f27d2091"/><file name="login.phtml" hash="23aa9ce76fefd3f64286823d9bcbe1cb"/><file name="mini.login.phtml" hash="12b47596bb1def2f72f733c79136cda1"/><file name="newsletter.phtml" hash="57e59f4c4cff4301bdba621d796cda1f"/><file name="register.phtml" hash="11d2621c9e0c8920df436d019668b337"/><file name="resetforgottenpassword.phtml" hash="4a6090b6fab7f80c5a008adcca56c787"/></dir><file name="logout.phtml" hash="6bfe50872dac7616174bcbb2db6e7021"/><file name="orders.phtml" hash="e2fb3e8de4f5212e215118d5cdade03c"/><dir name="widget"><file name="dob.phtml" hash="883f9d37699a67058cb72a1d0250203f"/><file name="gender.phtml" hash="dec18426118876686dea6d52eb2ddb9a"/><file name="name.phtml" hash="7cb29dfc7f728ed4a419416b301aa36a"/><file name="taxvat.phtml" hash="90b9148c009b9941024544ae9d6820b0"/></dir><file name="wishlist.phtml" hash="cf892a1a691ffa39a46d20a9507a1663"/></dir><dir name="directory"><dir name="currency"><file name="switch.phtml" hash="d6606b69bc05131a78338d80b31e6588"/></dir><file name="currency.phtml" hash="727e9b664c3df340379f096ceb43da5e"/><dir name="js"><file name="optional_zip_countries.phtml" hash="877d69b700b0f7f85fa95effe2dab499"/></dir></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="links.phtml" hash="aa1fca66e1de2cf93e1dfec4de20e780"/><file name="samples.phtml" hash="4bb362041e14ac0764f6d0cdbc3cf539"/><file name="type.phtml" hash="61b84a1e14fcf7702e3301ecfaa69ac2"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="95eb2edeacae30822d146026f097f1bb"/></dir></dir><dir name="multishipping"><dir name="item"><file name="downloadable.phtml" hash="ffdaa27a7f27b0716dccf1e2dcec818e"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="c9a7687e3f9de4dd02d0c7f8d4ede3ae"/></dir></dir><file name="success.phtml" hash="ee767dce803b8bce5714d3105bd6b8b8"/></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="f06d015a218a8d1e1022aa9dec00bea0"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="cbf8d07b78ef704476b1a7e66b892be2"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="d8f9cf2be0ffe37480c84e1b33107387"/></dir><dir name="order"><file name="downloadable.phtml" hash="dcd7e841202f2504a2f22ec57c134cac"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="e524e29ff5c8862fa3c769d5758ec349"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="d60b6f8f9720b58f6ef88b352d076c8f"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="417a7caa5b6cbc63ddf0704d28be670d"/></dir></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="183ffdcb7f46349b50dd95e6eca171d7"/></dir><dir name="invoice"><file name="items.phtml" hash="45660dec4168af628c21d47eb07cde46"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="4e6ff78c2d1cc3c29a553309d9d9199f"/></dir><dir name="invoice"><file name="default.phtml" hash="4e6ff78c2d1cc3c29a553309d9d9199f"/></dir><dir name="order"><file name="default.phtml" hash="3f6855e57965ef6759793be1c9003278"/></dir><dir name="shipment"><file name="default.phtml" hash="21edf4af2be47ba2f5d7e9e9e33c5ce6"/></dir></dir><file name="items.phtml" hash="e2db101ba23a7fe32934c0bca298ce8f"/><dir name="shipment"><file name="items.phtml" hash="8abfbe44c03aebd010488a180364d936"/><file name="track.phtml" hash="10772b3dec425feb07d06bcc8020dff4"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="5337280735050c7fed3fc991496152d2"/><file name="stock.phtml" hash="eef2511f8a25b068f69de85a5e260936"/></dir></dir><dir name="giftmessage"><file name="inline.phtml" hash="1ccc1b7dd972fef3c71866deab911ff8"/></dir><dir name="googlecheckout"><file name="form.phtml" hash="6cc948fa8d1399192ae7ca0dec694f38"/><file name="link.phtml" hash="a8dcd88f66435ef88fee6ffb2e50e8c9"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="4e34ca91d5a73de122da67185de15697"/></dir><dir name="page"><file name="1column.phtml" hash="cae0a4ce47734fb7b6c37378afcce74d"/><file name="2columns-left.phtml" hash="5adb5fab1739165ec23c20784c66970d"/><file name="2columns-right.phtml" hash="3fbdf6a0f82ac7951d7ac94fe79478b0"/><file name="3columns.phtml" hash="385efb0fb0733343104169a7862e944d"/><file name="empty.phtml" hash="83b27149ba4ecc117e69075aa9ad9d00"/><dir name="html"><file name="breadcrumbs.phtml" hash="fdfa76871d3340eb6e1c59990a7d07b1"/><file name="footer.phtml" hash="8ad5f76cd0680a1c04e5cbc363eb689f"/><file name="head.phtml" hash="52bae233fd72cdb897aad7797a6aee0b"/><file name="header.phtml" hash="81105806e2e0799482556c03ed5cb9bd"/><file name="notices.phtml" hash="2121153df1305e59d159e9833d34a2c4"/><file name="pager.phtml" hash="fceedb53c9ba9a0fd00ddac954855590"/><file name="top.links.phtml" hash="b5567bf97bd53184fb84e23c73ab4778"/><file name="wrapper.phtml" hash="3dfb054e1d344808308e93c7ee65a940"/></dir><dir name="js"><file name="calendar.phtml" hash="ffb6217091bdc3c3653be54d65dde4ba"/><file name="cookie.phtml" hash="00f4c5af34f524169eea6f552db70bdf"/></dir><file name="popup.phtml" hash="b9c5fb830e2d190447a777cdb642ef99"/><file name="print.phtml" hash="9fe82c0b18b8edf5358cccaa46c664cd"/><file name="redirect.phtml" hash="1aa3ca527795bcc80fde72d5ceb61e39"/><dir name="switch"><file name="flags.phtml" hash="3068b3387472198ca78615e7b9ff4186"/><file name="languages.phtml" hash="8f08677ac13ab2e14d1197d1790ec3e5"/><file name="stores.phtml" hash="83d55bacd92f6b452a098bdd1618b268"/></dir><dir name="template"><file name="container.phtml" hash="91f81edee2cc623ff4fc04b266c97829"/><file name="links.phtml" hash="1a7fa639e00caf6bf98a6e4a37260aac"/><file name="linksblock.phtml" hash="934e8dc901db541b832d4321d8ae8204"/></dir></dir><dir name="pagecache"><file name="cookie.phtml" hash="9bd013b4db17aa1251115f023c4516b5"/></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="946900b546f2d0390a85360368ad2ac9"/></dir><dir name="info"><file name="cc.phtml" hash="884c9e4ef149bdf372bbf101a1610b3d"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="5e9b757a45f87fd07a966082cb93f64c"/><file name="schedule.phtml" hash="d9603d2c0039055e7b8bbfb436148ad6"/></dir></dir></dir></dir><dir name="form"><file name="cc.phtml" hash="d473b5f6c11b000a760b834f340a8aab"/><file name="ccsave.phtml" hash="7ed36d33ca5ee1b608da8002d30001b3"/><file name="checkmo.phtml" hash="a46d3f8756a7c7d0bcb618235b58e852"/><file name="purchaseorder.phtml" hash="c4c5d31a5ff7e3142ab64d26e63e35d3"/></dir><dir name="info"><file name="checkmo.phtml" hash="3d5912ea23ce3c87047d96274e5f1c09"/><file name="default.phtml" hash="45910abe3326f2e32f97f4104007ec60"/><file name="purchaseorder.phtml" hash="e26250a7f256b6cd399c60fe305d8d8f"/></dir></dir><dir name="paypal"><dir name="express"><dir name="review"><file name="details.phtml" hash="271acd3c2627c6117b3fca702376780a"/></dir><file name="review.phtml" hash="d80ce136a8652ecfaf96d14e774f3a04"/><file name="shortcut.phtml" hash="ede698ae69e1e38aa97c4703a7de56cd"/></dir><dir name="hss"><file name="form.phtml" hash="8405762149f355a37787f92ab9203684"/><file name="iframe.phtml" hash="33c6f2b031162dd9d05b4d4d03b08580"/><file name="info.phtml" hash="7f5bbfc8a9b7af7d62a0626ea30b88b0"/><file name="js.phtml" hash="38c1d60029ab4603ebd484efa6c8f86f"/><file name="redirect.phtml" hash="92751b8b3f91a0bd03ffb9290e4e9a8b"/><dir name="review"><file name="button.phtml" hash="2df913bab010a61e26e6f50f65e75ca2"/></dir></dir><dir name="partner"><file name="logo.phtml" hash="3dd778703c98f87801a2db0a67fb7709"/></dir><dir name="payflowadvanced"><file name="form.phtml" hash="f570a6cbcd8199f47fc1dc8032e9f989"/><file name="iframe.phtml" hash="9a54bd85dbe4e2d4df41c213b15bc7a8"/><file name="info.phtml" hash="731c09dadf4d19498c1b5fb27c046ffb"/><file name="redirect.phtml" hash="ff12b410569b719aa6ff99e54bf491cb"/></dir><dir name="payflowlink"><file name="form.phtml" hash="8405762149f355a37787f92ab9203684"/><file name="iframe.phtml" hash="62cf6dc6b0cedb793fae360c80d0f99a"/><file name="info.phtml" hash="ff4ec41aa97cd998500e75e27f32f119"/><file name="redirect.phtml" hash="bc158ba0b7a62f9f519a5b76d902affd"/></dir><dir name="payment"><file name="mark.phtml" hash="6f3dd5cc4af3c03f261ef3f582539134"/><file name="redirect.phtml" hash="a418e461fd66e0dbfa7de2873e468507"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="5e6e40a959f59cb2a079fb828b63f1d9"/><file name="login.phtml" hash="45383442d10aaf867a04862e74ef4fe3"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="942ed2d580ce2964b1b4ab06907530cd"/><file name="register.phtml" hash="110cafe656dfce0e95ef373a2dd5a6b9"/></dir></dir><file name="remember_me.phtml" hash="e62ce9daa733a818d9056439374fe4ae"/><file name="remember_me_tooltip.phtml" hash="d91f445020d9423bd977e284b6c19073"/></dir><dir name="poll"><file name="active.phtml" hash="052052d5c1b3392a91acce706f465160"/><file name="result.phtml" hash="506c9fbf70ddb2c401c0c5f48d61439d"/></dir><dir name="productalert"><file name="price.phtml" hash="05fd4e6617bf3e3f808d0ed009334aaf"/><dir name="product"><file name="view.phtml" hash="417ea7db49d42cd5d46356c658ff2480"/></dir><file name="stock.phtml" hash="05fd4e6617bf3e3f808d0ed009334aaf"/></dir><dir name="rating"><file name="detailed.phtml" hash="fd9ac7e46e4d779eee7b991cbae85125"/><file name="empty.phtml" hash="5e29064c6d35e516fedf3bc9ce6ade43"/></dir><dir name="reports"><file name="home_product_compared.phtml" hash="9e477a9aa61ad88045bf89c260810af9"/><file name="home_product_viewed.phtml" hash="3778642fdb4ddfb10456190bfd2c7554"/><file name="product_compared.phtml" hash="e782c39b963c78e631d2069b3b115410"/><file name="product_viewed.phtml" hash="9bb1371fc186049d4b4e8a4ca7f8a1a5"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="c44460e4541183e9820807f6912c076d"/><file name="compared_images_list.phtml" hash="c7f08c2b15b268628fb4703f4daf0330"/><file name="compared_names_list.phtml" hash="c84071829631f33a7ff27a6dac20d31d"/></dir><dir name="content"><file name="compared_grid.phtml" hash="9ce0a867a65714003016f678d945d531"/><file name="compared_list.phtml" hash="dc28fa05aaa9f75e47f9851522aa6b71"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="1aaacfd26a8334acaae2c60098b2cf51"/><file name="viewed_images_list.phtml" hash="98e19e8e80471b8c8b09a5c2f8257420"/><file name="viewed_names_list.phtml" hash="290e25409c187ea7c9f4c3321a11cacc"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="cda9de8fddcc381b952c3066406aee94"/><file name="viewed_list.phtml" hash="aa8d7deaaccf1508892c91211cb04ca5"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="a45a673a79ed22742a41dc9c865d5c27"/><file name="recent.phtml" hash="9089effb0e2cb55380909e0b5496a1f7"/><file name="view.phtml" hash="f9fb00ed826c5faf2d41b6f3acb14c69"/></dir><file name="form.phtml" hash="d050439dea6ed25556628b33423eff39"/><dir name="helper"><file name="summary.phtml" hash="1bc771ee7fdceb39f77439521c1a09a8"/><file name="summary_short.phtml" hash="b3f88661ae4524d9df308658b7a5b99f"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="08a6aac14be6bdf187cee0f57785fa2d"/><file name="list.phtml" hash="6fbde1b8ef9c50216246bcadfe764168"/><file name="other.phtml" hash="f60ccea1886e06ff91dcf56195222eaa"/></dir></dir><file name="view.phtml" hash="5879e758f0cce00e9f7aa841f1f21cc9"/></dir><dir name="rss"><file name="list.phtml" hash="7d89a2e2daa0535f229414634b415be1"/><file name="nofeed.phtml" hash="45dab449e8f5fb370be8d7df7dcafad6"/><dir name="order"><file name="details.phtml" hash="567dfb8b2102096a59d823da77cf394e"/></dir></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="5ab3bc8a41d39bc53f0012e075ff0bad"/></dir><file name="agreements.phtml" hash="8c2c8b2b0c00731c072d1eb7da0cb71b"/></dir><dir name="guest"><file name="form.phtml" hash="67640729a8bde8ff2d9bf773b261e3a4"/></dir><dir name="order"><file name="comments.phtml" hash="accfbecea0eb713622e5bf2a0f3d2388"/><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="69b5338925949aa8d0e78e9de69c3a2f"/></dir></dir><file name="items.phtml" hash="1bd457e8ed3d8754f238cb59f2357f5a"/></dir><file name="creditmemo.phtml" hash="7ce072207d930420f9f0ba2604353a8b"/><file name="details.phtml" hash="ed8bf797dda9076b5e5796c788797e1e"/><file name="history.phtml" hash="de1078115fed539a7d37b71be51808d3"/><dir name="info"><file name="buttons.phtml" hash="050bcda9a80d583fe754da269d0149bf"/></dir><file name="info.phtml" hash="f2f1303e760c4a1da62a1b4a1f84676c"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="fc5480b6aeb16cad678c1155caa84503"/></dir></dir><file name="items.phtml" hash="3380eefefd735545e1c32daded33e300"/></dir><file name="invoice.phtml" hash="5d07b8eb55fe6692c919d7f457f62031"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="5b9a734db36811135b7d17bd6d65bc7d"/></dir></dir><file name="items.phtml" hash="c1afc15429d72caddbc3a8fe91493bb1"/><dir name="print"><file name="creditmemo.phtml" hash="7068c9b159ad223f6c834116c00933f8"/><file name="invoice.phtml" hash="2f41190b07d93eba4b6cee0c7a8cfb99"/><file name="shipment.phtml" hash="379f993d10de6bbab0520ee37124f984"/></dir><file name="print.phtml" hash="598e60e423e1507857728ad6069bcbd8"/><file name="recent.phtml" hash="172c8c357d779282037e7b9307e92ff1"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="5a035a658e6de4d75c3d09ac1393b433"/></dir></dir><file name="items.phtml" hash="846e566762eb53265cc1b3dc842de39b"/></dir><file name="shipment.phtml" hash="02a879cfcd3b36b6aa2d6e269e80807b"/><file name="totals.phtml" hash="f5853735cb7b7332c2681e548dc054d9"/><file name="trackinginfo.phtml" hash="d8e3eae9c8f1f43114b7dc0ed4777a00"/><file name="view.phtml" hash="d000662a180c2e113cd2da3d3772367f"/></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="6896fea9ecb834c152a43b632d96c58e"/></dir></dir></dir><dir name="recurring"><file name="grid.phtml" hash="8ea0a85c1bb0bc757907b51c9697bef9"/><dir name="profile"><dir name="view"><file name="info.phtml" hash="da5e30740f33ca9cb0111200018d8c57"/></dir><file name="view.phtml" hash="856b3203b354cf22534992ba862b263a"/></dir><file name="profiles.phtml" hash="291f5b47f23b644486d7ccd603daa661"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="c6f0e6ff2b7c358be4713b6922e29f40"/></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="c3808f20f5a4abf2fe348cdec5580367"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="b0d49abec317ad26ebc97f4b4fa2e704"/></dir><dir name="shipping"><dir name="tracking"><file name="ajax.phtml" hash="48bd7dc0156f50b97fe306dce65fedb9"/><file name="popup.phtml" hash="b91bdee55629949799ba52b0f0a128f2"/></dir></dir><dir name="tag"><file name="cloud.phtml" hash="aa3e7fbc65d5633fa70ada28f6705ca3"/><dir name="customer"><file name="recent.phtml" hash="d299a71d68fedd43e87e6d6a16a4d678"/><file name="tags.phtml" hash="3f5df7e3dcd3ff115354cc55cf3753a4"/><file name="view.phtml" hash="f1f225ecdc0fc77f9e174a34fad5de98"/></dir><file name="list.phtml" hash="7473a69abf22905d8f267ec634c90c83"/><file name="popular.phtml" hash="d1324c2aea96312a9b282b42927c60dd"/></dir><dir name="tax"><dir name="checkout"><file name="discount.phtml" hash="e62df9c7b45d7c399e9a978177ff1f06"/><file name="grandtotal.phtml" hash="e30c2d94cf5e69a330d296c8f26d69ce"/><file name="shipping.phtml" hash="6b777819d1e1806cc74f18096e0aaeed"/><file name="subtotal.phtml" hash="7f55b7a4c2889859b60502e6ffd09b38"/><file name="tax.phtml" hash="6b3f81a254f235500aa05ba2c08f60be"/></dir><dir name="order"><file name="tax.phtml" hash="f8f2ef21dc7a68bc11c92292589b70a2"/></dir></dir><dir name="wishlist"><dir name="email"><file name="items.phtml" hash="1b91decb967bcd9bdf81ac942c509b6e"/><file name="rss.phtml" hash="f1ed6701c6c0e0d78d658c74e2f30407"/></dir><dir name="item"><dir name="configure"><file name="addto.phtml" hash="534c9ca22b3d4f032a558b4791ba8596"/></dir></dir><file name="options_list.phtml" hash="823f67fb3d61d8fc93b8d2d535a29f77"/><dir name="render"><dir name="item"><file name="price.phtml" hash="42eabf4c8289c6904f45dbb5e8ff89c4"/><file name="price_msrp_item.phtml" hash="db418ffdf6b17ef622621e32098e6e4f"/><file name="price_msrp_rss.phtml" hash="1bd626d6a1b2d4f88cce14e3244d9a3e"/></dir></dir><file name="shared.phtml" hash="e93c3d57babb9f3f966c92915e0dc426"/><file name="sharing.phtml" hash="dd5e13af57673270009d67a59eb4daa0"/><file name="sidebar.phtml" hash="22606baf08da7e6891ca1ef84ea8a156"/><file name="view.phtml" hash="51628f2f579f00f38b632a4d8861bc31"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="widgets.css" hash="f3a4bf95d08d1fdbda18b2fb701dfc9a"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="ed0f392004a405466291071a760b285d"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir></dir><dir name="js"><file name="bundle.js" hash="4b5900b9871c5b003a89028f9185f71c"/><dir name="checkout"><file name="review.js" hash="13e4f9205cea637579efab147ec3be55"/></dir><file name="giftmessage.js" hash="ae109c657833d8c29199888acf89b136"/><file name="ie6.js" hash="6b4f858b7ec45561af250200ff567a86"/><file name="msrp.js" hash="94ede6432bdab7039fdf34b221f45269"/><file name="opcheckout.js" hash="8dd380c42b5f082925a79c82a9b9bb3d"/></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.2.0</min><max>1.7.0.0</max></package></required></dependencies>
18
  </package>