Temando_Temando - Version 1.4.1

Version Notes

Temando Shipping Extension – Starter Version
• Bug Fix: Fixed Access Denied problem for admin users without full admin permissions - introduced with Magento patch SUPEE-6285

Download this release

Release Info

Developer Temando
Extension Temando_Temando
Version 1.4.1
Comparing to
See all releases


Code changes from version 1.4.0 to 1.4.1

app/code/community/Temando/Temando/controllers/Adminhtml/CarrierController.php CHANGED
@@ -11,6 +11,18 @@ class Temando_Temando_Adminhtml_CarrierController extends Mage_Adminhtml_Control
11
  const CARRIER_ERROR = 'An error occured when synchronizing carriers with temando.com';
12
  const CARRIER_SUCCESS = 'Synchronized carriers';
13
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  /**
15
  * Adminhtml controller that refreshes carriers in the temando_carrier table.
16
  * @return
11
  const CARRIER_ERROR = 'An error occured when synchronizing carriers with temando.com';
12
  const CARRIER_SUCCESS = 'Synchronized carriers';
13
 
14
+ /**
15
+ * Check admin permissions for this controller
16
+ * Add a comment to this line
17
+ *
18
+ * @return boolean
19
+ */
20
+ protected function _isAllowed()
21
+ {
22
+ return Mage::getSingleton('admin/session')
23
+ ->isAllowed('temando');
24
+ }
25
+
26
  /**
27
  * Adminhtml controller that refreshes carriers in the temando_carrier table.
28
  * @return
app/code/community/Temando/Temando/controllers/Adminhtml/JsonController.php CHANGED
@@ -6,6 +6,18 @@
6
  * @author Temando Magento Team <marketing@temando.com>
7
  */
8
  class Temando_Temando_Adminhtml_JsonController extends Mage_Adminhtml_Controller_Action {
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
  /**
11
  * Return JSON-encoded array of country regions
6
  * @author Temando Magento Team <marketing@temando.com>
7
  */
8
  class Temando_Temando_Adminhtml_JsonController extends Mage_Adminhtml_Controller_Action {
9
+
10
+ /**
11
+ * Check admin permissions for this controller
12
+ * Add a comment to this line
13
+ *
14
+ * @return boolean
15
+ */
16
+ protected function _isAllowed()
17
+ {
18
+ return Mage::getSingleton('admin/session')
19
+ ->isAllowed('temando');
20
+ }
21
 
22
  /**
23
  * Return JSON-encoded array of country regions
app/code/community/Temando/Temando/controllers/Adminhtml/ManifestController.php CHANGED
@@ -7,6 +7,18 @@
7
  */
8
  class Temando_Temando_Adminhtml_ManifestController extends Mage_Adminhtml_Controller_Action
9
  {
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  public function indexAction()
12
  {
7
  */
8
  class Temando_Temando_Adminhtml_ManifestController extends Mage_Adminhtml_Controller_Action
9
  {
10
+
11
+ /**
12
+ * Check admin permissions for this controller
13
+ * Add a comment to this line
14
+ *
15
+ * @return boolean
16
+ */
17
+ protected function _isAllowed()
18
+ {
19
+ return Mage::getSingleton('admin/session')
20
+ ->isAllowed('temando/manifest');
21
+ }
22
 
23
  public function indexAction()
24
  {
app/code/community/Temando/Temando/controllers/Adminhtml/ShipmentController.php CHANGED
@@ -8,6 +8,18 @@
8
  class Temando_Temando_Adminhtml_ShipmentController extends Mage_Adminhtml_Controller_Action
9
  {
10
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  public function indexAction()
12
  {
13
  $this->loadLayout()
8
  class Temando_Temando_Adminhtml_ShipmentController extends Mage_Adminhtml_Controller_Action
9
  {
10
 
11
+ /**
12
+ * Check admin permissions for this controller
13
+ * Add a comment to this line
14
+ *
15
+ * @return boolean
16
+ */
17
+ protected function _isAllowed()
18
+ {
19
+ return Mage::getSingleton('admin/session')
20
+ ->isAllowed('temando/shipment');
21
+ }
22
+
23
  public function indexAction()
24
  {
25
  $this->loadLayout()
app/code/community/Temando/Temando/controllers/Adminhtml/WizardController.php CHANGED
@@ -10,6 +10,18 @@ class Temando_Temando_Adminhtml_WizardController extends Mage_Adminhtml_Controll
10
 
11
  const ERR_NO_SOAP = 'SOAP is not enabled on this server. Please enable SOAP to use the Temando plugin.';
12
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  /**
14
  * Adminhtml controller that redirects to the front end view and starts the wizard.
15
  * @return type
10
 
11
  const ERR_NO_SOAP = 'SOAP is not enabled on this server. Please enable SOAP to use the Temando plugin.';
12
 
13
+ /**
14
+ * Check admin permissions for this controller
15
+ * Add a comment to this line
16
+ *
17
+ * @return boolean
18
+ */
19
+ protected function _isAllowed()
20
+ {
21
+ return Mage::getSingleton('admin/session')
22
+ ->isAllowed('temando/configuration/wizard');
23
+ }
24
+
25
  /**
26
  * Adminhtml controller that redirects to the front end view and starts the wizard.
27
  * @return type
app/code/community/Temando/Temando/etc/config.xml CHANGED
@@ -1,234 +1,234 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <config>
3
- <modules>
4
- <Temando_Temando>
5
- <version>1.4.0</version>
6
- </Temando_Temando>
7
- </modules>
8
- <global>
9
- <models>
10
- <temando>
11
- <class>Temando_Temando_Model</class>
12
- <resourceModel>temando_mysql4</resourceModel>
13
- </temando>
14
- <temando_mysql4>
15
- <class>Temando_Temando_Model_Mysql4</class>
16
- <entities>
17
- <box><table>temando_box</table></box>
18
- <quote><table>temando_quote</table></quote>
19
- <shipment><table>temando_shipment</table></shipment>
20
- <manifest><table>temando_manifest</table></manifest>
21
- <carrier><table>temando_carrier</table></carrier>
22
- </entities>
23
- </temando_mysql4>
24
- </models>
25
- <blocks>
26
- <temando>
27
- <class>Temando_Temando_Block</class>
28
- </temando>
29
- <checkout>
30
- <rewrite>
31
- <cart_shipping>Temando_Temando_Block_Cart_Shipping</cart_shipping>
32
- </rewrite>
33
- </checkout>
34
- </blocks>
35
- <helpers>
36
- <temando>
37
- <class>Temando_Temando_Helper</class>
38
- </temando>
39
- </helpers>
40
- <resources>
41
- <temando_setup>
42
- <setup>
43
- <module>Temando_Temando</module>
44
- <class>Mage_Eav_Model_Entity_Setup</class>
45
- </setup>
46
- <connection>
47
- <use>core_setup</use>
48
- </connection>
49
- </temando_setup>
50
- <temando_write>
51
- <connection>
52
- <use>core_write</use>
53
- </connection>
54
- </temando_write>
55
- <temando_read>
56
- <connection>
57
- <use>core_read</use>
58
- </connection>
59
- </temando_read>
60
- </resources>
61
- <sales>
62
- <shipping>
63
- <carriers>
64
- <temando>
65
- <class>Temando_Temando_Model_Shipping_Carrier_Temando</class>
66
- </temando>
67
- </carriers>
68
- </shipping>
69
- </sales>
70
- <events>
71
- <sales_order_place_after>
72
- <observers>
73
- <temando_sales_order_place_after_handler>
74
- <type>model</type>
75
- <class>Temando_Temando_Model_Observer</class>
76
- <method>createTemandoShipment</method>
77
- <args></args>
78
- </temando_sales_order_place_after_handler>
79
- </observers>
80
- </sales_order_place_after>
81
- <controller_action_predispatch_checkout_cart_estimatePost>
82
- <observers>
83
- <retail_product_view>
84
- <type>singleton</type>
85
- <class>Temando_Temando_Model_Observer</class>
86
- <method>hookCartSaveAddress</method>
87
- </retail_product_view>
88
- </observers>
89
- </controller_action_predispatch_checkout_cart_estimatePost>
90
- <sales_quote_save_after>
91
- <observers>
92
- <temando_sales_quote_save_after_handler>
93
- <class>Temando_Temando_Model_Observer</class>
94
- <method>saveDestinationType</method>
95
- <args></args>
96
- </temando_sales_quote_save_after_handler>
97
- </observers>
98
- </sales_quote_save_after>
99
- </events>
100
- </global>
101
- <frontend>
102
- <routers>
103
- <etemando>
104
- <use>standard</use>
105
- <args>
106
- <module>Temando_Temando</module>
107
- <frontName>etemando</frontName>
108
- </args>
109
- </etemando>
110
- </routers>
111
- <layout>
112
- <updates>
113
- <temando>
114
- <file>temando.xml</file>
115
- </temando>
116
- </updates>
117
- </layout>
118
- <translate>
119
- <modules>
120
- <Temando_Temando>
121
- <files>
122
- <default>Temando_Temando.csv</default>
123
- </files>
124
- </Temando_Temando>
125
- </modules>
126
- </translate>
127
- </frontend>
128
- <admin>
129
- <routers>
130
- <temando>
131
- <use>admin</use>
132
- <args>
133
- <module>Temando_Temando</module>
134
- <frontName>temando</frontName>
135
- </args>
136
- </temando>
137
- </routers>
138
- </admin>
139
- <adminhtml>
140
- <layout>
141
- <updates>
142
- <temando>
143
- <file>temando.xml</file>
144
- </temando>
145
- </updates>
146
- </layout>
147
- <translate>
148
- <modules>
149
- <Temando_Temando>
150
- <files>
151
- <default>Temando_Temando.csv</default>
152
- </files>
153
- </Temando_Temando>
154
- </modules>
155
- </translate>
156
- </adminhtml>
157
- <default>
158
- <temando>
159
- <general>
160
- <active><![CDATA[0]]></active>
161
- <sandbox><![CDATA[1]]></sandbox>
162
- <client><![CDATA[20420]]></client>
163
- <username><![CDATA[TEMANDOTEST]]></username>
164
- <password><![CDATA[temandopass1]]></password>
165
- <title><![CDATA[Temando]]></title>
166
- <payment_type><![CDATA[Account]]></payment_type>
167
- </general>
168
- <options>
169
- <show_product_estimate><![CDATA[1]]></show_product_estimate>
170
- <label_type><![CDATA[Standard]]></label_type>
171
- <show_transit_type><![CDATA[1]]></show_transit_type>
172
- <show_transit_time><![CDATA[1]]></show_transit_time>
173
- </options>
174
- <insurance>
175
- <status><![CDATA[optional]]></status>
176
- </insurance>
177
- <carbon>
178
- <status><![CDATA[optional]]></status>
179
- </carbon>
180
- <footprints>
181
- <status><![CDATA[optional]]></status>
182
- </footprints>
183
- <pricing>
184
- <error_process><![CDATA[view]]></error_process>
185
- <method><![CDATA[dynamic]]></method>
186
- <shipping_fee><![CDATA[0]]></shipping_fee>
187
- <handling_fee><![CDATA[0]]></handling_fee>
188
- <handling_type><![CDATA[F]]></handling_type>
189
- </pricing>
190
- <units>
191
- <measure><![CDATA[Centimetres]]></measure>
192
- <weight><![CDATA[Kilograms]]></weight>
193
- </units>
194
- <defaults>
195
- <class><![CDATA[General Goods]]></class>
196
- <subclass><![CDATA[Household Goods]]></subclass>
197
- <packaging><![CDATA[0]]></packaging>
198
- <fragile><![CDATA[0]]></fragile>
199
- <dangerous><![CDATA[0]]></dangerous>
200
- <length><![CDATA[10]]></length>
201
- <width><![CDATA[10]]></width>
202
- <height><![CDATA[10]]></height>
203
- </defaults>
204
- <origin>
205
- <contact_name><![CDATA[Temando User]]></contact_name>
206
- <company_name><![CDATA[Temando]]></company_name>
207
- <street><![CDATA[Level 4, 140 William Street]]></street>
208
- <city><![CDATA[WOOLLOOMOOLOO]]></city>
209
- <postcode><![CDATA[2011]]></postcode>
210
- <country><![CDATA[AU]]></country>
211
- <region><![CDATA[NSW]]></region>
212
- <type><![CDATA[Business]]></type>
213
- <phone1><![CDATA[02 1234 5678]]></phone1>
214
- <email><![CDATA[sales@temando.com]]></email>
215
- </origin>
216
- </temando>
217
- <carriers>
218
- <temando>
219
- <active>0</active>
220
- <model>temando/shipping_carrier_temando</model>
221
- <allowed_methods>54381,54426,54359,54396,54360,54429,54433,54432,54425,54343,54430,54431,54427,54428,54344,54398,54358,54410</allowed_methods>
222
- <weightunit>Grams</weightunit>
223
- <name>Temando</name>
224
- <title>Shipping Options</title>
225
- <always_use_defaults>0</always_use_defaults>
226
- <specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
227
- <sallowspecific>1</sallowspecific>
228
- <specificcountry>AU</specificcountry>
229
- <showmethod></showmethod>
230
- <sort_order>0</sort_order>
231
- </temando>
232
- </carriers>
233
- </default>
234
- </config>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <Temando_Temando>
5
+ <version>1.4.1</version>
6
+ </Temando_Temando>
7
+ </modules>
8
+ <global>
9
+ <models>
10
+ <temando>
11
+ <class>Temando_Temando_Model</class>
12
+ <resourceModel>temando_mysql4</resourceModel>
13
+ </temando>
14
+ <temando_mysql4>
15
+ <class>Temando_Temando_Model_Mysql4</class>
16
+ <entities>
17
+ <box><table>temando_box</table></box>
18
+ <quote><table>temando_quote</table></quote>
19
+ <shipment><table>temando_shipment</table></shipment>
20
+ <manifest><table>temando_manifest</table></manifest>
21
+ <carrier><table>temando_carrier</table></carrier>
22
+ </entities>
23
+ </temando_mysql4>
24
+ </models>
25
+ <blocks>
26
+ <temando>
27
+ <class>Temando_Temando_Block</class>
28
+ </temando>
29
+ <checkout>
30
+ <rewrite>
31
+ <cart_shipping>Temando_Temando_Block_Cart_Shipping</cart_shipping>
32
+ </rewrite>
33
+ </checkout>
34
+ </blocks>
35
+ <helpers>
36
+ <temando>
37
+ <class>Temando_Temando_Helper</class>
38
+ </temando>
39
+ </helpers>
40
+ <resources>
41
+ <temando_setup>
42
+ <setup>
43
+ <module>Temando_Temando</module>
44
+ <class>Mage_Eav_Model_Entity_Setup</class>
45
+ </setup>
46
+ <connection>
47
+ <use>core_setup</use>
48
+ </connection>
49
+ </temando_setup>
50
+ <temando_write>
51
+ <connection>
52
+ <use>core_write</use>
53
+ </connection>
54
+ </temando_write>
55
+ <temando_read>
56
+ <connection>
57
+ <use>core_read</use>
58
+ </connection>
59
+ </temando_read>
60
+ </resources>
61
+ <sales>
62
+ <shipping>
63
+ <carriers>
64
+ <temando>
65
+ <class>Temando_Temando_Model_Shipping_Carrier_Temando</class>
66
+ </temando>
67
+ </carriers>
68
+ </shipping>
69
+ </sales>
70
+ <events>
71
+ <sales_order_place_after>
72
+ <observers>
73
+ <temando_sales_order_place_after_handler>
74
+ <type>model</type>
75
+ <class>Temando_Temando_Model_Observer</class>
76
+ <method>createTemandoShipment</method>
77
+ <args></args>
78
+ </temando_sales_order_place_after_handler>
79
+ </observers>
80
+ </sales_order_place_after>
81
+ <controller_action_predispatch_checkout_cart_estimatePost>
82
+ <observers>
83
+ <retail_product_view>
84
+ <type>singleton</type>
85
+ <class>Temando_Temando_Model_Observer</class>
86
+ <method>hookCartSaveAddress</method>
87
+ </retail_product_view>
88
+ </observers>
89
+ </controller_action_predispatch_checkout_cart_estimatePost>
90
+ <sales_quote_save_after>
91
+ <observers>
92
+ <temando_sales_quote_save_after_handler>
93
+ <class>Temando_Temando_Model_Observer</class>
94
+ <method>saveDestinationType</method>
95
+ <args></args>
96
+ </temando_sales_quote_save_after_handler>
97
+ </observers>
98
+ </sales_quote_save_after>
99
+ </events>
100
+ </global>
101
+ <frontend>
102
+ <routers>
103
+ <etemando>
104
+ <use>standard</use>
105
+ <args>
106
+ <module>Temando_Temando</module>
107
+ <frontName>etemando</frontName>
108
+ </args>
109
+ </etemando>
110
+ </routers>
111
+ <layout>
112
+ <updates>
113
+ <temando>
114
+ <file>temando.xml</file>
115
+ </temando>
116
+ </updates>
117
+ </layout>
118
+ <translate>
119
+ <modules>
120
+ <Temando_Temando>
121
+ <files>
122
+ <default>Temando_Temando.csv</default>
123
+ </files>
124
+ </Temando_Temando>
125
+ </modules>
126
+ </translate>
127
+ </frontend>
128
+ <admin>
129
+ <routers>
130
+ <temando>
131
+ <use>admin</use>
132
+ <args>
133
+ <module>Temando_Temando</module>
134
+ <frontName>temando</frontName>
135
+ </args>
136
+ </temando>
137
+ </routers>
138
+ </admin>
139
+ <adminhtml>
140
+ <layout>
141
+ <updates>
142
+ <temando>
143
+ <file>temando.xml</file>
144
+ </temando>
145
+ </updates>
146
+ </layout>
147
+ <translate>
148
+ <modules>
149
+ <Temando_Temando>
150
+ <files>
151
+ <default>Temando_Temando.csv</default>
152
+ </files>
153
+ </Temando_Temando>
154
+ </modules>
155
+ </translate>
156
+ </adminhtml>
157
+ <default>
158
+ <temando>
159
+ <general>
160
+ <active><![CDATA[0]]></active>
161
+ <sandbox><![CDATA[1]]></sandbox>
162
+ <client><![CDATA[20420]]></client>
163
+ <username><![CDATA[TEMANDOTEST]]></username>
164
+ <password><![CDATA[temandopass1]]></password>
165
+ <title><![CDATA[Temando]]></title>
166
+ <payment_type><![CDATA[Account]]></payment_type>
167
+ </general>
168
+ <options>
169
+ <show_product_estimate><![CDATA[1]]></show_product_estimate>
170
+ <label_type><![CDATA[Standard]]></label_type>
171
+ <show_transit_type><![CDATA[1]]></show_transit_type>
172
+ <show_transit_time><![CDATA[1]]></show_transit_time>
173
+ </options>
174
+ <insurance>
175
+ <status><![CDATA[optional]]></status>
176
+ </insurance>
177
+ <carbon>
178
+ <status><![CDATA[optional]]></status>
179
+ </carbon>
180
+ <footprints>
181
+ <status><![CDATA[optional]]></status>
182
+ </footprints>
183
+ <pricing>
184
+ <error_process><![CDATA[view]]></error_process>
185
+ <method><![CDATA[dynamic]]></method>
186
+ <shipping_fee><![CDATA[0]]></shipping_fee>
187
+ <handling_fee><![CDATA[0]]></handling_fee>
188
+ <handling_type><![CDATA[F]]></handling_type>
189
+ </pricing>
190
+ <units>
191
+ <measure><![CDATA[Centimetres]]></measure>
192
+ <weight><![CDATA[Kilograms]]></weight>
193
+ </units>
194
+ <defaults>
195
+ <class><![CDATA[General Goods]]></class>
196
+ <subclass><![CDATA[Household Goods]]></subclass>
197
+ <packaging><![CDATA[0]]></packaging>
198
+ <fragile><![CDATA[0]]></fragile>
199
+ <dangerous><![CDATA[0]]></dangerous>
200
+ <length><![CDATA[10]]></length>
201
+ <width><![CDATA[10]]></width>
202
+ <height><![CDATA[10]]></height>
203
+ </defaults>
204
+ <origin>
205
+ <contact_name><![CDATA[Temando User]]></contact_name>
206
+ <company_name><![CDATA[Temando]]></company_name>
207
+ <street><![CDATA[Level 4, 140 William Street]]></street>
208
+ <city><![CDATA[WOOLLOOMOOLOO]]></city>
209
+ <postcode><![CDATA[2011]]></postcode>
210
+ <country><![CDATA[AU]]></country>
211
+ <region><![CDATA[NSW]]></region>
212
+ <type><![CDATA[Business]]></type>
213
+ <phone1><![CDATA[02 1234 5678]]></phone1>
214
+ <email><![CDATA[sales@temando.com]]></email>
215
+ </origin>
216
+ </temando>
217
+ <carriers>
218
+ <temando>
219
+ <active>0</active>
220
+ <model>temando/shipping_carrier_temando</model>
221
+ <allowed_methods>54381,54426,54359,54396,54360,54429,54433,54432,54425,54343,54430,54431,54427,54428,54344,54398,54358,54410</allowed_methods>
222
+ <weightunit>Grams</weightunit>
223
+ <name>Temando</name>
224
+ <title>Shipping Options</title>
225
+ <always_use_defaults>0</always_use_defaults>
226
+ <specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
227
+ <sallowspecific>1</sallowspecific>
228
+ <specificcountry>AU</specificcountry>
229
+ <showmethod></showmethod>
230
+ <sort_order>0</sort_order>
231
+ </temando>
232
+ </carriers>
233
+ </default>
234
+ </config>
app/etc/modules/Temando_Temando.xml CHANGED
@@ -1,9 +1,9 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <Temando_Temando>
5
- <active>true</active>
6
- <codePool>community</codePool>
7
- </Temando_Temando>
8
- </modules>
9
- </config>
1
+ <?xml version="1.0"?>
2
+ <config>
3
+ <modules>
4
+ <Temando_Temando>
5
+ <active>true</active>
6
+ <codePool>community</codePool>
7
+ </Temando_Temando>
8
+ </modules>
9
+ </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Temando_Temando</name>
4
- <version>1.4.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software Licence</license>
7
  <channel>community</channel>
@@ -27,18 +27,11 @@ The Temando Magento shipping extension is more than just shipping software. Adva
27
  &#x2022; Packaging logic to predict box sizes&#xD;
28
  </description>
29
  <notes>Temando Shipping Extension &#x2013; Starter Version&#xD;
30
- &#x2022; New Feature - Addition of editable shipping method title&#xD;
31
- &#x2022; New Feature - Addition of destination type selection in the cart &amp; checkout&#xD;
32
- &#x2022; New Feature - Addition of retrieve manifest &#xD;
33
- &#x2022; New Feature - Addition of dangerous good product attribute&#xD;
34
- &#x2022; New Feature - Delivery Options on checkout&#xD;
35
- &#x2022; Feature Update: Sorting of the carrier list by name&#xD;
36
- &#x2022; Bug Fix: Fix for getTrackingInfo if no tracking history is available &#xD;
37
- </notes>
38
  <authors><author><name>Temando</name><user>Temando</user><email>marketing@temando.com</email></author></authors>
39
- <date>2015-07-03</date>
40
- <time>02:36:17</time>
41
- <contents><target name="mageetc"><dir name="modules"><file name="Temando_Temando.xml" hash="5bcf129ec4955186ed97d4b57def464b"/></dir></target><target name="magecommunity"><dir name="Temando"><dir name="Temando"><dir name="Block"><dir name="Adminhtml"><dir name="Manifest"><dir name="Filter"><file name="Form.php" hash="b50d9538dc14b713e05e81b106d01e8d"/></dir><dir name="Grid"><dir name="Renderer"><file name="Checkbox.php" hash="aea0559a83dcf57cd3746700e0b154bc"/></dir></dir><file name="Grid.php" hash="883505cf6119ddd650023b103a6f5dd0"/></dir><file name="Manifest.php" hash="54fadcde4fc1eef4bfc3342fd753aa1b"/><dir name="Shipment"><dir name="Edit"><file name="Form.php" hash="f463cfd5a68fbcbbc39b411fd68c6658"/><dir name="Tab"><file name="Abstract.php" hash="40098655ffda3b1889af1c5776c72243"/><dir name="Form"><file name="Anytime.php" hash="356009570dc97be1405c1f7bde1055cf"/><file name="Anywhere.php" hash="cc6f0e2994f71a605dbd971ba280477b"/><file name="Boxes.php" hash="2814eb94147bdc8e6ceef3b56a5842f5"/><file name="Insurance.php" hash="0756ddbb577ff982e5cc048232d6cf0a"/><file name="Origin.php" hash="9b9fcbb04ce032f613e9f6cb8aad42de"/><file name="Products.php" hash="87e3bc8154bb6709185ee9c916d0c930"/><file name="Quotes.php" hash="1010634b24617ed25f5ddf1328d1f5f2"/><file name="Status.php" hash="c0781098106ac38b9aa3e9b2d07bbc48"/></dir><file name="Form.php" hash="bb67f340fdbb39634a3f018fa9955d87"/></dir><file name="Tabs.php" hash="aca2cc202217011258d18386fd07e1d0"/></dir><file name="Edit.php" hash="15a363348caf71ac5df906ec521ed172"/><file name="Grid.php" hash="f19927970dfad99e0a74d03950b68627"/></dir><file name="Shipment.php" hash="cdd48f2b3a19502bd6497ed9684a88be"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Rule.php" hash="480867b8f34def26ce2674d4e1453e29"/><file name="Update.php" hash="337722ca578208b389b358b25abef90a"/><file name="Warehouse.php" hash="7b97f8cb48d60c9ff5f92c57f164a72f"/></dir><dir name="Field"><file name="Insurance.php" hash="023112e260cd46ae7754905573a0e367"/><file name="Required.php" hash="ec11ae46b3eeb3ea26c6939279d1b6e9"/></dir><dir name="Fieldset"><file name="General.php" hash="ea8cbf0459c07fc05016354a5d6241c9"/></dir></dir></dir></dir></dir><dir name="Cart"><file name="Shipping.php" hash="9e14409aeabaa093c58e74e3157f4213"/></dir><dir name="Onepage"><dir name="Shipping"><dir name="Delivery"><file name="Options.php" hash="70542d028386dae168367f49e0ddf640"/></dir><dir name="Method"><dir name="Available"><file name="Single.php" hash="de8cdd692a3e5e3ca69e692c42b9f04f"/></dir><file name="Available.php" hash="bcadbfa218104266209452b860375f4f"/></dir></dir></dir><dir name="Product"><dir name="Shipping"><file name="Methods.php" hash="783981474bafb42e55b4f0d7a32d9c7a"/></dir><file name="Shipping.php" hash="e565c0fdc0463b7f0911d38e16a53869"/></dir><dir name="Wizard"><file name="Html.php" hash="47bf2dc61bdd8f0ef67f239c7d762f7b"/></dir></dir><dir name="Helper"><file name="Data.php" hash="416763e81599edea5e90b007640368f6"/><file name="Functions.php" hash="c38f2b99d9dedc090ecb27456519f30a"/><file name="Wizard.php" hash="087b24ad159480f93f12a66d867a76cf"/></dir><dir name="Model"><dir name="Api"><file name="Client.php" hash="c42494d74bad73eab7d6227ccbc87447"/><dir name="Request"><file name="Anything.php" hash="2c131340da62725650c3e030524e2366"/><file name="Anythings.php" hash="54f0e75a03012f593f10849f1e055025"/><file name="Anytime.php" hash="887460ca033594de365b272802c4b059"/><file name="Anywhere.php" hash="e62fcfd8158a030b9acf5e2495662e85"/></dir><file name="Request.php" hash="e0c7ef938d1779f150671255592375a0"/></dir><file name="Box.php" hash="e4ddd66d649d493b6ad594499fb57c71"/><file name="Carrier.php" hash="8bf261a034342beefc1f043e8abf2f28"/><dir name="Checkout"><dir name="Delivery"><file name="Options.php" hash="dc384fcc84d9616ff6898a33280fb792"/></dir></dir><dir name="Entity"><dir name="Attribute"><dir name="Source"><dir name="Packaging"><file name="Mode.php" hash="aa511a6ea13320cec67902be65e4896a"/></dir><file name="Packaging.php" hash="51fab970661c20939397401ee92e0f58"/></dir></dir></dir><file name="Manifest.php" hash="e9a2eecb24647dd51209e6022d92dc97"/><dir name="Mysql4"><dir name="Box"><file name="Collection.php" hash="f2e414a79ed7b3b3e43a486030efb559"/></dir><file name="Box.php" hash="872126d53b4716b3efd6a9cec4c04272"/><dir name="Carrier"><file name="Collection.php" hash="4731b77ae10423967476d5e368a75f80"/></dir><file name="Carrier.php" hash="cd62eda71a2c6c07081aa187b0c35c2f"/><dir name="Manifest"><file name="Collection.php" hash="899f782ab34d6c008972296f59c9cde6"/></dir><file name="Manifest.php" hash="e5e474e5074d4f7b5405f7002add1602"/><dir name="Quote"><file name="Collection.php" hash="90fecb1146d26107773571eab8a3bb6b"/></dir><file name="Quote.php" hash="ca1c40896cdf2e91f1a4e40bd48e0158"/><dir name="Shipment"><file name="Collection.php" hash="bd6034947f6c67b1cc80936138890dfc"/></dir><file name="Shipment.php" hash="1b647da4d0a63b6a0a4e0eb7edac6a06"/></dir><file name="Observer.php" hash="d8657be32220dae140999112db280963"/><dir name="Option"><file name="Abstract.php" hash="eaba5ae86cba4a8232b5e64d4ff98e38"/><dir name="Action"><file name="Abstract.php" hash="8635b58b91e772f78effa3e15e95650f"/><file name="Carbon.php" hash="0df49140f10610b7bb4a23d48cbf51ec"/><file name="Footprints.php" hash="500bbb332a64729415bcb2a6a193abd6"/><file name="Insurance.php" hash="d1e70eac253aa071d9c1ef7a2943c8f5"/><file name="Markup.php" hash="6091ad03e12aeaf13561883d16f1c63d"/></dir><file name="Boolean.php" hash="fef69fd21c5de9f135342428e13e69d7"/><file name="Carbonoffset.php" hash="17c91c83e93c364a01eb63a72e0c9a74"/><file name="Footprints.php" hash="b57c2de2cc392fb48f76d61b99ad4c59"/><file name="Insurance.php" hash="74f421a73ed6363ce720f5af3c20ee5d"/></dir><file name="Options.php" hash="4834b4b722c5ba1eaee6c50651395659"/><file name="Pcs.php" hash="f0a03601d765f6772abc74f7e94c7ce0"/><file name="Quote.php" hash="72b6743ac693b4074cf904de3c928b95"/><file name="Shipment.php" hash="6b57bd421ac95f249db09feaca8c7f79"/><dir name="Shipping"><dir name="Carrier"><dir name="Temando"><dir name="Source"><file name="Method.php" hash="c3e22169434a20d6acbf93e5757714fd"/></dir></dir><file name="Temando.php" hash="7c7fbed312dd495cd1070f165e00b743"/></dir></dir><file name="Status.php" hash="6a9d2783a09b28eccbee278cf487d77f"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Form"><dir name="Field"><dir name="Required"><file name="Businessresidential.php" hash="e910070a9cf896e63e50dcc20135d9b4"/><file name="Country.php" hash="281aa176fa9c8deead10427d68f89fc8"/><file name="Location.php" hash="a6176f8aa745e45983ecafe54a5c62cc"/><file name="Text.php" hash="9a27ecf932ad86fdcbe6b9338a0ad766"/></dir></dir></dir></dir><dir name="Source"><file name="Carbon.php" hash="f7fdf1cb68cd462cc24dc79f3e9e937c"/><dir name="Client"><file name="Type.php" hash="8c7bc6cfc61db303d6521dcbfccca586"/></dir><file name="Country.php" hash="9f78a067c6a5bfb1f09cbe13e2a8f783"/><file name="Errorprocess.php" hash="de73413369a2d2576e9beceddcb67de9"/><file name="Footprints.php" hash="93581fe36831c12cde3aa9c921182ee5"/><file name="Insurance.php" hash="e4e86feec2d63927751eeef1f79639cf"/><file name="Labeltype.php" hash="84a96263fe91c34e949163e644e213bb"/><dir name="Origin"><file name="Type.php" hash="ef152aed2dca36860b78263c2488d418"/></dir><file name="Payment.php" hash="b7596b3675425b9b990567bfad88a019"/><file name="Pricing.php" hash="f0a2ca789be1a988631e5bbad24b07a9"/><file name="Readytime.php" hash="6840fffc73e10104977e54d512b4584a"/><file name="Regions.php" hash="9c85df73d0fa9c3e5e40428a5168134f"/><dir name="Rule"><dir name="Action"><dir name="Adjustment"><file name="Type.php" hash="d9db67d7452d9b6a89d84dbe41505d9b"/></dir><file name="Filter.php" hash="f2ddffbdc87a58c57a91d4822261f32b"/></dir><dir name="Condition"><file name="Time.php" hash="fecf942aed7ee0bd2e1acf2303b71ce3"/><file name="Type.php" hash="958e1516c33888917a945a444a8f79ba"/></dir><file name="Type.php" hash="69e2510c398c18c4851458b835c685f2"/></dir><dir name="Sales"><dir name="Order"><file name="Status.php" hash="ed15d292094826482ad4e8882794702d"/></dir></dir><dir name="Shipment"><file name="Class.php" hash="973bb5839634b28124213272a7b5dbb9"/><dir name="Packaging"><file name="Mode.php" hash="b4e1ca265e860c7b144579f128d28a5c"/></dir><file name="Packaging.php" hash="9cf1e7eda9275fe8c96ec4882918e02e"/><file name="Service.php" hash="0e4e5bf85eb70a26d25c0fbec1519926"/><file name="Status.php" hash="344d11d97aab4c1f977b9193a10ee105"/></dir><dir name="Unit"><file name="Measure.php" hash="d5a66b68d43dabd2475e9509608b3278"/><file name="Weight.php" hash="33507ff6d892989c2949de63922a247d"/></dir><file name="Unit.php" hash="0c8b786b4012a535339a39f4f86ec669"/><file name="Wizard.php" hash="fd1f7d1dea8e807f8cc9ecfe2c2dc830"/></dir><file name="Source.php" hash="c1e2741547a1a81d0926fdc0db710de4"/></dir></dir><file name="Wizard.php" hash="178e3a566708da82a1e408a1a0f4878b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CarrierController.php" hash="465e529e536ccc4bacbe96063960ed96"/><file name="JsonController.php" hash="3a9990307dcf5b001c18fc6c40182f29"/><file name="ManifestController.php" hash="4741045a13b33ae5678032b6aaf55b85"/><file name="ShipmentController.php" hash="dbb425502926bc5ae02731d3c01d7ae5"/><file name="WizardController.php" hash="a074a15166c4d6228a4583ec6cc5f52e"/></dir><file name="PcsController.php" hash="96561d4ae3f9bb44f1ffef779a6dce4c"/><file name="WizardController.php" hash="db44aa485493fab61b509f6e8fae3560"/></dir><dir name="etc"><file name="adminhtml.xml" hash="c780097d8cc5f57af5c63361f984cc53"/><file name="config.xml" hash="691716c4fcb64ead480a17556f3e4fa7"/><file name="system.xml" hash="754c7128e8ef862fe3ad171eaa091474"/></dir><dir name="sql"><dir name="temando_setup"><file name="mysql4-install-1.0.0.php" hash="8f22dad6cc2162119422a468b8af9941"/><file name="mysql4-upgrade-1.3.8-1.3.9.php" hash="6196267c6a1fe09161659e11505c9815"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="temando.xml" hash="237fb894c1c1c043252b09169bb3b112"/></dir><dir name="template"><dir name="temando"><dir name="temando"><file name="manifest.phtml" hash="8f16e0754f30696597318aa83055e8e6"/><file name="menu.phtml" hash="bc78fd42ac729ba19b4219018c052e21"/><file name="origin-avs.phtml" hash="2da4326466b0c2f581c6ecd4ffdf84a8"/><file name="region.phtml" hash="f2e8cbfbc57ef74a6b29925574de5cb1"/><dir name="shipment"><file name="anytime.phtml" hash="c4fcc5734b8740361df38f269231d606"/><file name="anywhere.phtml" hash="fcd32d682c06b12daddbc67405f3cf02"/><file name="boxes.phtml" hash="d2a8758ab1f7ff600b3eee0b4785552d"/><file name="insurance.phtml" hash="f3879be513ccc3e187d77156456b8033"/><file name="origin.phtml" hash="c53de035c9508d81c078501edcb70ef2"/><file name="products.phtml" hash="50a8ea7f8c1a26957222b031c19574ad"/><file name="quotes.phtml" hash="f7269534550b5b316da2e77ca23db5cc"/><file name="status.phtml" hash="3d54c1e6fd9f141fcf656e7e1d6faa98"/></dir><file name="shipment.phtml" hash="1241671844d42046b21240a2c38bb11d"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="temando.xml" hash="a73e4d56a1aac7198c0362a15822b937"/></dir><dir name="template"><dir name="temando"><dir name="temando"><dir name="checkout"><dir name="cart"><file name="shipping.phtml" hash="d501bc1ece10de7a9a3dccde68757dbf"/></dir><dir name="onepage"><dir name="delivery"><file name="options.phtml" hash="ad38b14142150612a0983849ed4238e9"/></dir></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="eff5b6cb90507e045b8ee51dae663052"/></dir></dir><dir name="onestep"><file name="options.phtml" hash="98531ee392e6978bf89dddcc3455937c"/><file name="shipping_method.phtml" hash="99c92bbdc269c1725762de538d43bc4c"/></dir><file name="pcs.phtml" hash="b7e3f5628f846afe259380be460a8d0b"/><dir name="product"><dir name="shipping"><file name="methods.phtml" hash="36c3f21e81bcd80c2406fffb6e72025c"/></dir><file name="shipping.phtml" hash="d639fe215ebb11d446477fcbece6a643"/></dir><dir name="shipping_method"><dir name="available"><file name="options_single.phtml" hash="72416b76aa5da5213a59dd8cc5b3dc0e"/></dir><file name="available.phtml" hash="9b35684046cb14d660a59697414a9197"/></dir><dir name="wizard"><file name="account.phtml" hash="72f40a25e1f4d3919ac359d70ed0ea20"/><file name="carriers.phtml" hash="50f59b8dc44524555bc70f1ed4713a7c"/><file name="catalog_product.phtml" hash="db9530c3756488f0052f1fe6ab76d1bb"/><file name="countries.phtml" hash="f2bb5321ec71f85f34e64adb70f714b9"/><file name="end.phtml" hash="0e15bfc374029c9c088d423a313fd405"/><file name="left.phtml" hash="415f16cc0434db85e8b5b19aaa2bf087"/><file name="origin.phtml" hash="a97ef2c7fe6ecf034c5649ea9c46492b"/><file name="rule.phtml" hash="bea3961cb3feacab76623ca4df95a4b4"/></dir><file name="wizard.phtml" hash="c7f8d13602b5b68374290b62a04ce97d"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="temando"><file name="autocomplete.js" hash="401e3126c3421cafeaadf67613b40d51"/><file name="avs.js" hash="18b7b8a01b945767842a25dbf4e21acd"/><file name="menu.js" hash="61c1ee9d0c9aec2161e85cc926d44c11"/></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="js"><file name="temando.js" hash="dd7f5c8137271c814a0a25d1db951879"/></dir><dir name="temando"><dir name="images"><file name="ajax-s-load.gif" hash="0ea8ba3fe3e60b73eda7d6de57fd8e01"/><file name="bg_notifications.gif" hash="d2a0489d0c3714bed22f9b06f4b81d43"/><file name="shadow.png" hash="b5b27e0dd88d44d4a5d8e63bb61a1239"/><file name="temando_logo.jpg" hash="04d2dbd664ff68a4be7364113f30572f"/></dir><file name="styles.css" hash="2d9c985c31622016db01e966974d70be"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="temando"><file name="autocomplete.css" hash="90387e5610631653a4bd97c7af3d444e"/><file name="cart.css" hash="f4456c3fe147244a12a7b68d7f4d0bc7"/><dir name="images"><file name="ajax-s-load.gif" hash="0ea8ba3fe3e60b73eda7d6de57fd8e01"/><file name="find_ext.png" hash="a6ba701a9256a2c775255965df1918c7"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="shadow.png" hash="b5b27e0dd88d44d4a5d8e63bb61a1239"/></dir><file name="product.css" hash="d1679e756012f66391758a09d0918986"/><file name="styles.css" hash="271bd9dd967c0eb83c6e10e9bfdee952"/></dir></dir><dir name="js"><dir name="temando"><file name="checkout.js" hash="5425f09ae3da50b0ac49e768b8b607d0"/><file name="product.js" hash="989198862c7674f23adbed4d3bfa3de5"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Temando_Temando.csv" hash="a12b7b049f65fdcd451e6be7b50b6133"/></dir></target></contents>
42
  <compatible/>
43
  <dependencies><required><php><min>5.2.13</min><max>6.0.0</max></php><extension><name>soap</name><min>1.2</min><max/></extension></required></dependencies>
44
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Temando_Temando</name>
4
+ <version>1.4.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software Licence</license>
7
  <channel>community</channel>
27
  &#x2022; Packaging logic to predict box sizes&#xD;
28
  </description>
29
  <notes>Temando Shipping Extension &#x2013; Starter Version&#xD;
30
+ &#x2022; Bug Fix: Fixed Access Denied problem for admin users without full admin permissions - introduced with Magento patch SUPEE-6285 </notes>
 
 
 
 
 
 
 
31
  <authors><author><name>Temando</name><user>Temando</user><email>marketing@temando.com</email></author></authors>
32
+ <date>2015-07-09</date>
33
+ <time>02:21:32</time>
34
+ <contents><target name="mageetc"><dir name="modules"><file name="Temando_Temando.xml" hash="61802a5dcba43fb186bf8c0ffac6950f"/></dir></target><target name="magecommunity"><dir name="Temando"><dir name="Temando"><dir name="Block"><dir name="Adminhtml"><dir name="Manifest"><dir name="Filter"><file name="Form.php" hash="b50d9538dc14b713e05e81b106d01e8d"/></dir><dir name="Grid"><dir name="Renderer"><file name="Checkbox.php" hash="aea0559a83dcf57cd3746700e0b154bc"/></dir></dir><file name="Grid.php" hash="883505cf6119ddd650023b103a6f5dd0"/></dir><file name="Manifest.php" hash="54fadcde4fc1eef4bfc3342fd753aa1b"/><dir name="Shipment"><dir name="Edit"><file name="Form.php" hash="f463cfd5a68fbcbbc39b411fd68c6658"/><dir name="Tab"><file name="Abstract.php" hash="40098655ffda3b1889af1c5776c72243"/><dir name="Form"><file name="Anytime.php" hash="356009570dc97be1405c1f7bde1055cf"/><file name="Anywhere.php" hash="cc6f0e2994f71a605dbd971ba280477b"/><file name="Boxes.php" hash="2814eb94147bdc8e6ceef3b56a5842f5"/><file name="Insurance.php" hash="0756ddbb577ff982e5cc048232d6cf0a"/><file name="Origin.php" hash="9b9fcbb04ce032f613e9f6cb8aad42de"/><file name="Products.php" hash="87e3bc8154bb6709185ee9c916d0c930"/><file name="Quotes.php" hash="1010634b24617ed25f5ddf1328d1f5f2"/><file name="Status.php" hash="c0781098106ac38b9aa3e9b2d07bbc48"/></dir><file name="Form.php" hash="bb67f340fdbb39634a3f018fa9955d87"/></dir><file name="Tabs.php" hash="aca2cc202217011258d18386fd07e1d0"/></dir><file name="Edit.php" hash="15a363348caf71ac5df906ec521ed172"/><file name="Grid.php" hash="f19927970dfad99e0a74d03950b68627"/></dir><file name="Shipment.php" hash="cdd48f2b3a19502bd6497ed9684a88be"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Rule.php" hash="480867b8f34def26ce2674d4e1453e29"/><file name="Update.php" hash="337722ca578208b389b358b25abef90a"/><file name="Warehouse.php" hash="7b97f8cb48d60c9ff5f92c57f164a72f"/></dir><dir name="Field"><file name="Insurance.php" hash="023112e260cd46ae7754905573a0e367"/><file name="Required.php" hash="ec11ae46b3eeb3ea26c6939279d1b6e9"/></dir><dir name="Fieldset"><file name="General.php" hash="ea8cbf0459c07fc05016354a5d6241c9"/></dir></dir></dir></dir></dir><dir name="Cart"><file name="Shipping.php" hash="9e14409aeabaa093c58e74e3157f4213"/></dir><dir name="Onepage"><dir name="Shipping"><dir name="Delivery"><file name="Options.php" hash="70542d028386dae168367f49e0ddf640"/></dir><dir name="Method"><dir name="Available"><file name="Single.php" hash="de8cdd692a3e5e3ca69e692c42b9f04f"/></dir><file name="Available.php" hash="bcadbfa218104266209452b860375f4f"/></dir></dir></dir><dir name="Product"><dir name="Shipping"><file name="Methods.php" hash="783981474bafb42e55b4f0d7a32d9c7a"/></dir><file name="Shipping.php" hash="e565c0fdc0463b7f0911d38e16a53869"/></dir><dir name="Wizard"><file name="Html.php" hash="47bf2dc61bdd8f0ef67f239c7d762f7b"/></dir></dir><dir name="Helper"><file name="Data.php" hash="416763e81599edea5e90b007640368f6"/><file name="Functions.php" hash="c38f2b99d9dedc090ecb27456519f30a"/><file name="Wizard.php" hash="087b24ad159480f93f12a66d867a76cf"/></dir><dir name="Model"><dir name="Api"><file name="Client.php" hash="c42494d74bad73eab7d6227ccbc87447"/><dir name="Request"><file name="Anything.php" hash="2c131340da62725650c3e030524e2366"/><file name="Anythings.php" hash="54f0e75a03012f593f10849f1e055025"/><file name="Anytime.php" hash="887460ca033594de365b272802c4b059"/><file name="Anywhere.php" hash="e62fcfd8158a030b9acf5e2495662e85"/></dir><file name="Request.php" hash="e0c7ef938d1779f150671255592375a0"/></dir><file name="Box.php" hash="e4ddd66d649d493b6ad594499fb57c71"/><file name="Carrier.php" hash="8bf261a034342beefc1f043e8abf2f28"/><dir name="Checkout"><dir name="Delivery"><file name="Options.php" hash="dc384fcc84d9616ff6898a33280fb792"/></dir></dir><dir name="Entity"><dir name="Attribute"><dir name="Source"><dir name="Packaging"><file name="Mode.php" hash="aa511a6ea13320cec67902be65e4896a"/></dir><file name="Packaging.php" hash="51fab970661c20939397401ee92e0f58"/></dir></dir></dir><file name="Manifest.php" hash="e9a2eecb24647dd51209e6022d92dc97"/><dir name="Mysql4"><dir name="Box"><file name="Collection.php" hash="f2e414a79ed7b3b3e43a486030efb559"/></dir><file name="Box.php" hash="872126d53b4716b3efd6a9cec4c04272"/><dir name="Carrier"><file name="Collection.php" hash="4731b77ae10423967476d5e368a75f80"/></dir><file name="Carrier.php" hash="cd62eda71a2c6c07081aa187b0c35c2f"/><dir name="Manifest"><file name="Collection.php" hash="899f782ab34d6c008972296f59c9cde6"/></dir><file name="Manifest.php" hash="e5e474e5074d4f7b5405f7002add1602"/><dir name="Quote"><file name="Collection.php" hash="90fecb1146d26107773571eab8a3bb6b"/></dir><file name="Quote.php" hash="ca1c40896cdf2e91f1a4e40bd48e0158"/><dir name="Shipment"><file name="Collection.php" hash="bd6034947f6c67b1cc80936138890dfc"/></dir><file name="Shipment.php" hash="1b647da4d0a63b6a0a4e0eb7edac6a06"/></dir><file name="Observer.php" hash="d8657be32220dae140999112db280963"/><dir name="Option"><file name="Abstract.php" hash="eaba5ae86cba4a8232b5e64d4ff98e38"/><dir name="Action"><file name="Abstract.php" hash="8635b58b91e772f78effa3e15e95650f"/><file name="Carbon.php" hash="0df49140f10610b7bb4a23d48cbf51ec"/><file name="Footprints.php" hash="500bbb332a64729415bcb2a6a193abd6"/><file name="Insurance.php" hash="d1e70eac253aa071d9c1ef7a2943c8f5"/><file name="Markup.php" hash="6091ad03e12aeaf13561883d16f1c63d"/></dir><file name="Boolean.php" hash="fef69fd21c5de9f135342428e13e69d7"/><file name="Carbonoffset.php" hash="17c91c83e93c364a01eb63a72e0c9a74"/><file name="Footprints.php" hash="b57c2de2cc392fb48f76d61b99ad4c59"/><file name="Insurance.php" hash="74f421a73ed6363ce720f5af3c20ee5d"/></dir><file name="Options.php" hash="4834b4b722c5ba1eaee6c50651395659"/><file name="Pcs.php" hash="f0a03601d765f6772abc74f7e94c7ce0"/><file name="Quote.php" hash="72b6743ac693b4074cf904de3c928b95"/><file name="Shipment.php" hash="6b57bd421ac95f249db09feaca8c7f79"/><dir name="Shipping"><dir name="Carrier"><dir name="Temando"><dir name="Source"><file name="Method.php" hash="c3e22169434a20d6acbf93e5757714fd"/></dir></dir><file name="Temando.php" hash="7c7fbed312dd495cd1070f165e00b743"/></dir></dir><file name="Status.php" hash="6a9d2783a09b28eccbee278cf487d77f"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="Form"><dir name="Field"><dir name="Required"><file name="Businessresidential.php" hash="e910070a9cf896e63e50dcc20135d9b4"/><file name="Country.php" hash="281aa176fa9c8deead10427d68f89fc8"/><file name="Location.php" hash="a6176f8aa745e45983ecafe54a5c62cc"/><file name="Text.php" hash="9a27ecf932ad86fdcbe6b9338a0ad766"/></dir></dir></dir></dir><dir name="Source"><file name="Carbon.php" hash="f7fdf1cb68cd462cc24dc79f3e9e937c"/><dir name="Client"><file name="Type.php" hash="8c7bc6cfc61db303d6521dcbfccca586"/></dir><file name="Country.php" hash="9f78a067c6a5bfb1f09cbe13e2a8f783"/><file name="Errorprocess.php" hash="de73413369a2d2576e9beceddcb67de9"/><file name="Footprints.php" hash="93581fe36831c12cde3aa9c921182ee5"/><file name="Insurance.php" hash="e4e86feec2d63927751eeef1f79639cf"/><file name="Labeltype.php" hash="84a96263fe91c34e949163e644e213bb"/><dir name="Origin"><file name="Type.php" hash="ef152aed2dca36860b78263c2488d418"/></dir><file name="Payment.php" hash="b7596b3675425b9b990567bfad88a019"/><file name="Pricing.php" hash="f0a2ca789be1a988631e5bbad24b07a9"/><file name="Readytime.php" hash="6840fffc73e10104977e54d512b4584a"/><file name="Regions.php" hash="9c85df73d0fa9c3e5e40428a5168134f"/><dir name="Rule"><dir name="Action"><dir name="Adjustment"><file name="Type.php" hash="d9db67d7452d9b6a89d84dbe41505d9b"/></dir><file name="Filter.php" hash="f2ddffbdc87a58c57a91d4822261f32b"/></dir><dir name="Condition"><file name="Time.php" hash="fecf942aed7ee0bd2e1acf2303b71ce3"/><file name="Type.php" hash="958e1516c33888917a945a444a8f79ba"/></dir><file name="Type.php" hash="69e2510c398c18c4851458b835c685f2"/></dir><dir name="Sales"><dir name="Order"><file name="Status.php" hash="ed15d292094826482ad4e8882794702d"/></dir></dir><dir name="Shipment"><file name="Class.php" hash="973bb5839634b28124213272a7b5dbb9"/><dir name="Packaging"><file name="Mode.php" hash="b4e1ca265e860c7b144579f128d28a5c"/></dir><file name="Packaging.php" hash="9cf1e7eda9275fe8c96ec4882918e02e"/><file name="Service.php" hash="0e4e5bf85eb70a26d25c0fbec1519926"/><file name="Status.php" hash="344d11d97aab4c1f977b9193a10ee105"/></dir><dir name="Unit"><file name="Measure.php" hash="d5a66b68d43dabd2475e9509608b3278"/><file name="Weight.php" hash="33507ff6d892989c2949de63922a247d"/></dir><file name="Unit.php" hash="0c8b786b4012a535339a39f4f86ec669"/><file name="Wizard.php" hash="fd1f7d1dea8e807f8cc9ecfe2c2dc830"/></dir><file name="Source.php" hash="c1e2741547a1a81d0926fdc0db710de4"/></dir></dir><file name="Wizard.php" hash="178e3a566708da82a1e408a1a0f4878b"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="CarrierController.php" hash="1abae5c185e766a5467d10c271291002"/><file name="JsonController.php" hash="29e155de5321e0409b0eef01afd4e048"/><file name="ManifestController.php" hash="80cbadab1ed57a77f1a8c513ff72219b"/><file name="ShipmentController.php" hash="aaa9e1a37043a86e7cb12694001e450f"/><file name="WizardController.php" hash="63e55be4089b4f1764e62c66ed757d31"/></dir><file name="PcsController.php" hash="96561d4ae3f9bb44f1ffef779a6dce4c"/><file name="WizardController.php" hash="db44aa485493fab61b509f6e8fae3560"/></dir><dir name="etc"><file name="adminhtml.xml" hash="c780097d8cc5f57af5c63361f984cc53"/><file name="config.xml" hash="be064b98ee2519dd14629b6c40cd2744"/><file name="system.xml" hash="754c7128e8ef862fe3ad171eaa091474"/></dir><dir name="sql"><dir name="temando_setup"><file name="mysql4-install-1.0.0.php" hash="8f22dad6cc2162119422a468b8af9941"/><file name="mysql4-upgrade-1.3.8-1.3.9.php" hash="6196267c6a1fe09161659e11505c9815"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="temando.xml" hash="237fb894c1c1c043252b09169bb3b112"/></dir><dir name="template"><dir name="temando"><dir name="temando"><file name="manifest.phtml" hash="8f16e0754f30696597318aa83055e8e6"/><file name="menu.phtml" hash="bc78fd42ac729ba19b4219018c052e21"/><file name="origin-avs.phtml" hash="2da4326466b0c2f581c6ecd4ffdf84a8"/><file name="region.phtml" hash="f2e8cbfbc57ef74a6b29925574de5cb1"/><dir name="shipment"><file name="anytime.phtml" hash="c4fcc5734b8740361df38f269231d606"/><file name="anywhere.phtml" hash="fcd32d682c06b12daddbc67405f3cf02"/><file name="boxes.phtml" hash="d2a8758ab1f7ff600b3eee0b4785552d"/><file name="insurance.phtml" hash="f3879be513ccc3e187d77156456b8033"/><file name="origin.phtml" hash="c53de035c9508d81c078501edcb70ef2"/><file name="products.phtml" hash="50a8ea7f8c1a26957222b031c19574ad"/><file name="quotes.phtml" hash="f7269534550b5b316da2e77ca23db5cc"/><file name="status.phtml" hash="3d54c1e6fd9f141fcf656e7e1d6faa98"/></dir><file name="shipment.phtml" hash="1241671844d42046b21240a2c38bb11d"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="temando.xml" hash="a73e4d56a1aac7198c0362a15822b937"/></dir><dir name="template"><dir name="temando"><dir name="temando"><dir name="checkout"><dir name="cart"><file name="shipping.phtml" hash="d501bc1ece10de7a9a3dccde68757dbf"/></dir><dir name="onepage"><dir name="delivery"><file name="options.phtml" hash="ad38b14142150612a0983849ed4238e9"/></dir></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="eff5b6cb90507e045b8ee51dae663052"/></dir></dir><dir name="onestep"><file name="options.phtml" hash="98531ee392e6978bf89dddcc3455937c"/><file name="shipping_method.phtml" hash="99c92bbdc269c1725762de538d43bc4c"/></dir><file name="pcs.phtml" hash="b7e3f5628f846afe259380be460a8d0b"/><dir name="product"><dir name="shipping"><file name="methods.phtml" hash="36c3f21e81bcd80c2406fffb6e72025c"/></dir><file name="shipping.phtml" hash="d639fe215ebb11d446477fcbece6a643"/></dir><dir name="shipping_method"><dir name="available"><file name="options_single.phtml" hash="72416b76aa5da5213a59dd8cc5b3dc0e"/></dir><file name="available.phtml" hash="9b35684046cb14d660a59697414a9197"/></dir><dir name="wizard"><file name="account.phtml" hash="72f40a25e1f4d3919ac359d70ed0ea20"/><file name="carriers.phtml" hash="50f59b8dc44524555bc70f1ed4713a7c"/><file name="catalog_product.phtml" hash="db9530c3756488f0052f1fe6ab76d1bb"/><file name="countries.phtml" hash="f2bb5321ec71f85f34e64adb70f714b9"/><file name="end.phtml" hash="0e15bfc374029c9c088d423a313fd405"/><file name="left.phtml" hash="415f16cc0434db85e8b5b19aaa2bf087"/><file name="origin.phtml" hash="a97ef2c7fe6ecf034c5649ea9c46492b"/><file name="rule.phtml" hash="bea3961cb3feacab76623ca4df95a4b4"/></dir><file name="wizard.phtml" hash="c7f8d13602b5b68374290b62a04ce97d"/></dir></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="temando"><file name="autocomplete.js" hash="401e3126c3421cafeaadf67613b40d51"/><file name="avs.js" hash="18b7b8a01b945767842a25dbf4e21acd"/><file name="menu.js" hash="61c1ee9d0c9aec2161e85cc926d44c11"/></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="js"><file name="temando.js" hash="dd7f5c8137271c814a0a25d1db951879"/></dir><dir name="temando"><dir name="images"><file name="ajax-s-load.gif" hash="0ea8ba3fe3e60b73eda7d6de57fd8e01"/><file name="bg_notifications.gif" hash="d2a0489d0c3714bed22f9b06f4b81d43"/><file name="shadow.png" hash="b5b27e0dd88d44d4a5d8e63bb61a1239"/><file name="temando_logo.jpg" hash="04d2dbd664ff68a4be7364113f30572f"/></dir><file name="styles.css" hash="2d9c985c31622016db01e966974d70be"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="temando"><file name="autocomplete.css" hash="90387e5610631653a4bd97c7af3d444e"/><file name="cart.css" hash="f4456c3fe147244a12a7b68d7f4d0bc7"/><dir name="images"><file name="ajax-s-load.gif" hash="0ea8ba3fe3e60b73eda7d6de57fd8e01"/><file name="find_ext.png" hash="a6ba701a9256a2c775255965df1918c7"/><file name="i_shipping.gif" hash="91a0d2cc2eb2391f90ec8a75c04b3183"/><file name="shadow.png" hash="b5b27e0dd88d44d4a5d8e63bb61a1239"/></dir><file name="product.css" hash="d1679e756012f66391758a09d0918986"/><file name="styles.css" hash="271bd9dd967c0eb83c6e10e9bfdee952"/></dir></dir><dir name="js"><dir name="temando"><file name="checkout.js" hash="5425f09ae3da50b0ac49e768b8b607d0"/><file name="product.js" hash="989198862c7674f23adbed4d3bfa3de5"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Temando_Temando.csv" hash="a12b7b049f65fdcd451e6be7b50b6133"/></dir></target></contents>
35
  <compatible/>
36
  <dependencies><required><php><min>5.2.13</min><max>6.0.0</max></php><extension><name>soap</name><min>1.2</min><max/></extension></required></dependencies>
37
  </package>