Interface_Frontend_Base_Default - Version 1.9.3.0

Version Notes

1.9.3.0

Download this release

Release Info

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


Code changes from version 1.9.2.4 to 1.9.3.0

app/design/frontend/base/default/layout/catalog.xml CHANGED
@@ -156,6 +156,7 @@ Compare products page
156
  <reference name="head">
157
  <action method="addJs"><script>scriptaculous/scriptaculous.js</script></action>
158
  <action method="addJs"><script>varien/product.js</script></action>
 
159
  </reference>
160
  <reference name="content">
161
  <block type="catalog/product_compare_list" name="catalog.compare.list" template="catalog/product/compare/list.phtml"/>
@@ -180,6 +181,7 @@ Product view
180
  </reference>
181
  <reference name="head">
182
  <action method="addJs"><script>varien/product.js</script></action>
 
183
  <action method="addJs"><script>varien/configurable.js</script></action>
184
 
185
  <action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
@@ -320,6 +322,7 @@ Product send to friend
320
  </reference>
321
  <reference name="head">
322
  <action method="addJs"><script>varien/product.js</script></action>
 
323
  </reference>
324
  <reference name="content">
325
  <block type="catalog/product_send" name="product.send" template="catalog/product/send.phtml">
156
  <reference name="head">
157
  <action method="addJs"><script>scriptaculous/scriptaculous.js</script></action>
158
  <action method="addJs"><script>varien/product.js</script></action>
159
+ <action method="addJs"><script>varien/product_options.js</script></action>
160
  </reference>
161
  <reference name="content">
162
  <block type="catalog/product_compare_list" name="catalog.compare.list" template="catalog/product/compare/list.phtml"/>
181
  </reference>
182
  <reference name="head">
183
  <action method="addJs"><script>varien/product.js</script></action>
184
+ <action method="addJs"><script>varien/product_options.js</script></action>
185
  <action method="addJs"><script>varien/configurable.js</script></action>
186
 
187
  <action method="addItem"><type>js_css</type><name>calendar/calendar-win2k-1.css</name><params/><!--<if/><condition>can_load_calendar_js</condition>--></action>
322
  </reference>
323
  <reference name="head">
324
  <action method="addJs"><script>varien/product.js</script></action>
325
+ <action method="addJs"><script>varien/product_options.js</script></action>
326
  </reference>
327
  <reference name="content">
328
  <block type="catalog/product_send" name="product.send" template="catalog/product/send.phtml">
app/design/frontend/base/default/layout/review.xml CHANGED
@@ -72,6 +72,7 @@ Product reviews page
72
  </reference>
73
  <reference name="head">
74
  <action method="addJs"><script>varien/product.js</script></action>
 
75
  <action method="addJs"><script>varien/configurable.js</script></action>
76
  </reference>
77
  <reference name="content">
72
  </reference>
73
  <reference name="head">
74
  <action method="addJs"><script>varien/product.js</script></action>
75
+ <action method="addJs"><script>varien/product_options.js</script></action>
76
  <action method="addJs"><script>varien/configurable.js</script></action>
77
  </reference>
78
  <reference name="content">
app/design/frontend/base/default/layout/sendfriend.xml CHANGED
@@ -33,6 +33,7 @@
33
  </reference>
34
  <reference name="head">
35
  <action method="addJs"><script>varien/product.js</script></action>
 
36
  </reference>
37
  <reference name="content">
38
  <block type="sendfriend/send" name="sendfriend.send" template="sendfriend/send.phtml" />
33
  </reference>
34
  <reference name="head">
35
  <action method="addJs"><script>varien/product.js</script></action>
36
+ <action method="addJs"><script>varien/product_options.js</script></action>
37
  </reference>
38
  <reference name="content">
39
  <block type="sendfriend/send" name="sendfriend.send" template="sendfriend/send.phtml" />
app/design/frontend/base/default/template/checkout/onepage/payment.phtml CHANGED
@@ -28,6 +28,7 @@
28
  //<![CDATA[
29
  var quoteBaseGrandTotal = <?php echo (float)$this->getQuoteBaseGrandTotal(); ?>;
30
  var checkQuoteBaseGrandTotal = quoteBaseGrandTotal;
 
31
  var payment = new Payment('co-payment-form', '<?php echo $this->getUrl('checkout/onepage/savePayment') ?>');
32
  var lastPrice;
33
  //]]>
28
  //<![CDATA[
29
  var quoteBaseGrandTotal = <?php echo (float)$this->getQuoteBaseGrandTotal(); ?>;
30
  var checkQuoteBaseGrandTotal = quoteBaseGrandTotal;
31
+ var quoteGrandTotalClean = quoteBaseGrandTotal;
32
  var payment = new Payment('co-payment-form', '<?php echo $this->getUrl('checkout/onepage/savePayment') ?>');
33
  var lastPrice;
34
  //]]>
app/design/frontend/base/default/template/customer/form/edit.phtml CHANGED
@@ -54,6 +54,14 @@
54
  <?php if ($_gender->isEnabled()): ?>
55
  <li><?php echo $_gender->setGender($this->getCustomer()->getGender())->toHtml() ?></li>
56
  <?php endif ?>
 
 
 
 
 
 
 
 
57
  <li class="control">
58
  <input type="checkbox" name="change_password" id="change_password" value="1" onclick="setPasswordForm(this.checked)" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Change Password')) ?>"<?php if($this->getCustomer()->getChangePassword()==1): ?> checked="checked"<?php endif; ?> class="checkbox" /><label for="change_password"><?php echo $this->__('Change Password') ?></label>
59
  </li>
@@ -62,25 +70,17 @@
62
  <div class="fieldset" style="display:none;">
63
  <h2 class="legend"><?php echo $this->__('Change Password') ?></h2>
64
  <ul class="form-list">
65
- <li>
66
- <label for="current_password" class="required"><em>*</em><?php echo $this->__('Current Password') ?></label>
67
- <div class="input-box">
68
- <!-- This is a dummy hidden field to trick firefox from auto filling the password -->
69
- <input type="text" class="input-text no-display" name="dummy" id="dummy" />
70
- <input type="password" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Current Password')) ?>" class="input-text" name="current_password" id="current_password" />
71
- </div>
72
- </li>
73
  <li class="fields">
74
  <div class="field">
75
  <label for="password" class="required"><em>*</em><?php echo $this->__('New Password') ?></label>
76
  <div class="input-box">
77
- <input type="password" title="<?php echo Mage::helper('core')->quoteEscape($this->__('New Password')) ?>" class="input-text validate-password" name="password" id="password" />
78
  </div>
79
  </div>
80
  <div class="field">
81
  <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm New Password') ?></label>
82
  <div class="input-box">
83
- <input type="password" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Confirm New Password')) ?>" class="input-text validate-cpassword" name="confirmation" id="confirmation" />
84
  </div>
85
  </div>
86
  </li>
@@ -96,18 +96,7 @@
96
  //<![CDATA[
97
  var dataForm = new VarienForm('form-validate', true);
98
  function setPasswordForm(arg){
99
- if(arg){
100
- $('current_password').up(3).show();
101
- $('current_password').addClassName('required-entry');
102
- $('password').addClassName('required-entry');
103
- $('confirmation').addClassName('required-entry');
104
-
105
- }else{
106
- $('current_password').up(3).hide();
107
- $('current_password').removeClassName('required-entry');
108
- $('password').removeClassName('required-entry');
109
- $('confirmation').removeClassName('required-entry');
110
- }
111
  }
112
 
113
  <?php if($this->getCustomer()->getChangePassword()): ?>
54
  <?php if ($_gender->isEnabled()): ?>
55
  <li><?php echo $_gender->setGender($this->getCustomer()->getGender())->toHtml() ?></li>
56
  <?php endif ?>
57
+ <li>
58
+ <label for="current_password" class="required"><em>*</em><?php echo Mage::helper('core')->quoteEscape($this->__('Current Password')) ?></label>
59
+ <div class="input-box">
60
+ <!-- This is a dummy hidden field to trick firefox from auto filling the password -->
61
+ <input type="text" class="input-text no-display" name="dummy" id="dummy" />
62
+ <input type="password" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Current Password')) ?>" class="input-text required-entry" name="current_password" id="current_password" />
63
+ </div>
64
+ </li>
65
  <li class="control">
66
  <input type="checkbox" name="change_password" id="change_password" value="1" onclick="setPasswordForm(this.checked)" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Change Password')) ?>"<?php if($this->getCustomer()->getChangePassword()==1): ?> checked="checked"<?php endif; ?> class="checkbox" /><label for="change_password"><?php echo $this->__('Change Password') ?></label>
67
  </li>
70
  <div class="fieldset" style="display:none;">
71
  <h2 class="legend"><?php echo $this->__('Change Password') ?></h2>
72
  <ul class="form-list">
 
 
 
 
 
 
 
 
73
  <li class="fields">
74
  <div class="field">
75
  <label for="password" class="required"><em>*</em><?php echo $this->__('New Password') ?></label>
76
  <div class="input-box">
77
+ <input type="password" title="<?php echo Mage::helper('core')->quoteEscape($this->__('New Password')) ?>" class="input-text required-entry validate-password" name="password" id="password" />
78
  </div>
79
  </div>
80
  <div class="field">
81
  <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm New Password') ?></label>
82
  <div class="input-box">
83
+ <input type="password" title="<?php echo Mage::helper('core')->quoteEscape($this->__('Confirm New Password')) ?>" class="input-text required-entry validate-cpassword" name="confirmation" id="confirmation" />
84
  </div>
85
  </div>
86
  </li>
96
  //<![CDATA[
97
  var dataForm = new VarienForm('form-validate', true);
98
  function setPasswordForm(arg){
99
+ $('password').up('.fieldset')[arg ? 'show': 'hide']();
 
 
 
 
 
 
 
 
 
 
 
100
  }
101
 
102
  <?php if($this->getCustomer()->getChangePassword()): ?>
app/design/frontend/base/default/template/paypal/express/review.phtml CHANGED
@@ -133,11 +133,7 @@
133
  new Ajax.Request(this.form.action, {
134
  parameters: {isAjax: 1, method: 'POST'},
135
  onSuccess: function(transport) {
136
- try{
137
- response = eval('(' + transport.responseText + ')');
138
- } catch (e) {
139
- response = {};
140
- }
141
  if (response.redirect) {
142
  setLocation(response.redirect);
143
  return;
@@ -147,12 +143,12 @@
147
  return;
148
  } else {
149
  var msg = response.error_messages;
150
- if (typeof(msg)=='object') {
151
- msg = msg.join("\n");
152
  }
153
  if (msg) {
154
  $('review-please-wait').hide();
155
- alert(msg);
156
  return;
157
  }
158
  }
133
  new Ajax.Request(this.form.action, {
134
  parameters: {isAjax: 1, method: 'POST'},
135
  onSuccess: function(transport) {
136
+ var response = transport.responseJSON || transport.responseText.evalJSON(true) || {};
 
 
 
 
137
  if (response.redirect) {
138
  setLocation(response.redirect);
139
  return;
143
  return;
144
  } else {
145
  var msg = response.error_messages;
146
+ if (Object.isArray(msg)) {
147
+ msg = msg.join("\n").stripTags().toString();
148
  }
149
  if (msg) {
150
  $('review-please-wait').hide();
151
+ alert(msg.stripTags().toString());
152
  return;
153
  }
154
  }
app/design/frontend/base/default/template/paypal/hss/js.phtml CHANGED
@@ -45,13 +45,8 @@ Review.prototype.save = function() {
45
  method:'post',
46
  parameters:params,
47
  onComplete: function(transport) {
48
- if (transport && transport.responseText) {
49
- try{
50
- response = eval('(' + transport.responseText + ')');
51
- }
52
- catch (e) {
53
- response = {};
54
- }
55
  if (response.error_messages) {
56
  checkout.setLoadWaiting(false);
57
  }
45
  method:'post',
46
  parameters:params,
47
  onComplete: function(transport) {
48
+ if (transport) {
49
+ var response = transport.responseJSON || transport.responseText.evalJSON(true) || {};
 
 
 
 
 
50
  if (response.error_messages) {
51
  checkout.setLoadWaiting(false);
52
  }
app/design/frontend/base/default/template/sales/guest/form.phtml CHANGED
@@ -61,8 +61,8 @@
61
  </div>
62
  <div class="input-box">
63
  <select name="oar_type" id="quick_search_type_id" class="select guest-select" title="" onchange="showIdentifyBlock(this.value);">
64
- <option value="email">Email Address</option>
65
- <option value="zip">ZIP Code</option>
66
  </select>
67
  </div>
68
  </li>
61
  </div>
62
  <div class="input-box">
63
  <select name="oar_type" id="quick_search_type_id" class="select guest-select" title="" onchange="showIdentifyBlock(this.value);">
64
+ <option value="email"><?php echo Mage::helper('sales')->__('Email Address') ?></option>
65
+ <option value="zip"><?php echo Mage::helper('sales')->__('ZIP Code') ?></option>
66
  </select>
67
  </div>
68
  </li>
app/design/frontend/base/default/template/sales/widget/guest/form.phtml CHANGED
@@ -40,8 +40,8 @@
40
  <label class="required"><?php echo Mage::helper('sales')->__('Find Order By:') ?></label>
41
  <div class="input-box">
42
  <select name="oar_type" id="quick_search_type_id" class="select" title="" onchange="showIdentifyBlock(this.value);">
43
- <option value="email">Email Address</option>
44
- <option value="zip">ZIP Code</option>
45
  </select>
46
  </div>
47
  </li>
40
  <label class="required"><?php echo Mage::helper('sales')->__('Find Order By:') ?></label>
41
  <div class="input-box">
42
  <select name="oar_type" id="quick_search_type_id" class="select" title="" onchange="showIdentifyBlock(this.value);">
43
+ <option value="email"><?php echo Mage::helper('sales')->__('Email Address') ?></option>
44
+ <option value="zip"><?php echo Mage::helper('sales')->__('ZIP Code') ?></option>
45
  </select>
46
  </div>
47
  </li>
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Interface_Frontend_Base_Default</name>
4
- <version>1.9.2.4</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.9.2.4</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2016-02-17</date>
14
- <time>18:27:26</time>
15
- <contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="etc"><file name="theme.xml" hash="36ad15f993a96d7a2031ea3480c4e3f3"/><file name="widget.xml" hash="4dd754aa7a74702578e4a6d893cee258"/></dir><dir name="layout"><file name="authorizenet.xml" hash="e47ed8e378c48a6336a19c574753ca3c"/><file name="bml.xml" hash="b7f3df3ecb4a5d47a22e175ba49f55b0"/><file name="bundle.xml" hash="8e2ff1d2e59b20ea018c69ce33700acd"/><file name="captcha.xml" hash="e96d3099bf87d7683568a0e71163f84b"/><file name="catalog.xml" hash="a30c129e6815d3ac03d3a3eeed2365b0"/><file name="catalog_msrp.xml" hash="f8b0a776a17bc1550cf3051a096613d5"/><file name="cataloginventory.xml" hash="6f0f581f01ee019680f77092b285af2c"/><file name="catalogsearch.xml" hash="8f3ce0ca198f3eb3ce55f63dfcb8c83c"/><file name="checkout.xml" hash="f78114a02111fb57061ca2e8d68d4adc"/><file name="cms.xml" hash="91de96bb142693a3e793ea09629e1dd7"/><file name="contacts.xml" hash="2bb3361cfa237604f886f709d3217e90"/><file name="core.xml" hash="05b53213c0df7726dba664278f390138"/><file name="customer.xml" hash="6a0f4bd4174f8d67cffdfb5edee7de4c"/><file name="directory.xml" hash="88cfbeae49d44381be38d391251cede9"/><file name="downloadable.xml" hash="81a5657be62cbcce6844109998b0cade"/><file name="googleanalytics.xml" hash="30eaa4b941eabf2573b9071e74229563"/><file name="newsletter.xml" hash="579fa73d2dbe9eb421d9c1c2ab919ea1"/><file name="oauth.xml" hash="98f44e4142dab1322bd3005048acc7f9"/><file name="page.xml" hash="502ec300efc7898019b71b11b58a7895"/><file name="pagecache.xml" hash="193bd408dd2f564d16f2dd39189519d6"/><file name="payment.xml" hash="03bc6e091a41d9b3afdbe9e070f1f2ae"/><file name="paypal.xml" hash="3a0398cf1db26a4a7f1a4350fe83b521"/><file name="paypaluk.xml" hash="67ae02cb70e191cf94ed8dbbafeb53e5"/><file name="persistent.xml" hash="a347809744f53ef22e5740995da8557d"/><file name="poll.xml" hash="b87bffa15321c56f9fa032395e6b91f5"/><file name="productalert.xml" hash="a966ba7df770842f5bf4141b541e04c5"/><file name="reports.xml" hash="77d0b3e68bc3b83b9aa7afedf481f8ef"/><file name="review.xml" hash="b2f6cac2f12521a0e7ead4887ac1306d"/><file name="rss.xml" hash="7b3559742e6bf9ad3d3d0722b63a44f3"/><dir name="sales"><file name="billing_agreement.xml" hash="28d1a9e9fde68bd91cedb46a5cac7ccc"/><file name="recurring_profile.xml" hash="ee61b3f3f1f706176458d75618719acb"/></dir><file name="sales.xml" hash="c66377307bdcdccdd788cf648dd3cedb"/><file name="sendfriend.xml" hash="0a22b00393accc560a627fc810ae6748"/><file name="shipping.xml" hash="da7fa90e46cee447a6ab5e1d119be15a"/><file name="tag.xml" hash="9fddf75ce2b325798b92c6e1307ff100"/><file name="weee.xml" hash="0eec371c185da6c312a6345b47ed5379"/><file name="wishlist.xml" hash="2e8937a4f24ef013cfd60f22305a9450"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="202d326d7c9414c540df4f8ba8570d22"/><file name="iframe.phtml" hash="e53cd070a68c05bfdede82f7c303c694"/><file name="info.phtml" hash="dab866194919336851ff18057ecfb69c"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="list"><file name="partof.phtml" hash="2b17f281cf740d3e03657e2171cde7b7"/></dir><file name="price.phtml" hash="46179fb8648a7c96513ecc04e324babf"/><dir name="view"><file name="option_tierprices.phtml" hash="f821e7c0a778fd5f219ff6e10c980e79"/><dir name="options"><file name="notice.phtml" hash="cfb6aad5282db6cb92a679a1d4ec4071"/></dir><file name="price.phtml" hash="d5b8f541a7b3f18ee5e58bbbfeb1b373"/><file name="tierprices.phtml" hash="6b583cbbe62409e5ef242343484ffa68"/><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="1ee898fc7cfe31c50b13dbadcf1dc3bb"/><file name="multi.phtml" hash="b460424af200ad58a8ddc48be72ac40b"/><file name="radio.phtml" hash="7c1d857817793c4eed566eff2590dfee"/><file name="select.phtml" hash="176fa4a5275fa5ac4c4ed4930b73e0cd"/></dir><file name="options.phtml" hash="000785907ef63c7b8fa3358840b5ac25"/></dir><file name="bundle.phtml" hash="a263f13eb566c73787fd65428d25f1e4"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="369374d053f31630cdc00a02c0da2e0a"/></dir><dir name="invoice"><file name="default.phtml" hash="dae8a4596baf272864b2b9bbf89cb344"/></dir><dir name="order"><file name="default.phtml" hash="5464b0903adadf19b9c82316319adde8"/></dir><dir name="shipment"><file name="default.phtml" hash="309f87ac8da5570c20f4b5d703fbc7aa"/></dir></dir></dir></dir><dir name="rss"><dir name="catalog"><dir name="product"><file name="price.phtml" hash="3595334725b41a2f0abb96a546d24f7e"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="bc4411e201d8895ca72893cf26b6b368"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="9a7fa8f0712d759ff543d786e0e2404e"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="872cbd19844ac0de00f3898822b05be2"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="94555c1393cce09e7221984138812af2"/></dir></dir></dir></dir></dir><dir name="callouts"><file name="left_col.phtml" hash="b2af7711773e9aa40d95c9122997b13d"/><file name="right_col.phtml" hash="b2af7711773e9aa40d95c9122997b13d"/></dir><dir name="captcha"><file name="zend.phtml" hash="334fa445da501bc018e1c0613a4a5d0a"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="8ee108bf6f4b4c88473dc2491ddbd919"/><file name="view.phtml" hash="c44853be0ab342e5497f77b471090ca3"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="220aa8d7da9cdcf3e5cd661f7effe959"/><file name="link_inline.phtml" hash="2ec271e266715582d29a28813f2564c6"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="0374077cc0d7f0b433ddbd2fbbda7045"/><file name="state.phtml" hash="71db798dc06b418d5eacebf18d4532bf"/><file name="view.phtml" hash="7f2433a2241083dc9402541064f9b6c9"/></dir><dir name="msrp"><file name="popup.phtml" hash="21a7aa978ee2dc8877dd0d72f9838afa"/></dir><dir name="navigation"><file name="left.phtml" hash="e8373efbd991b47990e26343381fc720"/><file name="top.phtml" hash="c63998dd4f4f6c1c578e15d46b6bd949"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="59314a27638053e3d54f0cc0475cca1b"/><file name="sidebar.phtml" hash="8219ef41b665a151f7d195a31695a8e9"/></dir><file name="gallery.phtml" hash="2d6c7ab8ff6cbd38502c9e8e04fea62b"/><dir name="list"><file name="related.phtml" hash="f1293b35c7bd01dd60225718ad76b4f9"/><file name="toolbar.phtml" hash="8d4bd8d84d8cac4fbbf6427b7a0b86cd"/><file name="upsell.phtml" hash="03cb68ada7e32399bce81c0a2edfacc0"/></dir><file name="list.phtml" hash="4e88f3eb13672eeecb84f88351f52448"/><file name="new.phtml" hash="ac04937ab4765e47f10e7e3a57b877c3"/><file name="price.phtml" hash="20e11ab82b2bf9c8cc8a3167b31e653d"/><file name="price_msrp.phtml" hash="50d6fcfb4fd9cb93fdd775df5dc8a328"/><file name="price_msrp_item.phtml" hash="fd630ab3835be0b46973c14c2f60eefc"/><file name="price_msrp_noform.phtml" hash="aafd35ab489f9b63969aa13c052767ec"/><file name="price_msrp_rss.phtml" hash="03bd7cf64797874f43acb811deb6d599"/><dir name="view"><file name="additional.phtml" hash="97532fcc259be011d3f0456ca57ad532"/><file name="addto.phtml" hash="38a0acea798d555d5232a384ec78b37c"/><file name="addtocart.phtml" hash="f7fcd7556df6589802eccf9e2b8c81ba"/><file name="attributes.phtml" hash="31bf0a86643bdd3f43abacbdbd6de599"/><file name="description.phtml" hash="e1404066f134b1299dbb3aa4e8d69dc7"/><file name="media.phtml" hash="7e13058446644bd0e2c307cfa62ea8e5"/><dir name="options"><file name="js.phtml" hash="121d850391929d3db87252707fc82979"/><dir name="type"><file name="date.phtml" hash="953eb780103c1d6c3daf045c4b8839a7"/><file name="default.phtml" hash="f7aebd29d0065254c6fdbee8decd6b01"/><file name="file.phtml" hash="21011d1c98c83b3285b3c959f309b3e4"/><file name="select.phtml" hash="15251ee74c75e9f5eefa17d4a81290b3"/><file name="text.phtml" hash="26a9857b97d0ff603b54f887fb340b24"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="7721f43ef3516ece0d69436d845ec82f"/></dir><file name="wrapper.phtml" hash="c6f457077b838ea5e748f0b01b47535f"/></dir><file name="options.phtml" hash="37876fa680bdbddcc0bb8684bed27d8e"/><file name="price.phtml" hash="1e4332110ae6eca796b3f9d4bb752b30"/><file name="price_clone.phtml" hash="6e05db9807baadd479462e72f01f10be"/><file name="tierprices.phtml" hash="cf066236cd8c4a5e89938d14ff384efe"/><dir name="type"><file name="configurable.phtml" hash="fee37310213061154d447ad389b793f7"/><file name="default.phtml" hash="1cb2c1f4421444256515006ff0f96575"/><file name="grouped.phtml" hash="aa57d7e7e00893f05146aefbf7e90a50"/><dir name="options"><file name="configurable.phtml" hash="8f136151ebf23dfd1ed71bbf1284ffa9"/></dir><file name="simple.phtml" hash="fee37310213061154d447ad389b793f7"/><file name="virtual.phtml" hash="fee37310213061154d447ad389b793f7"/></dir></dir><file name="view.phtml" hash="6d48a7f750054a6ba2412fd8d312ba88"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="13db9a40fe79f6c444b72daebd9dbd2e"/><file name="link_inline.phtml" hash="876945b7b656298812b12c650d03a0e2"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="9b1f192b2a1b392a34812dda4cad1571"/><file name="new_images_list.phtml" hash="12c19221dfa788130aa75604c0a7d2fa"/><file name="new_names_list.phtml" hash="487e167f8d8f16c9683c20c621cf01f5"/></dir><dir name="content"><file name="new_grid.phtml" hash="ca513fc447702e3f35101dbc1744c69d"/><file name="new_list.phtml" hash="ccd484b0fb5f0e79a7184c0edaa5e16c"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="75152205d25360f549055062b23ada66"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="05c4cfdd673a7b92971cbaa31bf8f551"/></dir><file name="sitemap.phtml" hash="f1e207bfa7fb82894f6c97fcb38cb2ed"/><file name="tree.phtml" hash="e0691c7a55be55b5bf26cc9e0bbcd8e6"/></dir></dir><dir name="cataloginventory"><file name="qtyincrements.phtml" hash="7cc032736dd9efc39a4b79d458a8dd1d"/><dir name="stockqty"><file name="composite.phtml" hash="9464df9c953921544b9de3871a8adb53"/><file name="default.phtml" hash="ddda74704dc9e9f66e098687f40aaedb"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="b97aa2e5316757bf155a85e6ed363724"/><file name="result.phtml" hash="5d0782a58711502df91aec3e25860970"/></dir><file name="form.mini.phtml" hash="acc2c1b561e63993abaea45d6d45f77e"/><file name="result.phtml" hash="642e0abfed0fca6987a247b1a5299af1"/><file name="term.phtml" hash="142002b20b55e6451efc3b999274c02d"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="f8b8f6cbd5602101c6e6393d1a63e8fa"/><file name="crosssell.phtml" hash="b50e69ec580903f6633780d9e9307f8c"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="0df52a722e11758732b309a9458ff278"/></dir><file name="default.phtml" hash="a7f465e303d8fde9e139d828af30e735"/></dir><file name="noItems.phtml" hash="0f65133464278d39200804ae3f073189"/><dir name="render"><file name="default.phtml" hash="670829e67b30232a196de4d43a3c6275"/><file name="simple.phtml" hash="a19edc9e64b5b1974c97609c3d073f01"/></dir><file name="shipping.phtml" hash="f2d113cf2cbb1d50055d57af3a9c1e0d"/><dir name="sidebar"><file name="default.phtml" hash="90a69d92156c0be2c5c95008e23e64b7"/></dir><file name="sidebar.phtml" hash="ef86018384b99db3d428da77793b7430"/><file name="totals.phtml" hash="47030ec35d284e66a0e6aa5a8b3aa18f"/></dir><file name="cart.phtml" hash="b47121b4c0ea0ad9f147f9e9dadeb501"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="cba60189d2af7e06fa9500b94f0e653f"/></dir><file name="addresses.phtml" hash="a362b4682e65622db34f9950b877c947"/><file name="agreements.phtml" hash="a2a6034be5b41f7f6b757b936507a380"/><dir name="billing"><file name="items.phtml" hash="862f9a5dab8ff70cba5e558358ab626c"/></dir><file name="billing.phtml" hash="503dfa292fbe591d48adccdb56ea5af5"/><dir name="item"><file name="default.phtml" hash="8d036142e5b308d6b09300ef43405063"/></dir><file name="link.phtml" hash="54f7721a1be51b309c6b6fa06230ddb0"/><dir name="overview"><file name="item.phtml" hash="3fdaba6363fdad0d14eed7ccedc262ed"/></dir><file name="overview.phtml" hash="b76ad1761f9a859ac85f062d7492c8ca"/><file name="shipping.phtml" hash="379c0f3bd73926866c271c8b59fb32cc"/><file name="state.phtml" hash="94ac5f202549f948d7064282addba06c"/><file name="success.phtml" hash="c79434b9c1d2427b6439dc5cb9facad4"/></dir><dir name="onepage"><file name="agreements.phtml" hash="560ee986f4539eba0b8371c3b015c71b"/><file name="billing.phtml" hash="af39d6e73338a3e185495514070d31b3"/><file name="failure.phtml" hash="44dcd4afc719ac2b622b7434b751a86d"/><file name="link.phtml" hash="83856f68bcd8530bfe9ca31681a2c177"/><file name="login.phtml" hash="925f20e34a17da587be51b41126c5bbf"/><dir name="payment"><file name="info.phtml" hash="7368d1b8dc890fe4f3c64aecf8e5d471"/><file name="methods.phtml" hash="0811dfc3c36a448ffa79ada9f799e91e"/></dir><file name="payment.phtml" hash="e0d9e68c90ce3bc04aba11f797bd02ea"/><dir name="progress"><file name="billing.phtml" hash="7c98f54e4f84111e0ea33a6ab9b74943"/><file name="payment.phtml" hash="41702d033d27fc3e0d5a923d6ebfb818"/><file name="shipping.phtml" hash="a808dfc902accda5e38737a0d4f1d9f3"/><file name="shipping_method.phtml" hash="0862d60e10f1c21f3279cf63b5ca0c9c"/></dir><file name="progress.phtml" hash="ca30c0dcc1bf948222c7106b3e2d7dfb"/><dir name="review"><file name="button.phtml" hash="87036553496595ddc944133437cd89d1"/><file name="info.phtml" hash="2ce1ffd81e8f6a218a70990436b5f091"/><file name="item.phtml" hash="86f45de5b40334ae9062fc3b5153d12e"/><file name="totals.phtml" hash="d7974c99b50b1274b1ad2b6bbf98eab2"/></dir><file name="review.phtml" hash="7c995cfd69d4bb364e72b31c6c7b51ef"/><file name="shipping.phtml" hash="f831d611d573e0ed6ce2b9c2dcb88fd2"/><dir name="shipping_method"><file name="additional.phtml" hash="c1589790eb522621ccd5dcb1e86579d1"/><file name="available.phtml" hash="6f5cc2093006c0a052b401666881a6dc"/></dir><file name="shipping_method.phtml" hash="c9590b6392f8a8e0b048dc042a08eab5"/></dir><file name="onepage.phtml" hash="5e81e54801d1e03411eb539431e017b4"/><file name="success.phtml" hash="15f6181801baba097a128a2d67475a2e"/><dir name="total"><file name="default.phtml" hash="01e8293d3bcce2cfd66f9e6750620cd7"/><file name="nominal.phtml" hash="1c0746bbfec847a014272162fde83f9f"/><file name="tax.phtml" hash="420dab85d25a223cb214a353ae22d16f"/></dir></dir><dir name="cms"><file name="content.phtml" hash="4448bd16cc1a8f76ee4a914f346571ad"/><file name="content_heading.phtml" hash="85f781d72ab8f408847a4eb28b1c2834"/><dir name="default"><file name="home.phtml" hash="935a4bea21a6d3eae366278edd7df293"/><file name="no-route.phtml" hash="13f72f682fc9f35bc915c0f8f88b39b5"/></dir><file name="meta.phtml" hash="3467d5d211a77223d526ddf44ff266f0"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="b53753d5853cc9c9712c37c96e1704f1"/><file name="link_inline.phtml" hash="ad8678d87c576f53fc013e7523176744"/></dir><dir name="static_block"><file name="default.phtml" hash="4d9a572adc10e3216190630429d631ef"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="d49b51d2dea7a2700b648c15641fa03e"/></dir><dir name="core"><file name="formkey.phtml" hash="863212f1c08ba181105c59327583b0b2"/><file name="link.phtml" hash="3e30c42082c1465578d7ed8c6e901c65"/><file name="messages.phtml" hash="a82b2b4b3edf28ec0eaa9c9edc0434f8"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="904b419653105dbe5882c75925b97ce7"/><file name="hello.phtml" hash="90b5dc8674e81a0e7011e776676b3ecf"/><file name="info.phtml" hash="63068d687f698480dabc60f21d6e6905"/><file name="newsletter.phtml" hash="b10865b4c558ec2688860368ebbe6c07"/></dir><file name="dashboard.phtml" hash="0d0d4edb111d35d39f8fa70065875c3e"/><dir name="link"><file name="back.phtml" hash="aedaa056ccc80c76c1afefce2bbf5965"/></dir><file name="navigation.phtml" hash="8edae91611dc6f90d01eff2274120454"/></dir><dir name="address"><file name="book.phtml" hash="efc752f924c0801c7cd8d9ae7c7cb60f"/><file name="edit.phtml" hash="0bb16a20d1b5bfb8452c775eb1fff540"/></dir><file name="address.phtml" hash="a738f8f2d991a41aa1bc5a46a84a5d30"/><file name="balance.phtml" hash="6326a38f59a5bd83e770da1614066e4c"/><dir name="form"><file name="address.phtml" hash="10a0b9936ffe608ca0131fe905173fb7"/><file name="changepassword.phtml" hash="2f9813021f20c7bc9af7f20690fe726a"/><file name="confirmation.phtml" hash="d6c8757ad4c83b9acb7d0a13d9066082"/><file name="edit.phtml" hash="d67f48e36e032eac05272b03256a2128"/><file name="forgotpassword.phtml" hash="1aeae72fd7ee2ede3d6ad3bebef7cf24"/><file name="login.phtml" hash="3a9e49c1f8ea914d9ccfa1096bd5b155"/><file name="mini.login.phtml" hash="3fdbae59fc67b6676af43fd756ca7fcd"/><file name="newsletter.phtml" hash="447112ca884a57bdc8aa1ed271fe9965"/><file name="register.phtml" hash="93c6e55f27175b5bdd925825b00e4ce6"/><file name="resetforgottenpassword.phtml" hash="db9cd5bbb3c3f5dd4174b4729a9b002d"/></dir><file name="logout.phtml" hash="e02edb939fd7eed9b6525b22d7903289"/><file name="orders.phtml" hash="42fb93d0543e94a43091149a64abf20a"/><dir name="widget"><file name="dob.phtml" hash="8d92c3dd825b1a35bdce5349a8ee045e"/><file name="gender.phtml" hash="e3d8f95cd4fc923efed9801d7881f118"/><file name="name.phtml" hash="3d2fe05b006667a35cc5cd6c0264c5ea"/><file name="taxvat.phtml" hash="b8cfa5b0302167641ce67e1cf54011ef"/></dir><file name="wishlist.phtml" hash="5d86153cfbd0d744017738b52d386151"/></dir><dir name="directory"><dir name="currency"><file name="switch.phtml" hash="0208583247addba89944dea7ec97eeab"/></dir><file name="currency.phtml" hash="ef58d5ebfd45b03871eb49eccac18a70"/><dir name="js"><file name="optional_zip_countries.phtml" hash="c5aa8bbf8af4dab760bb99f47865233b"/></dir></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="links.phtml" hash="8b15ef9d6eafe7b4cc83549d5ce5daa3"/><file name="samples.phtml" hash="678da3a8c1e7e051d9d47508b0baaa32"/><file name="type.phtml" hash="c50e81fccbc40aa19d8bbf873b9540d2"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="8b43684edc2114f3b0e9412e9159eee7"/></dir></dir><dir name="multishipping"><dir name="item"><file name="downloadable.phtml" hash="0eaebc83739e61c9d3e9a4e39283dde0"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="cde0849b6c103e74182c3df0029c2008"/></dir></dir><file name="success.phtml" hash="4f2f374f1cfd3a61443563969275e086"/></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="61ef95610514212f1d9b33f2430a9754"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="c889bb18e4ad5b6231bfb98240204fe2"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="5ee53e13618cf6cce4ccd07a26d48f9b"/></dir><dir name="order"><file name="downloadable.phtml" hash="fa21e6e6c3a8d87b6aa885341fefc679"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="79b2764dfc2526b07c48cb042cf18c97"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="2800c50a326394ac5b26fec9cd2455ab"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="e507b00fdb1b5c359a9c06345cdc42b5"/></dir></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="70327e401907aa50563c5e91faed594c"/></dir><dir name="invoice"><file name="items.phtml" hash="7547815f0d82484cb9711ea6e68a9746"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="4d7ac506ebe91ab0028faa33799973a3"/></dir><dir name="invoice"><file name="default.phtml" hash="4d7ac506ebe91ab0028faa33799973a3"/></dir><dir name="order"><file name="default.phtml" hash="67e5e8f0ffce9b8fa5cecc1f38f57d60"/></dir><dir name="shipment"><file name="default.phtml" hash="d1380984b6372f1167c5c8677482db91"/></dir></dir><file name="items.phtml" hash="326437c08e241f86c252d8a4425d0bab"/><dir name="shipment"><file name="items.phtml" hash="263fec04764fab53067d3ac858a9fe28"/><file name="track.phtml" hash="a97fde9c7490123fd844a8b0b76e5aa8"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="05e3930800cdb73c417db1522e0eec7d"/><file name="stock.phtml" hash="b8c8cbbcaf38f69fb732fa80520829d6"/></dir></dir><dir name="giftmessage"><file name="inline.phtml" hash="50ae439654a17a0dc5d37dddbb7cfe23"/></dir><dir name="googleanalytics"><file name="ga.phtml" hash="380b295a24147c1275488c7c4a5ff419"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="9fae414d8b68b2b2befb0ea30856dd42"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="e52db19182d613b048fa0a2d8a4239ce"/><file name="button.phtml" hash="f52f96f7addd59d4ef582d6faf363c46"/><file name="confirm-simple.phtml" hash="207bce922b7c20022bb21dcceac7e26f"/><file name="confirm.phtml" hash="ace5a9e1661f4a57211ac84d0af0408c"/><dir name="form"><file name="login-simple.phtml" hash="9396f2cc72b2f95724847e3985f2f44a"/><file name="login.phtml" hash="d20cc388abc1ba55dd36dde14bedb458"/></dir><file name="head-simple.phtml" hash="489a0415f720e3a726823d02c6433506"/><file name="reject-simple.phtml" hash="55c62dea5af81979d25ee4efd9b91a19"/><file name="reject.phtml" hash="8db929b29854ef504b82eb58d742a9db"/></dir><dir name="customer"><dir name="token"><file name="list.phtml" hash="2f8e38ee10ac7942ed1ddec839a628e9"/></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="a0e45d5801ae9bd1be28e05e6f072ebd"/><file name="2columns-left.phtml" hash="e23b66ea121816c395ebfba2c3ae28db"/><file name="2columns-right.phtml" hash="c27ea55034fda90da598d59d0b341685"/><file name="3columns.phtml" hash="874726e43b8eb2f167d00a148d18fb48"/><file name="empty.phtml" hash="735d27c725c01b0f5ebe679a1f62abbd"/><dir name="html"><file name="breadcrumbs.phtml" hash="5ef35b42e8b0bdf2e621af4d6878dfd8"/><file name="cookienotice.phtml" hash="810e14873d0c8342cfbf717f9232cae7"/><file name="footer.phtml" hash="1a7b31125173191806036a3152c08e75"/><file name="head.phtml" hash="5d007bc33eaeb0ba5f66e7e283f5ec51"/><file name="header.phtml" hash="eb6e2d6579ec92f56ab643b38cb8c4fb"/><file name="notices.phtml" hash="64a83899c7099527ec658357ef9b8954"/><file name="pager.phtml" hash="cef7891922c77c3cdc2374009c5ebcd6"/><file name="top.links.phtml" hash="b09acd6a24ef7ce626d6b931c45d6017"/><file name="topmenu.phtml" hash="bb01548390edde22a759196f7d1203ee"/><file name="wrapper.phtml" hash="64c89c9d00499d2d909177c5b4170bc0"/></dir><dir name="js"><file name="calendar.phtml" hash="1370a48cf885b20ae2f786691a088f3d"/><file name="cookie.phtml" hash="7e0e8523779b9d574241a163c1bf9def"/></dir><file name="popup.phtml" hash="cbc2a95f41a7dbb87bf9f0192b99d7bf"/><file name="print.phtml" hash="0377ba207a9ccbcf27279de8c39cfd36"/><file name="redirect.phtml" hash="fe03b2d968eb773de43bc1ea9bde7d2b"/><dir name="switch"><file name="flags.phtml" hash="ca762aa240349519c7c3b4a3248533cd"/><file name="languages.phtml" hash="289dbe8803ada170518da0682e2c8ce7"/><file name="stores.phtml" hash="2f222746d5bffb708fce55c20d3a01df"/></dir><dir name="template"><file name="container.phtml" hash="dd1342270f8562159e2133141fbc6da3"/><file name="links.phtml" hash="9587c24c0cbf57c54c0ca2158e9318d9"/><file name="linksblock.phtml" hash="f9119d93c6f82a1eb35640f4971c5a89"/></dir></dir><dir name="pagecache"><file name="cookie.phtml" hash="b6b59d2c6791f3f6a6e157a2649a69fb"/></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="963179f14e352cdc70f2ecb4c3ec4bd3"/></dir><dir name="info"><file name="cc.phtml" hash="7bf9a5a3bcf1259e5eae8593256cccbb"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="4dbb61f0d5ee3c6d9f462f6e03066d72"/><file name="schedule.phtml" hash="204dadac7b3082e73672489d147f546a"/></dir></dir></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="44cad9a0a4cb55682459db7d18631cbb"/><file name="cashondelivery.phtml" hash="bf0f45a93e8d433b1fcd2d467ab50bca"/><file name="cc.phtml" hash="23873bbff6744183e0943cf59e8797ec"/><file name="ccsave.phtml" hash="2f12ce0ac0a9bc4d074bef269ae8b36f"/><file name="checkmo.phtml" hash="908939577f278b60e39699a0f4405c3f"/><file name="purchaseorder.phtml" hash="ccece1fb6f652e4ce7f038c93304d4c6"/></dir><dir name="info"><file name="banktransfer.phtml" hash="b4ca1346e18806b3b01f9138f5adab46"/><file name="checkmo.phtml" hash="87b4313efb118c04cdfa64dfd300a5d2"/><file name="default.phtml" hash="ef41b9eb0241237f6ad38fd70adae1b5"/><file name="purchaseorder.phtml" hash="9e7c3f8aad863a2db7cc02b9f4602724"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="840a23fd4a9f3c4607f2843050584640"/><dir name="express"><dir name="review"><file name="details.phtml" hash="6c74a14ddbb5cd385ecc76ef31b74305"/><dir name="shipping"><file name="method.phtml" hash="33e3c05c6c401b6f7e62ea69e3563501"/></dir></dir><file name="review.phtml" hash="96b9036b94ec06c24bb1784abc041646"/><file name="shortcut.phtml" hash="73a3728042717e56813b863f4a763484"/></dir><dir name="hss"><file name="form.phtml" hash="746e4b798643433b8ed818321304664c"/><file name="iframe.phtml" hash="17578113f1966f4f06ac14f4b37f2ce6"/><file name="info.phtml" hash="63a5d741ededcbc3d4627d28853f720c"/><file name="js.phtml" hash="952997038b7e6a78b767dc7c82ca4a1c"/><file name="redirect.phtml" hash="b6d7b4bbc47bd6345dbf20a5b541231d"/><dir name="review"><file name="button.phtml" hash="52cc7c288abdf2c62deb1c31a2927b49"/></dir></dir><dir name="partner"><file name="logo.phtml" hash="e7b7b0a6e03debeaf4aee94fa47ab3b6"/><file name="us_logo.phtml" hash="afc0bdeac18b08d18fda01f4953ae792"/></dir><dir name="payflowadvanced"><file name="iframe.phtml" hash="0b901dcb5ac0c1138584c467d08d3862"/><file name="info.phtml" hash="f41e44779a15eb924f30927c56849de5"/><file name="redirect.phtml" hash="52199b702552ece270139e92826270b9"/></dir><dir name="payflowlink"><file name="iframe.phtml" hash="87a5b7e3889f1896d88ad649cb7a3706"/><file name="info.phtml" hash="96b9d6afdde46233e7bb0ea48bec6870"/><file name="redirect.phtml" hash="6dcfc8727ad8e33e8db07adb1a16d576"/></dir><dir name="payment"><file name="mark.phtml" hash="64b384c1664294a33daab01b32863124"/><file name="redirect.phtml" hash="f4652cf8d92d6cc8ba8a530bd2997f77"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="c30820672c8bf6c47baf1a51a74000ad"/><file name="login.phtml" hash="b77b44de10e486ac1f2b17e4fd3364c3"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="49b7f615d854a0dd49346975ea375808"/><file name="register.phtml" hash="0265df4239a427d23278460a221359a4"/></dir></dir><file name="remember_me.phtml" hash="6fb2d652d2c0eaa148d8a940543cfe29"/><file name="remember_me_tooltip.phtml" hash="b0bc2323f2e9d5616cc22d1fe2af3ebc"/></dir><dir name="poll"><file name="active.phtml" hash="61ea10b9e116b1a33039176f8ae94254"/><file name="result.phtml" hash="757aa6c35370ee4c220797a8799cdf0b"/></dir><dir name="productalert"><file name="price.phtml" hash="64443cf7b3609138cf4f4ca1d958a54d"/><dir name="product"><file name="view.phtml" hash="9f80930f87330da1627187f3280e2724"/></dir><file name="stock.phtml" hash="64443cf7b3609138cf4f4ca1d958a54d"/></dir><dir name="rating"><file name="detailed.phtml" hash="f788c0bfd6ff57fd2e81f33b36a587d6"/><file name="empty.phtml" hash="9cc79ae8bf1e76f593165c53a20b9922"/></dir><dir name="reports"><file name="home_product_compared.phtml" hash="79044f1fcc8d3359150a2010f0d6220e"/><file name="home_product_viewed.phtml" hash="68e057c8d72df3081c3b032a92119287"/><file name="product_compared.phtml" hash="23a50bcacf37fadb3420159b450e9146"/><file name="product_viewed.phtml" hash="5220dcf2e0075a7e720a41c8557e5a02"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="e7c2525fc6e1fb4365b9948158b4cd1e"/><file name="compared_images_list.phtml" hash="93ff1cf81bd8646db50917f11efd4979"/><file name="compared_names_list.phtml" hash="1e89c78241a2898f6d16daa4a2819a4f"/></dir><dir name="content"><file name="compared_grid.phtml" hash="1b9744e981b132c295b615280d1535dc"/><file name="compared_list.phtml" hash="5fbaa529b6262b1fca6fbc9b019f2b86"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="9ecc075b1f109241eaae609f93548bd0"/><file name="viewed_images_list.phtml" hash="9890c2515e28f044e2089d2f91e0fdbb"/><file name="viewed_names_list.phtml" hash="6a128b9571d806bac682750806d416e7"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="2cbcb01f5a3a2b97a2531335f69df1d0"/><file name="viewed_list.phtml" hash="69f93bf33de12e5e7f3205b9bf6bbbe7"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="109a1bcb0602e9cc43c25dbaf5bd8904"/><file name="recent.phtml" hash="a301a8d664da38013954d2f2ccdcf564"/><file name="view.phtml" hash="16748f98da6bdcbda70f080605f23a79"/></dir><file name="form.phtml" hash="a96f4bf47292e99ba5c22fb346c349ea"/><dir name="helper"><file name="summary.phtml" hash="0f56f95edf67774eb1e0ce7eafb315e6"/><file name="summary_short.phtml" hash="8dd7f988096a03ef1d8b9a54ecabe3de"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="1cdeb0b7a311f49c77b8db1d0b4c1f27"/><file name="list.phtml" hash="a1cb734513e20873713002bc714d0a87"/><file name="other.phtml" hash="fa89dda1f591a46452ca2cd44163c531"/></dir></dir><file name="view.phtml" hash="fe1544b505db1cb5f07173d43eebd807"/></dir><dir name="rss"><file name="list.phtml" hash="594f7e3ae823e80a5fb59d3c4a522c27"/><file name="nofeed.phtml" hash="434190ba6f2eea7f1b4d6c1f5c8448a7"/><dir name="order"><file name="details.phtml" hash="9a28a1f62c531f91b0949d0918e53f9c"/></dir></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="a35e2eff1aa6414970bc67833d9c932f"/></dir><file name="agreements.phtml" hash="a72a246a733fc1f5e15c8f882a284f8d"/></dir><dir name="guest"><file name="form.phtml" hash="5fe2eba59eeb564af00ec7e14843b337"/></dir><dir name="order"><file name="comments.phtml" hash="4472466adc7d579a45018ce557ff60b7"/><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="af89c55b234a5672b8536b38af2f7725"/></dir></dir><file name="items.phtml" hash="352207b4d564a05590378e90148256c4"/></dir><file name="creditmemo.phtml" hash="d995293f452b6599c6a04769ba7839c9"/><file name="details.phtml" hash="92fe3f2e9c4f48de898da286a79bcb13"/><file name="history.phtml" hash="edc589262133df5967fe6d809dc37385"/><dir name="info"><file name="buttons.phtml" hash="7ec327e3ac76a8ae91db6332bd739bf4"/></dir><file name="info.phtml" hash="e09d9464107cdf11081957613e5acddb"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="4aaba5d0861a4eb7bfbb8aa01bcdcfec"/></dir></dir><file name="items.phtml" hash="20f81d4d04477d9c37d5cf402fb1a0fa"/></dir><file name="invoice.phtml" hash="328b9f574d73940d0006fac3aef0aefb"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="39cef1ada295561f033c8241e656fb51"/></dir></dir><file name="items.phtml" hash="6fcbf84de83168cad7ff8dd3df80df85"/><dir name="print"><file name="creditmemo.phtml" hash="42a44a874c7eff266dcf339ffd5ffa61"/><file name="invoice.phtml" hash="b228f52465ec936d33e9439102847fcb"/><file name="shipment.phtml" hash="02819ebd30eb382478c5c1e4d3a43845"/></dir><file name="print.phtml" hash="e00974c7641106a5d9ed211be9ca9518"/><file name="recent.phtml" hash="cb0e8c2c4d695777e6a41e8e6d27ff25"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="506b31d10ab043fe1e97541a7bba25cb"/></dir></dir><file name="items.phtml" hash="f9ffdb3526d953ad8156040dc643e373"/></dir><file name="shipment.phtml" hash="b7c55bb77112b21f0fa7ac08aa9003f2"/><file name="totals.phtml" hash="6477e543bda9576c165c1f6535dd210e"/><file name="trackinginfo.phtml" hash="2aecc337bfe3fb8b2d916142a60791d7"/><file name="view.phtml" hash="f9bab3cdc651691648e6bea413c08879"/></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="40c7582c2bd13244a38bd88ef97d2c03"/></dir></dir></dir><dir name="recurring"><file name="grid.phtml" hash="bf8ed2da44930c01637fda0ca2767966"/><dir name="profile"><dir name="view"><file name="info.phtml" hash="bb1345d11f1b222c5de47415cc8e3349"/></dir><file name="view.phtml" hash="8e65465890033b735e876e44b2e646c6"/></dir><file name="profiles.phtml" hash="33e52546c6c5a9b6adbfe20417e7b886"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="57bda3813fc70fda9415f5e006a84b5a"/></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="ed5a723e5dfe90d45258bc801227b512"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="51e457e85297b8d06a593e63fb101c50"/></dir><dir name="shipping"><dir name="tracking"><file name="ajax.phtml" hash="68472bee10bf2127ce1e12b7cf0dc9bf"/><file name="popup.phtml" hash="5d730707a801198b0843d47119cfd4e6"/></dir></dir><dir name="tag"><file name="cloud.phtml" hash="b79e2ebfb178ab2c9239330066d72ba5"/><dir name="customer"><file name="recent.phtml" hash="88a52c59f42ab753c09f955f13d7a33c"/><file name="tags.phtml" hash="15e6fc54f05f38f3d6a4876fcd44616d"/><file name="view.phtml" hash="f4e497a9786c5279dadcbd8c8152a2d8"/></dir><file name="list.phtml" hash="b8aa58821f08ce79094dedfa85a5d2ae"/><file name="popular.phtml" hash="c28fbd64b89a1bbfab7e6c457361f089"/></dir><dir name="tax"><dir name="checkout"><file name="discount.phtml" hash="2575e3ab36ff30d6c0548ece90f03f0f"/><file name="grandtotal.phtml" hash="4ee3bdd1190a459e243249e288e6caff"/><file name="shipping.phtml" hash="75900b7d4cfb370e803d1489148450ad"/><file name="subtotal.phtml" hash="f91e3bc1a39761fa7cea8fc296091430"/><file name="tax.phtml" hash="37173b32341b2692a7890111f02f2938"/></dir><dir name="order"><file name="tax.phtml" hash="09dd1423b6a54a87cbefd386bfe181de"/></dir></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="ee9056b1272b18a630a1a9298dab8a0c"/><file name="tocart.phtml" hash="8e8148ddf180df398c4d41883763bd68"/><file name="update.phtml" hash="cae677c6b812eeabc96001e95506178c"/></dir><dir name="email"><file name="items.phtml" hash="c82ffe0bb372bfa30515f9182f21325f"/><file name="rss.phtml" hash="6c5f87b8ec110d835372a09a6d96e499"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="41005e213b010ccba982eee482cf2f4a"/><file name="image.phtml" hash="36ee946bf03b7828b16757b6a8e96fca"/><file name="info.phtml" hash="f186c32f863c35c526500cf66e3a8e6a"/><file name="remove.phtml" hash="f3e910827ed01e86f1b71eb42130c142"/></dir><dir name="configure"><file name="addto.phtml" hash="ed5bc17e4e7938756140fd3184623835"/></dir><file name="list.phtml" hash="5aa9f3d63226cd5dc286007f6077ab45"/></dir><file name="options_list.phtml" hash="99e16d8548c4ce2e7589d378db786d2b"/><dir name="render"><dir name="item"><file name="price.phtml" hash="22ef18ac956458805c6864132455580d"/><file name="price_msrp_item.phtml" hash="b2819ffce6a9f8e71f9f73f01dfb2318"/><file name="price_msrp_rss.phtml" hash="f581d55757cabc5eec46491eb64529e9"/></dir></dir><file name="shared.phtml" hash="d6b7304e67cd7142a9a1ab88bcfe9494"/><file name="sharing.phtml" hash="665cea1ab1deff8a3774ff715a73a59b"/><file name="sidebar.phtml" hash="6fe04c59bd22fbbcc8e653d16f05b430"/><file name="view.phtml" hash="823392cb67487dda5ae2df48c3851a1e"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="email-inline.css" hash="e9dccc153a5cf889fe5ee05a35d3cfad"/><file name="email-non-inline.css" hash="f4e52101c5e29fb139df395efec24191"/><file name="widgets.css" hash="1f42883af2c6bcc93441be815e99e2ec"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir></dir><dir name="js"><file name="bundle.js" hash="cc95f504e5e5c433f721805f190895ee"/><dir name="checkout"><file name="review.js" hash="b20699b6f65447a28bbd84b543bb1046"/></dir><file name="giftmessage.js" hash="5bea83ce586494ac3d0de6e8c97415af"/><file name="ie6.js" hash="bde9ed032ec5d523ed3da99cfab6299e"/><file name="msrp.js" hash="959edecc52becd747008ba9577022f6a"/><file name="opcheckout.js" hash="8252cf5e7bd77ed1ae765d49dad246e1"/></dir><dir name="lib"><dir name="prototype"><dir name="windows"><dir name="themes"><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="5b805ff993bb8cc59c96d175d66c19dd"/></dir></dir></dir></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.9.2.4</min><max>1.9.2.4</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Interface_Frontend_Base_Default</name>
4
+ <version>1.9.3.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.9.3.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2016-10-04</date>
14
+ <time>13:04:27</time>
15
+ <contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="etc"><file name="theme.xml" hash="36ad15f993a96d7a2031ea3480c4e3f3"/><file name="widget.xml" hash="4dd754aa7a74702578e4a6d893cee258"/></dir><dir name="layout"><file name="authorizenet.xml" hash="e47ed8e378c48a6336a19c574753ca3c"/><file name="bml.xml" hash="b7f3df3ecb4a5d47a22e175ba49f55b0"/><file name="bundle.xml" hash="8e2ff1d2e59b20ea018c69ce33700acd"/><file name="captcha.xml" hash="e96d3099bf87d7683568a0e71163f84b"/><file name="catalog.xml" hash="34676e787d352678061a54ef2006b612"/><file name="catalog_msrp.xml" hash="f8b0a776a17bc1550cf3051a096613d5"/><file name="cataloginventory.xml" hash="6f0f581f01ee019680f77092b285af2c"/><file name="catalogsearch.xml" hash="8f3ce0ca198f3eb3ce55f63dfcb8c83c"/><file name="checkout.xml" hash="f78114a02111fb57061ca2e8d68d4adc"/><file name="cms.xml" hash="91de96bb142693a3e793ea09629e1dd7"/><file name="contacts.xml" hash="2bb3361cfa237604f886f709d3217e90"/><file name="core.xml" hash="05b53213c0df7726dba664278f390138"/><file name="customer.xml" hash="6a0f4bd4174f8d67cffdfb5edee7de4c"/><file name="directory.xml" hash="88cfbeae49d44381be38d391251cede9"/><file name="downloadable.xml" hash="81a5657be62cbcce6844109998b0cade"/><file name="googleanalytics.xml" hash="30eaa4b941eabf2573b9071e74229563"/><file name="newsletter.xml" hash="579fa73d2dbe9eb421d9c1c2ab919ea1"/><file name="oauth.xml" hash="98f44e4142dab1322bd3005048acc7f9"/><file name="page.xml" hash="502ec300efc7898019b71b11b58a7895"/><file name="pagecache.xml" hash="193bd408dd2f564d16f2dd39189519d6"/><file name="payment.xml" hash="03bc6e091a41d9b3afdbe9e070f1f2ae"/><file name="paypal.xml" hash="3a0398cf1db26a4a7f1a4350fe83b521"/><file name="paypaluk.xml" hash="67ae02cb70e191cf94ed8dbbafeb53e5"/><file name="persistent.xml" hash="a347809744f53ef22e5740995da8557d"/><file name="poll.xml" hash="b87bffa15321c56f9fa032395e6b91f5"/><file name="productalert.xml" hash="a966ba7df770842f5bf4141b541e04c5"/><file name="reports.xml" hash="77d0b3e68bc3b83b9aa7afedf481f8ef"/><file name="review.xml" hash="1a607ddaad5c4c0d7200d37c190ec675"/><file name="rss.xml" hash="7b3559742e6bf9ad3d3d0722b63a44f3"/><dir name="sales"><file name="billing_agreement.xml" hash="28d1a9e9fde68bd91cedb46a5cac7ccc"/><file name="recurring_profile.xml" hash="ee61b3f3f1f706176458d75618719acb"/></dir><file name="sales.xml" hash="c66377307bdcdccdd788cf648dd3cedb"/><file name="sendfriend.xml" hash="f29f1295eee4194a492839d3697ff821"/><file name="shipping.xml" hash="da7fa90e46cee447a6ab5e1d119be15a"/><file name="tag.xml" hash="9fddf75ce2b325798b92c6e1307ff100"/><file name="weee.xml" hash="0eec371c185da6c312a6345b47ed5379"/><file name="wishlist.xml" hash="2e8937a4f24ef013cfd60f22305a9450"/></dir><dir name="template"><dir name="authorizenet"><dir name="directpost"><file name="form.phtml" hash="202d326d7c9414c540df4f8ba8570d22"/><file name="iframe.phtml" hash="e53cd070a68c05bfdede82f7c303c694"/><file name="info.phtml" hash="dab866194919336851ff18057ecfb69c"/></dir></dir><dir name="bundle"><dir name="catalog"><dir name="product"><dir name="list"><file name="partof.phtml" hash="2b17f281cf740d3e03657e2171cde7b7"/></dir><file name="price.phtml" hash="46179fb8648a7c96513ecc04e324babf"/><dir name="view"><file name="option_tierprices.phtml" hash="f821e7c0a778fd5f219ff6e10c980e79"/><dir name="options"><file name="notice.phtml" hash="cfb6aad5282db6cb92a679a1d4ec4071"/></dir><file name="price.phtml" hash="d5b8f541a7b3f18ee5e58bbbfeb1b373"/><file name="tierprices.phtml" hash="6b583cbbe62409e5ef242343484ffa68"/><dir name="type"><dir name="bundle"><dir name="option"><file name="checkbox.phtml" hash="1ee898fc7cfe31c50b13dbadcf1dc3bb"/><file name="multi.phtml" hash="b460424af200ad58a8ddc48be72ac40b"/><file name="radio.phtml" hash="7c1d857817793c4eed566eff2590dfee"/><file name="select.phtml" hash="176fa4a5275fa5ac4c4ed4930b73e0cd"/></dir><file name="options.phtml" hash="000785907ef63c7b8fa3358840b5ac25"/></dir><file name="bundle.phtml" hash="a263f13eb566c73787fd65428d25f1e4"/></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="369374d053f31630cdc00a02c0da2e0a"/></dir><dir name="invoice"><file name="default.phtml" hash="dae8a4596baf272864b2b9bbf89cb344"/></dir><dir name="order"><file name="default.phtml" hash="5464b0903adadf19b9c82316319adde8"/></dir><dir name="shipment"><file name="default.phtml" hash="309f87ac8da5570c20f4b5d703fbc7aa"/></dir></dir></dir></dir><dir name="rss"><dir name="catalog"><dir name="product"><file name="price.phtml" hash="3595334725b41a2f0abb96a546d24f7e"/></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><file name="renderer.phtml" hash="bc4411e201d8895ca72893cf26b6b368"/></dir></dir><dir name="invoice"><dir name="items"><file name="renderer.phtml" hash="9a7fa8f0712d759ff543d786e0e2404e"/></dir></dir><dir name="items"><file name="renderer.phtml" hash="872cbd19844ac0de00f3898822b05be2"/></dir><dir name="shipment"><dir name="items"><file name="renderer.phtml" hash="94555c1393cce09e7221984138812af2"/></dir></dir></dir></dir></dir><dir name="callouts"><file name="left_col.phtml" hash="b2af7711773e9aa40d95c9122997b13d"/><file name="right_col.phtml" hash="b2af7711773e9aa40d95c9122997b13d"/></dir><dir name="captcha"><file name="zend.phtml" hash="334fa445da501bc018e1c0613a4a5d0a"/></dir><dir name="catalog"><dir name="category"><file name="page.phtml" hash="8ee108bf6f4b4c88473dc2491ddbd919"/><file name="view.phtml" hash="c44853be0ab342e5497f77b471090ca3"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="220aa8d7da9cdcf3e5cd661f7effe959"/><file name="link_inline.phtml" hash="2ec271e266715582d29a28813f2564c6"/></dir></dir></dir><dir name="layer"><file name="filter.phtml" hash="0374077cc0d7f0b433ddbd2fbbda7045"/><file name="state.phtml" hash="71db798dc06b418d5eacebf18d4532bf"/><file name="view.phtml" hash="7f2433a2241083dc9402541064f9b6c9"/></dir><dir name="msrp"><file name="popup.phtml" hash="21a7aa978ee2dc8877dd0d72f9838afa"/></dir><dir name="navigation"><file name="left.phtml" hash="e8373efbd991b47990e26343381fc720"/><file name="top.phtml" hash="c63998dd4f4f6c1c578e15d46b6bd949"/></dir><dir name="product"><dir name="compare"><file name="list.phtml" hash="59314a27638053e3d54f0cc0475cca1b"/><file name="sidebar.phtml" hash="8219ef41b665a151f7d195a31695a8e9"/></dir><file name="gallery.phtml" hash="2d6c7ab8ff6cbd38502c9e8e04fea62b"/><dir name="list"><file name="related.phtml" hash="f1293b35c7bd01dd60225718ad76b4f9"/><file name="toolbar.phtml" hash="8d4bd8d84d8cac4fbbf6427b7a0b86cd"/><file name="upsell.phtml" hash="03cb68ada7e32399bce81c0a2edfacc0"/></dir><file name="list.phtml" hash="4e88f3eb13672eeecb84f88351f52448"/><file name="new.phtml" hash="ac04937ab4765e47f10e7e3a57b877c3"/><file name="price.phtml" hash="20e11ab82b2bf9c8cc8a3167b31e653d"/><file name="price_msrp.phtml" hash="50d6fcfb4fd9cb93fdd775df5dc8a328"/><file name="price_msrp_item.phtml" hash="fd630ab3835be0b46973c14c2f60eefc"/><file name="price_msrp_noform.phtml" hash="aafd35ab489f9b63969aa13c052767ec"/><file name="price_msrp_rss.phtml" hash="03bd7cf64797874f43acb811deb6d599"/><dir name="view"><file name="additional.phtml" hash="97532fcc259be011d3f0456ca57ad532"/><file name="addto.phtml" hash="38a0acea798d555d5232a384ec78b37c"/><file name="addtocart.phtml" hash="f7fcd7556df6589802eccf9e2b8c81ba"/><file name="attributes.phtml" hash="31bf0a86643bdd3f43abacbdbd6de599"/><file name="description.phtml" hash="e1404066f134b1299dbb3aa4e8d69dc7"/><file name="media.phtml" hash="7e13058446644bd0e2c307cfa62ea8e5"/><dir name="options"><file name="js.phtml" hash="121d850391929d3db87252707fc82979"/><dir name="type"><file name="date.phtml" hash="953eb780103c1d6c3daf045c4b8839a7"/><file name="default.phtml" hash="f7aebd29d0065254c6fdbee8decd6b01"/><file name="file.phtml" hash="21011d1c98c83b3285b3c959f309b3e4"/><file name="select.phtml" hash="15251ee74c75e9f5eefa17d4a81290b3"/><file name="text.phtml" hash="26a9857b97d0ff603b54f887fb340b24"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="7721f43ef3516ece0d69436d845ec82f"/></dir><file name="wrapper.phtml" hash="c6f457077b838ea5e748f0b01b47535f"/></dir><file name="options.phtml" hash="37876fa680bdbddcc0bb8684bed27d8e"/><file name="price.phtml" hash="1e4332110ae6eca796b3f9d4bb752b30"/><file name="price_clone.phtml" hash="6e05db9807baadd479462e72f01f10be"/><file name="tierprices.phtml" hash="cf066236cd8c4a5e89938d14ff384efe"/><dir name="type"><file name="configurable.phtml" hash="fee37310213061154d447ad389b793f7"/><file name="default.phtml" hash="1cb2c1f4421444256515006ff0f96575"/><file name="grouped.phtml" hash="aa57d7e7e00893f05146aefbf7e90a50"/><dir name="options"><file name="configurable.phtml" hash="8f136151ebf23dfd1ed71bbf1284ffa9"/></dir><file name="simple.phtml" hash="fee37310213061154d447ad389b793f7"/><file name="virtual.phtml" hash="fee37310213061154d447ad389b793f7"/></dir></dir><file name="view.phtml" hash="6d48a7f750054a6ba2412fd8d312ba88"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="13db9a40fe79f6c444b72daebd9dbd2e"/><file name="link_inline.phtml" hash="876945b7b656298812b12c650d03a0e2"/></dir><dir name="new"><dir name="column"><file name="new_default_list.phtml" hash="9b1f192b2a1b392a34812dda4cad1571"/><file name="new_images_list.phtml" hash="12c19221dfa788130aa75604c0a7d2fa"/><file name="new_names_list.phtml" hash="487e167f8d8f16c9683c20c621cf01f5"/></dir><dir name="content"><file name="new_grid.phtml" hash="ca513fc447702e3f35101dbc1744c69d"/><file name="new_list.phtml" hash="ccd484b0fb5f0e79a7184c0edaa5e16c"/></dir></dir></dir></dir><dir name="rss"><dir name="product"><file name="price.phtml" hash="75152205d25360f549055062b23ada66"/></dir></dir><dir name="seo"><dir name="sitemap"><file name="container.phtml" hash="05c4cfdd673a7b92971cbaa31bf8f551"/></dir><file name="sitemap.phtml" hash="f1e207bfa7fb82894f6c97fcb38cb2ed"/><file name="tree.phtml" hash="e0691c7a55be55b5bf26cc9e0bbcd8e6"/></dir></dir><dir name="cataloginventory"><file name="qtyincrements.phtml" hash="7cc032736dd9efc39a4b79d458a8dd1d"/><dir name="stockqty"><file name="composite.phtml" hash="9464df9c953921544b9de3871a8adb53"/><file name="default.phtml" hash="ddda74704dc9e9f66e098687f40aaedb"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="b97aa2e5316757bf155a85e6ed363724"/><file name="result.phtml" hash="5d0782a58711502df91aec3e25860970"/></dir><file name="form.mini.phtml" hash="acc2c1b561e63993abaea45d6d45f77e"/><file name="result.phtml" hash="642e0abfed0fca6987a247b1a5299af1"/><file name="term.phtml" hash="142002b20b55e6451efc3b999274c02d"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="f8b8f6cbd5602101c6e6393d1a63e8fa"/><file name="crosssell.phtml" hash="b50e69ec580903f6633780d9e9307f8c"/><dir name="item"><dir name="configure"><file name="updatecart.phtml" hash="0df52a722e11758732b309a9458ff278"/></dir><file name="default.phtml" hash="a7f465e303d8fde9e139d828af30e735"/></dir><file name="noItems.phtml" hash="0f65133464278d39200804ae3f073189"/><dir name="render"><file name="default.phtml" hash="670829e67b30232a196de4d43a3c6275"/><file name="simple.phtml" hash="a19edc9e64b5b1974c97609c3d073f01"/></dir><file name="shipping.phtml" hash="f2d113cf2cbb1d50055d57af3a9c1e0d"/><dir name="sidebar"><file name="default.phtml" hash="90a69d92156c0be2c5c95008e23e64b7"/></dir><file name="sidebar.phtml" hash="ef86018384b99db3d428da77793b7430"/><file name="totals.phtml" hash="47030ec35d284e66a0e6aa5a8b3aa18f"/></dir><file name="cart.phtml" hash="b47121b4c0ea0ad9f147f9e9dadeb501"/><dir name="multishipping"><dir name="address"><file name="select.phtml" hash="cba60189d2af7e06fa9500b94f0e653f"/></dir><file name="addresses.phtml" hash="a362b4682e65622db34f9950b877c947"/><file name="agreements.phtml" hash="a2a6034be5b41f7f6b757b936507a380"/><dir name="billing"><file name="items.phtml" hash="862f9a5dab8ff70cba5e558358ab626c"/></dir><file name="billing.phtml" hash="503dfa292fbe591d48adccdb56ea5af5"/><dir name="item"><file name="default.phtml" hash="8d036142e5b308d6b09300ef43405063"/></dir><file name="link.phtml" hash="54f7721a1be51b309c6b6fa06230ddb0"/><dir name="overview"><file name="item.phtml" hash="3fdaba6363fdad0d14eed7ccedc262ed"/></dir><file name="overview.phtml" hash="b76ad1761f9a859ac85f062d7492c8ca"/><file name="shipping.phtml" hash="379c0f3bd73926866c271c8b59fb32cc"/><file name="state.phtml" hash="94ac5f202549f948d7064282addba06c"/><file name="success.phtml" hash="c79434b9c1d2427b6439dc5cb9facad4"/></dir><dir name="onepage"><file name="agreements.phtml" hash="560ee986f4539eba0b8371c3b015c71b"/><file name="billing.phtml" hash="af39d6e73338a3e185495514070d31b3"/><file name="failure.phtml" hash="44dcd4afc719ac2b622b7434b751a86d"/><file name="link.phtml" hash="83856f68bcd8530bfe9ca31681a2c177"/><file name="login.phtml" hash="925f20e34a17da587be51b41126c5bbf"/><dir name="payment"><file name="info.phtml" hash="7368d1b8dc890fe4f3c64aecf8e5d471"/><file name="methods.phtml" hash="0811dfc3c36a448ffa79ada9f799e91e"/></dir><file name="payment.phtml" hash="8433ea5c49afd363e76255d61ff941e7"/><dir name="progress"><file name="billing.phtml" hash="7c98f54e4f84111e0ea33a6ab9b74943"/><file name="payment.phtml" hash="41702d033d27fc3e0d5a923d6ebfb818"/><file name="shipping.phtml" hash="a808dfc902accda5e38737a0d4f1d9f3"/><file name="shipping_method.phtml" hash="0862d60e10f1c21f3279cf63b5ca0c9c"/></dir><file name="progress.phtml" hash="ca30c0dcc1bf948222c7106b3e2d7dfb"/><dir name="review"><file name="button.phtml" hash="87036553496595ddc944133437cd89d1"/><file name="info.phtml" hash="2ce1ffd81e8f6a218a70990436b5f091"/><file name="item.phtml" hash="86f45de5b40334ae9062fc3b5153d12e"/><file name="totals.phtml" hash="d7974c99b50b1274b1ad2b6bbf98eab2"/></dir><file name="review.phtml" hash="7c995cfd69d4bb364e72b31c6c7b51ef"/><file name="shipping.phtml" hash="f831d611d573e0ed6ce2b9c2dcb88fd2"/><dir name="shipping_method"><file name="additional.phtml" hash="c1589790eb522621ccd5dcb1e86579d1"/><file name="available.phtml" hash="6f5cc2093006c0a052b401666881a6dc"/></dir><file name="shipping_method.phtml" hash="c9590b6392f8a8e0b048dc042a08eab5"/></dir><file name="onepage.phtml" hash="5e81e54801d1e03411eb539431e017b4"/><file name="success.phtml" hash="15f6181801baba097a128a2d67475a2e"/><dir name="total"><file name="default.phtml" hash="01e8293d3bcce2cfd66f9e6750620cd7"/><file name="nominal.phtml" hash="1c0746bbfec847a014272162fde83f9f"/><file name="tax.phtml" hash="420dab85d25a223cb214a353ae22d16f"/></dir></dir><dir name="cms"><file name="content.phtml" hash="4448bd16cc1a8f76ee4a914f346571ad"/><file name="content_heading.phtml" hash="85f781d72ab8f408847a4eb28b1c2834"/><dir name="default"><file name="home.phtml" hash="935a4bea21a6d3eae366278edd7df293"/><file name="no-route.phtml" hash="13f72f682fc9f35bc915c0f8f88b39b5"/></dir><file name="meta.phtml" hash="3467d5d211a77223d526ddf44ff266f0"/><dir name="widget"><dir name="link"><file name="link_block.phtml" hash="b53753d5853cc9c9712c37c96e1704f1"/><file name="link_inline.phtml" hash="ad8678d87c576f53fc013e7523176744"/></dir><dir name="static_block"><file name="default.phtml" hash="4d9a572adc10e3216190630429d631ef"/></dir></dir></dir><dir name="contacts"><file name="form.phtml" hash="d49b51d2dea7a2700b648c15641fa03e"/></dir><dir name="core"><file name="formkey.phtml" hash="863212f1c08ba181105c59327583b0b2"/><file name="link.phtml" hash="3e30c42082c1465578d7ed8c6e901c65"/><file name="messages.phtml" hash="a82b2b4b3edf28ec0eaa9c9edc0434f8"/></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="904b419653105dbe5882c75925b97ce7"/><file name="hello.phtml" hash="90b5dc8674e81a0e7011e776676b3ecf"/><file name="info.phtml" hash="63068d687f698480dabc60f21d6e6905"/><file name="newsletter.phtml" hash="b10865b4c558ec2688860368ebbe6c07"/></dir><file name="dashboard.phtml" hash="0d0d4edb111d35d39f8fa70065875c3e"/><dir name="link"><file name="back.phtml" hash="aedaa056ccc80c76c1afefce2bbf5965"/></dir><file name="navigation.phtml" hash="8edae91611dc6f90d01eff2274120454"/></dir><dir name="address"><file name="book.phtml" hash="efc752f924c0801c7cd8d9ae7c7cb60f"/><file name="edit.phtml" hash="0bb16a20d1b5bfb8452c775eb1fff540"/></dir><file name="address.phtml" hash="a738f8f2d991a41aa1bc5a46a84a5d30"/><file name="balance.phtml" hash="6326a38f59a5bd83e770da1614066e4c"/><dir name="form"><file name="address.phtml" hash="10a0b9936ffe608ca0131fe905173fb7"/><file name="changepassword.phtml" hash="2f9813021f20c7bc9af7f20690fe726a"/><file name="confirmation.phtml" hash="d6c8757ad4c83b9acb7d0a13d9066082"/><file name="edit.phtml" hash="939180c50cacae758b6b917026db7c01"/><file name="forgotpassword.phtml" hash="1aeae72fd7ee2ede3d6ad3bebef7cf24"/><file name="login.phtml" hash="3a9e49c1f8ea914d9ccfa1096bd5b155"/><file name="mini.login.phtml" hash="3fdbae59fc67b6676af43fd756ca7fcd"/><file name="newsletter.phtml" hash="447112ca884a57bdc8aa1ed271fe9965"/><file name="register.phtml" hash="93c6e55f27175b5bdd925825b00e4ce6"/><file name="resetforgottenpassword.phtml" hash="db9cd5bbb3c3f5dd4174b4729a9b002d"/></dir><file name="logout.phtml" hash="e02edb939fd7eed9b6525b22d7903289"/><file name="orders.phtml" hash="42fb93d0543e94a43091149a64abf20a"/><dir name="widget"><file name="dob.phtml" hash="8d92c3dd825b1a35bdce5349a8ee045e"/><file name="gender.phtml" hash="e3d8f95cd4fc923efed9801d7881f118"/><file name="name.phtml" hash="3d2fe05b006667a35cc5cd6c0264c5ea"/><file name="taxvat.phtml" hash="b8cfa5b0302167641ce67e1cf54011ef"/></dir><file name="wishlist.phtml" hash="5d86153cfbd0d744017738b52d386151"/></dir><dir name="directory"><dir name="currency"><file name="switch.phtml" hash="0208583247addba89944dea7ec97eeab"/></dir><file name="currency.phtml" hash="ef58d5ebfd45b03871eb49eccac18a70"/><dir name="js"><file name="optional_zip_countries.phtml" hash="c5aa8bbf8af4dab760bb99f47865233b"/></dir></dir><dir name="downloadable"><dir name="catalog"><dir name="product"><file name="links.phtml" hash="8b15ef9d6eafe7b4cc83549d5ce5daa3"/><file name="samples.phtml" hash="678da3a8c1e7e051d9d47508b0baaa32"/><file name="type.phtml" hash="c50e81fccbc40aa19d8bbf873b9540d2"/></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="8b43684edc2114f3b0e9412e9159eee7"/></dir></dir><dir name="multishipping"><dir name="item"><file name="downloadable.phtml" hash="0eaebc83739e61c9d3e9a4e39283dde0"/></dir></dir><dir name="onepage"><dir name="review"><file name="item.phtml" hash="cde0849b6c103e74182c3df0029c2008"/></dir></dir><file name="success.phtml" hash="4f2f374f1cfd3a61443563969275e086"/></dir><dir name="customer"><dir name="products"><file name="list.phtml" hash="61ef95610514212f1d9b33f2430a9754"/></dir></dir><dir name="email"><dir name="order"><dir name="items"><dir name="creditmemo"><file name="downloadable.phtml" hash="c889bb18e4ad5b6231bfb98240204fe2"/></dir><dir name="invoice"><file name="downloadable.phtml" hash="5ee53e13618cf6cce4ccd07a26d48f9b"/></dir><dir name="order"><file name="downloadable.phtml" hash="fa21e6e6c3a8d87b6aa885341fefc679"/></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="79b2764dfc2526b07c48cb042cf18c97"/></dir></dir></dir><dir name="invoice"><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="2800c50a326394ac5b26fec9cd2455ab"/></dir></dir></dir><dir name="items"><dir name="renderer"><file name="downloadable.phtml" hash="e507b00fdb1b5c359a9c06345cdc42b5"/></dir></dir></dir></dir></dir><dir name="email"><dir name="order"><dir name="creditmemo"><file name="items.phtml" hash="70327e401907aa50563c5e91faed594c"/></dir><dir name="invoice"><file name="items.phtml" hash="7547815f0d82484cb9711ea6e68a9746"/></dir><dir name="items"><dir name="creditmemo"><file name="default.phtml" hash="4d7ac506ebe91ab0028faa33799973a3"/></dir><dir name="invoice"><file name="default.phtml" hash="4d7ac506ebe91ab0028faa33799973a3"/></dir><dir name="order"><file name="default.phtml" hash="67e5e8f0ffce9b8fa5cecc1f38f57d60"/></dir><dir name="shipment"><file name="default.phtml" hash="d1380984b6372f1167c5c8677482db91"/></dir></dir><file name="items.phtml" hash="326437c08e241f86c252d8a4425d0bab"/><dir name="shipment"><file name="items.phtml" hash="263fec04764fab53067d3ac858a9fe28"/><file name="track.phtml" hash="a97fde9c7490123fd844a8b0b76e5aa8"/></dir></dir><dir name="productalert"><file name="price.phtml" hash="05e3930800cdb73c417db1522e0eec7d"/><file name="stock.phtml" hash="b8c8cbbcaf38f69fb732fa80520829d6"/></dir></dir><dir name="giftmessage"><file name="inline.phtml" hash="50ae439654a17a0dc5d37dddbb7cfe23"/></dir><dir name="googleanalytics"><file name="ga.phtml" hash="380b295a24147c1275488c7c4a5ff419"/></dir><dir name="newsletter"><file name="subscribe.phtml" hash="9fae414d8b68b2b2befb0ea30856dd42"/></dir><dir name="oauth"><dir name="authorize"><file name="button-simple.phtml" hash="e52db19182d613b048fa0a2d8a4239ce"/><file name="button.phtml" hash="f52f96f7addd59d4ef582d6faf363c46"/><file name="confirm-simple.phtml" hash="207bce922b7c20022bb21dcceac7e26f"/><file name="confirm.phtml" hash="ace5a9e1661f4a57211ac84d0af0408c"/><dir name="form"><file name="login-simple.phtml" hash="9396f2cc72b2f95724847e3985f2f44a"/><file name="login.phtml" hash="d20cc388abc1ba55dd36dde14bedb458"/></dir><file name="head-simple.phtml" hash="489a0415f720e3a726823d02c6433506"/><file name="reject-simple.phtml" hash="55c62dea5af81979d25ee4efd9b91a19"/><file name="reject.phtml" hash="8db929b29854ef504b82eb58d742a9db"/></dir><dir name="customer"><dir name="token"><file name="list.phtml" hash="2f8e38ee10ac7942ed1ddec839a628e9"/></dir></dir></dir><dir name="page"><file name="1column.phtml" hash="a0e45d5801ae9bd1be28e05e6f072ebd"/><file name="2columns-left.phtml" hash="e23b66ea121816c395ebfba2c3ae28db"/><file name="2columns-right.phtml" hash="c27ea55034fda90da598d59d0b341685"/><file name="3columns.phtml" hash="874726e43b8eb2f167d00a148d18fb48"/><file name="empty.phtml" hash="735d27c725c01b0f5ebe679a1f62abbd"/><dir name="html"><file name="breadcrumbs.phtml" hash="5ef35b42e8b0bdf2e621af4d6878dfd8"/><file name="cookienotice.phtml" hash="810e14873d0c8342cfbf717f9232cae7"/><file name="footer.phtml" hash="1a7b31125173191806036a3152c08e75"/><file name="head.phtml" hash="5d007bc33eaeb0ba5f66e7e283f5ec51"/><file name="header.phtml" hash="eb6e2d6579ec92f56ab643b38cb8c4fb"/><file name="notices.phtml" hash="64a83899c7099527ec658357ef9b8954"/><file name="pager.phtml" hash="cef7891922c77c3cdc2374009c5ebcd6"/><file name="top.links.phtml" hash="b09acd6a24ef7ce626d6b931c45d6017"/><file name="topmenu.phtml" hash="bb01548390edde22a759196f7d1203ee"/><file name="wrapper.phtml" hash="64c89c9d00499d2d909177c5b4170bc0"/></dir><dir name="js"><file name="calendar.phtml" hash="1370a48cf885b20ae2f786691a088f3d"/><file name="cookie.phtml" hash="7e0e8523779b9d574241a163c1bf9def"/></dir><file name="popup.phtml" hash="cbc2a95f41a7dbb87bf9f0192b99d7bf"/><file name="print.phtml" hash="0377ba207a9ccbcf27279de8c39cfd36"/><file name="redirect.phtml" hash="fe03b2d968eb773de43bc1ea9bde7d2b"/><dir name="switch"><file name="flags.phtml" hash="ca762aa240349519c7c3b4a3248533cd"/><file name="languages.phtml" hash="289dbe8803ada170518da0682e2c8ce7"/><file name="stores.phtml" hash="2f222746d5bffb708fce55c20d3a01df"/></dir><dir name="template"><file name="container.phtml" hash="dd1342270f8562159e2133141fbc6da3"/><file name="links.phtml" hash="9587c24c0cbf57c54c0ca2158e9318d9"/><file name="linksblock.phtml" hash="f9119d93c6f82a1eb35640f4971c5a89"/></dir></dir><dir name="pagecache"><file name="cookie.phtml" hash="b6b59d2c6791f3f6a6e157a2649a69fb"/></dir><dir name="paygate"><dir name="form"><file name="cc.phtml" hash="963179f14e352cdc70f2ecb4c3ec4bd3"/></dir><dir name="info"><file name="cc.phtml" hash="7bf9a5a3bcf1259e5eae8593256cccbb"/></dir></dir><dir name="payment"><dir name="catalog"><dir name="product"><dir name="view"><dir name="profile"><file name="options.phtml" hash="4dbb61f0d5ee3c6d9f462f6e03066d72"/><file name="schedule.phtml" hash="204dadac7b3082e73672489d147f546a"/></dir></dir></dir></dir><dir name="form"><file name="banktransfer.phtml" hash="44cad9a0a4cb55682459db7d18631cbb"/><file name="cashondelivery.phtml" hash="bf0f45a93e8d433b1fcd2d467ab50bca"/><file name="cc.phtml" hash="23873bbff6744183e0943cf59e8797ec"/><file name="ccsave.phtml" hash="2f12ce0ac0a9bc4d074bef269ae8b36f"/><file name="checkmo.phtml" hash="908939577f278b60e39699a0f4405c3f"/><file name="purchaseorder.phtml" hash="ccece1fb6f652e4ce7f038c93304d4c6"/></dir><dir name="info"><file name="banktransfer.phtml" hash="b4ca1346e18806b3b01f9138f5adab46"/><file name="checkmo.phtml" hash="87b4313efb118c04cdfa64dfd300a5d2"/><file name="default.phtml" hash="ef41b9eb0241237f6ad38fd70adae1b5"/><file name="purchaseorder.phtml" hash="9e7c3f8aad863a2db7cc02b9f4602724"/></dir></dir><dir name="paypal"><file name="bml.phtml" hash="840a23fd4a9f3c4607f2843050584640"/><dir name="express"><dir name="review"><file name="details.phtml" hash="6c74a14ddbb5cd385ecc76ef31b74305"/><dir name="shipping"><file name="method.phtml" hash="33e3c05c6c401b6f7e62ea69e3563501"/></dir></dir><file name="review.phtml" hash="7e543d7e6aa00091245088b214f8edd4"/><file name="shortcut.phtml" hash="73a3728042717e56813b863f4a763484"/></dir><dir name="hss"><file name="form.phtml" hash="746e4b798643433b8ed818321304664c"/><file name="iframe.phtml" hash="17578113f1966f4f06ac14f4b37f2ce6"/><file name="info.phtml" hash="63a5d741ededcbc3d4627d28853f720c"/><file name="js.phtml" hash="72f523dfb86bf9a49af33b41475ab306"/><file name="redirect.phtml" hash="b6d7b4bbc47bd6345dbf20a5b541231d"/><dir name="review"><file name="button.phtml" hash="52cc7c288abdf2c62deb1c31a2927b49"/></dir></dir><dir name="partner"><file name="logo.phtml" hash="e7b7b0a6e03debeaf4aee94fa47ab3b6"/><file name="us_logo.phtml" hash="afc0bdeac18b08d18fda01f4953ae792"/></dir><dir name="payflowadvanced"><file name="iframe.phtml" hash="0b901dcb5ac0c1138584c467d08d3862"/><file name="info.phtml" hash="f41e44779a15eb924f30927c56849de5"/><file name="redirect.phtml" hash="52199b702552ece270139e92826270b9"/></dir><dir name="payflowlink"><file name="iframe.phtml" hash="87a5b7e3889f1896d88ad649cb7a3706"/><file name="info.phtml" hash="96b9d6afdde46233e7bb0ea48bec6870"/><file name="redirect.phtml" hash="6dcfc8727ad8e33e8db07adb1a16d576"/></dir><dir name="payment"><file name="mark.phtml" hash="64b384c1664294a33daab01b32863124"/><file name="redirect.phtml" hash="f4652cf8d92d6cc8ba8a530bd2997f77"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="c30820672c8bf6c47baf1a51a74000ad"/><file name="login.phtml" hash="b77b44de10e486ac1f2b17e4fd3364c3"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="49b7f615d854a0dd49346975ea375808"/><file name="register.phtml" hash="0265df4239a427d23278460a221359a4"/></dir></dir><file name="remember_me.phtml" hash="6fb2d652d2c0eaa148d8a940543cfe29"/><file name="remember_me_tooltip.phtml" hash="b0bc2323f2e9d5616cc22d1fe2af3ebc"/></dir><dir name="poll"><file name="active.phtml" hash="61ea10b9e116b1a33039176f8ae94254"/><file name="result.phtml" hash="757aa6c35370ee4c220797a8799cdf0b"/></dir><dir name="productalert"><file name="price.phtml" hash="64443cf7b3609138cf4f4ca1d958a54d"/><dir name="product"><file name="view.phtml" hash="9f80930f87330da1627187f3280e2724"/></dir><file name="stock.phtml" hash="64443cf7b3609138cf4f4ca1d958a54d"/></dir><dir name="rating"><file name="detailed.phtml" hash="f788c0bfd6ff57fd2e81f33b36a587d6"/><file name="empty.phtml" hash="9cc79ae8bf1e76f593165c53a20b9922"/></dir><dir name="reports"><file name="home_product_compared.phtml" hash="79044f1fcc8d3359150a2010f0d6220e"/><file name="home_product_viewed.phtml" hash="68e057c8d72df3081c3b032a92119287"/><file name="product_compared.phtml" hash="23a50bcacf37fadb3420159b450e9146"/><file name="product_viewed.phtml" hash="5220dcf2e0075a7e720a41c8557e5a02"/><dir name="widget"><dir name="compared"><dir name="column"><file name="compared_default_list.phtml" hash="e7c2525fc6e1fb4365b9948158b4cd1e"/><file name="compared_images_list.phtml" hash="93ff1cf81bd8646db50917f11efd4979"/><file name="compared_names_list.phtml" hash="1e89c78241a2898f6d16daa4a2819a4f"/></dir><dir name="content"><file name="compared_grid.phtml" hash="1b9744e981b132c295b615280d1535dc"/><file name="compared_list.phtml" hash="5fbaa529b6262b1fca6fbc9b019f2b86"/></dir></dir><dir name="viewed"><dir name="column"><file name="viewed_default_list.phtml" hash="9ecc075b1f109241eaae609f93548bd0"/><file name="viewed_images_list.phtml" hash="9890c2515e28f044e2089d2f91e0fdbb"/><file name="viewed_names_list.phtml" hash="6a128b9571d806bac682750806d416e7"/></dir><dir name="content"><file name="viewed_grid.phtml" hash="2cbcb01f5a3a2b97a2531335f69df1d0"/><file name="viewed_list.phtml" hash="69f93bf33de12e5e7f3205b9bf6bbbe7"/></dir></dir></dir></dir><dir name="review"><dir name="customer"><file name="list.phtml" hash="109a1bcb0602e9cc43c25dbaf5bd8904"/><file name="recent.phtml" hash="a301a8d664da38013954d2f2ccdcf564"/><file name="view.phtml" hash="16748f98da6bdcbda70f080605f23a79"/></dir><file name="form.phtml" hash="a96f4bf47292e99ba5c22fb346c349ea"/><dir name="helper"><file name="summary.phtml" hash="0f56f95edf67774eb1e0ce7eafb315e6"/><file name="summary_short.phtml" hash="8dd7f988096a03ef1d8b9a54ecabe3de"/></dir><dir name="product"><dir name="view"><file name="count.phtml" hash="1cdeb0b7a311f49c77b8db1d0b4c1f27"/><file name="list.phtml" hash="a1cb734513e20873713002bc714d0a87"/><file name="other.phtml" hash="fa89dda1f591a46452ca2cd44163c531"/></dir></dir><file name="view.phtml" hash="fe1544b505db1cb5f07173d43eebd807"/></dir><dir name="rss"><file name="list.phtml" hash="594f7e3ae823e80a5fb59d3c4a522c27"/><file name="nofeed.phtml" hash="434190ba6f2eea7f1b4d6c1f5c8448a7"/><dir name="order"><file name="details.phtml" hash="9a28a1f62c531f91b0949d0918e53f9c"/></dir></dir><dir name="sales"><dir name="billing"><dir name="agreement"><file name="view.phtml" hash="a35e2eff1aa6414970bc67833d9c932f"/></dir><file name="agreements.phtml" hash="a72a246a733fc1f5e15c8f882a284f8d"/></dir><dir name="guest"><file name="form.phtml" hash="5d6f6f54e7f694021c5dfacc8ecc048a"/></dir><dir name="order"><file name="comments.phtml" hash="4472466adc7d579a45018ce557ff60b7"/><dir name="creditmemo"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="af89c55b234a5672b8536b38af2f7725"/></dir></dir><file name="items.phtml" hash="352207b4d564a05590378e90148256c4"/></dir><file name="creditmemo.phtml" hash="d995293f452b6599c6a04769ba7839c9"/><file name="details.phtml" hash="92fe3f2e9c4f48de898da286a79bcb13"/><file name="history.phtml" hash="edc589262133df5967fe6d809dc37385"/><dir name="info"><file name="buttons.phtml" hash="7ec327e3ac76a8ae91db6332bd739bf4"/></dir><file name="info.phtml" hash="e09d9464107cdf11081957613e5acddb"/><dir name="invoice"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="4aaba5d0861a4eb7bfbb8aa01bcdcfec"/></dir></dir><file name="items.phtml" hash="20f81d4d04477d9c37d5cf402fb1a0fa"/></dir><file name="invoice.phtml" hash="328b9f574d73940d0006fac3aef0aefb"/><dir name="items"><dir name="renderer"><file name="default.phtml" hash="39cef1ada295561f033c8241e656fb51"/></dir></dir><file name="items.phtml" hash="6fcbf84de83168cad7ff8dd3df80df85"/><dir name="print"><file name="creditmemo.phtml" hash="42a44a874c7eff266dcf339ffd5ffa61"/><file name="invoice.phtml" hash="b228f52465ec936d33e9439102847fcb"/><file name="shipment.phtml" hash="02819ebd30eb382478c5c1e4d3a43845"/></dir><file name="print.phtml" hash="e00974c7641106a5d9ed211be9ca9518"/><file name="recent.phtml" hash="cb0e8c2c4d695777e6a41e8e6d27ff25"/><dir name="shipment"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="506b31d10ab043fe1e97541a7bba25cb"/></dir></dir><file name="items.phtml" hash="f9ffdb3526d953ad8156040dc643e373"/></dir><file name="shipment.phtml" hash="b7c55bb77112b21f0fa7ac08aa9003f2"/><file name="totals.phtml" hash="6477e543bda9576c165c1f6535dd210e"/><file name="trackinginfo.phtml" hash="2aecc337bfe3fb8b2d916142a60791d7"/><file name="view.phtml" hash="f9bab3cdc651691648e6bea413c08879"/></dir><dir name="payment"><dir name="form"><dir name="billing"><file name="agreement.phtml" hash="40c7582c2bd13244a38bd88ef97d2c03"/></dir></dir></dir><dir name="recurring"><file name="grid.phtml" hash="bf8ed2da44930c01637fda0ca2767966"/><dir name="profile"><dir name="view"><file name="info.phtml" hash="bb1345d11f1b222c5de47415cc8e3349"/></dir><file name="view.phtml" hash="8e65465890033b735e876e44b2e646c6"/></dir><file name="profiles.phtml" hash="33e52546c6c5a9b6adbfe20417e7b886"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="57bda3813fc70fda9415f5e006a84b5a"/></dir><dir name="widget"><dir name="guest"><file name="form.phtml" hash="8854da1ad5a690f3ea78ba42eb6ea0d8"/></dir></dir></dir><dir name="sendfriend"><file name="send.phtml" hash="51e457e85297b8d06a593e63fb101c50"/></dir><dir name="shipping"><dir name="tracking"><file name="ajax.phtml" hash="68472bee10bf2127ce1e12b7cf0dc9bf"/><file name="popup.phtml" hash="5d730707a801198b0843d47119cfd4e6"/></dir></dir><dir name="tag"><file name="cloud.phtml" hash="b79e2ebfb178ab2c9239330066d72ba5"/><dir name="customer"><file name="recent.phtml" hash="88a52c59f42ab753c09f955f13d7a33c"/><file name="tags.phtml" hash="15e6fc54f05f38f3d6a4876fcd44616d"/><file name="view.phtml" hash="f4e497a9786c5279dadcbd8c8152a2d8"/></dir><file name="list.phtml" hash="b8aa58821f08ce79094dedfa85a5d2ae"/><file name="popular.phtml" hash="c28fbd64b89a1bbfab7e6c457361f089"/></dir><dir name="tax"><dir name="checkout"><file name="discount.phtml" hash="2575e3ab36ff30d6c0548ece90f03f0f"/><file name="grandtotal.phtml" hash="4ee3bdd1190a459e243249e288e6caff"/><file name="shipping.phtml" hash="75900b7d4cfb370e803d1489148450ad"/><file name="subtotal.phtml" hash="f91e3bc1a39761fa7cea8fc296091430"/><file name="tax.phtml" hash="37173b32341b2692a7890111f02f2938"/></dir><dir name="order"><file name="tax.phtml" hash="09dd1423b6a54a87cbefd386bfe181de"/></dir></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="ee9056b1272b18a630a1a9298dab8a0c"/><file name="tocart.phtml" hash="8e8148ddf180df398c4d41883763bd68"/><file name="update.phtml" hash="cae677c6b812eeabc96001e95506178c"/></dir><dir name="email"><file name="items.phtml" hash="c82ffe0bb372bfa30515f9182f21325f"/><file name="rss.phtml" hash="6c5f87b8ec110d835372a09a6d96e499"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="41005e213b010ccba982eee482cf2f4a"/><file name="image.phtml" hash="36ee946bf03b7828b16757b6a8e96fca"/><file name="info.phtml" hash="f186c32f863c35c526500cf66e3a8e6a"/><file name="remove.phtml" hash="f3e910827ed01e86f1b71eb42130c142"/></dir><dir name="configure"><file name="addto.phtml" hash="ed5bc17e4e7938756140fd3184623835"/></dir><file name="list.phtml" hash="5aa9f3d63226cd5dc286007f6077ab45"/></dir><file name="options_list.phtml" hash="99e16d8548c4ce2e7589d378db786d2b"/><dir name="render"><dir name="item"><file name="price.phtml" hash="22ef18ac956458805c6864132455580d"/><file name="price_msrp_item.phtml" hash="b2819ffce6a9f8e71f9f73f01dfb2318"/><file name="price_msrp_rss.phtml" hash="f581d55757cabc5eec46491eb64529e9"/></dir></dir><file name="shared.phtml" hash="d6b7304e67cd7142a9a1ab88bcfe9494"/><file name="sharing.phtml" hash="665cea1ab1deff8a3774ff715a73a59b"/><file name="sidebar.phtml" hash="6fe04c59bd22fbbcc8e653d16f05b430"/><file name="view.phtml" hash="823392cb67487dda5ae2df48c3851a1e"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="email-inline.css" hash="e9dccc153a5cf889fe5ee05a35d3cfad"/><file name="email-non-inline.css" hash="f4e52101c5e29fb139df395efec24191"/><file name="widgets.css" hash="1f42883af2c6bcc93441be815e99e2ec"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="calendar.gif" hash="b1468e5239504974c689eea5d93f86d4"/><dir name="catalog"><dir name="product"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir><dir name="cookies"><file name="firefox.png" hash="425e1b2ddc38c0bba431fb54357c66a4"/><file name="ie6-1.gif" hash="5c27700e245762bc89ed8c3ee7183f21"/><file name="ie6-2.gif" hash="d8c55e15e1f711e5c259300a9c19551b"/><file name="ie7-1.gif" hash="d61edcc8a514a3c81ea116b7d38ddcb6"/><file name="ie7-2.gif" hash="0526a654e94c54866cad977c0a47d3e5"/><file name="ie7-3.gif" hash="4fb142def3f6cfd8d8d23e1315528a1e"/><file name="ie7-4.gif" hash="575c276231c6a91e28935ec98215e146"/><file name="ie7-5.gif" hash="3ae5fcc11fe89da91674d183872337c1"/><file name="ie7-6.gif" hash="95a4981a41785a8cde273c9b2edbfbc7"/><file name="opera.png" hash="34070d92180d4ee0e37b1dd8bb731cd7"/></dir><file name="cvv.gif" hash="83cdd38bf110b0f9c52fe84b56f45298"/><file name="fam_book_open.png" hash="0ba89b9fbe7e88d4c6896ed0a1f495aa"/><file name="reload.png" hash="84cc4883f78ef850814ea9b53989b2a7"/><dir name="widgets"><file name="i_block-list.gif" hash="fe8424127ecbe4b0d893bcf6f253dc1a"/><file name="i_widget-link.gif" hash="1bf753578171f147f0203e7b13bdd0c4"/><file name="i_widget-new.gif" hash="a75377ffed51b711cbc608ffaa1a2e7d"/></dir><file name="window_overlay.png" hash="9ec9aea4c2159e0b1e73bda29821a39f"/></dir><dir name="js"><file name="bundle.js" hash="918bfdfbc446d5f6406998587eb9efe8"/><dir name="checkout"><file name="review.js" hash="1a72145b4597119efb34673de57921b6"/></dir><file name="giftmessage.js" hash="07227de131db9f78bf2b6fadaf956aec"/><file name="ie6.js" hash="f502a3ebd97968fa1a7f1d8e93934db6"/><file name="msrp.js" hash="86402ef9d8beb75aaac34bb250fb23c8"/><file name="opcheckout.js" hash="816ab64a6fff678c5d29e060827191b9"/></dir><dir name="lib"><dir name="prototype"><dir name="windows"><dir name="themes"><dir name="magento"><file name="btn_bg.gif" hash="37c51a4d48a92da9648dcd3ca011039f"/><file name="content_bg.gif" hash="21278ea0da2d4256f4ced96b6080ba2e"/><file name="top_bg.gif" hash="26f28090de87d64f9b01bf624f89bfe2"/><file name="window_close.png" hash="3af14f053f360bf31f8ba2df73ec7f1e"/></dir><file name="magento.css" hash="5b805ff993bb8cc59c96d175d66c19dd"/></dir></dir></dir></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.9.3.0</min><max>1.9.3.0</max></package></required></dependencies>
18
  </package>
skin/frontend/base/default/images/window_overlay.png ADDED
Binary file
skin/frontend/base/default/js/bundle.js CHANGED
@@ -140,7 +140,7 @@ Product.Bundle.prototype = {
140
  },
141
 
142
  selectionPrice: function(optionId, selectionId) {
143
- if (selectionId == '' || selectionId == 'none') {
144
  return 0;
145
  }
146
  var qty = null;
@@ -271,4 +271,4 @@ Product.Bundle.prototype = {
271
  }
272
  }
273
  }
274
- }
140
  },
141
 
142
  selectionPrice: function(optionId, selectionId) {
143
+ if (selectionId == '' || selectionId == 'none' || typeof(this.config.options[optionId].selections[selectionId]) == 'undefined') {
144
  return 0;
145
  }
146
  var qty = null;
271
  }
272
  }
273
  }
274
+ };
skin/frontend/base/default/js/checkout/review.js CHANGED
@@ -355,7 +355,7 @@ OrderReviewController.prototype = {
355
  * @param input
356
  */
357
  _bindElementChange : function(input){
358
- Event.observe(input, 'change', this._onElementChange.bindAsEventListener(this))
359
  },
360
 
361
  /**
355
  * @param input
356
  */
357
  _bindElementChange : function(input){
358
+ Event.observe(input, 'change', this._onElementChange.bindAsEventListener(this));
359
  },
360
 
361
  /**
skin/frontend/base/default/js/giftmessage.js CHANGED
@@ -118,7 +118,7 @@ GiftMessageWindow.prototype = {
118
  },
119
  updateParent: function (url, buttonUrl) {
120
  if(this.parentObject) {
121
- this.parentObject.url = url
122
  this.parentObject.reloadContainer(buttonUrl);
123
  }
124
  setTimeout(function(){
118
  },
119
  updateParent: function (url, buttonUrl) {
120
  if(this.parentObject) {
121
+ this.parentObject.url = url;
122
  this.parentObject.reloadContainer(buttonUrl);
123
  }
124
  setTimeout(function(){
skin/frontend/base/default/js/ie6.js CHANGED
@@ -28,8 +28,8 @@ ieHover = function() {
28
  items = $$('#nav ul', '#nav div', '.truncated_full_value .item-options', '.tool-tip');
29
  $$('#checkout-step-payment', '.tool-tip').each(function(el) {
30
  el.show();
31
- el.setStyle({'visibility':'hidden'})
32
- })
33
  for (var j=0; j<items.length; j++) {
34
  iframe = document.createElement('IFRAME');
35
  iframe.src = BLANK_URL;
@@ -42,7 +42,7 @@ ieHover = function() {
42
  }
43
  $$('.tool-tip', '#checkout-step-payment').each(function(el) {
44
  el.hide();
45
- el.setStyle({'visibility':'visible'})
46
- })
47
- }
48
  Event.observe(window, 'load', ieHover);
28
  items = $$('#nav ul', '#nav div', '.truncated_full_value .item-options', '.tool-tip');
29
  $$('#checkout-step-payment', '.tool-tip').each(function(el) {
30
  el.show();
31
+ el.setStyle({'visibility':'hidden'});
32
+ });
33
  for (var j=0; j<items.length; j++) {
34
  iframe = document.createElement('IFRAME');
35
  iframe.src = BLANK_URL;
42
  }
43
  $$('.tool-tip', '#checkout-step-payment').each(function(el) {
44
  el.hide();
45
+ el.setStyle({'visibility':'visible'});
46
+ });
47
+ };
48
  Event.observe(window, 'load', ieHover);
skin/frontend/base/default/js/msrp.js CHANGED
@@ -322,7 +322,7 @@ Event.observe(window, 'resize', function(event) {
322
  if (Catalog.Map.active) {
323
  Catalog.Map.showHelp(event);
324
  }
325
- })
326
 
327
  $(document).observe('bundle:reload-price', function (event) { //reload price
328
  var data = event.memo, bundle = data.bundle;
322
  if (Catalog.Map.active) {
323
  Catalog.Map.showHelp(event);
324
  }
325
+ });
326
 
327
  $(document).observe('bundle:reload-price', function (event) { //reload price
328
  var data = event.memo, bundle = data.bundle;
skin/frontend/base/default/js/opcheckout.js CHANGED
@@ -31,7 +31,7 @@ Checkout.prototype = {
31
  this.saveMethodUrl = urls.saveMethod;
32
  this.failureUrl = urls.failure;
33
  this.billingForm = false;
34
- this.shippingForm= false;
35
  this.syncBillingShipping = false;
36
  this.method = '';
37
  this.payment = '';
@@ -53,7 +53,7 @@ Checkout.prototype = {
53
  * @param event
54
  */
55
  _onSectionClick: function(event) {
56
- var section = $(Event.element(event).up().up());
57
  if (section.hasClassName('allow')) {
58
  Event.stop(event);
59
  this.gotoSection(section.readAttribute('id').replace('opc-', ''), false);
@@ -62,7 +62,7 @@ Checkout.prototype = {
62
  },
63
 
64
  ajaxFailure: function(){
65
- location.href = this.failureUrl;
66
  },
67
 
68
  reloadProgressBlock: function(toStep) {
@@ -85,7 +85,7 @@ Checkout.prototype = {
85
  },
86
 
87
  reloadReviewBlock: function(){
88
- var updater = new Ajax.Updater('checkout-review-load', this.reviewUrl, {method: 'get', onFailure: this.ajaxFailure.bind(this)});
89
  },
90
 
91
  _disableEnableAll: function(element, isDisabled) {
@@ -97,18 +97,19 @@ Checkout.prototype = {
97
  },
98
 
99
  setLoadWaiting: function(step, keepDisabled) {
 
100
  if (step) {
101
  if (this.loadWaiting) {
102
  this.setLoadWaiting(false);
103
  }
104
- var container = $(step+'-buttons-container');
105
  container.addClassName('disabled');
106
  container.setStyle({opacity:.5});
107
  this._disableEnableAll(container, true);
108
  Element.show(step+'-please-wait');
109
  } else {
110
  if (this.loadWaiting) {
111
- var container = $(this.loadWaiting+'-buttons-container');
112
  var isDisabled = (keepDisabled ? true : false);
113
  if (!isDisabled) {
114
  container.removeClassName('disabled');
@@ -144,16 +145,10 @@ Checkout.prototype = {
144
  var progressDiv = nextStep + '-progress-opcheckout';
145
  if ($(progressDiv)) {
146
  //Remove the link
147
- $(progressDiv).select('.changelink').each(function (item) {
148
- item.remove();
149
- });
150
- $(progressDiv).select('dt').each(function (item) {
151
- item.removeClassName('complete');
152
- });
153
  //Remove the content
154
- $(progressDiv).select('dd.complete').each(function (item) {
155
- item.remove();
156
- });
157
  }
158
  }
159
  },
@@ -166,7 +161,7 @@ Checkout.prototype = {
166
  setMethod: function(){
167
  if ($('login:guest') && $('login:guest').checked) {
168
  this.method = 'guest';
169
- var request = new Ajax.Request(
170
  this.saveMethodUrl,
171
  {method: 'post', onFailure: this.ajaxFailure.bind(this), parameters: {method:'guest'}}
172
  );
@@ -175,7 +170,7 @@ Checkout.prototype = {
175
  }
176
  else if($('login:register') && ($('login:register').checked || $('login:register').type == 'hidden')) {
177
  this.method = 'register';
178
- var request = new Ajax.Request(
179
  this.saveMethodUrl,
180
  {method: 'post', onFailure: this.ajaxFailure.bind(this), parameters: {method:'register'}}
181
  );
@@ -279,12 +274,12 @@ Checkout.prototype = {
279
  return true;
280
  }
281
  if (response.redirect) {
282
- location.href = response.redirect;
283
  return true;
284
  }
285
  return false;
286
  }
287
- }
288
 
289
  // billing
290
  var Billing = Class.create();
@@ -303,7 +298,7 @@ Billing.prototype = {
303
 
304
  setAddress: function(addressId){
305
  if (addressId) {
306
- request = new Ajax.Request(
307
  this.addressUrl+addressId,
308
  {method:'get', onSuccess: this.onAddressLoad, onFailure: checkout.ajaxFailure.bind(checkout)}
309
  );
@@ -323,32 +318,26 @@ Billing.prototype = {
323
  },
324
 
325
  resetSelectedAddress: function(){
326
- var selectElement = $('billing-address-select')
327
  if (selectElement) {
328
  selectElement.value='';
329
  }
330
  },
331
 
332
  fillForm: function(transport){
333
- var elementValues = {};
334
- if (transport && transport.responseText){
335
- try{
336
- elementValues = eval('(' + transport.responseText + ')');
337
- }
338
- catch (e) {
339
- elementValues = {};
340
- }
341
- }
342
- else{
343
  this.resetSelectedAddress();
344
  }
345
- arrElements = Form.getElements(this.form);
346
  for (var elemIndex in arrElements) {
347
- if (arrElements[elemIndex].id) {
348
- var fieldName = arrElements[elemIndex].id.replace(/^billing:/, '');
349
- arrElements[elemIndex].value = elementValues[fieldName] ? elementValues[fieldName] : '';
350
- if (fieldName == 'country_id' && billingForm){
351
- billingForm.elementChildLoad(arrElements[elemIndex]);
 
 
352
  }
353
  }
354
  }
@@ -369,7 +358,7 @@ Billing.prototype = {
369
  // $('billing:use_for_shipping').value=1;
370
  // }
371
 
372
- var request = new Ajax.Request(
373
  this.saveUrl,
374
  {
375
  method: 'post',
@@ -392,37 +381,36 @@ Billing.prototype = {
392
  There are 3 options: error, redirect or html with shipping options.
393
  */
394
  nextStep: function(transport){
395
- if (transport && transport.responseText){
396
- try{
397
- response = eval('(' + transport.responseText + ')');
398
- }
399
- catch (e) {
400
- response = {};
401
- }
402
- }
403
 
404
  if (response.error){
405
- if ((typeof response.message) == 'string') {
406
- alert(response.message);
407
  } else {
408
  if (window.billingRegionUpdater) {
409
  billingRegionUpdater.update();
410
  }
411
 
412
- alert(response.message.join("\n"));
 
 
 
 
413
  }
414
 
415
  return false;
416
  }
417
 
418
  checkout.setStepResponse(response);
419
- payment.initWhatIsCvvListeners();
 
 
420
  // DELETE
421
  //alert('error: ' + response.error + ' / redirect: ' + response.redirect + ' / shipping_methods_html: ' + response.shipping_methods_html);
422
  // This moves the accordion panels of one page checkout and updates the checkout progress
423
  //checkout.setBilling();
424
  }
425
- }
426
 
427
  // shipping
428
  var Shipping = Class.create();
@@ -442,7 +430,7 @@ Shipping.prototype = {
442
 
443
  setAddress: function(addressId){
444
  if (addressId) {
445
- request = new Ajax.Request(
446
  this.addressUrl+addressId,
447
  {method:'get', onSuccess: this.onAddressLoad, onFailure: checkout.ajaxFailure.bind(checkout)}
448
  );
@@ -463,32 +451,26 @@ Shipping.prototype = {
463
  },
464
 
465
  resetSelectedAddress: function(){
466
- var selectElement = $('shipping-address-select')
467
  if (selectElement) {
468
  selectElement.value='';
469
  }
470
  },
471
 
472
  fillForm: function(transport){
473
- var elementValues = {};
474
- if (transport && transport.responseText){
475
- try{
476
- elementValues = eval('(' + transport.responseText + ')');
477
- }
478
- catch (e) {
479
- elementValues = {};
480
- }
481
- }
482
- else{
483
  this.resetSelectedAddress();
484
  }
485
- arrElements = Form.getElements(this.form);
486
  for (var elemIndex in arrElements) {
487
- if (arrElements[elemIndex].id) {
488
- var fieldName = arrElements[elemIndex].id.replace(/^shipping:/, '');
489
- arrElements[elemIndex].value = elementValues[fieldName] ? elementValues[fieldName] : '';
490
- if (fieldName == 'country_id' && shippingForm){
491
- shippingForm.elementChildLoad(arrElements[elemIndex]);
 
 
492
  }
493
  }
494
  }
@@ -535,7 +517,7 @@ Shipping.prototype = {
535
  var validator = new Validation(this.form);
536
  if (validator.validate()) {
537
  checkout.setLoadWaiting('shipping');
538
- var request = new Ajax.Request(
539
  this.saveUrl,
540
  {
541
  method:'post',
@@ -548,27 +530,25 @@ Shipping.prototype = {
548
  }
549
  },
550
 
551
- resetLoadWaiting: function(transport){
552
  checkout.setLoadWaiting(false);
553
  },
554
 
555
  nextStep: function(transport){
556
- if (transport && transport.responseText){
557
- try{
558
- response = eval('(' + transport.responseText + ')');
559
- }
560
- catch (e) {
561
- response = {};
562
- }
563
- }
564
  if (response.error){
565
- if ((typeof response.message) == 'string') {
566
- alert(response.message);
567
  } else {
568
  if (window.shippingRegionUpdater) {
569
  shippingRegionUpdater.update();
570
  }
571
- alert(response.message.join("\n"));
 
 
 
 
572
  }
573
 
574
  return false;
@@ -585,7 +565,7 @@ Shipping.prototype = {
585
  */
586
  //checkout.setShipping();
587
  }
588
- }
589
 
590
  // shipping method
591
  var ShippingMethod = Class.create();
@@ -626,7 +606,7 @@ ShippingMethod.prototype = {
626
  if (checkout.loadWaiting!=false) return;
627
  if (this.validate()) {
628
  checkout.setLoadWaiting('shipping-method');
629
- var request = new Ajax.Request(
630
  this.saveUrl,
631
  {
632
  method:'post',
@@ -644,17 +624,10 @@ ShippingMethod.prototype = {
644
  },
645
 
646
  nextStep: function(transport){
647
- if (transport && transport.responseText){
648
- try{
649
- response = eval('(' + transport.responseText + ')');
650
- }
651
- catch (e) {
652
- response = {};
653
- }
654
- }
655
 
656
  if (response.error) {
657
- alert(response.message);
658
  return false;
659
  }
660
 
@@ -676,7 +649,7 @@ ShippingMethod.prototype = {
676
 
677
  checkout.setShippingMethod();
678
  }
679
- }
680
 
681
 
682
  // payment
@@ -845,7 +818,7 @@ Payment.prototype = {
845
  var validator = new Validation(this.form);
846
  if (this.validate() && validator.validate()) {
847
  checkout.setLoadWaiting('payment');
848
- var request = new Ajax.Request(
849
  this.saveUrl,
850
  {
851
  method:'post',
@@ -863,14 +836,8 @@ Payment.prototype = {
863
  },
864
 
865
  nextStep: function(transport){
866
- if (transport && transport.responseText){
867
- try{
868
- response = eval('(' + transport.responseText + ')');
869
- }
870
- catch (e) {
871
- response = {};
872
- }
873
- }
874
  /*
875
  * if there is an error in payment, need to show error message
876
  */
@@ -885,10 +852,10 @@ Payment.prototype = {
885
  }
886
  return;
887
  }
888
- if (typeof(response.message) == 'string') {
889
- alert(response.message);
890
  } else {
891
- alert(response.error);
892
  }
893
  return;
894
  }
@@ -903,7 +870,7 @@ Payment.prototype = {
903
  Event.observe(element, 'click', toggleToolTip);
904
  });
905
  }
906
- }
907
 
908
  var Review = Class.create();
909
  Review.prototype = {
@@ -923,7 +890,7 @@ Review.prototype = {
923
  params += '&'+Form.serialize(this.agreementsForm);
924
  }
925
  params.save = true;
926
- var request = new Ajax.Request(
927
  this.saveUrl,
928
  {
929
  method:'post',
@@ -940,26 +907,22 @@ Review.prototype = {
940
  },
941
 
942
  nextStep: function(transport){
943
- if (transport && transport.responseText) {
944
- try{
945
- response = eval('(' + transport.responseText + ')');
946
- }
947
- catch (e) {
948
- response = {};
949
- }
950
  if (response.redirect) {
951
  this.isSuccess = true;
952
- location.href = response.redirect;
953
  return;
954
  }
955
  if (response.success) {
956
  this.isSuccess = true;
957
- window.location=this.successUrl;
958
  }
959
  else{
960
  var msg = response.error_messages;
961
- if (typeof(msg)=='object') {
962
- msg = msg.join("\n");
963
  }
964
  if (msg) {
965
  alert(msg);
@@ -977,4 +940,4 @@ Review.prototype = {
977
  },
978
 
979
  isSuccess: false
980
- }
31
  this.saveMethodUrl = urls.saveMethod;
32
  this.failureUrl = urls.failure;
33
  this.billingForm = false;
34
+ this.shippingForm = false;
35
  this.syncBillingShipping = false;
36
  this.method = '';
37
  this.payment = '';
53
  * @param event
54
  */
55
  _onSectionClick: function(event) {
56
+ var section = $(Event.element(event).up('.section'));
57
  if (section.hasClassName('allow')) {
58
  Event.stop(event);
59
  this.gotoSection(section.readAttribute('id').replace('opc-', ''), false);
62
  },
63
 
64
  ajaxFailure: function(){
65
+ location.href = encodeURI(this.failureUrl);
66
  },
67
 
68
  reloadProgressBlock: function(toStep) {
85
  },
86
 
87
  reloadReviewBlock: function(){
88
+ new Ajax.Updater('checkout-review-load', this.reviewUrl, {method: 'get', onFailure: this.ajaxFailure.bind(this)});
89
  },
90
 
91
  _disableEnableAll: function(element, isDisabled) {
97
  },
98
 
99
  setLoadWaiting: function(step, keepDisabled) {
100
+ var container;
101
  if (step) {
102
  if (this.loadWaiting) {
103
  this.setLoadWaiting(false);
104
  }
105
+ container = $(step+'-buttons-container');
106
  container.addClassName('disabled');
107
  container.setStyle({opacity:.5});
108
  this._disableEnableAll(container, true);
109
  Element.show(step+'-please-wait');
110
  } else {
111
  if (this.loadWaiting) {
112
+ container = $(this.loadWaiting+'-buttons-container');
113
  var isDisabled = (keepDisabled ? true : false);
114
  if (!isDisabled) {
115
  container.removeClassName('disabled');
145
  var progressDiv = nextStep + '-progress-opcheckout';
146
  if ($(progressDiv)) {
147
  //Remove the link
148
+ $(progressDiv).select('.changelink').invoke('remove');
149
+ $(progressDiv).select('dt').invoke('removeClassName','complete');
 
 
 
 
150
  //Remove the content
151
+ $(progressDiv).select('dd.complete').invoke('remove');
 
 
152
  }
153
  }
154
  },
161
  setMethod: function(){
162
  if ($('login:guest') && $('login:guest').checked) {
163
  this.method = 'guest';
164
+ new Ajax.Request(
165
  this.saveMethodUrl,
166
  {method: 'post', onFailure: this.ajaxFailure.bind(this), parameters: {method:'guest'}}
167
  );
170
  }
171
  else if($('login:register') && ($('login:register').checked || $('login:register').type == 'hidden')) {
172
  this.method = 'register';
173
+ new Ajax.Request(
174
  this.saveMethodUrl,
175
  {method: 'post', onFailure: this.ajaxFailure.bind(this), parameters: {method:'register'}}
176
  );
274
  return true;
275
  }
276
  if (response.redirect) {
277
+ location.href = encodeURI(response.redirect);
278
  return true;
279
  }
280
  return false;
281
  }
282
+ };
283
 
284
  // billing
285
  var Billing = Class.create();
298
 
299
  setAddress: function(addressId){
300
  if (addressId) {
301
+ new Ajax.Request(
302
  this.addressUrl+addressId,
303
  {method:'get', onSuccess: this.onAddressLoad, onFailure: checkout.ajaxFailure.bind(checkout)}
304
  );
318
  },
319
 
320
  resetSelectedAddress: function(){
321
+ var selectElement = $('billing-address-select');
322
  if (selectElement) {
323
  selectElement.value='';
324
  }
325
  },
326
 
327
  fillForm: function(transport){
328
+ var elementValues = transport.responseJSON || transport.responseText.evalJSON(true) || {};
329
+ if (!transport && !Object.keys(elementValues).length){
 
 
 
 
 
 
 
 
330
  this.resetSelectedAddress();
331
  }
332
+ var arrElements = Form.getElements(this.form);
333
  for (var elemIndex in arrElements) {
334
+ if(arrElements.hasOwnProperty(elemIndex)) {
335
+ if (arrElements[elemIndex].id) {
336
+ var fieldName = arrElements[elemIndex].id.replace(/^billing:/, '');
337
+ arrElements[elemIndex].value = elementValues[fieldName] ? elementValues[fieldName] : '';
338
+ if (fieldName == 'country_id' && billingForm){
339
+ billingForm.elementChildLoad(arrElements[elemIndex]);
340
+ }
341
  }
342
  }
343
  }
358
  // $('billing:use_for_shipping').value=1;
359
  // }
360
 
361
+ new Ajax.Request(
362
  this.saveUrl,
363
  {
364
  method: 'post',
381
  There are 3 options: error, redirect or html with shipping options.
382
  */
383
  nextStep: function(transport){
384
+ var response = transport.responseJSON || transport.responseText.evalJSON(true) || {};
 
 
 
 
 
 
 
385
 
386
  if (response.error){
387
+ if (Object.isString(response.message)) {
388
+ alert(response.message.stripTags().toString());
389
  } else {
390
  if (window.billingRegionUpdater) {
391
  billingRegionUpdater.update();
392
  }
393
 
394
+ var msg = response.message;
395
+ if(Object.isArray(msg)) {
396
+ alert(msg.join("\n"));
397
+ }
398
+ alert(msg.stripTags().toString());
399
  }
400
 
401
  return false;
402
  }
403
 
404
  checkout.setStepResponse(response);
405
+ if(payment) {
406
+ payment.initWhatIsCvvListeners();
407
+ }
408
  // DELETE
409
  //alert('error: ' + response.error + ' / redirect: ' + response.redirect + ' / shipping_methods_html: ' + response.shipping_methods_html);
410
  // This moves the accordion panels of one page checkout and updates the checkout progress
411
  //checkout.setBilling();
412
  }
413
+ };
414
 
415
  // shipping
416
  var Shipping = Class.create();
430
 
431
  setAddress: function(addressId){
432
  if (addressId) {
433
+ new Ajax.Request(
434
  this.addressUrl+addressId,
435
  {method:'get', onSuccess: this.onAddressLoad, onFailure: checkout.ajaxFailure.bind(checkout)}
436
  );
451
  },
452
 
453
  resetSelectedAddress: function(){
454
+ var selectElement = $('shipping-address-select');
455
  if (selectElement) {
456
  selectElement.value='';
457
  }
458
  },
459
 
460
  fillForm: function(transport){
461
+ var elementValues = transport.responseJSON || transport.responseText.evalJSON(true) || {};
462
+ if (!transport && !Object.keys(elementValues).length) {
 
 
 
 
 
 
 
 
463
  this.resetSelectedAddress();
464
  }
465
+ var arrElements = Form.getElements(this.form);
466
  for (var elemIndex in arrElements) {
467
+ if(arrElements.hasOwnProperty(elemIndex)) {
468
+ if (arrElements[elemIndex].id) {
469
+ var fieldName = arrElements[elemIndex].id.replace(/^shipping:/, '');
470
+ arrElements[elemIndex].value = elementValues[fieldName] ? elementValues[fieldName] : '';
471
+ if (fieldName == 'country_id' && shippingForm){
472
+ shippingForm.elementChildLoad(arrElements[elemIndex]);
473
+ }
474
  }
475
  }
476
  }
517
  var validator = new Validation(this.form);
518
  if (validator.validate()) {
519
  checkout.setLoadWaiting('shipping');
520
+ new Ajax.Request(
521
  this.saveUrl,
522
  {
523
  method:'post',
530
  }
531
  },
532
 
533
+ resetLoadWaiting: function(){
534
  checkout.setLoadWaiting(false);
535
  },
536
 
537
  nextStep: function(transport){
538
+ var response = transport.responseJSON || transport.responseText.evalJSON(true) || {};
539
+
 
 
 
 
 
 
540
  if (response.error){
541
+ if (Object.isString(response.message)) {
542
+ alert(response.message.stripTags().toString());
543
  } else {
544
  if (window.shippingRegionUpdater) {
545
  shippingRegionUpdater.update();
546
  }
547
+ var msg = response.message;
548
+ if(Object.isArray(msg)) {
549
+ alert(msg.join("\n"));
550
+ }
551
+ alert(msg.stripTags().toString());
552
  }
553
 
554
  return false;
565
  */
566
  //checkout.setShipping();
567
  }
568
+ };
569
 
570
  // shipping method
571
  var ShippingMethod = Class.create();
606
  if (checkout.loadWaiting!=false) return;
607
  if (this.validate()) {
608
  checkout.setLoadWaiting('shipping-method');
609
+ new Ajax.Request(
610
  this.saveUrl,
611
  {
612
  method:'post',
624
  },
625
 
626
  nextStep: function(transport){
627
+ var response = transport.responseJSON || transport.responseText.evalJSON(true) || {};
 
 
 
 
 
 
 
628
 
629
  if (response.error) {
630
+ alert(response.message.stripTags().toString());
631
  return false;
632
  }
633
 
649
 
650
  checkout.setShippingMethod();
651
  }
652
+ };
653
 
654
 
655
  // payment
818
  var validator = new Validation(this.form);
819
  if (this.validate() && validator.validate()) {
820
  checkout.setLoadWaiting('payment');
821
+ new Ajax.Request(
822
  this.saveUrl,
823
  {
824
  method:'post',
836
  },
837
 
838
  nextStep: function(transport){
839
+ var response = transport.responseJSON || transport.responseText.evalJSON(true) || {};
840
+
 
 
 
 
 
 
841
  /*
842
  * if there is an error in payment, need to show error message
843
  */
852
  }
853
  return;
854
  }
855
+ if (Object.isString(response.message)) {
856
+ alert(response.message.stripTags().toString());
857
  } else {
858
+ alert(response.error.stripTags().toString());
859
  }
860
  return;
861
  }
870
  Event.observe(element, 'click', toggleToolTip);
871
  });
872
  }
873
+ };
874
 
875
  var Review = Class.create();
876
  Review.prototype = {
890
  params += '&'+Form.serialize(this.agreementsForm);
891
  }
892
  params.save = true;
893
+ new Ajax.Request(
894
  this.saveUrl,
895
  {
896
  method:'post',
907
  },
908
 
909
  nextStep: function(transport){
910
+ if (transport) {
911
+ var response = transport.responseJSON || transport.responseText.evalJSON(true) || {};
912
+
 
 
 
 
913
  if (response.redirect) {
914
  this.isSuccess = true;
915
+ location.href = encodeURI(response.redirect);
916
  return;
917
  }
918
  if (response.success) {
919
  this.isSuccess = true;
920
+ location.href = encodeURI(this.successUrl);
921
  }
922
  else{
923
  var msg = response.error_messages;
924
+ if (Object.isArray(msg)) {
925
+ msg = msg.join("\n").stripTags().toString();
926
  }
927
  if (msg) {
928
  alert(msg);
940
  },
941
 
942
  isSuccess: false
943
+ };