Version Notes
- Ensure checkouts under https supported.
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | Lexel_UkAddressFinder |
| Version | 0.3.2 |
| Comparing to | |
| See all releases | |
Code changes from version 0.3.1 to 0.3.2
- app/code/community/Lexel/UkAddressFinder/etc/config.xml +1 -1
- app/design/frontend/base/default/layout/addressfinder.xml +1 -1
- app/design/frontend/base/default/template/addressfinder/lookup_onepage.phtml +6 -2
- app/design/frontend/base/default/template/addressfinder/lookup_onestepcheckout.phtml +6 -2
- package.xml +4 -5
app/code/community/Lexel/UkAddressFinder/etc/config.xml
CHANGED
|
@@ -21,7 +21,7 @@
|
|
| 21 |
<config>
|
| 22 |
<modules>
|
| 23 |
<Lexel_UkAddressFinder>
|
| 24 |
-
<version>0.3.
|
| 25 |
</Lexel_UkAddressFinder>
|
| 26 |
</modules>
|
| 27 |
|
| 21 |
<config>
|
| 22 |
<modules>
|
| 23 |
<Lexel_UkAddressFinder>
|
| 24 |
+
<version>0.3.2</version>
|
| 25 |
</Lexel_UkAddressFinder>
|
| 26 |
</modules>
|
| 27 |
|
app/design/frontend/base/default/layout/addressfinder.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
-
<layout version="0.3.
|
| 3 |
<checkout_onepage_index>
|
| 4 |
<reference name="head">
|
| 5 |
<action method="addItem">
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
+
<layout version="0.3.2">
|
| 3 |
<checkout_onepage_index>
|
| 4 |
<reference name="head">
|
| 5 |
<action method="addItem">
|
app/design/frontend/base/default/template/addressfinder/lookup_onepage.phtml
CHANGED
|
@@ -50,7 +50,9 @@
|
|
| 50 |
|
| 51 |
function findAddressFromPostcode(postcode, addressType) {
|
| 52 |
new Ajax.Request(
|
| 53 |
-
'<?php echo $this->getUrl('addressfinder/index/findAddressFromPostcode'
|
|
|
|
|
|
|
| 54 |
{
|
| 55 |
method: 'post',
|
| 56 |
parameters: {
|
|
@@ -79,7 +81,9 @@
|
|
| 79 |
|
| 80 |
function populateAddressFields(addressId, addressType) {
|
| 81 |
new Ajax.Request(
|
| 82 |
-
'<?php echo $this->getUrl('addressfinder/index/getFullAddress'
|
|
|
|
|
|
|
| 83 |
{
|
| 84 |
method:'post',
|
| 85 |
parameters: {
|
| 50 |
|
| 51 |
function findAddressFromPostcode(postcode, addressType) {
|
| 52 |
new Ajax.Request(
|
| 53 |
+
'<?php echo $this->getUrl('addressfinder/index/findAddressFromPostcode', array(
|
| 54 |
+
'_secure' => true,
|
| 55 |
+
))?>',
|
| 56 |
{
|
| 57 |
method: 'post',
|
| 58 |
parameters: {
|
| 81 |
|
| 82 |
function populateAddressFields(addressId, addressType) {
|
| 83 |
new Ajax.Request(
|
| 84 |
+
'<?php echo $this->getUrl('addressfinder/index/getFullAddress', array(
|
| 85 |
+
'_secure' => true,
|
| 86 |
+
))?>',
|
| 87 |
{
|
| 88 |
method:'post',
|
| 89 |
parameters: {
|
app/design/frontend/base/default/template/addressfinder/lookup_onestepcheckout.phtml
CHANGED
|
@@ -50,7 +50,9 @@
|
|
| 50 |
|
| 51 |
function findAddressFromPostcode(postcode, addressType) {
|
| 52 |
new Ajax.Request(
|
| 53 |
-
'<?php echo $this->getUrl('addressfinder/index/findAddressFromPostcode'
|
|
|
|
|
|
|
| 54 |
{
|
| 55 |
method: 'post',
|
| 56 |
parameters: {
|
|
@@ -79,7 +81,9 @@
|
|
| 79 |
|
| 80 |
function populateAddressFields(addressId, addressType) {
|
| 81 |
new Ajax.Request(
|
| 82 |
-
'<?php echo $this->getUrl('addressfinder/index/getFullAddress'
|
|
|
|
|
|
|
| 83 |
{
|
| 84 |
method:'post',
|
| 85 |
parameters: {
|
| 50 |
|
| 51 |
function findAddressFromPostcode(postcode, addressType) {
|
| 52 |
new Ajax.Request(
|
| 53 |
+
'<?php echo $this->getUrl('addressfinder/index/findAddressFromPostcode', array(
|
| 54 |
+
'_secure' => true,
|
| 55 |
+
))?>',
|
| 56 |
{
|
| 57 |
method: 'post',
|
| 58 |
parameters: {
|
| 81 |
|
| 82 |
function populateAddressFields(addressId, addressType) {
|
| 83 |
new Ajax.Request(
|
| 84 |
+
'<?php echo $this->getUrl('addressfinder/index/getFullAddress', array(
|
| 85 |
+
'_secure' => true,
|
| 86 |
+
))?>',
|
| 87 |
{
|
| 88 |
method:'post',
|
| 89 |
parameters: {
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Lexel_UkAddressFinder</name>
|
| 4 |
-
<version>0.3.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License v3.0 (OSL-3.0)</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -27,12 +27,11 @@ All you need to do is install the extension and then go to System -> Configur
|
|
| 27 |
The extension is free, however credits are not free and these need to be purchased through the Lexel website.
|
| 28 |

|
| 29 |
Please note we are unable to help with custom theme support.</description>
|
| 30 |
-
<notes>-
|
| 31 |
-
- Ensure compatibility for Magento versions pre-1.5.</notes>
|
| 32 |
<authors><author><name>Lexel Software</name><user>auto-converted</user><email>helpdesk@lexel.co.uk</email></author><author><name>Zodiac Media</name><user>auto-converted</user><email>info@zodiacmedia.co.uk</email></author></authors>
|
| 33 |
<date>2013-11-15</date>
|
| 34 |
-
<time>
|
| 35 |
-
<contents><target name="magecommunity"><dir name="Lexel"><dir name="UkAddressFinder"><dir name="Helper"><file name="Data.php" hash="0af50634eb3c8f98d33d6a99a7838e35"/></dir><dir name="controllers"><file name="IndexController.php" hash="9b094b1ef16a51981878c1c85016d31c"/></dir><dir name="etc"><file name="config.xml" hash="
|
| 36 |
<compatible/>
|
| 37 |
<dependencies/>
|
| 38 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Lexel_UkAddressFinder</name>
|
| 4 |
+
<version>0.3.2</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License v3.0 (OSL-3.0)</license>
|
| 7 |
<channel>community</channel>
|
| 27 |
The extension is free, however credits are not free and these need to be purchased through the Lexel website.
|
| 28 |

|
| 29 |
Please note we are unable to help with custom theme support.</description>
|
| 30 |
+
<notes>- Ensure checkouts under https supported.</notes>
|
|
|
|
| 31 |
<authors><author><name>Lexel Software</name><user>auto-converted</user><email>helpdesk@lexel.co.uk</email></author><author><name>Zodiac Media</name><user>auto-converted</user><email>info@zodiacmedia.co.uk</email></author></authors>
|
| 32 |
<date>2013-11-15</date>
|
| 33 |
+
<time>14:31:40</time>
|
| 34 |
+
<contents><target name="magecommunity"><dir name="Lexel"><dir name="UkAddressFinder"><dir name="Helper"><file name="Data.php" hash="0af50634eb3c8f98d33d6a99a7838e35"/></dir><dir name="controllers"><file name="IndexController.php" hash="9b094b1ef16a51981878c1c85016d31c"/></dir><dir name="etc"><file name="config.xml" hash="d1e8d632c1c861cf9c1f9fcad62d6276"/><file name="system.xml" hash="eaa085b4e0b606955a7e9a2934452261"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="addressfinder.xml" hash="8242d6dc16c855df3357610d67050073"/></dir><dir name="template"><dir name="addressfinder"><file name="lookup_onepage.phtml" hash="17bd6cf3dfdfb76abdff3d796fbefd30"/><file name="lookup_onestepcheckout.phtml" hash="81ad00fd3c5643738ed1ef3e8868e533"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Lexel_UkAddressFinder.xml" hash="9bbea2ea3a3f53770dcf3d4c15cfead6"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="lexel"><dir name="addressfinder"><file name="main.css" hash="a8270ad2d74762887b6867a4c1ba93f2"/></dir></dir></dir></dir></dir></dir></target></contents>
|
| 35 |
<compatible/>
|
| 36 |
<dependencies/>
|
| 37 |
</package>
|
