Version Notes
Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).
Download this release
Release Info
Developer | Magento Core Team |
Extension | Fontis_Australia |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.2 to 2.0.3
- app/code/community/Fontis/Australia/Model/Shipping/Carrier/Australiapost.php +17 -13
- app/code/community/Fontis/Australia/Model/Tax/Gst.php +0 -27
- app/code/community/Fontis/Australia/etc/config.xml +1 -1
- app/design/frontend/default/default/template/fontis/australia/postcode.phtml.~1~ +0 -128
- package.xml +4 -4
app/code/community/Fontis/Australia/Model/Shipping/Carrier/Australiapost.php
CHANGED
@@ -116,11 +116,15 @@ class Fontis_Australia_Model_Shipping_Carrier_Australiapost
|
|
116 |
// Insurance cost is $1.25 per $100 or part thereof. First $100 is
|
117 |
// included in normal registered post costs.
|
118 |
$insurance = (ceil($packageValue / 100) - 1) * 1.25;
|
119 |
-
|
|
|
|
|
|
|
120 |
|
121 |
-
|
122 |
-
|
123 |
-
|
|
|
124 |
}
|
125 |
else
|
126 |
{
|
@@ -300,15 +304,15 @@ class Fontis_Australia_Model_Shipping_Carrier_Australiapost
|
|
300 |
// Construct the appropriate URL and send all the information
|
301 |
// to the Australia Post DRC.
|
302 |
$url = "http://drc.edeliver.com.au/ratecalc.asp?" .
|
303 |
-
"Pickup_Postcode=" . $fromPostCode .
|
304 |
-
"&Destination_Postcode=" . $toPostCode .
|
305 |
-
"&Country=" . $destCountry .
|
306 |
-
"&Weight=" . $weight .
|
307 |
-
"&Service_Type=" . $service .
|
308 |
-
"&Height=" . $height .
|
309 |
-
"&Width=" . $width .
|
310 |
-
"&Length=" . $length .
|
311 |
-
"&Quantity=" . $num_boxes;
|
312 |
|
313 |
if(ini_get('allow_url_fopen'))
|
314 |
{
|
116 |
// Insurance cost is $1.25 per $100 or part thereof. First $100 is
|
117 |
// included in normal registered post costs.
|
118 |
$insurance = (ceil($packageValue / 100) - 1) * 1.25;
|
119 |
+
|
120 |
+
// Only add a new method if the insurance is different
|
121 |
+
if($insurance > 0) {
|
122 |
+
$charge += $insurance;
|
123 |
|
124 |
+
$title = $this->getConfigData('name') . " " . ucfirst(strtolower($shipping_method)) . ' with Extra Cover';
|
125 |
+
$method = $this->_createMethod($request, $shipping_method . '_EC', $title, $charge, $charge);
|
126 |
+
$result->append($method);
|
127 |
+
}
|
128 |
}
|
129 |
else
|
130 |
{
|
304 |
// Construct the appropriate URL and send all the information
|
305 |
// to the Australia Post DRC.
|
306 |
$url = "http://drc.edeliver.com.au/ratecalc.asp?" .
|
307 |
+
"Pickup_Postcode=" . rawurlencode($fromPostCode) .
|
308 |
+
"&Destination_Postcode=" . rawurlencode($toPostCode) .
|
309 |
+
"&Country=" . rawurlencode($destCountry) .
|
310 |
+
"&Weight=" . rawurlencode($weight) .
|
311 |
+
"&Service_Type=" . rawurlencode($service) .
|
312 |
+
"&Height=" . rawurlencode($height) .
|
313 |
+
"&Width=" . rawurlencode($width) .
|
314 |
+
"&Length=" . rawurlencode($length) .
|
315 |
+
"&Quantity=" . rawurlencode($num_boxes);
|
316 |
|
317 |
if(ini_get('allow_url_fopen'))
|
318 |
{
|
app/code/community/Fontis/Australia/Model/Tax/Gst.php
DELETED
@@ -1,27 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Fontis Australia Extension
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-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 |
-
* @category Fontis
|
16 |
-
* @package Fontis_Australia
|
17 |
-
* @author Chris Norton
|
18 |
-
* @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
|
19 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
-
*/
|
21 |
-
|
22 |
-
class Fontis_Australia_Tax_Gst extends Mage_Sales_Model_Tax_Abstract
|
23 |
-
{
|
24 |
-
|
25 |
-
}
|
26 |
-
|
27 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Fontis/Australia/etc/config.xml
CHANGED
@@ -23,7 +23,7 @@
|
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Fontis_Australia>
|
26 |
-
<version>2.0.
|
27 |
<depends>
|
28 |
<Mage_Shipping />
|
29 |
<Mage_Payment />
|
23 |
<config>
|
24 |
<modules>
|
25 |
<Fontis_Australia>
|
26 |
+
<version>2.0.3</version>
|
27 |
<depends>
|
28 |
<Mage_Shipping />
|
29 |
<Mage_Payment />
|
app/design/frontend/default/default/template/fontis/australia/postcode.phtml.~1~
DELETED
@@ -1,128 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Fontis Australia Extension
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-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 |
-
* @category Fontis
|
16 |
-
* @package Fontis_Australia
|
17 |
-
* @author Chris Norton
|
18 |
-
* @copyright Copyright (c) 2008 Fontis Pty. Ltd. (http://www.fontis.com.au)
|
19 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
20 |
-
*/
|
21 |
-
?>
|
22 |
-
<script type="text/javascript">
|
23 |
-
|
24 |
-
// Create and insert the div that will hold the list of autocomplete items. This
|
25 |
-
// is added to the DOM immediately following the #city field.
|
26 |
-
var autocomplete_city = new Element('div', { id: 'autocomplete_city', 'class': 'search-autocomplete' });
|
27 |
-
|
28 |
-
function updateAddress(text, item) {
|
29 |
-
// Update state and postcode fields
|
30 |
-
var id = item.id;
|
31 |
-
var tokens = id.split('-');
|
32 |
-
|
33 |
-
// Assume item at index 1 is region_id, item at index 3 is postcode
|
34 |
-
$('region_id').value = tokens[1];
|
35 |
-
$('zip').value = tokens[3];
|
36 |
-
}
|
37 |
-
|
38 |
-
if($('city')) {
|
39 |
-
function updateAddress(text, item) {
|
40 |
-
// Update state and postcode fields
|
41 |
-
var id = item.id;
|
42 |
-
var tokens = id.split('-');
|
43 |
-
|
44 |
-
// Assume item at index 1 is region_id, item at index 3 is postcode
|
45 |
-
$('region_id').value = tokens[1];
|
46 |
-
$('zip').value = tokens[3];
|
47 |
-
}
|
48 |
-
|
49 |
-
$('city').parentNode.appendChild(autocomplete_city);
|
50 |
-
|
51 |
-
// Create the autocompleter and assign it to a variable for future use.
|
52 |
-
var completer = new Ajax.Autocompleter("city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
53 |
-
afterUpdateElement: updateAddress,
|
54 |
-
minChars: 2,
|
55 |
-
parameters: 'country=' + $F('country')
|
56 |
-
});
|
57 |
-
|
58 |
-
// Detect when the country has changed and update the parameters sent by the autocompleter.
|
59 |
-
$('country').observe('change', function() {
|
60 |
-
completer = new Ajax.Autocompleter("city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
61 |
-
afterUpdateElement: updateAddress,
|
62 |
-
minChars: 2,
|
63 |
-
parameters: 'country=' + $F('country')
|
64 |
-
});
|
65 |
-
});
|
66 |
-
}
|
67 |
-
|
68 |
-
if($('billing:city')) {
|
69 |
-
function updateAddress(text, item) {
|
70 |
-
// Update state and postcode fields
|
71 |
-
var id = item.id;
|
72 |
-
var tokens = id.split('-');
|
73 |
-
|
74 |
-
// Assume item at index 1 is region_id, item at index 3 is postcode
|
75 |
-
$('billing:region_id').value = tokens[1];
|
76 |
-
$('billing:postcode').value = tokens[3];
|
77 |
-
}
|
78 |
-
|
79 |
-
$('billing:city').parentNode.appendChild(autocomplete_city);
|
80 |
-
|
81 |
-
// Create the autocompleter and assign it to a variable for future use.
|
82 |
-
var completer = new Ajax.Autocompleter("billing:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
83 |
-
afterUpdateElement: updateAddress,
|
84 |
-
minChars: 2,
|
85 |
-
parameters: 'country=' + $F('billing:country_id')
|
86 |
-
});
|
87 |
-
|
88 |
-
// Detect when the country has changed and update the parameters sent by the autocompleter.
|
89 |
-
$('billing:country_id').observe('change', function() {
|
90 |
-
completer = new Ajax.Autocompleter("billing:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
91 |
-
afterUpdateElement: updateAddress,
|
92 |
-
minChars: 2,
|
93 |
-
parameters: 'country=' + $F('billing:country_id')
|
94 |
-
});
|
95 |
-
});
|
96 |
-
}
|
97 |
-
|
98 |
-
|
99 |
-
if($('shipping:city')) {
|
100 |
-
function updateAddress(text, item) {
|
101 |
-
// Update state and postcode fields
|
102 |
-
var id = item.id;
|
103 |
-
var tokens = id.split('-');
|
104 |
-
|
105 |
-
// Assume item at index 1 is region_id, item at index 3 is postcode
|
106 |
-
$('shipping:region_id').value = tokens[1];
|
107 |
-
$('shipping:postcode').value = tokens[3];
|
108 |
-
}
|
109 |
-
|
110 |
-
$('shipping:city').parentNode.appendChild(autocomplete_city);
|
111 |
-
|
112 |
-
// Create the autocompleter and assign it to a variable for future use.
|
113 |
-
var completer = new Ajax.Autocompleter("shipping:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
114 |
-
afterUpdateElement: updateAddress,
|
115 |
-
minChars: 2,
|
116 |
-
parameters: 'country=' + $F('shipping:country_id')
|
117 |
-
});
|
118 |
-
|
119 |
-
// Detect when the country has changed and update the parameters sent by the autocompleter.
|
120 |
-
$('shipping:country_id').observe('change', function() {
|
121 |
-
completer = new Ajax.Autocompleter("shipping:city", "autocomplete_city", "<?=$this->helper('australia')->getCitySuggestUrl();?>", {
|
122 |
-
afterUpdateElement: updateAddress,
|
123 |
-
minChars: 2,
|
124 |
-
parameters: 'country=' + $F('shipping:country_id')
|
125 |
-
});
|
126 |
-
});
|
127 |
-
}
|
128 |
-
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fontis_Australia</name>
|
4 |
-
<version>2.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>This extension is intended to provide most of the functionality needed to run a Magento store in Australia. This includes all essential payment and shipping methods as well as small localisations such as adding the store's ABN, adding Australian states and territories to the region directory and adding in a postcode database.</description>
|
11 |
<notes>Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).</notes>
|
12 |
<authors><author><name>Chris Norton</name><user>auto-converted</user><email>chris.norton@fontis.com.au</email></author><author><name>Lloyd Hazlett</name><user>auto-converted</user><email>hazzard43@fastmail.fm</email></author><author><name>Fontis</name><user>auto-converted</user><email>magento@fontis.com.au</email></author></authors>
|
13 |
-
<date>2010-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="7245a655eac2513f8cd6c1a825586936"/><file name="info.phtml" hash="d4836cf6f5316b76b56ddefc48b67d94"/></dir><dir name="directdeposit"><file name="form.phtml" hash="0e5272781aa7c4d25c1c243fcf00487e"/><file name="info.phtml" hash="38112ef511c67c91a3f2ad43da7929da"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="bdce71494213de5fe194873b5d0bed56"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_australia.xml" hash="d33f99fc5dfc156de09254e95a2c82eb"/></dir><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="3895f9afa025444eb9a1cdc38582069d"/><file name="info.phtml" hash="47d1e0cc3ae676dff49990eba0ac4608"/><file name="success.phtml" hash="115a1710b1f3b0ef3ecf0b957651bb43"/></dir><dir name="directdeposit"><file name="form.phtml" hash="8cf9d09e42ba30206aabf01a3ec38239"/><file name="info.phtml" hash="8bc98b2fd1d1943f17d2831a67c97db3"/><file name="success.phtml" hash="0545f8c3c9d37a2045a20f442991e8d7"/></dir></dir><file name="postcode-checkout.phtml" hash="51867acd43c4f8c982ab1fea103a579f"/><file name="postcode.phtml" hash="b0d7bfa170c7ca3bd4a256f0404d7189"
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fontis_Australia</name>
|
4 |
+
<version>2.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>This extension is intended to provide most of the functionality needed to run a Magento store in Australia. This includes all essential payment and shipping methods as well as small localisations such as adding the store's ABN, adding Australian states and territories to the region directory and adding in a postcode database.</description>
|
11 |
<notes>Currently active are modules for BPAY, direct deposit, Australia Post, the addition of regions and postcodes, and the addition of ABN and phone number to the general configuration values (although currently not in use).</notes>
|
12 |
<authors><author><name>Chris Norton</name><user>auto-converted</user><email>chris.norton@fontis.com.au</email></author><author><name>Lloyd Hazlett</name><user>auto-converted</user><email>hazzard43@fastmail.fm</email></author><author><name>Fontis</name><user>auto-converted</user><email>magento@fontis.com.au</email></author></authors>
|
13 |
+
<date>2010-04-07</date>
|
14 |
+
<time>05:14:28</time>
|
15 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="7245a655eac2513f8cd6c1a825586936"/><file name="info.phtml" hash="d4836cf6f5316b76b56ddefc48b67d94"/></dir><dir name="directdeposit"><file name="form.phtml" hash="0e5272781aa7c4d25c1c243fcf00487e"/><file name="info.phtml" hash="38112ef511c67c91a3f2ad43da7929da"/></dir></dir><dir name="system"><dir name="config"><dir name="form"><dir name="field"><file name="array_dropdown.phtml" hash="bdce71494213de5fe194873b5d0bed56"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_australia.xml" hash="d33f99fc5dfc156de09254e95a2c82eb"/></dir><dir name="template"><dir name="fontis"><dir name="australia"><dir name="payment"><dir name="bpay"><file name="form.phtml" hash="3895f9afa025444eb9a1cdc38582069d"/><file name="info.phtml" hash="47d1e0cc3ae676dff49990eba0ac4608"/><file name="success.phtml" hash="115a1710b1f3b0ef3ecf0b957651bb43"/></dir><dir name="directdeposit"><file name="form.phtml" hash="8cf9d09e42ba30206aabf01a3ec38239"/><file name="info.phtml" hash="8bc98b2fd1d1943f17d2831a67c97db3"/><file name="success.phtml" hash="0545f8c3c9d37a2045a20f442991e8d7"/></dir></dir><file name="postcode-checkout.phtml" hash="51867acd43c4f8c982ab1fea103a579f"/><file name="postcode.phtml" hash="b0d7bfa170c7ca3bd4a256f0404d7189"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Fontis"><dir name="Australia"><dir name="Block"><dir name="Bpay"><file name="Form.php" hash="958e11d14d7c87054a68d34b60c498d6"/><file name="Info.php" hash="a28f40be3c76637eb43ba80c61031512"/><file name="Info.php.~1~" hash="0261fa159baac6974b936a29ceffa727"/></dir><dir name="Directdeposit"><file name="Form.php" hash="13589d5d85499678bdc62fde04107095"/><file name="Info.php" hash="0f31ac7451127c87813c823423a9057b"/></dir><file name="Autocomplete.php" hash="4f33f809dae969781ead580b13e9bd3a"/><file name="Myshopping.php" hash="1e9b9149a867136f541b765d54ba402b"/><file name="Shopbot.php" hash="fca48ea13a60bdd1b207913f536bce45"/></dir><dir name="controllers"><file name="AjaxController.php" hash="5fb086e3236446b6a6f10f4c78eb3fcb"/></dir><dir name="etc"><file name="config.xml" hash="000d6232e765380bd90a0eecbdd64b21"/><file name="system.xml" hash="bfcebc05a66fb2d2c0b4f13ebae6fc7a"/></dir><dir name="Helper"><file name="Bpay.php" hash="a2565444f18b28e70c8d29f802297057"/><file name="Data.php" hash="e493486d7a5ccd5589d99d08b136b819"/></dir><dir name="Model"><dir name="Config"><file name="CustomerGroupAccess.php" hash="e531a8049b9a877e01c2b806b065dbef"/><file name="CustomerGroups.php" hash="8014e56b1141cb9bbb63f807ec1c87a5"/></dir><dir name="Getprice"><file name="Child.php" hash="806d1d3f4b9508e7a982ebdcb4d9faf7"/><file name="Cron.php" hash="024e036fb8772b085bc7ca48bed7f605"/></dir><dir name="Myshopping"><file name="Child.php" hash="b1cb41cdf36352e9d1d6dec0dbeedc9f"/><file name="Cron.php" hash="92021f539e06231715f4639c98f08d9a"/></dir><dir name="Mysql4"><dir name="Shipping"><dir name="Carrier"><dir name="Eparcel"><file name="Collection.php" hash="87f450c6b318060b83e7d7d0662cdf50"/></dir><file name="Eparcel.php" hash="9614eed4296b17a429db745c289d42cf"/></dir></dir></dir><dir name="Payment"><file name="Bpay.php" hash="b60d9a61b06b100164fff49fc5113f71"/><file name="Directdeposit.php" hash="c80ba74494bfeea040dc2bf942cec5f0"/></dir><dir name="Shipping"><dir name="Carrier"><file name="Australiapost.php" hash="bde64f52effdf89143cb8aacf631ddf9"/><file name="Eparcel.php" hash="b65cd938b27b4666e22b6833ca738226"/></dir><dir name="Config"><file name="Eparcel.php" hash="8c754cdc86316dbee53db68f0e2652bc"/><file name="Eparcelcondition.php" hash="b8cc830ab6e0e397d32bf574f60b0500"/><file name="Weightunits.php" hash="e13ba9de393ae67420f863d4008c3c72"/></dir></dir><dir name="Shopbot"><file name="Child.php" hash="9c87db1130bdcb1333f9412864191c0a"/><file name="Cron.php" hash="a4d5cbdb1a21257fe9977ff6da43f2d6"/><file name="Cron.php~" hash="edaaa2e9c31e3eb32600476b9bdd83c0"/></dir></dir><dir name="sql"><dir name="australia_setup"><file name="mysql4-install-0.7.0.php" hash="f475b13bb5319599c4a852cfb8788f9a"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="9a381c07ec9ee53e2ffaa7ea7da4559d"/><file name="postcodes.txt" hash="21083a0f94e200259c9b4540666b251e"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="fontis"><file name="bpay.png" hash="481c9ee07049203aca13d6d2c2948cf7"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fontis_Australia.xml" hash="a60b83cf1b1b449a16fe09da16342a4d"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|