Asperience_Addresscomplete - Version 0.2.4

Version Notes

If you have ideas for improvements or find bugs, please send them to Ronan Capitaine or Jean-Sébastien Hederer at www.asperience.fr, with ASPerience AddressComplete as part of the subject line.

Download this release

Release Info

Developer Magento Core Team
Extension Asperience_Addresscomplete
Version 0.2.4
Comparing to
See all releases


Code changes from version 0.2.2 to 0.2.4

app/code/community/Asperience/Addresscomplete/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Asperience_Addresscomplete>
13
- <version>0.2.2</version>
14
  </Asperience_Addresscomplete>
15
  </modules>
16
 
10
  <config>
11
  <modules>
12
  <Asperience_Addresscomplete>
13
+ <version>0.2.4</version>
14
  </Asperience_Addresscomplete>
15
  </modules>
16
 
app/design/frontend/default/default/layout/addresscomplete.xml CHANGED
@@ -17,12 +17,20 @@
17
  </reference>
18
  </default>
19
 
20
- <customer_address_form>
21
  <reference name="my.account.wrapper">
22
  <block type="customer/address_edit" name="customer_address_edit" template="addresscomplete/customer/address/edit.phtml"/>
23
  </reference>
24
  </customer_address_form>
25
 
 
 
 
 
 
 
 
 
26
  <checkout_onepage_index>
27
  <reference name="checkout.onepage">
28
  <block type="checkout/onepage_billing" name="checkout.onepage.billing" as="billing" template="addresscomplete/checkout/onepage/billing.phtml"/>
17
  </reference>
18
  </default>
19
 
20
+ <customer_address_form>
21
  <reference name="my.account.wrapper">
22
  <block type="customer/address_edit" name="customer_address_edit" template="addresscomplete/customer/address/edit.phtml"/>
23
  </reference>
24
  </customer_address_form>
25
 
26
+ <customer_account_create>
27
+ <reference name="customer_form_register">
28
+ <block type="customer/form_register" name="customer_form_register" template="addresscomplete/customer/form/register.phtml">
29
+ <block type="page/html_wrapper" name="customer.form.register.fields.before" as="form_fields_before"/>
30
+ </block>
31
+ </reference>
32
+ </customer_account_create>
33
+
34
  <checkout_onepage_index>
35
  <reference name="checkout.onepage">
36
  <block type="checkout/onepage_billing" name="checkout.onepage.billing" as="billing" template="addresscomplete/checkout/onepage/billing.phtml"/>
app/design/frontend/default/default/template/addresscomplete/customer/form/register.phtml ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Create account form template
30
+ *
31
+ * @see Mage_Customer_Block_Form_Register
32
+ */
33
+ ?>
34
+ <div class="account-create">
35
+ <div class="page-title">
36
+ <h1><?php echo $this->__('Create an Account') ?></h1>
37
+ </div>
38
+ <?php echo $this->getChildHtml('form_fields_before')?>
39
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
40
+ <form action="<?php echo $this->getPostActionUrl() ?>" method="post" id="form-validate">
41
+ <div class="fieldset">
42
+ <input type="hidden" name="success_url" value="<?php echo $this->getSuccessUrl() ?>" />
43
+ <input type="hidden" name="error_url" value="<?php echo $this->getErrorUrl() ?>" />
44
+ <h2 class="legend"><?php echo $this->__('Personal Information') ?></h2>
45
+ <ul class="form-list">
46
+ <li class="fields">
47
+ <?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getFormData())->toHtml() ?>
48
+ </li>
49
+ <li>
50
+ <label for="email_address" class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
51
+ <div class="input-box">
52
+ <input type="text" name="email" id="email_address" value="<?php echo $this->htmlEscape($this->getFormData()->getEmail()) ?>" title="<?php echo $this->__('Email Address') ?>" class="input-text validate-email required-entry" />
53
+ </div>
54
+ </li>
55
+ <?php if ($this->isNewsletterEnabled()): ?>
56
+ <li class="control">
57
+ <div class="input-box">
58
+ <input type="checkbox" name="is_subscribed" title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1" id="is_subscribed"<?php if($this->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox" />
59
+ </div>
60
+ <label for="is_subscribed"><?php echo $this->__('Sign Up for Newsletter') ?></label>
61
+ </li>
62
+ <?php endif ?>
63
+ <?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
64
+ <?php if ($_dob->isEnabled()): ?>
65
+ <li><?php echo $_dob->setDate($this->getFormData()->getDob())->toHtml() ?></li>
66
+ <?php endif ?>
67
+ <?php $_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat') ?>
68
+ <?php if ($_taxvat->isEnabled()): ?>
69
+ <li><?php echo $_taxvat->setTaxvat($this->getFormData()->getTaxvat())->toHtml() ?></li>
70
+ <?php endif ?>
71
+ <?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
72
+ <?php if ($_gender->isEnabled()): ?>
73
+ <li><?php echo $_gender->setGender($this->getFormData()->getGender())->toHtml() ?></li>
74
+ <?php endif ?>
75
+ </ul>
76
+ </div>
77
+ <?php if($this->getShowAddressFields()): ?>
78
+ <div class="fieldset">
79
+ <input type="hidden" name="create_address" value="1" />
80
+ <h2 class="legend"><?php echo $this->__('Address Information') ?></h2>
81
+ <ul class="form-list">
82
+ <li class="fields">
83
+ <div class="field">
84
+ <label for="company"><?php echo $this->__('Company') ?></label>
85
+ <div class="input-box">
86
+ <input type="text" name="company" id="company" value="<?php echo $this->htmlEscape($this->getFormData()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text" />
87
+ </div>
88
+ </div>
89
+ <div class="field">
90
+ <label for="telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
91
+ <div class="input-box">
92
+ <input type="text" name="telephone" id="telephone" value="<?php echo $this->htmlEscape($this->getFormData()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text required-entry" />
93
+ </div>
94
+ </div>
95
+ </li>
96
+ <li class="wide">
97
+ <label for="street_1" class="required"><em>*</em><?php echo $this->__('Street Address') ?></label>
98
+ <div class="input-box">
99
+ <input type="text" name="street[]" value="<?php echo $this->htmlEscape($this->getFormData()->getStreet(1)) ?>" title="<?php echo $this->__('Street Address') ?>" id="street_1" class="input-text required-entry" />
100
+ </div>
101
+ </li>
102
+ <?php for ($_i=2, $_n=$this->helper('customer/address')->getStreetLines(); $_i<=$_n; $_i++): ?>
103
+ <li class="wide">
104
+ <div class="input-box">
105
+ <input type="text" name="street[]" value="<?php echo $this->htmlEscape($this->getFormData()->getStreet($_i)) ?>" title="<?php echo $this->__('Street Address %s', $_i) ?>" id="street_<?php echo $_i?>" class="input-text" />
106
+ </div>
107
+ </li>
108
+ <?php endfor ?>
109
+ <li class="fields">
110
+ <div class="field">
111
+ <label for="country" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
112
+ <div class="input-box">
113
+ <?php echo str_replace("<select", "<select onChange='searchZipCode.reInitCountry(\"country\", \"".$this->helper('addresscomplete')->getCountryUrl() ."\");'", $this->getCountryHtmlSelect()); ?>
114
+ </div>
115
+ </div>
116
+ <div class="field">
117
+ <label for="zip" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
118
+ <div class="input-box">
119
+ <input type="text" name="postcode" value="<?php echo $this->htmlEscape($this->getFormData()->getPostcode()) ?>" title="<?php echo $this->__('Zip/Postal Code') ?>" id="zip" class="input-text validate-zip-international required-entry" />
120
+ <div id="address-autocomplete" class="address-autocomplete"></div>
121
+ <div id="alert" style="display:none;" class="validation-advice"><?php echo $this->__('The zip code is incorrect.') ?></div>
122
+ </div>
123
+ </div>
124
+ <span id="img_wait" style="display:none;" class="opc-please-wait">
125
+ <br/><img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" class="v-middle" alt="" />
126
+ </span>
127
+ </li>
128
+ <li class="fields">
129
+ <div class="field">
130
+ <label for="city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
131
+ <div class="input-box">
132
+ <input type="text" name="city" value="<?php echo $this->htmlEscape($this->getFormData()->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="input-text required-entry" id="city" />
133
+ </div>
134
+ </div>
135
+ <div class="field">
136
+ <label for="region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
137
+ <div class="input-box">
138
+ <select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
139
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
140
+ </select>
141
+ <script type="text/javascript">
142
+ //<![CDATA[
143
+ $('region_id').setAttribute('defaultValue', "<?php echo $this->getFormData()->getRegionId() ?>");
144
+ //]]>
145
+ </script>
146
+ <input type="text" id="region" name="region" value="<?php echo $this->htmlEscape($this->getFormData()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text" style="display:none;" />
147
+ </div>
148
+ </div>
149
+ </li>
150
+ </ul>
151
+ <input type="hidden" name="default_billing" value="1" />
152
+ <input type="hidden" name="default_shipping" value="1" />
153
+ </div>
154
+ <?php endif; ?>
155
+ <div class="fieldset">
156
+ <h2 class="legend"><?php echo $this->__('Login Information') ?></h2>
157
+ <ul class="form-list">
158
+ <li class="fields">
159
+ <div class="field">
160
+ <label for="password" class="required"><em>*</em><?php echo $this->__('Password') ?></label>
161
+ <div class="input-box">
162
+ <input type="password" name="password" id="password" title="<?php echo $this->__('Password') ?>" class="input-text required-entry validate-password" />
163
+ </div>
164
+ </div>
165
+ <div class="field">
166
+ <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm Password') ?></label>
167
+ <div class="input-box">
168
+ <input type="password" name="confirmation" title="<?php echo $this->__('Confirm Password') ?>" id="confirmation" class="input-text required-entry validate-cpassword" />
169
+ </div>
170
+ </div>
171
+ </li>
172
+ </ul>
173
+ </div>
174
+ <div class="buttons-set">
175
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
176
+ <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>" class="back-link"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
177
+ <button type="submit" title="<?php echo $this->__('Submit') ?>" class="button"><span><span><?php echo $this->__('Submit') ?></span></span></button>
178
+ </div>
179
+ </form>
180
+ <script type="text/javascript">
181
+ var dataForm = new VarienForm('form-validate', true);
182
+ new RegionUpdater('country', 'region', 'region_id', <?php echo $this->helper('directory')->getRegionJson() ?>);
183
+
184
+ // Asperience_Addresscomplete : Javascipt
185
+ var searchZipCode = new Asperience.searchZipCode('form-validate', 'zip', 'city', 'region_id', 'img_wait', 'alert', '<?php echo $this->__('Zip code search...') ?>');
186
+ searchZipCode.initAutocomplete('<?php echo $this->helper('addresscomplete')->getSuggestUrl() ?>', 'address-autocomplete');
187
+ <?php if(!$this->helper('addresscomplete')->verifCountry($this->getFormData()->getCountry())): ?>
188
+ searchZipCode.reInitCountry('country', '<?php echo $this->helper('addresscomplete')->getCountryUrl() ?>');
189
+ <?php endif; ?>
190
+ </script>
191
+ </div>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Asperience_Addresscomplete</name>
4
- <version>0.2.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
@@ -12,9 +12,9 @@
12
  Remarque : Pour que ce module fonctionne, il est n&#xE9;cessaire d'ins&#xE9;rer les villes, les codes postaux et les r&#xE9;gions dans la base de donn&#xE9;es (Sans oublier de v&#xE9;rifier si elle ne les contient pas d&#xE9;j&#xE0; afin d'&#xE9;viter les doublons). Des fichiers Sql listant toutes les villes fran&#xE7;aises, belges et hollandaises sont &#xE0; ex&#xE9;cuter &#xE0; part. Ils sont mis &#xE0; disposition dans /sql/address_list.</description>
13
  <notes>If you have ideas for improvements or find bugs, please send them to Ronan Capitaine or Jean-S&#xE9;bastien Hederer at www.asperience.fr, with ASPerience AddressComplete as part of the subject line.</notes>
14
  <authors><author><name>Jean-S&#xE9;bastien Hederer</name><user>auto-converted</user><email>hedererjs@asperience.fr</email></author><author><name>Ronan Capitaine</name><user>auto-converted</user><email>capitainer@asperience.fr</email></author></authors>
15
- <date>2010-11-10</date>
16
- <time>08:28:08</time>
17
- <contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Asperience_Addresscomplete.xml" hash="61a0786269f2b93ac17a5d50a4bb98ce"/></dir></dir></dir><dir name="js"><dir name="asperience"><file name="addresscomplete.js" hash="01a9b434535f369197ec7c3419a76282"/></dir></dir></target><target name="magecommunity"><dir name="Asperience"><dir name="Addresscomplete"><dir name="Block"><file name="Autocomplete.php" hash="a067389a562bb991c7a26b962d3f22a3"/></dir><dir name="controllers"><file name="AjaxController.php" hash="35d0eff366ce1bf5a6adf6c977d2da2e"/></dir><dir name="etc"><file name="config.xml" hash="3c4195480354c07db3cc93f22b4a9770"/></dir><dir name="Helper"><file name="Data.php" hash="ad47dbb2bdef7f01d032bfa6b72ee517"/></dir><dir name="Model"><dir name="Mysql4"><dir name="City"><file name="Collection.php" hash="1193e67cfd8da85540400e61ebfad88f"/></dir><file name="City.php" hash="75929969fedd0a4ee23a74ba830df3cb"/></dir><file name="City.php" hash="577595be6de96bd00be6966a56613c33"/></dir><dir name="sql"><dir name="addresscomplete_setup"><file name="mysql4-install-0.1.0.php" hash="08995533a7d254cab8244696e0c8a08f"/></dir><dir name="address_list"><file name="city_be.sql" hash="fbe22f9b2b839ae0fedb21f1680f783d"/><file name="city_fr.sql" hash="5b06d93b5f41bae9a983f93f704db029"/><file name="city_nl.sql" hash="b86c04a0c17a68160ae37d85adf4f3ce"/><file name="city_za.sql" hash="bd3ad855fbb07a2ef921a73bc2301cbc"/><file name="region_be.sql" hash="2addee95fdc03f77a48800e26e4471ed"/><file name="region_be.sql~" hash="2addee95fdc03f77a48800e26e4471ed"/><file name="region_fr.sql" hash="94c22f52d334b888becc790241a2b9a3"/><file name="region_fr.sql~" hash="94c22f52d334b888becc790241a2b9a3"/><file name="region_nl.sql" hash="9de8e8b669ec2564e86eb85dcc8ffc56"/><file name="region_nl.sql~" hash="9de8e8b669ec2564e86eb85dcc8ffc56"/><file name="region_za.sql" hash="930b72a2bbcd8ca14fa4826e95a8ef4b"/><file name="region_za.sql~" hash="930b72a2bbcd8ca14fa4826e95a8ef4b"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="ca_ES"><file name="Asperience_Addresscomplete.csv" hash="3f01c1f133396c4e13cb8d224c65e92f"/></dir><dir name="en_US"><file name="Asperience_Addresscomplete.csv" hash="caeca9a666bbcf4d070c3c2607d1418a"/></dir><dir name="es_ES"><file name="Asperience_Addresscomplete.csv" hash="be162360558e31632ba9dd44a09f6c98"/></dir><dir name="fr_FR"><file name="Asperience_Addresscomplete.csv" hash="2b7d3e8365b00ca58e1f80ef9913f323"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="asperience"><file name="addresscomplete.css" hash="179c82ab59780cbce787266e760c082c"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="addresscomplete.xml" hash="fb6a4f34f004c268e9433ccf01f04c0a"/></dir><dir name="template"><dir name="addresscomplete"><dir name="checkout"><dir name="cart"><file name="shipping.phtml" hash="c1c2ff27ce8754ec69033732a3622f1a"/></dir><dir name="onepage"><file name="billing.phtml" hash="1c6a4f410d90d6ea86022256042a4244"/><file name="shipping.phtml" hash="e964423fa6a6fdff32641008638670db"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="850f4f292e40dd4c1bf63c6bf6d2627c"/></dir></dir></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies/>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Asperience_Addresscomplete</name>
4
+ <version>0.2.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
12
  Remarque : Pour que ce module fonctionne, il est n&#xE9;cessaire d'ins&#xE9;rer les villes, les codes postaux et les r&#xE9;gions dans la base de donn&#xE9;es (Sans oublier de v&#xE9;rifier si elle ne les contient pas d&#xE9;j&#xE0; afin d'&#xE9;viter les doublons). Des fichiers Sql listant toutes les villes fran&#xE7;aises, belges et hollandaises sont &#xE0; ex&#xE9;cuter &#xE0; part. Ils sont mis &#xE0; disposition dans /sql/address_list.</description>
13
  <notes>If you have ideas for improvements or find bugs, please send them to Ronan Capitaine or Jean-S&#xE9;bastien Hederer at www.asperience.fr, with ASPerience AddressComplete as part of the subject line.</notes>
14
  <authors><author><name>Jean-S&#xE9;bastien Hederer</name><user>auto-converted</user><email>hedererjs@asperience.fr</email></author><author><name>Ronan Capitaine</name><user>auto-converted</user><email>capitainer@asperience.fr</email></author></authors>
15
+ <date>2011-05-03</date>
16
+ <time>12:39:15</time>
17
+ <contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Asperience_Addresscomplete.xml" hash="61a0786269f2b93ac17a5d50a4bb98ce"/></dir></dir></dir><dir name="js"><dir name="asperience"><file name="addresscomplete.js" hash="01a9b434535f369197ec7c3419a76282"/></dir></dir></target><target name="magecommunity"><dir name="Asperience"><dir name="Addresscomplete"><dir name="Block"><file name="Autocomplete.php" hash="a067389a562bb991c7a26b962d3f22a3"/></dir><dir name="controllers"><file name="AjaxController.php" hash="35d0eff366ce1bf5a6adf6c977d2da2e"/></dir><dir name="etc"><file name="config.xml" hash="b5d2dfe8f41a524ca5aa420daaa5dd1d"/></dir><dir name="Helper"><file name="Data.php" hash="ad47dbb2bdef7f01d032bfa6b72ee517"/></dir><dir name="Model"><dir name="Mysql4"><dir name="City"><file name="Collection.php" hash="1193e67cfd8da85540400e61ebfad88f"/></dir><file name="City.php" hash="75929969fedd0a4ee23a74ba830df3cb"/></dir><file name="City.php" hash="577595be6de96bd00be6966a56613c33"/></dir><dir name="sql"><dir name="addresscomplete_setup"><file name="mysql4-install-0.1.0.php" hash="08995533a7d254cab8244696e0c8a08f"/></dir><dir name="address_list"><file name="city_be.sql" hash="fbe22f9b2b839ae0fedb21f1680f783d"/><file name="city_fr.sql" hash="5b06d93b5f41bae9a983f93f704db029"/><file name="city_nl.sql" hash="b86c04a0c17a68160ae37d85adf4f3ce"/><file name="city_za.sql" hash="bd3ad855fbb07a2ef921a73bc2301cbc"/><file name="region_be.sql" hash="2addee95fdc03f77a48800e26e4471ed"/><file name="region_be.sql~" hash="2addee95fdc03f77a48800e26e4471ed"/><file name="region_fr.sql" hash="94c22f52d334b888becc790241a2b9a3"/><file name="region_fr.sql~" hash="94c22f52d334b888becc790241a2b9a3"/><file name="region_nl.sql" hash="9de8e8b669ec2564e86eb85dcc8ffc56"/><file name="region_nl.sql~" hash="9de8e8b669ec2564e86eb85dcc8ffc56"/><file name="region_za.sql" hash="930b72a2bbcd8ca14fa4826e95a8ef4b"/><file name="region_za.sql~" hash="930b72a2bbcd8ca14fa4826e95a8ef4b"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="ca_ES"><file name="Asperience_Addresscomplete.csv" hash="3f01c1f133396c4e13cb8d224c65e92f"/></dir><dir name="en_US"><file name="Asperience_Addresscomplete.csv" hash="caeca9a666bbcf4d070c3c2607d1418a"/></dir><dir name="es_ES"><file name="Asperience_Addresscomplete.csv" hash="be162360558e31632ba9dd44a09f6c98"/></dir><dir name="fr_FR"><file name="Asperience_Addresscomplete.csv" hash="2b7d3e8365b00ca58e1f80ef9913f323"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="asperience"><file name="addresscomplete.css" hash="179c82ab59780cbce787266e760c082c"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="addresscomplete.xml" hash="4f3f27301ebd1547a9157a9d6540c2ec"/></dir><dir name="template"><dir name="addresscomplete"><dir name="checkout"><dir name="cart"><file name="shipping.phtml" hash="c1c2ff27ce8754ec69033732a3622f1a"/></dir><dir name="onepage"><file name="billing.phtml" hash="1c6a4f410d90d6ea86022256042a4244"/><file name="shipping.phtml" hash="e964423fa6a6fdff32641008638670db"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="850f4f292e40dd4c1bf63c6bf6d2627c"/></dir><dir name="form"><file name="register.phtml" hash="ab11308ebf5f44d45de7404804302808"/></dir></dir></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies/>
20
  </package>