Magento_Mobile - Version 1.9.3.0

Version Notes

1.9.3.0

Download this release

Release Info

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


Code changes from version 1.9.2.4 to 1.9.3.0

app/code/core/Mage/XmlConnect/Block/Adminhtml/Mobile/Edit/Tab/Design.php CHANGED
@@ -95,4 +95,21 @@ class Mage_XmlConnect_Block_Adminhtml_Mobile_Edit_Tab_Design
95
  {
96
  return true;
97
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
95
  {
96
  return true;
97
  }
98
+
99
+ /**
100
+ * Create browse button template
101
+ *
102
+ * @return string
103
+ */
104
+ public function getBrowseButtonHtml()
105
+ {
106
+ return $this->getLayout()->createBlock('adminhtml/widget_button')
107
+ ->addData(array(
108
+ 'before_html' => '<div style="display:inline-block; " id="{{file_field}}_{{id}}_file-browse">',
109
+ 'after_html' => '</div>',
110
+ 'id' => '{{file_field}}_{{id}}_file-browse_button',
111
+ 'label' => Mage::helper('uploader')->__('...'),
112
+ 'type' => 'button',
113
+ ))->toHtml();
114
+ }
115
  }
app/code/core/Mage/XmlConnect/Block/Adminhtml/Mobile/Edit/Tab/Design/Images.php CHANGED
@@ -31,7 +31,7 @@
31
  * @package Mage_Xmlconnect
32
  * @author Magento Core Team <core@magentocommerce.com>
33
  */
34
- class Mage_XmlConnect_Block_Adminhtml_Mobile_Edit_Tab_Design_Images extends Mage_Adminhtml_Block_Template
35
  {
36
  /**
37
  * Init block, set preview template
@@ -116,42 +116,56 @@ class Mage_XmlConnect_Block_Adminhtml_Mobile_Edit_Tab_Design_Images extends Mage
116
  'application_id' => $this->getApplicationId());
117
 
118
  if (isset($image['image_id'])) {
119
- $this->getConfig()->setFileSave(Mage::getModel('xmlconnect/images')->getImageUrl($image['image_file']))
120
- ->setImageId($image['image_id']);
121
-
122
- $this->getConfig()->setThumbnail(Mage::getModel('xmlconnect/images')->getCustomSizeImageUrl(
 
123
  $image['image_file'],
124
  Mage_XmlConnect_Helper_Data::THUMBNAIL_IMAGE_WIDTH,
125
  Mage_XmlConnect_Helper_Data::THUMBNAIL_IMAGE_HEIGHT
126
- ))->setImageId($image['image_id']);
127
 
128
  $imageActionData = Mage::helper('xmlconnect')->getApplication()->getImageActionModel()
129
  ->getImageActionData($image['image_id']);
130
  if ($imageActionData) {
131
- $this->getConfig()->setImageActionData($imageActionData);
132
  }
133
  }
134
 
135
- if (isset($image['show_uploader'])) {
136
- $this->getConfig()->setShowUploader($image['show_uploader']);
137
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
 
139
- $this->getConfig()->setUrl(
140
- Mage::getModel('adminhtml/url')->addSessionParam()->getUrl('*/*/uploadimages', $params)
141
- );
142
- $this->getConfig()->setParams(array('form_key' => $this->getFormKey()));
143
- $this->getConfig()->setFileField($image['image_type']);
144
- $this->getConfig()->setFilters(array(
145
- 'images' => array(
146
- 'label' => Mage::helper('adminhtml')->__('Images (.gif, .jpg, .png)'),
147
- 'files' => array('*.gif', '*.jpg','*.jpeg', '*.png')
148
- )));
149
- $this->getConfig()->setReplaceBrowseWithRemove(true);
150
- $this->getConfig()->setWidth('32');
151
- $this->getConfig()->setHideUploadButton(true);
152
- $this->getConfig()->setImageCount($this->getImageCount());
153
-
154
- return $this->getConfig()->getData();
155
  }
156
 
157
  /**
@@ -168,15 +182,12 @@ class Mage_XmlConnect_Block_Adminhtml_Mobile_Edit_Tab_Design_Images extends Mage
168
  /**
169
  * Retrieve image config object
170
  *
171
- * @return Varien_Object
 
172
  */
173
  public function getConfig()
174
  {
175
- if(is_null($this->_config)) {
176
- $this->_config = new Varien_Object();
177
- }
178
-
179
- return $this->_config;
180
  }
181
 
182
  /**
@@ -186,7 +197,13 @@ class Mage_XmlConnect_Block_Adminhtml_Mobile_Edit_Tab_Design_Images extends Mage
186
  */
187
  public function clearConfig()
188
  {
189
- $this->_config = null;
 
 
 
 
 
 
190
  return $this;
191
  }
192
  }
31
  * @package Mage_Xmlconnect
32
  * @author Magento Core Team <core@magentocommerce.com>
33
  */
34
+ class Mage_XmlConnect_Block_Adminhtml_Mobile_Edit_Tab_Design_Images extends Mage_Uploader_Block_Single
35
  {
36
  /**
37
  * Init block, set preview template
116
  'application_id' => $this->getApplicationId());
117
 
118
  if (isset($image['image_id'])) {
119
+ $this->getMiscConfig()->setData('file_save',
120
+ Mage::getModel('xmlconnect/images')->getImageUrl($image['image_file']))
121
+ ->setImageId($image['image_id']
122
+ )->setData('thumbnail',
123
+ Mage::getModel('xmlconnect/images')->getCustomSizeImageUrl(
124
  $image['image_file'],
125
  Mage_XmlConnect_Helper_Data::THUMBNAIL_IMAGE_WIDTH,
126
  Mage_XmlConnect_Helper_Data::THUMBNAIL_IMAGE_HEIGHT
127
+ ))->setData('image_id', $image['image_id']);
128
 
129
  $imageActionData = Mage::helper('xmlconnect')->getApplication()->getImageActionModel()
130
  ->getImageActionData($image['image_id']);
131
  if ($imageActionData) {
132
+ $this->getMiscConfig()->setData('image_action_data', $imageActionData);
133
  }
134
  }
135
 
136
+ $this->getUploaderConfig()
137
+ ->setFileParameterName($image['image_type'])
138
+ ->setTarget(
139
+ Mage::getModel('adminhtml/url')->addSessionParam()->getUrl('*/*/uploadimages', $params)
140
+ );
141
+
142
+ $this->getButtonConfig()
143
+ ->setAttributes(
144
+ array('accept' => $this->getButtonConfig()->getMimeTypesByExtensions('gif, jpg, jpeg, png'))
145
+ );
146
+ $this->getMiscConfig()
147
+ ->setReplaceBrowseWithRemove(true)
148
+ ->setData('image_count', $this->getImageCount())
149
+ ;
150
+
151
+ return parent::getJsonConfig();
152
+ }
153
 
154
+ /**
155
+ * Prepare layout, change button and set front-end element ids mapping
156
+ *
157
+ * @return $this
158
+ */
159
+ protected function _prepareLayout()
160
+ {
161
+ parent::_prepareLayout();
162
+
163
+ $this->_addElementIdsMapping(array(
164
+ 'container' => $this->getHtmlId() . '-new',
165
+ 'idToReplace' => $this->getHtmlId(),
166
+ ));
167
+
168
+ return $this;
 
169
  }
170
 
171
  /**
182
  /**
183
  * Retrieve image config object
184
  *
185
+ * @deprecated
186
+ * @return $this
187
  */
188
  public function getConfig()
189
  {
190
+ return $this;
 
 
 
 
191
  }
192
 
193
  /**
197
  */
198
  public function clearConfig()
199
  {
200
+ $this->getMiscConfig()
201
+ ->unsetData('image_id')
202
+ ->unsetData('file_save')
203
+ ->unsetData('thumbnail')
204
+ ->unsetData('image_count')
205
+ ;
206
+ $this->getUploaderConfig()->unsetFileParameterName();
207
  return $this;
208
  }
209
  }
app/code/core/Mage/XmlConnect/Helper/Image.php CHANGED
@@ -111,8 +111,12 @@ class Mage_XmlConnect_Helper_Image extends Mage_Core_Helper_Abstract
111
  Mage::throwException(Mage::helper('xmlconnect')->__('File can\'t be uploaded.'));
112
  } elseif ($e->getMessage() == 'Disallowed file type.') {
113
  $filename = $_FILES[$field]['name'];
 
114
  Mage::throwException(
115
- Mage::helper('xmlconnect')->__('Error while uploading file "%s". Disallowed file type. Only "jpg", "jpeg", "gif", "png" are allowed.', $filename)
 
 
 
116
  );
117
  } else {
118
  Mage::logException($e);
@@ -158,16 +162,19 @@ class Mage_XmlConnect_Helper_Image extends Mage_Core_Helper_Abstract
158
  */
159
  if (!file_exists($originalSizeFileName)) {
160
  $oldFileName = $this->getOldUploadDir() . DS . $fileName;
 
161
  if (file_exists($oldFileName)) {
162
  if (!(copy($oldFileName, $originalSizeFileName) && (is_readable($customSizeFileName)
163
  || chmod($customSizeFileName, 0644))
164
  )) {
165
  Mage::throwException(
166
- Mage::helper('xmlconnect')->__('Error while processing file "%s".', $fileName)
 
167
  );
168
  }
169
  } else {
170
- Mage::throwException(Mage::helper('xmlconnect')->__('No such file "%s".', $fileName));
 
171
  }
172
  }
173
 
@@ -180,7 +187,9 @@ class Mage_XmlConnect_Helper_Image extends Mage_Core_Helper_Abstract
180
  if (isset($_FILES[$fieldPath]) && is_array($_FILES[$fieldPath]) && isset($_FILES[$fieldPath]['name'])) {
181
  $fileName = $_FILES[$fieldPath]['name'];
182
  }
183
- Mage::throwException(Mage::helper('xmlconnect')->__('Error while uploading file "%s".', $fileName));
 
 
184
  }
185
  return $customSizeFileName;
186
  }
111
  Mage::throwException(Mage::helper('xmlconnect')->__('File can\'t be uploaded.'));
112
  } elseif ($e->getMessage() == 'Disallowed file type.') {
113
  $filename = $_FILES[$field]['name'];
114
+ $io = new Varien_Io_File();
115
  Mage::throwException(
116
+ Mage::helper('xmlconnect')->__(
117
+ 'Error while uploading file "%s".' .
118
+ ' Disallowed file type. Only "jpg", "jpeg", "gif", "png" are allowed.',
119
+ $io->getFilteredPath($filename))
120
  );
121
  } else {
122
  Mage::logException($e);
162
  */
163
  if (!file_exists($originalSizeFileName)) {
164
  $oldFileName = $this->getOldUploadDir() . DS . $fileName;
165
+ $io = new Varien_Io_File();
166
  if (file_exists($oldFileName)) {
167
  if (!(copy($oldFileName, $originalSizeFileName) && (is_readable($customSizeFileName)
168
  || chmod($customSizeFileName, 0644))
169
  )) {
170
  Mage::throwException(
171
+ Mage::helper('xmlconnect')->__('Error while processing file "%s".',
172
+ $io->getFilteredPath($fileName))
173
  );
174
  }
175
  } else {
176
+ Mage::throwException(Mage::helper('xmlconnect')->__('No such file "%s".',
177
+ $io->getFilteredPath($fileName)));
178
  }
179
  }
180
 
187
  if (isset($_FILES[$fieldPath]) && is_array($_FILES[$fieldPath]) && isset($_FILES[$fieldPath]['name'])) {
188
  $fileName = $_FILES[$fieldPath]['name'];
189
  }
190
+ $io = new Varien_Io_File();
191
+ Mage::throwException(Mage::helper('xmlconnect')->__('Error while uploading file "%s".',
192
+ $io->getFilteredPath($fileName)));
193
  }
194
  return $customSizeFileName;
195
  }
app/code/core/Mage/XmlConnect/Helper/Theme.php CHANGED
@@ -332,7 +332,8 @@ EOT;
332
  }
333
 
334
  if (!$ioFile->cp($src, $dst)) {
335
- Mage::throwException(Mage::helper('xmlconnect')->__('Can\'t copy file "%s" to "%s".', $src, $dst));
 
336
  } else {
337
  $ioFile->chmod($dst, 0755);
338
  }
332
  }
333
 
334
  if (!$ioFile->cp($src, $dst)) {
335
+ Mage::throwException(Mage::helper('xmlconnect')->__('Can\'t copy file "%s" to "%s".',
336
+ $ioFile->getFilteredPath($src), $ioFile->getFilteredPath($dst)));
337
  } else {
338
  $ioFile->chmod($dst, 0755);
339
  }
app/code/core/Mage/XmlConnect/Model/Theme.php CHANGED
@@ -62,12 +62,14 @@ class Mage_XmlConnect_Model_Theme
62
  */
63
  public function __construct($file)
64
  {
 
65
  $this->_file = $file;
66
  if (!file_exists($file)) {
67
- Mage::throwException(Mage::helper('xmlconnect')->__('File doesn\'t exist "%s".', $file));
 
68
  }
69
  if (!is_readable($file)) {
70
- Mage::throwException(Mage::helper('xmlconnect')->__('Can\'t read file "%s".', $file));
71
  }
72
  try {
73
  $text = file_get_contents($file);
@@ -190,7 +192,8 @@ class Mage_XmlConnect_Model_Theme
190
  $ioFile = new Varien_Io_File();
191
  if (!$ioFile->cp($currentThemeFileName, $filePath)) {
192
  Mage::throwException(
193
- Mage::helper('xmlconnect')->__('Can\'t copy file "%s" to "%s".', $currentThemeFileName, $filePath)
 
194
  );
195
  } else {
196
  $ioFile->chmod($filePath, 0755);
@@ -320,7 +323,9 @@ class Mage_XmlConnect_Model_Theme
320
  if (is_writeable($this->_file)) {
321
  file_put_contents($this->_file, $xml->asXML());
322
  } else {
323
- Mage::throwException(Mage::helper('xmlconnect')->__('Can\'t write to file "%s".', $this->_file));
 
 
324
  }
325
  }
326
  }
62
  */
63
  public function __construct($file)
64
  {
65
+ $io = new Varien_Io_File();
66
  $this->_file = $file;
67
  if (!file_exists($file)) {
68
+ Mage::throwException(Mage::helper('xmlconnect')->__('File doesn\'t exist "%s".',
69
+ $io->getFilteredPath($file)));
70
  }
71
  if (!is_readable($file)) {
72
+ Mage::throwException(Mage::helper('xmlconnect')->__('Can\'t read file "%s".', $io->getFilteredPath($file)));
73
  }
74
  try {
75
  $text = file_get_contents($file);
192
  $ioFile = new Varien_Io_File();
193
  if (!$ioFile->cp($currentThemeFileName, $filePath)) {
194
  Mage::throwException(
195
+ Mage::helper('xmlconnect')->__('Can\'t copy file "%s" to "%s".',
196
+ $ioFile->getFilteredPath($currentThemeFileName), $ioFile->getFilteredPath($filePath))
197
  );
198
  } else {
199
  $ioFile->chmod($filePath, 0755);
323
  if (is_writeable($this->_file)) {
324
  file_put_contents($this->_file, $xml->asXML());
325
  } else {
326
+ $io = new Varien_Io_File();
327
+ Mage::throwException(Mage::helper('xmlconnect')->__('Can\'t write to file "%s".',
328
+ $io->getFilteredPath($this->_file)));
329
  }
330
  }
331
  }
app/code/core/Mage/XmlConnect/controllers/Adminhtml/MobileController.php CHANGED
@@ -337,7 +337,7 @@ class Mage_XmlConnect_Adminhtml_MobileController extends Mage_Adminhtml_Controll
337
  curl_setopt($curlHandler, CURLOPT_POSTFIELDS, $params);
338
  curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, 2);
339
  curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, 1);
340
- curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, 0);
341
  curl_setopt($curlHandler, CURLOPT_TIMEOUT, 60);
342
 
343
  // Execute the request.
@@ -1377,9 +1377,9 @@ class Mage_XmlConnect_Adminhtml_MobileController extends Mage_Adminhtml_Controll
1377
  public function uploadImagesAction()
1378
  {
1379
  $data = $this->getRequest()->getParams();
1380
- if (isset($data['Filename'])) {
1381
  // Add random string to uploaded file new
1382
- $newFileName = Mage::helper('core')->getRandomString(5) . '_' . $data['Filename'];
1383
  }
1384
  try {
1385
  $this->_initApp();
337
  curl_setopt($curlHandler, CURLOPT_POSTFIELDS, $params);
338
  curl_setopt($curlHandler, CURLOPT_SSL_VERIFYHOST, 2);
339
  curl_setopt($curlHandler, CURLOPT_RETURNTRANSFER, 1);
340
+ curl_setopt($curlHandler, CURLOPT_SSL_VERIFYPEER, 1);
341
  curl_setopt($curlHandler, CURLOPT_TIMEOUT, 60);
342
 
343
  // Execute the request.
1377
  public function uploadImagesAction()
1378
  {
1379
  $data = $this->getRequest()->getParams();
1380
+ if (isset($data['flowFilename'])) {
1381
  // Add random string to uploaded file new
1382
+ $newFileName = Mage::helper('core')->getRandomString(5) . '_' . $data['flowFilename'];
1383
  }
1384
  try {
1385
  $this->_initApp();
app/design/adminhtml/default/default/layout/xmlconnect.xml CHANGED
@@ -75,9 +75,10 @@
75
  <action method="setCanLoadExtJs"><flag>1</flag></action>
76
  <action method="addJs"><script>mage/adminhtml/variables.js</script></action>
77
  <action method="addJs"><script>mage/adminhtml/wysiwyg/widget.js</script></action>
78
- <action method="addJs"><script>lib/flex.js</script></action>
79
- <action method="addJs"><script>lib/FABridge.js</script></action>
80
- <action method="addJs"><script>mage/adminhtml/flexuploader.js</script></action>
 
81
  <action method="addJs"><script>mage/adminhtml/browser.js</script></action>
82
  <action method="addJs"><script>prototype/window.js</script></action>
83
  <action method="addItem"><type>js_css</type><name>prototype/windows/themes/default.css</name></action>
@@ -104,7 +105,6 @@
104
  <block type="xmlconnect/adminhtml_mobile_edit_tab_offlineCatalog" name="mobile_edit_tab_offlineCatalog"/>
105
  <block type="xmlconnect/adminhtml_mobile_edit_tab_general" name="mobile_edit_tab_general"/>
106
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design" name="mobile_edit_tab_design">
107
- <block type="adminhtml/media_uploader" name="adminhtml_media_uploader" as="media_uploader"/>
108
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design_images" name="mobile_edit_tab_design_images" as="design_images" />
109
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design_accordion" name="mobile_edit_tab_design_accordion" as="design_accordion">
110
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design_accordion_themes" name="accordion_themes" />
75
  <action method="setCanLoadExtJs"><flag>1</flag></action>
76
  <action method="addJs"><script>mage/adminhtml/variables.js</script></action>
77
  <action method="addJs"><script>mage/adminhtml/wysiwyg/widget.js</script></action>
78
+ <action method="addJs"><name>lib/uploader/flow.min.js</name></action>
79
+ <action method="addJs"><name>lib/uploader/fusty-flow.js</name></action>
80
+ <action method="addJs"><name>lib/uploader/fusty-flow-factory.js</name></action>
81
+ <action method="addJs"><name>mage/adminhtml/uploader/instance.js</name></action>
82
  <action method="addJs"><script>mage/adminhtml/browser.js</script></action>
83
  <action method="addJs"><script>prototype/window.js</script></action>
84
  <action method="addItem"><type>js_css</type><name>prototype/windows/themes/default.css</name></action>
105
  <block type="xmlconnect/adminhtml_mobile_edit_tab_offlineCatalog" name="mobile_edit_tab_offlineCatalog"/>
106
  <block type="xmlconnect/adminhtml_mobile_edit_tab_general" name="mobile_edit_tab_general"/>
107
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design" name="mobile_edit_tab_design">
 
108
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design_images" name="mobile_edit_tab_design_images" as="design_images" />
109
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design_accordion" name="mobile_edit_tab_design_accordion" as="design_accordion">
110
  <block type="xmlconnect/adminhtml_mobile_edit_tab_design_accordion_themes" name="accordion_themes" />
app/design/adminhtml/default/default/template/xmlconnect/edit/tab/design.phtml CHANGED
@@ -24,19 +24,22 @@
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
 
 
 
 
 
27
  <script type="text/javascript">
28
  // <![CDATA[
29
  var imageTemplate = '<input type="hidden" name="{{file_field}}[image][{{id}}][image_id]" value="{{image_id}}" />'+
30
  '<div class="banner-image">'+
31
- '<div class="row">'+
32
- '<div id="{{file_field}}_{{id}}_file" class="uploader">'+
 
 
 
33
  '<div id="{{file_field}}_{{id}}_file-old" class="file-row-info"><div id="{{file_field}}_preview_{{id}}" style="background:url({{thumbnail}}) no-repeat center;" class="image-placeholder"></div></div>'+
34
  '<div id="{{file_field}}_{{id}}_file-new" class="file-row-info new-file"></div>'+
35
- '<div class="buttons">'+
36
- '<div id="{{file_field}}_{{id}}_file-install-flash" style="display:none">'+
37
- '<?php echo $this->jsQuoteEscape(Mage::helper('media')->__('This content requires last version of Adobe Flash Player. <a href="%s">Get Flash</a>', 'http://www.adobe.com/go/getflash/')) ?>'+
38
- '</div>'+
39
- '</div>'+
40
  '<div class="clear"></div>'+
41
  '</div>'+
42
  '</div>'+
@@ -66,6 +69,16 @@ var imageItems = {
66
  imageActionTruncateLenght: 35,
67
  add : function(config) {
68
  try {
 
 
 
 
 
 
 
 
 
 
69
  var isUploadedImage = true, uploaderClass = '';
70
  this.template = new Template(this.templateText, this.templateSyntax);
71
 
@@ -89,7 +102,11 @@ var imageItems = {
89
  Element.insert(this.ulImages.down('li', config.id), {'bottom' : this.template.evaluate(config)});
90
  var container = $(config.file_field + '_' + config.id + '_file').up('li');
91
 
92
- if (config.show_uploader == 1) {
 
 
 
 
93
  config.file_save = [];
94
 
95
  new Downloadable.FileUploader(
@@ -102,11 +119,6 @@ var imageItems = {
102
  config
103
  );
104
  }
105
-
106
- if (config.image_id != 'uploader') {
107
- imageItems.addEditButton(container, config);
108
- imageItems.addDeleteButton(container, config);
109
- }
110
  } catch (e) {
111
  alert(e.message);
112
  }
@@ -209,7 +221,10 @@ var imageItems = {
209
  },
210
  reloadImages : function(image_list) {
211
  try {
212
- var imageType = image_list[0].file_field;
 
 
 
213
  Downloadable.unsetUploaderByType(imageType);
214
  var currentContainerId = imageType;
215
  var currentContainer = $(currentContainerId);
@@ -283,28 +298,18 @@ var imageItems = {
283
 
284
  jscolor.dir = '<?php echo $this->getJsUrl(); ?>jscolor/';
285
 
286
- var maxUploadFileSizeInBytes = <?php echo $this->getChild('media_uploader')->getDataMaxSizeInBytes() ?>;
287
- var maxUploadFileSize = '<?php echo $this->getChild('media_uploader')->getDataMaxSize() ?>';
288
-
289
  var uploaderTemplate = '<div class="no-display" id="[[idName]]-template">' +
290
- '<div id="{{id}}" class="file-row file-row-narrow">' +
291
  '<span class="file-info">' +
292
  '<span class="file-info-name">{{name}}</span>' + ' ' +
293
- '<span class="file-info-size">({{size}})</span>' +
294
  '</span>' +
295
  '<span class="progress-text"></span>' +
296
  '<div class="clear"></div>' +
297
  '</div>' +
298
- '</div>' +
299
- '<div class="no-display" id="[[idName]]-template-progress">' +
300
- '{{percent}}% {{uploaded}} / {{total}}' +
301
  '</div>';
302
 
303
- var fileListTemplate = '<div style="background:url({{file}}) no-repeat center;" class="image-placeholder"></div>' +
304
- '<span class="file-info">' +
305
- '<span class="file-info-name">{{name}}</span>' + ' ' +
306
- '<span class="file-info-size">({{size}})</span>' +
307
- '</span>';
308
 
309
  var Downloadable = {
310
  uploaderObj : $H({}),
@@ -401,13 +406,17 @@ Downloadable.FileUploader.prototype = {
401
  if ($(this.idName + '_save')) {
402
  $(this.idName + '_save').value = this.fileValue.toJSON ? this.fileValue.toJSON() : Object.toJSON(this.fileValue);
403
  }
 
 
 
 
 
404
  Downloadable.setUploaderObj(
405
  this.type,
406
  this.key,
407
- new Flex.Uploader(this.idName, '<?php echo $this->getSkinUrl('media/uploaderSingle.swf') ?>', this.config)
408
  );
409
  new Downloadable.FileList(this.idName, Downloadable.getUploaderObj(type, key), this.config);
410
-
411
  if (varienGlobalEvents) {
412
  varienGlobalEvents.attachEventHandler('tabChangeBefore', Downloadable.getUploaderObj(type, key).onContainerHideBefore);
413
  }
@@ -427,35 +436,34 @@ Downloadable.FileList.prototype = {
427
  this.containerId = containerId,
428
  this.container = $(this.containerId);
429
  this.uploader = uploader;
430
- this.uploader.onFilesComplete = this.handleUploadComplete.bind(this);
 
 
 
 
 
 
431
  this.file = this.getElement('save').value.evalJSON();
432
  this.listTemplate = new Template(this.fileListTemplate, this.templatePattern);
433
  this.updateFiles();
434
- this.uploader.handleSelect = this.handleFileSelect.bind(this);
435
- this.uploader.onContainerHideBefore = this.handleContainerHideBefore.bind(this);
436
  this.uploader.config = config;
437
- },
438
- handleContainerHideBefore: function(container) {
439
- if (container && Element.descendantOf(this.uploader.container, container) && !this.uploader.checkAllComplete()) {
440
- if (!confirm('<?php echo $this->jsQuoteEscape($this->__('There are files that were selected but not uploaded yet. After switching to another tab your selections may be lost. Do you wish to continue ?')) ;?>')) {
441
- return 'cannotchange';
442
- } else {
443
  return 'change';
444
- }
445
- }
 
 
446
  },
447
  handleFileSelect: function(event) {
448
  try {
449
- this.uploader.files = event.getData().files;
450
- this.uploader.checkFileSize();
451
- this.updateFiles();
452
- if (!hasTooBigFiles) {
453
- var uploaderList = $(this.uploader.flexContainerId);
454
- for (i = 0; i < uploaderList.length; i++) {
455
- uploaderList[i].setStyle({visibility: 'hidden'});
456
- }
457
- Downloadable.massUploadByType(this.uploader.config.file_field);
458
  }
 
 
459
  } catch (e) {
460
  alert(e.message);
461
  }
@@ -485,7 +493,6 @@ Downloadable.FileList.prototype = {
485
  newFile.size = response.size;
486
  newFile.status = 'new';
487
  this.file[0] = newFile;
488
- this.uploader.removeFile(item.id);
489
  imageItems.reloadImages(response.image_list);
490
  }.bind(this));
491
  this.updateFiles();
24
  * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
  */
26
  ?>
27
+ <?php
28
+ /**
29
+ * @var $this Mage_XmlConnect_Block_Adminhtml_Mobile_Edit_Tab_Design
30
+ */
31
+ ?>
32
  <script type="text/javascript">
33
  // <![CDATA[
34
  var imageTemplate = '<input type="hidden" name="{{file_field}}[image][{{id}}][image_id]" value="{{image_id}}" />'+
35
  '<div class="banner-image">'+
36
+ '<div class="row a-right">' +
37
+ '<div class="flex">' +
38
+ '<?php echo $this->getBrowseButtonHtml() ?>'+
39
+ '</div>' +
40
+ '<div id="{{file_field}}_{{id}}_file" class="uploader a-left">'+
41
  '<div id="{{file_field}}_{{id}}_file-old" class="file-row-info"><div id="{{file_field}}_preview_{{id}}" style="background:url({{thumbnail}}) no-repeat center;" class="image-placeholder"></div></div>'+
42
  '<div id="{{file_field}}_{{id}}_file-new" class="file-row-info new-file"></div>'+
 
 
 
 
 
43
  '<div class="clear"></div>'+
44
  '</div>'+
45
  '</div>'+
69
  imageActionTruncateLenght: 35,
70
  add : function(config) {
71
  try {
72
+ if(Object.isString(config)) {
73
+ config = config.evalJSON();
74
+ }
75
+ config.file_field = config.uploaderConfig.fileParameterName;
76
+ config.file_save = config.miscConfig.file_save;
77
+ config.thumbnail = config.miscConfig.thumbnail;
78
+ config.image_id = config.miscConfig.image_id;
79
+ config.image_action_data = config.miscConfig.image_action_data;
80
+ config.image_count = config.miscConfig.image_count;
81
+
82
  var isUploadedImage = true, uploaderClass = '';
83
  this.template = new Template(this.templateText, this.templateSyntax);
84
 
102
  Element.insert(this.ulImages.down('li', config.id), {'bottom' : this.template.evaluate(config)});
103
  var container = $(config.file_field + '_' + config.id + '_file').up('li');
104
 
105
+ if (config.image_id != 'uploader') {
106
+ container.down('.flex').remove();
107
+ imageItems.addEditButton(container, config);
108
+ imageItems.addDeleteButton(container, config);
109
+ } else {
110
  config.file_save = [];
111
 
112
  new Downloadable.FileUploader(
119
  config
120
  );
121
  }
 
 
 
 
 
122
  } catch (e) {
123
  alert(e.message);
124
  }
221
  },
222
  reloadImages : function(image_list) {
223
  try {
224
+ image_list = image_list.map(function (item) {
225
+ return Object.isString(item) ? item.evalJSON(): item;
226
+ });
227
+ var imageType = image_list[0].uploaderConfig.fileParameterName;
228
  Downloadable.unsetUploaderByType(imageType);
229
  var currentContainerId = imageType;
230
  var currentContainer = $(currentContainerId);
298
 
299
  jscolor.dir = '<?php echo $this->getJsUrl(); ?>jscolor/';
300
 
 
 
 
301
  var uploaderTemplate = '<div class="no-display" id="[[idName]]-template">' +
302
+ '<div id="{{id}}-container" class="file-row file-row-narrow">' +
303
  '<span class="file-info">' +
304
  '<span class="file-info-name">{{name}}</span>' + ' ' +
305
+ '<span class="file-info-size">{{size}}</span>' +
306
  '</span>' +
307
  '<span class="progress-text"></span>' +
308
  '<div class="clear"></div>' +
309
  '</div>' +
 
 
 
310
  '</div>';
311
 
312
+ var fileListTemplate = '<div style="background:url({{file}}) no-repeat center;" class="image-placeholder"></div>';
 
 
 
 
313
 
314
  var Downloadable = {
315
  uploaderObj : $H({}),
406
  if ($(this.idName + '_save')) {
407
  $(this.idName + '_save').value = this.fileValue.toJSON ? this.fileValue.toJSON() : Object.toJSON(this.fileValue);
408
  }
409
+
410
+ this.config = Object.toJSON(this.config).replace(
411
+ new RegExp(config.elementIds.idToReplace, 'g'),
412
+ config.file_field + '_'+ config.id + '_file').evalJSON();
413
+
414
  Downloadable.setUploaderObj(
415
  this.type,
416
  this.key,
417
+ new Uploader(this.config)
418
  );
419
  new Downloadable.FileList(this.idName, Downloadable.getUploaderObj(type, key), this.config);
 
420
  if (varienGlobalEvents) {
421
  varienGlobalEvents.attachEventHandler('tabChangeBefore', Downloadable.getUploaderObj(type, key).onContainerHideBefore);
422
  }
436
  this.containerId = containerId,
437
  this.container = $(this.containerId);
438
  this.uploader = uploader;
439
+ this.uploader.uploader.on('filesSubmitted', this.handleFileSelect.bind(this));
440
+ document.on('uploader:fileSuccess', function(event) {
441
+ var memo = event.memo;
442
+ if(this._checkCurrentContainer(memo.containerId)) {
443
+ this.handleUploadComplete([{response: memo.response}]);
444
+ }
445
+ }.bind(this));
446
  this.file = this.getElement('save').value.evalJSON();
447
  this.listTemplate = new Template(this.fileListTemplate, this.templatePattern);
448
  this.updateFiles();
 
 
449
  this.uploader.config = config;
450
+ this.onContainerHideBefore = this.uploader.onContainerHideBefore.bind(
451
+ this.uploader,
452
+ function () {
 
 
 
453
  return 'change';
454
+ });
455
+ },
456
+ _checkCurrentContainer: function (child) {
457
+ return $(this.containerId).down('#' + child);
458
  },
459
  handleFileSelect: function(event) {
460
  try {
461
+ if(this.uploader.uploader.files.length) {
462
+ $(this.containerId + '-old').hide();
463
+ this.uploader.elements.browse.invoke('setStyle', {'visibility': 'hidden'});
 
 
 
 
 
 
464
  }
465
+ this.updateFiles();
466
+ Downloadable.massUploadByType(this.uploader.config.file_field);
467
  } catch (e) {
468
  alert(e.message);
469
  }
493
  newFile.size = response.size;
494
  newFile.status = 'new';
495
  this.file[0] = newFile;
 
496
  imageItems.reloadImages(response.image_list);
497
  }.bind(this));
498
  this.updateFiles();
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magento_Mobile</name>
4
- <version>1.9.2.4</version>
5
  <stability>stable</stability>
6
  <license>mixed</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento Mobile Xml Interface</summary>
10
  <description>An integration Magento with mobile applications (e.g. iPhone, Android, iPad)</description>
11
- <notes>1.9.2.4</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
- <date>2016-02-17</date>
14
- <time>18:27:47</time>
15
- <contents><target name="magecore"><dir name="Mage"><dir name="XmlConnect"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Admin"><dir name="Application"><dir name="Edit"><file name="Form.php" hash="81de307cd06df01f576467319f9c0fa4"/><dir name="Tab"><file name="Settings.php" hash="54d3819a08c5809dbf9f620dad298868"/></dir><file name="Tabs.php" hash="5e456bc38d9d4640e36187dccb8ac697"/></dir><file name="Edit.php" hash="32f7c57bd85ee1990f75f7a697b66929"/></dir></dir><dir name="Connect"><file name="Config.php" hash="861b098ae486fbcd83707c3244ce12b5"/><dir name="Dashboard"><file name="BestSellers.php" hash="e478d773241203669523b473444c154f"/><file name="Customers.php" hash="71080b1515bbf51f1ba7edf929ad6077"/><file name="GraphAmountsData.php" hash="5f926bc425669db2aba46e4bbd3a403b"/><file name="GraphDataAbstract.php" hash="1f35c970fc74876f8f2a3cbacbfc05d2"/><file name="GraphInfo.php" hash="4127357def7066c44caf4b5b67b13797"/><file name="GraphOrderData.php" hash="40c6e8aeb91570a412989d6689358356"/><file name="GraphTotalsData.php" hash="328d9a3b8df76454a9e9bd6e15bab23c"/><file name="LastOrders.php" hash="1538796b2a3e13b25eaae5d69aced64d"/><file name="LastSearchTerms.php" hash="2bd8f3f92656d04a4ba4e98cd0fa69d2"/><file name="MostViewedProducts.php" hash="28c4e5ed58552f52bd1d64ea4eb2ec95"/><file name="NewCustomers.php" hash="bc223c585a354436873f2de263d4421c"/><file name="SalesInfo.php" hash="109ed247c22acecd220a8fc4e8a0d5a7"/><file name="StoreSwitcher.php" hash="b0e9f3e9762c5b09a7cedbf1e264b426"/><file name="TopSearchTerms.php" hash="02a79f94bc53149d85445f13a9ad4665"/></dir><file name="Dashboard.php" hash="c75b59f58ee0e298e09055d5737e8305"/><file name="Loginform.php" hash="3f45a52b7354864635668e2e378974ce"/></dir><dir name="History"><file name="Grid.php" hash="fe68c2eeac3c1ef9e8686cefa59631b0"/></dir><file name="History.php" hash="96ce89387bd16621f6b1d66bcef05e92"/><dir name="Mobile"><dir name="Edit"><file name="Form.php" hash="acf764b983c4e3148c18c5e9934f0563"/><file name="Submission.php" hash="878de8d18da07cb60f77eee87fad98e1"/><dir name="Tab"><file name="Cache.php" hash="22bba9a13163ad32b1366b455927fa2c"/><file name="Content.php" hash="34980cb4a29bb4deb6ca7e9d2d6fcccb"/><dir name="Design"><dir name="Accordion"><file name="Images.php" hash="7a59a1349377583081f6fda64b159c32"/><file name="Tabs.php" hash="c60623f4ed1625be900beca49ed644ea"/><file name="Themes.php" hash="2d41adb2ac428a51de6786a5f2a09030"/></dir><file name="Accordion.php" hash="e8861afac929a7a69a7159fa3161dad9"/><file name="Images.php" hash="44a48da555cb2c3e06e55e8909637f8e"/><file name="Preview.php" hash="6ef187c6822022069ee6839b600c6123"/><file name="Themes.php" hash="e1ffa9ecd9c5d01dc7531c7c945fddac"/></dir><file name="Design.php" hash="c92f89609b640c060d5ad4babdb6de64"/><file name="Flurryanalytics.php" hash="9e8bab9945c9ee0110537ff3dae3bc50"/><file name="General.php" hash="1ed8d9115158c9247454c6c7b5ed8165"/><file name="Notification.php" hash="8c06281eb5a3446c0da6ccdb44584bd8"/><file name="OfflineCatalog.php" hash="5a1f101af1ed28935a6bcd62df9673d2"/><file name="Payment.php" hash="54c037f31373c9050c7ec1efb7b7cbe2"/><file name="Settings.php" hash="8143326256fb9a5e5b9e0b8f03a1cd42"/><file name="Social.php" hash="11edafdfb0ebaf4af1fe84dee54c9348"/><dir name="Submission"><file name="History.php" hash="6a51786e4130755f6654cdc3d298e8fd"/></dir></dir><file name="Tabs.php" hash="aa589cf412e91fd2c71edcf5847db267"/></dir><file name="Edit.php" hash="345e2327087fe7be18d9f784e1a599e2"/><dir name="Form"><dir name="Element"><file name="Addrow.php" hash="bc717c019a303601a82b8969b2c8af47"/><file name="Color.php" hash="2ea97f40943591aeca0c0b6ce6d8004e"/><file name="Country.php" hash="c433589f22226b8098577d992f7e9c58"/><file name="Datetime.php" hash="5f1f3cc75a3748cc5a259d4f0d876f8a"/><file name="Font.php" hash="78d2cdf94f14be0d79b54d426fea9521"/><file name="Image.php" hash="8b8a050c4f5c11b3e999abeec618db14"/><file name="Page.php" hash="252d20e8d1c966fb527d97c29062e2d0"/><file name="Tabs.php" hash="5cbacf9a898dc4cecf9966d7bfb90704"/><file name="Theme.php" hash="836b1fb2ea6d15746b0cfd13f2a8ac5a"/></dir></dir><dir name="Grid"><dir name="Renderer"><file name="Bool.php" hash="90fc8a270dfd3e217212830c4f4aa763"/><file name="Type.php" hash="9ad29b888687ca522ec6dbc41d63ea94"/></dir></dir><file name="Grid.php" hash="827f9cfa1130743c8a66648c253949e1"/><dir name="Preview"><file name="Content.php" hash="25b50cbbba58cfe3fc6e117c33305298"/><file name="Tabitems.php" hash="aa64c8eb4f5886bbec4a173ab263ecf2"/></dir><dir name="Submission"><file name="Form.php" hash="2639d06286f24639b5d41481682c8dc5"/><dir name="Renderer"><dir name="Country"><file name="Androidmarket.php" hash="373f45c586bf87b3da5325cf75af2181"/><file name="Istore.php" hash="b80cae1b5f50bbb4ea051402e82e6a50"/></dir></dir><dir name="Tab"><dir name="Container"><file name="Submission.php" hash="d02436374c50bff82a8f4718f6ad45d6"/></dir><file name="Container.php" hash="6e14cc37a560c9c6577615617b33fa30"/></dir><file name="Tabs.php" hash="d020af845e0683035fb0b7a431bd2c5c"/></dir><file name="Submission.php" hash="c4772eff0f61ff267cbba2dc33ae8029"/><dir name="Widget"><file name="Form.php" hash="9b7f953d96959d53039810891b78bb7d"/></dir></dir><file name="Mobile.php" hash="6aa5a90e54b111f8ac70ec9ede0f5908"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="90ba2db39ab7e25127f8846c2a337e78"/></dir><file name="Edit.php" hash="b20d9c0b25b2d0e7ca75f540ecee644d"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="b43060dc3e63a35d11cec554003a2184"/><file name="Application.php" hash="2f0063e9970cf9566c7c110d7f91e5b5"/><file name="Id.php" hash="237889b1a6929e5976c2be04ada9dc15"/><file name="Msgtitle.php" hash="34c830f9ef566b955a000ac157c5123c"/><file name="Pushtitle.php" hash="a385800909bca55f77a890e14dd579a5"/><file name="Status.php" hash="f3317011cb190208e42fd516a4e65fc6"/><file name="Template.php" hash="569174f250776e4695f6772c779f02df"/></dir></dir><file name="Grid.php" hash="701ec3a6e9a2c0eabb37837916d7e340"/></dir><file name="Queue.php" hash="2a0ba5ac86ba9701b67219d636dfd003"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="0ed4b2df1a6b74d4bf56c60cd50b3b5d"/></dir><file name="Edit.php" hash="40cace124f237750624d35c12aac5073"/><dir name="Grid"><dir name="Renderer"><file name="Application.php" hash="ab50306bc4b26b45760edab0004d44fe"/><file name="Name.php" hash="f97e88f2f68623cb26f35f2f178fea3c"/></dir></dir><file name="Grid.php" hash="b53969b370f179fdd09d0314071c4edc"/><dir name="Preview"><file name="Form.php" hash="0e053c9d5fed78b67c86dbd1168d6f9b"/></dir><file name="Preview.php" hash="24ad4c47c1c851b599baa4e8c5114f19"/></dir><file name="Template.php" hash="692e804274907e986c54b4f70be921ee"/></dir><dir name="Cart"><dir name="CartTotals"><file name="Default.php" hash="1b136d777c1c0a28c1f9a93e427d835d"/><file name="Grandtotal.php" hash="4ce2394d5d267d2db9a978159953e15b"/><dir name="Nodes"><file name="Default.php" hash="83dacc218c70d3b2ec2e5a3d9aa6eb9a"/><file name="Giftcardaccount.php" hash="b53cad0aeaaaa220fb68ccaf05266333"/></dir><file name="Shipping.php" hash="f5991642fe7772180c8047184fcd1161"/><file name="Subtotal.php" hash="03eefc2f989c6cd6bac953d7df412988"/></dir><file name="CartTotals.php" hash="1babd3254f28e9a1ddb9a599a86d4514"/><file name="Crosssell.php" hash="73a0a0b0ff9e58f14319e6aac4fcf67d"/><file name="Info.php" hash="bf6baca3b660154aa2f04f96be8da31c"/><dir name="Item"><dir name="Renderer"><file name="Configurable.php" hash="057cd631834b45d7ecbd98dc33fba30a"/><file name="Grouped.php" hash="1f3016942638fb3cb89b5759680e3935"/></dir><file name="Renderer.php" hash="4d9fad104f7e8b60f74597c476496448"/></dir><file name="Items.php" hash="318e6ca5a6fa094dc7b8bb153fcb3e91"/><dir name="Paypal"><dir name="Mecl"><file name="Details.php" hash="a3319cd77773c05e4268c9ba94c285a2"/><file name="OrderDetails.php" hash="d862d3dd1755b7b38e48e81742ebfddc"/><file name="Review.php" hash="aea164d918f33e438d0f3933bf66708b"/><file name="Shippingmethods.php" hash="95f30bd79d4bffd03ff9e6864e592119"/></dir><dir name="Mep"><file name="Totals.php" hash="5942db40c8cb900cef089c276358aa11"/></dir></dir><file name="Totals.php" hash="0dc65b9c5398934830bdf1cfa885b4db"/></dir><file name="Cart.php" hash="e519c3943bf4d3525b3d9614c4da0764"/><dir name="Catalog"><dir name="Category"><file name="Info.php" hash="b79448d8f413faf34eea85aa929119c7"/></dir><file name="Category.php" hash="1494d497c25a64a6290c8bb5c3774127"/><file name="Filters.php" hash="034fb4406ebffa971b3513d2b3317744"/><dir name="Product"><file name="Attributes.php" hash="37d77f168c874a2764825628ebf94e67"/><file name="Gallery.php" hash="d196f3a5683daee10c4a1c7be1aa3be7"/><dir name="ItemPrice"><file name="Bundle.php" hash="00508bf0429c9147ad522d7472e2aec3"/><file name="Default.php" hash="10afdfaa3d9901df65836be0c7e53aff"/><file name="Giftcard.php" hash="4f75c7d42784400009668021f43e3aaf"/></dir><file name="ItemPrice.php" hash="c638f5ab6ec0eb837a9d078709c4808e"/><file name="List.php" hash="3421d4a4b5c28a8fedf69a2b30d72579"/><dir name="Options"><file name="Bundle.php" hash="e0a012200dafa6ce8774edec6d90d65f"/><file name="Configurable.php" hash="4fd0245fcd992850dc37f2de3fae0bce"/><file name="Downloadable.php" hash="906f890ad35b2f388ececf3c204f7b29"/><file name="Giftcard.php" hash="785fb7aeafcb2aa54d3b737aa1cc474e"/><file name="Grouped.php" hash="dff03abb13387397015d56cf1c812d4e"/><file name="Simple.php" hash="6d0576f1c23f9cdde1fbe07a286a044b"/><file name="Virtual.php" hash="dabf7c2fb97f4d95d0d63915f2668137"/></dir><file name="Options.php" hash="6067f2e7a9c9bf253ba60f48e551d427"/><dir name="Price"><file name="Bundle.php" hash="bd655b2be649521cfb9ce42fe0e94002"/><file name="Default.php" hash="afb4eb633d78cf9f778cdb8c3a7c28d4"/><file name="Giftcard.php" hash="d00901b021183008ade4f5d5fe3f0136"/></dir><file name="Price.php" hash="d91ac4d4a7ff31d884ce4b9a4a9a511f"/><file name="Related.php" hash="7d85e50c58d0f4702193b6a1a5f8a241"/><dir name="Review"><file name="List.php" hash="2bb87638a723c5e79caf0e65c8578900"/></dir><file name="Review.php" hash="4dc6bb45cbeccce79c90c150404e3c9e"/></dir><file name="Product.php" hash="06fadc44ab4cb0283f232a7c4637dac7"/><dir name="Search"><file name="Suggest.php" hash="2cf684e61a59e85872d4088df4d34f26"/></dir><file name="Search.php" hash="c76df74ce239f6cc9c97ffac0ba34840"/></dir><file name="Catalog.php" hash="98aa7ef2fdd60fc3d08611ead01a9462"/><dir name="Checkout"><dir name="Address"><file name="Billing.php" hash="dda4fcb0ca7f24aeb1457b50906746db"/><file name="Form.php" hash="b0610862258424b602d6e1d82fed3ebc"/><file name="Shipping.php" hash="49c9edc24e4d162ec937247ad107da7c"/></dir><file name="Agreements.php" hash="bd8b2ba64129380291de3071dd249afa"/><dir name="Cart"><dir name="Item"><dir name="Renderer"><file name="Bundle.php" hash="9a9993a79414f5a2cbd218dc9b9b6ccc"/><file name="Configurable.php" hash="265a49e5b3d07e6733fb8d36052fd01b"/><file name="Downloadable.php" hash="ad077e862c2dce16049b2e81f3b9739a"/><file name="Giftcard.php" hash="5f24a561d608eb04951d0571dcaac4df"/><file name="Grouped.php" hash="0eb5bf8d9c9e88d8c8b1293191ef759e"/></dir><file name="Renderer.php" hash="86f42693f44c141610c5fc0c8bf89b37"/></dir></dir><dir name="Onepage"><dir name="Address"><file name="Form.php" hash="acd1913b3d41727beaa72b5d23730fe8"/><file name="List.php" hash="cb82badb3bd83a9e612796c97a3eea00"/></dir><file name="Address.php" hash="3fe5ccf3a48a14ad949f838d8f409f04"/><file name="Review.php" hash="04c48836b2604c8e98555e3661c38f11"/></dir><dir name="Order"><dir name="Review"><file name="Info.php" hash="0dad6ef1b586b7a4ea2011ac58afb17e"/></dir><file name="Review.php" hash="290246cad6115999f483b309626ea1d5"/></dir><dir name="Payment"><dir name="Method"><file name="Authorizenet.php" hash="41874ca8e040863958130990314d007b"/><file name="Ccsave.php" hash="77198aba895aa5d2a2c12679b414a39f"/><file name="Checkmo.php" hash="0a7d3f89018ec4bc683bd1605465d5e9"/><dir name="Info"><file name="Authorizenet.php" hash="a081aef705f853e0465c32d8dfd6cfe4"/><file name="Ccsave.php" hash="7cbe7f676ec0c77f4a31f7a0035166e8"/><file name="Checkmo.php" hash="9f5b2229ae210cb38fbcaf824bc38f16"/><file name="Free.php" hash="335e6ba08eafa4be1920762600c32d6a"/><dir name="Paypal"><file name="Abstract.php" hash="281daf0e5bb924514ce4fdfc9f6f24a1"/><file name="Express.php" hash="32271792fb64f5fed457f7f964f33c43"/><file name="Mecl.php" hash="84d064b1c13ad1eedaa230492d771c6c"/></dir><dir name="Pbridge"><file name="Authorizenet.php" hash="4c1f13cea301c509f40e7ee07030f95d"/><dir name="Paypal"><file name="Direct.php" hash="8920782b5622512a77ecbfd7538a3187"/></dir><dir name="Paypaluk"><file name="Direct.php" hash="67b7eab62c68fd19c6b886f2954bf987"/></dir><file name="Verisign.php" hash="1da421d6bad805d944fcba96c9e99056"/></dir><file name="Purchaseorder.php" hash="bb8b5a96661d1932307d800c31e71e2d"/></dir><file name="List.php" hash="5e835636eb5d5be3fb8c45d8a559cf06"/><file name="ListApi23.php" hash="bd39ffc43bb808eadbb81b5c2a3c3e04"/><dir name="Paypal"><file name="Direct.php" hash="7119a3fede4bd80e32b77bed106e2d68"/><file name="Payflow.php" hash="90c07c686e0e9bce2161f971c69d1006"/></dir><dir name="Pbridge"><file name="Abstract.php" hash="ac5deb9c3b229853d2b66c2b8cb27f8f"/><file name="Authorizenet.php" hash="705ce298ace0af4dccfaf876d43adbdb"/><file name="Paypal.php" hash="f7c537d7d332fba8d0614afba286f1e9"/><file name="Paypaluk.php" hash="48e32f15a4356ddfbdebf3525df90b64"/><file name="Verisign.php" hash="d1107c7dae02312382a9c49869264ba0"/></dir><file name="Purchaseorder.php" hash="ab1ac313d0e13833d8734c5754bb62e0"/></dir></dir><dir name="Pbridge"><file name="Result.php" hash="11be3a34105a6272772a8082337507f7"/></dir><dir name="Shipping"><dir name="Method"><file name="Available.php" hash="e64b87b635aabaa2f364ba7e96f25943"/><file name="AvailableList.php" hash="dea350f8eeb675d26e4d2c7ec4ebdb64"/></dir></dir></dir><dir name="Cms"><file name="Page.php" hash="39b0889ccb35e41120e6481a0e59d781"/></dir><file name="Configuration.php" hash="255cdace32101aee9f57728b9161dc3e"/><dir name="Customer"><dir name="Address"><file name="Form.php" hash="b3be346ff0cc1e9a8388efe4e4e94a79"/><file name="List.php" hash="4c866445736bb0a81e7eeb26fb847ec0"/></dir><file name="Downloads.php" hash="f2124b1624b6aa5528f9c809b53806d3"/><dir name="Form"><dir name="Renderer"><file name="Boolean.php" hash="84ebb58ce45d926d64f4e925d2eafa4a"/><file name="Date.php" hash="6e5ac1cfe5bc00b53bf463ae304a029f"/><file name="File.php" hash="cf6371b1a58b80ba661c93c6a01b00da"/><file name="Image.php" hash="de7f0422d0399706421ef3e3308035a2"/><file name="Multiline.php" hash="d020f2ecc010106a22334f5f8c7304e8"/><file name="Multiselect.php" hash="731a1d8e3c227d5dfdbacf8b3a529299"/><file name="Select.php" hash="2ea8cf4ab7df763b923d0d2e88d9540f"/><file name="Text.php" hash="fc4019a6918fc9329e9ede589434d66f"/><file name="Textarea.php" hash="c07e56e9d61e50b5f668ac804def1690"/></dir></dir><file name="Form.php" hash="ad09612811fd232736d05b22bec642a2"/><file name="GiftcardCheck.php" hash="858f6b32864cbc723b18c5545b0f2f3e"/><dir name="Order"><file name="Details.php" hash="dd3f51c3bfbcb3c8935a08b626a0a05c"/><dir name="Item"><dir name="Renderer"><file name="Bundle.php" hash="72394c13ca338474becc38e99b520e17"/><file name="Default.php" hash="fb2223412f271d024f8cc5008732abd8"/><file name="Downloadable.php" hash="962fdcd851fb1a8b101f2004017a6797"/><file name="Giftcard.php" hash="246e5648b7c988106b45f13699b91cd2"/><file name="Grouped.php" hash="b55698b0b4e405cb180b61d41e8a6f0a"/></dir></dir><file name="Items.php" hash="e221d089b0cce1c12e7185fd6336d4c3"/><file name="List.php" hash="59468d0ff1ed51608f3eda46a0ae6034"/><dir name="Totals"><dir name="Customerbalance"><file name="Refunded.php" hash="4496c6a3ffaddfdc722e56e2554d4790"/></dir><file name="Customerbalance.php" hash="bd30268df36d48bde24555765a20c7d0"/><file name="Giftcards.php" hash="066278c5defddbfeddc21f45ceec1b4f"/><file name="Tax.php" hash="a21ae78f3c1847672ca81fd99f4c6a4e"/></dir><file name="Totals.php" hash="fdd30804a74aa3be42ba46baf9b2ace4"/></dir><file name="Storecredit.php" hash="a10332e7baaf35e615483b9bca2e65b6"/></dir><file name="Home.php" hash="c47a42e74d41fe1eca14ae03efdaa470"/><file name="Homebanners.php" hash="49e7f36437bd22355102f02f57066ed7"/><file name="Localization.php" hash="378200f79d181afd82c569aa865d8023"/><dir name="Review"><file name="Form.php" hash="fa2d335f74fed3ed785252fe7dac57d0"/></dir><file name="ShoppingCart.php" hash="3b048941c9f33c53e7569f382d298bd1"/><file name="Wishlist.php" hash="2817a3f663f4f03145277dcaaec3d935"/></dir><dir name="Controller"><file name="Action.php" hash="4f85d616749eaf69381e40d8a6d5df9e"/><file name="AdminAction.php" hash="fa85e41a9432174162411e89085007bf"/></dir><dir name="Helper"><file name="AdminApplication.php" hash="75ef4f153ca96d2ec92fc4f149af7cab"/><dir name="Adminhtml"><dir name="Dashboard"><file name="Order.php" hash="368b64cd5a90f9d8675b89df2a9afa8b"/></dir></dir><file name="Android.php" hash="6cb572f65eca315aa1af7be169848425"/><dir name="Catalog"><dir name="Category"><file name="Image.php" hash="23eb166fdb9bfe759c8dbfd57e5da60a"/></dir><dir name="Product"><file name="Image.php" hash="5542e8bcbbc45a1c748cb00f985e08ab"/></dir></dir><dir name="Customer"><dir name="Form"><file name="Renderer.php" hash="ab1050a0b1702b72327bdabb09da02e7"/></dir><file name="Order.php" hash="1da625a2a037e88ecba58f94a70dc430"/></dir><file name="Data.php" hash="34719d1627437a9a7f8e633305c8cb12"/><dir name="Device"><file name="Abstract.php" hash="b705df174054af86d61e7b49003138a8"/></dir><file name="Image.php" hash="7ea6c71a3110a562e7c174cbaef8cc0c"/><file name="Ipad.php" hash="faade44178499afd590c0c17229076c3"/><file name="Iphone.php" hash="44980ff0a6f63cccfebdf1675a27ed41"/><file name="OfflineCatalog.php" hash="8d8519291a5ea9652804382128d48989"/><file name="Payment.php" hash="a0e3eb53ca6a2b79ff61a049f0329bf5"/><file name="Theme.php" hash="07bf2ca2784b01088be4cf676680421c"/><file name="Translate.php" hash="69d2d088dc1229e4ef376f1b85f779ed"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="Search"><file name="Catalog.php" hash="ddada5808ac24d544b5d0284301c4a84"/><file name="Category.php" hash="f6733e8293d75a7ecc294e641adde648"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Baseurl.php" hash="849887e30c4866beb445acdb7c028c1e"/><dir name="Currency"><file name="Default.php" hash="bd129c34d57d88610d7f4703414254d0"/></dir></dir></dir></dir></dir><file name="Application.php" hash="46d35bef2316f7692df3423e26286291"/><dir name="Catalog"><dir name="Category"><file name="Image.php" hash="e14795e389f9e2ec9c622dc12cbae467"/><dir name="Media"><file name="Config.php" hash="f6cba78ddeb4040ed58d7d9081df3ad9"/></dir></dir></dir><file name="ConfigData.php" hash="66416b3566c2639d936bc8bba25d98c7"/><file name="Configuration.php" hash="7f3645a739873a13ea6720779a62af5b"/><dir name="Device"><file name="Abstract.php" hash="4f38a17dba5afd28995638a924bfa055"/><file name="Android.php" hash="8b3b4c806aedd3761d57f1224afa6bc9"/><file name="Ipad.php" hash="443cc4a506a49cfe97d033da414eaf49"/><file name="Iphone.php" hash="556065fe8a1589edf78f14097b32add4"/></dir><file name="History.php" hash="89b7e8e597707e97cdaeb9492773d943"/><file name="ImageAction.php" hash="4eb7e606102dd6f15aac8794c9866c4c"/><dir name="ImageLimits"><file name="Abstract.php" hash="a6e7208a1f501a12be81c02c5f2bf1cc"/></dir><file name="ImageLimits.php" hash="00ba19391283d53d4361c0bdb1ad994c"/><file name="Images.php" hash="93696563d5e1186a92fde69e5ac93589"/><dir name="Mysql4"><dir name="Application"><file name="Collection.php" hash="bccd543a012c3626ecb224b66d2a63a5"/></dir><file name="Application.php" hash="45d335136c036660aa6991720a0773d2"/><dir name="Cms"><dir name="Page"><file name="Collection.php" hash="0c9dce6904a72ee18f83bb3bb871461f"/></dir></dir><dir name="ConfigData"><file name="Collection.php" hash="bc2212381545d77117554b985d2f48eb"/></dir><file name="ConfigData.php" hash="4d7c1d33b1bafe9014827696d2f299c5"/><dir name="Filter"><file name="Collection.php" hash="903e9256b9cb33a4251775517370bc9d"/></dir><dir name="History"><file name="Collection.php" hash="e49817963619aceeb3441857a0c3566b"/></dir><file name="History.php" hash="636db1d3b896b65990cb428f0a612e91"/><dir name="Queue"><file name="Collection.php" hash="63ad3764d1e19131cab5773c79a86af7"/></dir><file name="Queue.php" hash="290172650d6be78510cf0d0984d35494"/><file name="Setup.php" hash="453f78c2757bf659d96c1e492cb2a4f4"/><dir name="Template"><file name="Collection.php" hash="867465c57e8e719d8c2bd255f6030965"/></dir><file name="Template.php" hash="e19efc19030705ec0403cfd950629a76"/></dir><file name="Observer.php" hash="ab7a3f533bb40fd6503348f468adaee4"/><dir name="OfflineCatalog"><file name="Abstract.php" hash="a9164ec5caa64f0144f6b9c0d21f39b7"/><dir name="Category"><file name="Category.php" hash="a5675c77b334b3e2c122fa96c3a54b7f"/><file name="IndexCategory.php" hash="a8b36ec3eb1a2b7bd026ee4d5dc8d59a"/></dir><file name="Category.php" hash="6d6ba2feb1b15d5b9a405e6468167f6b"/><file name="Config.php" hash="776d6f3bfbd3db5021fc4383e038b0c0"/><file name="Home.php" hash="422230a5a514d187c3d29c1ce4a47479"/><file name="Homebanners.php" hash="b8a9720f9ddae3ce3f05511d1861aa6d"/><dir name="Product"><file name="Gallery.php" hash="ec1d08ff8a3b8bccfb3cc5f1bafa63b9"/><file name="Product.php" hash="f1a0a15e7b9e14ab3de0bb9d9cd501ae"/><file name="Review.php" hash="4ebce61d30a1109d4d0a2804d01002ae"/></dir><file name="Product.php" hash="cb06ad18b67bd10fab88543add00da08"/></dir><file name="OfflineCatalog.php" hash="0c8f2d6c9bdbe981b858a53a6d4df609"/><dir name="Payment"><dir name="Method"><dir name="Paypal"><file name="Config.php" hash="e7292a16f7ee6477f06ff1c3a69507e0"/><file name="Mecl.php" hash="17d925f2a1be3d912159fa9c79cec3be"/><file name="Mep.php" hash="d46b7c94adb1e4a8e061e71585c61ad2"/><file name="Pro.php" hash="547aa0ec1658d3ed58012e511f54f3f8"/></dir></dir></dir><dir name="Paypal"><dir name="Mecl"><file name="Checkout.php" hash="a73d42d1700a02aa61fe203264dc97de"/></dir><dir name="Mep"><file name="Checkout.php" hash="2c8d7d45f7bf5a4da8b405a4104e5f87"/></dir></dir><dir name="Preview"><file name="Abstract.php" hash="68dac1d597ca312dcd684e681d740a8c"/><file name="Android.php" hash="702310934c01b6b5e5ac3085c7eb0494"/><file name="Ipad.php" hash="a05757d4896f26a2fb1fb1ccaa0e5cce"/><file name="Iphone.php" hash="1ee89069ce4139d39f8e22487c904716"/></dir><file name="Queue.php" hash="cd34c802e7bd929c3197982da1b5f01e"/><dir name="Resource"><dir name="Application"><file name="Collection.php" hash="67dfddb0929c10ef0040aa25d2a19f1b"/></dir><file name="Application.php" hash="8ee9333d6fe5a11d2fe65ac1ad078c18"/><dir name="CategorySearch"><file name="Collection.php" hash="1578bb88fb8d4afc2bcbe1d095988fe2"/></dir><dir name="Cms"><dir name="Page"><file name="Collection.php" hash="e548542dd09e3fd990ab27bb78d5db09"/></dir></dir><dir name="ConfigData"><file name="Collection.php" hash="d6919e6fdf18f0cdc5501b4a69df0486"/></dir><file name="ConfigData.php" hash="8202c1cbc842f155982f0fc62c77b392"/><dir name="Filter"><file name="Collection.php" hash="2b6755290929d7fc4baa31408c86cdcd"/></dir><dir name="History"><file name="Collection.php" hash="d4e1d300e92e9ad68aac3481873f9baf"/></dir><file name="History.php" hash="f42d2b9c5019b09bacfe4a4e04a91047"/><dir name="Images"><file name="Collection.php" hash="b3df7b74eb35c4997a3bc717b8a6d41d"/></dir><file name="Images.php" hash="451bf048c9c656bf74baeb2bcfc1fe87"/><dir name="Queue"><file name="Collection.php" hash="f8cd4e75574397b9b3f27d6a8f2352da"/></dir><file name="Queue.php" hash="71d9a314d51c2f85226ad1f90e45ba52"/><file name="Setup.php" hash="f2444d0e2d4a1d847c5178f385c3a654"/><dir name="Template"><file name="Collection.php" hash="93322e981be806d894fc6d9711eac9a6"/></dir><file name="Template.php" hash="c1a6b66b9b7af9016f91d1647aeec263"/></dir><dir name="Simplexml"><file name="Element.php" hash="46ec26a23f73c4e0c6a09e0e20a545af"/><dir name="Form"><file name="Abstract.php" hash="2a0bd8916e20bfd0471351b29ef0759f"/><dir name="Element"><file name="Abstract.php" hash="0d0eb26a18387215d872032ebfa88017"/><file name="Checkbox.php" hash="67400a338055ebc5a2e500bbcad05ce8"/><file name="Collection.php" hash="a8af91ba9ae94303a2655a99763c1c90"/><file name="CountryListSelect.php" hash="ecc0d57a15819ffe070aa23ce4c0a6c3"/><file name="Custom.php" hash="d4fbc6398c9cabec199a7205c593264b"/><file name="Date.php" hash="ad3b53abcef3b924490b74101aa371ad"/><file name="Email.php" hash="6aa8112eb17a50aaf3b0d38a99814627"/><file name="Fieldset.php" hash="9fc93f6765b48a150e07e65dac03b60c"/><file name="File.php" hash="6b05b9cccf52804f3d2d37e898011322"/><file name="Image.php" hash="ead7af574fdb87959c58ca0760af2db1"/><file name="Multiline.php" hash="c59d6b719d189d93139610bfb123665c"/><file name="Multiselect.php" hash="b546802a33a2890eea448707b1e2fd2b"/><file name="Password.php" hash="ea3025e58010a3ff1cb71ee7c59b7d16"/><dir name="Renderer"><file name="Interface.php" hash="ea87301075b27b96bf366d74eb4407f9"/></dir><file name="Select.php" hash="87554fa5295eb9cf78cb3d9e56759ae4"/><file name="Text.php" hash="d4d3a0d4664c950e761f64939b8a0f30"/><file name="Textarea.php" hash="2c724d533ac61eb4e1181d58265be1ab"/><dir name="Validator"><file name="Abstract.php" hash="32203ef1d3f90a1fc72b29ad9bc8e768"/><file name="Rule.php" hash="8a58f2b49e8e265c79621ab2f0136837"/></dir><file name="Validator.php" hash="20ad5e0a0c14d449c40900df5368fefa"/></dir></dir><file name="Form.php" hash="9743116b7bc9f347ce627a9183dc5e2f"/><dir name="Message"><file name="Abstract.php" hash="3464af33e80cd8808a0032f2fda07b8a"/><file name="Error.php" hash="7cb38a95c45b9e97c6482e800b3a6275"/><file name="Success.php" hash="3ac7e2dc752fec9374ceff39d3ac2286"/></dir><file name="Message.php" hash="7844c56e6cd789b9201409a0f65de1dd"/></dir><file name="Tabs.php" hash="33075235262031fe01515c9ac92cf24e"/><file name="Template.php" hash="93e485809ec3f62a924ca5218033e98d"/><file name="Theme.php" hash="1d31b18b2c43c0806e73a08795ee18a9"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Admin"><file name="ApplicationController.php" hash="5e48da8f2cb13c53eabb47c2d0245bcd"/></dir><dir name="Connect"><file name="ConfigController.php" hash="91ec5329711416ac83df996feec49f5f"/><file name="DashboardController.php" hash="2619d2bb0bd6767a4537dc9374a46f24"/><file name="UserController.php" hash="69683a10a671ad4610ac930eb696512a"/></dir><file name="MobileController.php" hash="b291a2882f2519944626f9e954f0d503"/></dir><file name="CartController.php" hash="9600f699b71e64bcc181a77d10a4ac6a"/><file name="CatalogController.php" hash="36aa67c056efc47b205840437a9fa01e"/><file name="CheckoutController.php" hash="f718e4fd4eb627240cb03ba7dd509c59"/><file name="CmsController.php" hash="baf898049a795fee3bd3e7381f5bb58f"/><file name="ConfigurationController.php" hash="ce1b5f9aacabe0b883d35ff6b29ddc33"/><file name="CustomerController.php" hash="e8850f9b2ed4d48e22b1568ea8d01730"/><file name="HomebannersController.php" hash="6c1073e288e1f38054e90e3e0c056a20"/><file name="IndexController.php" hash="65e3a32862adb16f5581518d4f799a88"/><file name="LocalizationController.php" hash="c2d6d0a420829e6b0efb1c1523f905d9"/><file name="OfflineCatalogController.php" hash="ccb82e18f78791aa9e60c467b11c3e8d"/><dir name="Paypal"><file name="MeclController.php" hash="4f7acd52117c3c19d5927baf503089f9"/><file name="MepController.php" hash="458fe1eff6e128d044769674ef9f23fb"/></dir><file name="PbridgeController.php" hash="3978ba3ba6fe6cf9b091ece381a8605c"/><file name="ReviewController.php" hash="3101fd1d9aedb1e89fc12c280a4fe8c2"/><file name="WishlistController.php" hash="d6dfeab3b5dc9bf587758589e5c1e096"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3180468f2486f14e659e7c86343d78a5"/><file name="config.xml" hash="1de38befa8c04d27a273fc25a700eb68"/><file name="system.xml" hash="d1e5c80393cdde5fdd2a42a77b732850"/><dir name="themes"><file name="custom.xml" hash="7b7616e3703910b56e08b64b8f647ace"/><file name="default.xml" hash="302b0678de5bf387ac478cd255177d98"/><file name="funk_leaf.xml" hash="c2c66779f4f7554d171bbc0187a1faa3"/><file name="hot_red.xml" hash="b77adf8884c132d4ae7ac2f0e83fd38b"/><file name="sky_blue.xml" hash="dd0b4ace288f349765535b005d901df9"/></dir></dir><dir name="sql"><dir name="xmlconnect_setup"><file name="install-1.6.0.0.php" hash="fae35cdf1b6a6f32763755476423c3cb"/><file name="mysql4-data-upgrade-1.4.0.13-1.4.0.14.php" hash="ebff287fa37675f477e27bb1a9f6a810"/><file name="mysql4-data-upgrade-1.5.9.9-1.6.0.0.php" hash="0178c4ddfed9e241724e1cd2a4ba49ca"/><file name="mysql4-data-upgrade-1.6.0.0-1.6.0.0.1.php" hash="4583eac65129998fd864f0703df0c5bf"/><file name="mysql4-install-1.4.0.8.php" hash="8d1d456add747ab707911e0d53b1665b"/><file name="mysql4-upgrade-1.4.0.10-1.4.0.11.php" hash="984bb47b1a3bc4f1576289a523f0beb0"/><file name="mysql4-upgrade-1.4.0.11-1.4.0.12.php" hash="64ffb0a83e65cf295fa7ab3ba7e147d8"/><file name="mysql4-upgrade-1.4.0.12-1.4.0.13.php" hash="d2faa427e14b279854c34a56d73536cf"/><file name="mysql4-upgrade-1.4.0.13-1.4.0.14.php" hash="5084e9a4fd9de0d90910ea9d992b814f"/><file name="mysql4-upgrade-1.4.0.8-1.4.0.9.php" hash="0824bebc6a2a25c85e3924ffc6b17c32"/><file name="mysql4-upgrade-1.4.0.9-1.4.0.10.php" hash="51cd7c4464aac3e1e983c7c1c2344abf"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="81e1917dea39925c244155d9f699ddc0"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="ed2536e6edeabda33ff16cf2f8f1ace9"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="xmlconnect.xml" hash="631be7dd152a813a09a4054e2d5dfd65"/></dir><dir name="template"><dir name="xmlconnect"><dir><dir name="centinel"><file name="authentication.phtml" hash="a33dc3e9291f2f68dda7cd50bc3edbb5"/></dir><dir name="pbridge"><file name="result.phtml" hash="a58c41580857dd7b3c324f5e5d01ba44"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="xmlconnect.xml" hash="809b8c4ab859cceae7621bec2e285e48"/></dir><dir name="template"><dir name="xmlconnect"><dir><dir name="edit"><dir name="tab"><file name="content.phtml" hash="cccdb617292cd9ac119af75a0eaf3e52"/><dir name="design"><file name="autocomplete.phtml" hash="8d0e4503c4bb5ce08ac12d701483c5b9"/><file name="image_edit.phtml" hash="169954201fa5130ab412f3d211520ce2"/><file name="images_android.phtml" hash="afedde6e67b886ee3c8093530799ac4e"/><file name="images_ipad.phtml" hash="52ce430db787cd687a765907383c2254"/><file name="images_iphone.phtml" hash="dd8088323457d1695197a6353fe02820"/><dir name="preview"><file name="banner_rotator.phtml" hash="b9bf00f6fe5a0ab14780a013809c182c"/><file name="catalog_android.phtml" hash="cd6db3fe4cfd03733355c68679d729ef"/><file name="catalog_hor_ipad.phtml" hash="2931348d3b3261505cbefb28ed4b1391"/><file name="catalog_ipad.phtml" hash="f07f8a5574d9e603e4db4c6b397ce456"/><file name="catalog_iphone.phtml" hash="2f467d91084f9eb38e73e5b78e130bbc"/><file name="home_android.phtml" hash="60954fb665ebcf1fe9df88827ab8e89e"/><file name="home_hor_ipad.phtml" hash="cb168b42074ea93752fa0af8e049c31d"/><file name="home_ipad.phtml" hash="51186c2bc5282e26c3a9741380484af8"/><file name="home_iphone.phtml" hash="d0e43871417c80802461ffbfdfd4122f"/><file name="productinfo_iphone.phtml" hash="bd15b96799a82ca62caf42dd1441c5db"/><file name="tab_items_android.phtml" hash="4169fcaba1c4ab0737ef2553213023e1"/><file name="tab_items_ipad.phtml" hash="d53134640f8298101ecadbea245313b1"/><file name="tab_items_iphone.phtml" hash="5249c8905d8a4d966f4be11b1e204d22"/></dir><file name="preview_android.phtml" hash="b2b641963de77ea583ebfff0c7c5583a"/><file name="preview_ipad.phtml" hash="e5ff74cf84b189d86b3ed42939dd0ca7"/><file name="preview_iphone.phtml" hash="32f44df018373682daeae7ae5dfd19ae"/></dir><file name="design.phtml" hash="8734a68289c2071133bc2e3c727f83d6"/><file name="offlinecatalog.phtml" hash="32fd2419935b027df57226a116d1447b"/></dir></dir><dir name="form"><dir name="element"><file name="addrow.phtml" hash="ca76c0aac816736be0a85886f3e1aab2"/><file name="app_tabs_android.phtml" hash="054dcbf7761413d32f3604fd11bf30fa"/><file name="app_tabs_ipad.phtml" hash="7d8f990be10716b1ac9bd76290820108"/><file name="app_tabs_iphone.phtml" hash="06a4261f932168b79700c703132dec5f"/><dir name="country"><file name="androidmarket.phtml" hash="8d08ec7efb94b394c01c0f46eff762d7"/><file name="istore.phtml" hash="6a1057c17de4e2f89c5cfef4a432a3e3"/></dir><file name="themes.phtml" hash="eacd3bd1ef34fb756ededba6e04534f2"/></dir></dir><dir name="mobile"><file name="notification_helper.phtml" hash="c018a571d40518f0d84f208d89b4c8cb"/></dir><dir name="submission"><file name="app_icons_preview.phtml" hash="0f4fb7b7155c4ee2ff256312b8ce6a6d"/><file name="container.phtml" hash="4823bde69a271a804c577a53f3e9a872"/></dir><dir name="template"><file name="preview.phtml" hash="8dbc5932abfb66daa1afd6fc6a1fcfae"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_XmlConnect.xml" hash="7b82f645f5c140a6a3a75da5b9594d0b"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_XmlConnect.csv" hash="50e9493da78f8e6591fd3fad1311047c"/></dir></target><target name="magemedia"><dir name="xmlconnect"><dir><dir name="custom"><file name="ok.gif" hash="398f81b3983f802a99932eaf97ee0806"/></dir><dir name="original"><file name="ok.gif" hash="398f81b3983f802a99932eaf97ee0806"/></dir><dir name="system"><file name="ok.gif" hash="398f81b3983f802a99932eaf97ee0806"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="xmlconnect"><file name="boxes.css" hash="3c2086b725d437beac924088c7c4db12"/><file name="dropdown.css" hash="5d4330ec0accc200305f7b308bc9b547"/><dir><dir name="fonts"><file name="android_icons-webfont.eot" hash="2fc917efbfb3c933ccfddc108ef05f33"/><file name="android_icons-webfont.svg" hash="e8cb2b5ef019bbc2885c97ed0caaf2a0"/><file name="android_icons-webfont.ttf" hash="bc567dd7a381093fbb652c58cbad9430"/><file name="android_icons-webfont.woff" hash="8310b54d55bf84a8a3f3a86c22a51aef"/><file name="stars-webfont.eot" hash="019beb4b8ec19447657cf3106138bbe3"/><file name="stars-webfont.svg" hash="20cf0312c0b951d173d4531ea18abc6f"/><file name="stars-webfont.ttf" hash="d63d95e9adaf775f410437535622bf60"/><file name="stars-webfont.woff" hash="526d9756131c94139f0f1df5272197fd"/></dir></dir><file name="iestyles.css" hash="ac870e2cce9b9755d8a1fe5743302f76"/><file name="mobile-android.css" hash="ee0610aa03c10d9409ea18a1ea428a06"/><file name="mobile-catalog.css" hash="e6af0afaebe5eeb66cf2455aa4aa57b5"/><file name="mobile-home.css" hash="60935bcdc4b6116e90b594bc33aa4041"/><file name="mobile-ipad-catalog.css" hash="01a45d36921c4ed221f06691f0bfec31"/><file name="mobile-ipad-home.css" hash="486125018101841c276ffb6cbbb2fca0"/><file name="remove.png" hash="b4903936d44dc498d2f32b72d9161ff0"/><file name="styles.css" hash="cc99e6f892ca08bc6b1dcda74886bf35"/></dir><dir name="images"><dir name="xmlconnect"><file name="btn_edit.gif" hash="e7ecc9fea5c3813957814050508507a5"/><dir><dir name="design_default"><file name="accordion_open.png" hash="4c89d903ebbc61ee295ef64a60724b10"/><file name="accordion_open_android.png" hash="7ef2f1d193990c3f4c2c90aae9ab3281"/><file name="accordion_open_android_l.png" hash="bc27688afbfd866c618477ea2c7bf0ee"/><file name="accordion_open_android_p.png" hash="2e4549cba575c12ef2a39c12e9ffe173"/><file name="accordion_open_ipad_l.png" hash="dcdda97da6556393b972d6dae8d6bac5"/><file name="accordion_open_ipad_p.png" hash="55cca08a0ab79047961858789ff8c3a7"/><file name="banner_1_2.png" hash="0637d31df6b5a434c9a332ee46122ef4"/><file name="banner_android.png" hash="02695661b8e50e1a001c3369622f322f"/><file name="banner_ipad.png" hash="c1d59a6ec67da1bb76c5142453da7acf"/><file name="banner_ipad_l.png" hash="04e850d481a9ae902f33fd8c1f89cbf0"/><file name="smallIcon_1_6.png" hash="c1ce9e289eaf2c0504d502928693bd89"/></dir><dir name="mobile_preview"><file name="1.gif" hash="817fd84187db3eee00799b0acf316457"/><file name="2.gif" hash="1a842d8f3ac25cfcdeab6c86dd8fea89"/><file name="3.gif" hash="207cd55e968c284bd52c86efdcdda1c7"/><file name="actionsBackground.png" hash="11faa8baee72f3e6a9a02a83915c8658"/><file name="actionsBg.png" hash="9acccd1980f17006942d74a718ebd7da"/><dir name="android"><file name="background_home_landscape.jpg" hash="1f79a1f42ca4e2cf6010ab6c3ef66aa4"/><file name="background_portrait.jpg" hash="197b15e6455ad1a85e1bad6595371fa3"/><file name="bg_button_up.gif" hash="204f590a88933c930b7fc92963accfab"/><file name="bg_cat_item.png" hash="2859b45c387b66243d4af2ba973b2ae1"/><file name="bg_catalog_filters.png" hash="7464191ebaf576b73a3c021eb1cfcc25"/><file name="bg_catalog_filters_shadow.png" hash="5021ad60917190026d85fae1d33bdaa9"/><file name="bg_content.jpg" hash="70ddfc8959d878d1231dc7cbee4a063c"/><file name="bg_frame.gif" hash="7062ed9b7563fc658f49ce7cfdd34f1c"/><file name="bg_header.png" hash="d4a46c8850d1d89259921b1c28b5bce1"/><file name="bg_header_catalog.png" hash="c1080cd18a89e21da18fdc6955bf6230"/><file name="bg_header_home.png" hash="dfce0445ca7c7a45c7914a986b596ce0"/><file name="bg_home_content.jpg" hash="1d55a198279e4f2b163c98c18f699646"/><file name="bg_home_header.png" hash="8bc1887a0c5760cc47b77b8a7a320426"/><file name="bg_logo.png" hash="02695661b8e50e1a001c3369622f322f"/><file name="bg_page.png" hash="d65f1d123655c2eaf3bb4a1e6035a08d"/><file name="bg_star.png" hash="fc6de6c4e0ed3478b8840e1ab81da725"/><file name="bg_star_empty.png" hash="3f0421fb8c8f6c4be6ca501168a881e8"/><file name="bg_status_bar.png" hash="52b41106451ac34672f82338bbc5370c"/><file name="ico_account.png" hash="c1fd338c74fcf483155acbd37c430807"/><file name="ico_home.png" hash="2de37f640463b354d68945320bfe3e4f"/><file name="ico_search.png" hash="8b0dd17a3e9c3328e66204fe379c66aa"/><file name="logo_big.png" hash="693bb9d118155a146b21ce9fcfba08da"/><file name="product_image.png" hash="dd975b128ba303e0ae2adc9772e0433c"/><file name="product_image_1.jpg" hash="8994979d4dcc1f339c73cd1f44398a7d"/><file name="product_image_2.jpg" hash="26d6599bdb35d80b25a1e903b40cfa19"/><file name="product_image_3.jpg" hash="d7c6d05196a84341afe0025d01b9dc61"/><file name="product_image_4.jpg" hash="2a88ead3dbbeff1d40168db692841f2f"/></dir><file name="arrow.png" hash="837259a7c365e46034dca728bffe9070"/><file name="background.gif" hash="bd92833eb2eb32e4a0282cea153ac13f"/><file name="background.png" hash="3717f4b4ba725701e2a0604129a3a815"/><file name="banner.png" hash="0637d31df6b5a434c9a332ee46122ef4"/><file name="btn-l.png" hash="92b2454528e9d39119038777cf53329c"/><file name="btn-r.png" hash="8c6aa9fd9203bc10822e0505f11e0c4d"/><file name="circle.png" hash="f4c116cb0554bf936d3b9ee38b7f3d1f"/><dir name="custom_icons"><file name="account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="actionsBg.jpg" hash="ee3db742cbec9a436ba46118c8a01303"/><file name="addToCart.png" hash="e33876648546e99d875ca92bd2cd78e9"/><file name="addToWishlist.png" hash="1018602b7c5e0e11f0427ace96fd7d52"/><file name="background.gif" hash="bd92833eb2eb32e4a0282cea153ac13f"/><file name="buttons.gif" hash="0cd19a9d9178976906161ea100cba958"/><file name="cart.png" hash="815b4c64fae21b4c162525ece76dc44d"/><file name="home.png" hash="9e473791b022b7c2dfc7d29b1b6de887"/><file name="image-bg.png" hash="14bde5cf8b00dc5f6c60e52a0fa964dc"/><file name="logo-small.png" hash="9b3477a4552bcb878b4943aae5351622"/><file name="rowBgIcon.gif" hash="9ee89b961ae2bb047672ba5d2d2677c6"/><file name="search.png" hash="10bfa7ec3361ce7cbcc5d25087f181eb"/><file name="shop.png" hash="e6639a9fdc143363da82a7d78e126f1c"/><file name="star-active.png" hash="d4ab959a92bda610527a3e3942c4c0b0"/><file name="star-inactive.png" hash="f7fb99710be4c03ac23b1206f20e761d"/><file name="tellAFriend.png" hash="46f8ef48b29f245977d66d9312d87e70"/><file name="viewDetails.png" hash="9bacc63bcc483d3db5614a026d9391f6"/><file name="viewGallery.png" hash="304f3d03949d07055bc056359fe17763"/></dir><dir name="gradients"><file name="footer.png" hash="31a2feed50ef9c8637b412c4211f8300"/><file name="header.png" hash="5386da930a944cd75562216249cce08a"/><file name="header2.png" hash="ad5a2dc6ec93914e925cfe2d43fb30a2"/><file name="header3.png" hash="920ad8c6903e90323a57fb02dca37280"/><file name="item-bg.png" hash="a14886d1f9e14284ac6b4f1b61e68646"/><file name="sort-bg.png" hash="b8053bb772e849909e5b87e4fd1ebbe4"/></dir><file name="grid.png" hash="23faa3f5572cdeb597c2bceedd93a7f8"/><dir name="icons"><file name="account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="cart.png" hash="815b4c64fae21b4c162525ece76dc44d"/><file name="home.png" hash="9e473791b022b7c2dfc7d29b1b6de887"/><file name="more.png" hash="f3662ae29923b87eba3a729192aa3df3"/><file name="page.png" hash="2291d77f21de042040bc0864be40138b"/><file name="search.png" hash="10bfa7ec3361ce7cbcc5d25087f181eb"/><file name="shop.png" hash="e6639a9fdc143363da82a7d78e126f1c"/></dir><file name="image-bg.png" hash="a588b9cced95a25fc18e28c775d9a001"/><file name="info.png" hash="3f0d2ed85b81e8251f294457c6bfa404"/><dir name="ipad"><file name="background_home_landscape.jpg" hash="9e3ef117985113b804531142d539b60a"/><file name="background_portrait.jpg" hash="bdf9e034fd30b923086e6c622ea10451"/><file name="banner_image.png" hash="693bb9d118155a146b21ce9fcfba08da"/><file name="banner_image_l.png" hash="a070a40d57610b5cc7160fe894482a1c"/><file name="bg_catalog_header_hor.png" hash="f61a67aa288e1b8a8df7b4d4527c662e"/><file name="bg_content.jpg" hash="70ddfc8959d878d1231dc7cbee4a063c"/><file name="bg_filter_button.png" hash="728f1cd358446881ffd863eff12204a1"/><file name="bg_filters_buttons.png" hash="02fcb0ed7a7268e9f64ebaf06235bc09"/><file name="bg_filters_tooltip.png" hash="3b05ca6e585acd3d766be01eeaa23d47"/><file name="bg_filters_wrap.png" hash="31288784fe95c67de9b45b44458b4155"/><file name="bg_header.png" hash="e2cf5a575a27e6e4533e3c85e3472a82"/><file name="bg_home_content.jpg" hash="1d55a198279e4f2b163c98c18f699646"/><file name="bg_home_header.png" hash="00f2fbf96d2b915dcbcd921b0301ef3f"/><file name="bg_home_header_hor.png" hash="9bfef728ece003d5b3433d2623ea168c"/><file name="bg_home_products.png" hash="ac6a8a79b959a0c8298b1f607c0f0af8"/><file name="bg_home_shadow.png" hash="c54b071ca3e97a6ee67588ef74b7b44e"/><file name="bg_home_shadow_hor.png" hash="0d21a99c5c749d0e5070e3585ff4a23f"/><file name="bg_product_image.png" hash="4da74325c1a4ee1ca19b414e5d590f75"/><file name="bg_search.png" hash="6ee08d05d0c4ef9ed64b9914b821f408"/><file name="bg_sections.jpg" hash="0ee90005663aced09a9ce6385bdbce2c"/><file name="bg_status_bar.png" hash="17124d9d392bb8e37b202c80a595df54"/><file name="bg_status_bar_hor.png" hash="bd4a9f11ecb1c896145267731d8a951d"/><file name="i_cart.png" hash="1bbe0a0e54eed5bb14b9bfcce83da758"/><file name="i_info.png" hash="3f0fda8b294b67bf698badbcaa99150b"/><file name="i_login.png" hash="deb4089bdc61582c78c90ef192d577e8"/><file name="i_remove.png" hash="4923eb5e76b3c6ba6df5c667db816a0c"/><file name="logo.png" hash="49c19f59b459b6c0b3b99daa3fe7f932"/><file name="logo_big.png" hash="693bb9d118155a146b21ce9fcfba08da"/><file name="product_image.jpg" hash="2bb6c69129bcb18dc93e9f48605647c6"/><file name="sections_arrow.png" hash="7db7144083a31882e8a62cb9579f478f"/><file name="stars.png" hash="70d38cd9883d70e4f6b21ac4874b9868"/></dir><file name="lightStar.png" hash="b5dc40d5b793dae6a069357f49cccc24"/><file name="lightStar2.png" hash="75928926a6112540c9cb073157cb7d95"/><file name="lines-h.png" hash="ea3d95812c9838affc6df2f3a3cb1977"/><file name="lines-v.png" hash="9e3ffee29ba28477d50da9642019bc0a"/><file name="login-btn-left-alt.png" hash="71bb6c7d24252aace27bee711d7616f4"/><file name="login-btn-left.png" hash="cbbf9afc6e9fc433f57270e88b63f351"/><file name="login-btn-right.png" hash="438fcc598d012bf6d33184e95accfd24"/><file name="login-btn.png" hash="051ee2c1a8ce3f7b8de3293cd2e2ed85"/><file name="logo-small.png" hash="9b3477a4552bcb878b4943aae5351622"/><file name="logo_25.png" hash="ba41ed568d916175c32803b614442447"/><file name="men.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/><file name="mm-frame.gif" hash="eebf30806f1dbf2118e7ec39a016c86d"/><file name="mobile-catalog.css" hash="dd45f18b0767c1e1772988d6b403603b"/><file name="mobile-home.css" hash="24a9a06cf1a517de00ef0530cbe36307"/><file name="rowBgIcon.gif" hash="9ee89b961ae2bb047672ba5d2d2677c6"/><dir name="slider"><file name="actionsBg.jpg" hash="ee3db742cbec9a436ba46118c8a01303"/><file name="addToCart.png" hash="2a146be4bc63713df19cc353e030d44f"/><file name="addToWishlist.png" hash="9b23a4e0d9acfc79f314e9082f14c4de"/><file name="tellAFriend.png" hash="b7600fa2ae52bdb1d6bb86fe4d9f1773"/><file name="viewDetails.png" hash="90cf37c6dbbee1861350b4c05469e3ae"/><file name="viewGallery.png" hash="304f3d03949d07055bc056359fe17763"/></dir><file name="slider.gif" hash="c6b87bf15b85b18c0515e2cbefaabe60"/><file name="smallIcon.png" hash="e76d2a6364042f41b3f35fc8cdc9c0ee"/><dir name="sort_buttons"><file name="bg_button.png" hash="87d0f1b123f01c3aea3cb8a2b146306e"/><file name="button_up.gif" hash="7ad527f99b9975d5634fb2d5cc99e6b3"/><file name="buttons.gif" hash="2f14f1a3f0fb38790779c992a58654ae"/><file name="buttons.png" hash="b4a3f17370e03bf5d2a5cdf7800c25a7"/><file name="center-active.png" hash="5903988cd458cd794f23a212d51aa725"/><file name="center-inactive.png" hash="135b46aaa5c3b131a5a7e9c45c004e06"/><file name="filters.png" hash="3837ab6fcfe959833dd998533db1ca7f"/><file name="left-active.png" hash="86e94441b96a0d27d0b0a7e5108f86ed"/><file name="left-inactive.png" hash="0ddcb75aa9971cca39a5a65b4bdff8c4"/><file name="right-active.png" hash="320740ff608187301b06a96eab2f9e8e"/><file name="right-inactive.png" hash="cac4b39ab380353ffd5fdbcedb6e0a0a"/></dir><file name="star-active.png" hash="d4ab959a92bda610527a3e3942c4c0b0"/><file name="star-inactive.png" hash="f7fb99710be4c03ac23b1206f20e761d"/><file name="t-shirt.gif" hash="7505efdaabf13c4f8e26f7cfe15c8c96"/><file name="t-shirt.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/><file name="women.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/><file name="youth.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/></dir></dir><file name="dropdown-arrow.gif" hash="332e99ca6b4d1e0d39972e04fb0b2395"/><file name="empty.png" hash="23dc9dc3c4751f83c2df7a5c42668824"/><file name="full-arrow-left.gif" hash="8ec91b60d38d1a16cba7670f2088a5c7"/><file name="full-arrow.gif" hash="36ddff0fca1c7d8900cb3633e0a30cea"/><file name="gel_green.png" hash="591959d831e8e42c9175d12a88f0bae2"/><file name="gel_red.png" hash="db442c023014df9da32b84bc1bb5a39f"/><file name="l-arrow.gif" hash="ee49f7eab64657b5131953acef0238fd"/><file name="loading.gif" hash="5d25806dac7cbee5f894b13144783866"/><file name="r-arrow.gif" hash="d0429a9781e915fc9d9ca8875c470d32"/><file name="remove.png" hash="ee9497c5f31933eaab3e9e352495ee12"/><file name="small_logo.gif" hash="d5c8be7c0f16aac2549759c0228492d6"/><file name="swatch_black.gif" hash="fd31d6a3a435c8ad1f7c43f346bb47e4"/><file name="swatch_custom.gif" hash="fb34791a48366957a141e12b563888c2"/><file name="swatch_default.gif" hash="fb34791a48366957a141e12b563888c2"/><file name="swatch_funk_leaf.gif" hash="f1d3ba87efb742b47da879a6f48909c4"/><file name="swatch_hot_red.gif" hash="d9363d45dc2993c2fdc3ea43c5b6f71c"/><file name="swatch_sky_blue.gif" hash="ded1455db119d09a3aedd7474fd1875a"/><file name="swatch_user_custom.gif" hash="a24f31421a1ff56d1be0845f9a7c7020"/><file name="switch-arrow.gif" hash="dc7243962b341f366cd072d486687e6a"/><file name="tab_account.png" hash="27101fbaa78a07426be4768acc4c53ff"/><file name="tab_account_android.png" hash="77605cbc87f75ca17e91a5393765ceb1"/><file name="tab_account_ipad.png" hash="2997de5402195d0720309b73c6446fab"/><file name="tab_cart.png" hash="e803f760ee81cb35183f1122f388b774"/><file name="tab_cart_android.png" hash="477e97f8d03ea8aa674e952709f86578"/><file name="tab_empty.png" hash="bdd4cc355566e8861b2c45424ad94516"/><file name="tab_home.png" hash="dfa104e4da74e4a55d3c98d6ee0f7122"/><file name="tab_home_active.png" hash="bba5eb9bb724c84c1ede9e6f4bec3575"/><file name="tab_home_android.png" hash="1fefc6b070cc21b31b43194a7d85f9d9"/><file name="tab_info_android.png" hash="67fc19d8d926f7aede482f5a7083fc71"/><file name="tab_more.png" hash="2803359cb3e795bf67457e727aa16020"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="2cf29dbe325558353621b4241543204f"/><file name="tab_search_android.png" hash="932c2c568872fd9e119367c887f0539a"/><file name="tab_shop.png" hash="f36be0d3d27f2b37626247d3f6a55e2a"/><file name="tab_shop_active.png" hash="de907d6a52d477d4319649f9b0e2e4aa"/><file name="tab_shop_android.png" hash="e119fcd20f8cba856d550a64d775ddbb"/><file name="tmp-icon.gif" hash="58b759aecf3bdae26d5aaff7a0be5c90"/><file name="xmlconnect_tab.png" hash="cd99a7e01a42a6c82d866f7684faeb95"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="xmlconnect"><dir><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jscolor"><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="demo.html" hash="edf71251cb2be20322d2efb00aee86a6"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="jscolor.js" hash="b65a1505390592ac6c0177d6b84774e0"/></dir></dir></target></contents>
16
  <compatible/>
17
- <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.2.4</min><max>1.9.2.4</max></package></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Magento_Mobile</name>
4
+ <version>1.9.3.0</version>
5
  <stability>stable</stability>
6
  <license>mixed</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Magento Mobile Xml Interface</summary>
10
  <description>An integration Magento with mobile applications (e.g. iPhone, Android, iPad)</description>
11
+ <notes>1.9.3.0</notes>
12
  <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2016-10-04</date>
14
+ <time>13:04:46</time>
15
+ <contents><target name="magecore"><dir name="Mage"><dir name="XmlConnect"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Admin"><dir name="Application"><dir name="Edit"><file name="Form.php" hash="81de307cd06df01f576467319f9c0fa4"/><dir name="Tab"><file name="Settings.php" hash="54d3819a08c5809dbf9f620dad298868"/></dir><file name="Tabs.php" hash="5e456bc38d9d4640e36187dccb8ac697"/></dir><file name="Edit.php" hash="32f7c57bd85ee1990f75f7a697b66929"/></dir></dir><dir name="Connect"><file name="Config.php" hash="861b098ae486fbcd83707c3244ce12b5"/><dir name="Dashboard"><file name="BestSellers.php" hash="e478d773241203669523b473444c154f"/><file name="Customers.php" hash="71080b1515bbf51f1ba7edf929ad6077"/><file name="GraphAmountsData.php" hash="5f926bc425669db2aba46e4bbd3a403b"/><file name="GraphDataAbstract.php" hash="1f35c970fc74876f8f2a3cbacbfc05d2"/><file name="GraphInfo.php" hash="4127357def7066c44caf4b5b67b13797"/><file name="GraphOrderData.php" hash="40c6e8aeb91570a412989d6689358356"/><file name="GraphTotalsData.php" hash="328d9a3b8df76454a9e9bd6e15bab23c"/><file name="LastOrders.php" hash="1538796b2a3e13b25eaae5d69aced64d"/><file name="LastSearchTerms.php" hash="2bd8f3f92656d04a4ba4e98cd0fa69d2"/><file name="MostViewedProducts.php" hash="28c4e5ed58552f52bd1d64ea4eb2ec95"/><file name="NewCustomers.php" hash="bc223c585a354436873f2de263d4421c"/><file name="SalesInfo.php" hash="109ed247c22acecd220a8fc4e8a0d5a7"/><file name="StoreSwitcher.php" hash="b0e9f3e9762c5b09a7cedbf1e264b426"/><file name="TopSearchTerms.php" hash="02a79f94bc53149d85445f13a9ad4665"/></dir><file name="Dashboard.php" hash="c75b59f58ee0e298e09055d5737e8305"/><file name="Loginform.php" hash="3f45a52b7354864635668e2e378974ce"/></dir><dir name="History"><file name="Grid.php" hash="fe68c2eeac3c1ef9e8686cefa59631b0"/></dir><file name="History.php" hash="96ce89387bd16621f6b1d66bcef05e92"/><dir name="Mobile"><dir name="Edit"><file name="Form.php" hash="acf764b983c4e3148c18c5e9934f0563"/><file name="Submission.php" hash="878de8d18da07cb60f77eee87fad98e1"/><dir name="Tab"><file name="Cache.php" hash="22bba9a13163ad32b1366b455927fa2c"/><file name="Content.php" hash="34980cb4a29bb4deb6ca7e9d2d6fcccb"/><dir name="Design"><dir name="Accordion"><file name="Images.php" hash="7a59a1349377583081f6fda64b159c32"/><file name="Tabs.php" hash="c60623f4ed1625be900beca49ed644ea"/><file name="Themes.php" hash="2d41adb2ac428a51de6786a5f2a09030"/></dir><file name="Accordion.php" hash="e8861afac929a7a69a7159fa3161dad9"/><file name="Images.php" hash="daccd2c0089cfed6eeaaf891defba9fa"/><file name="Preview.php" hash="6ef187c6822022069ee6839b600c6123"/><file name="Themes.php" hash="e1ffa9ecd9c5d01dc7531c7c945fddac"/></dir><file name="Design.php" hash="188039aab7a2250caae29a67d7e7c8da"/><file name="Flurryanalytics.php" hash="9e8bab9945c9ee0110537ff3dae3bc50"/><file name="General.php" hash="1ed8d9115158c9247454c6c7b5ed8165"/><file name="Notification.php" hash="8c06281eb5a3446c0da6ccdb44584bd8"/><file name="OfflineCatalog.php" hash="5a1f101af1ed28935a6bcd62df9673d2"/><file name="Payment.php" hash="54c037f31373c9050c7ec1efb7b7cbe2"/><file name="Settings.php" hash="8143326256fb9a5e5b9e0b8f03a1cd42"/><file name="Social.php" hash="11edafdfb0ebaf4af1fe84dee54c9348"/><dir name="Submission"><file name="History.php" hash="6a51786e4130755f6654cdc3d298e8fd"/></dir></dir><file name="Tabs.php" hash="aa589cf412e91fd2c71edcf5847db267"/></dir><file name="Edit.php" hash="345e2327087fe7be18d9f784e1a599e2"/><dir name="Form"><dir name="Element"><file name="Addrow.php" hash="bc717c019a303601a82b8969b2c8af47"/><file name="Color.php" hash="2ea97f40943591aeca0c0b6ce6d8004e"/><file name="Country.php" hash="c433589f22226b8098577d992f7e9c58"/><file name="Datetime.php" hash="5f1f3cc75a3748cc5a259d4f0d876f8a"/><file name="Font.php" hash="78d2cdf94f14be0d79b54d426fea9521"/><file name="Image.php" hash="8b8a050c4f5c11b3e999abeec618db14"/><file name="Page.php" hash="252d20e8d1c966fb527d97c29062e2d0"/><file name="Tabs.php" hash="5cbacf9a898dc4cecf9966d7bfb90704"/><file name="Theme.php" hash="836b1fb2ea6d15746b0cfd13f2a8ac5a"/></dir></dir><dir name="Grid"><dir name="Renderer"><file name="Bool.php" hash="90fc8a270dfd3e217212830c4f4aa763"/><file name="Type.php" hash="9ad29b888687ca522ec6dbc41d63ea94"/></dir></dir><file name="Grid.php" hash="827f9cfa1130743c8a66648c253949e1"/><dir name="Preview"><file name="Content.php" hash="25b50cbbba58cfe3fc6e117c33305298"/><file name="Tabitems.php" hash="aa64c8eb4f5886bbec4a173ab263ecf2"/></dir><dir name="Submission"><file name="Form.php" hash="2639d06286f24639b5d41481682c8dc5"/><dir name="Renderer"><dir name="Country"><file name="Androidmarket.php" hash="373f45c586bf87b3da5325cf75af2181"/><file name="Istore.php" hash="b80cae1b5f50bbb4ea051402e82e6a50"/></dir></dir><dir name="Tab"><dir name="Container"><file name="Submission.php" hash="d02436374c50bff82a8f4718f6ad45d6"/></dir><file name="Container.php" hash="6e14cc37a560c9c6577615617b33fa30"/></dir><file name="Tabs.php" hash="d020af845e0683035fb0b7a431bd2c5c"/></dir><file name="Submission.php" hash="c4772eff0f61ff267cbba2dc33ae8029"/><dir name="Widget"><file name="Form.php" hash="9b7f953d96959d53039810891b78bb7d"/></dir></dir><file name="Mobile.php" hash="6aa5a90e54b111f8ac70ec9ede0f5908"/><dir name="Queue"><dir name="Edit"><file name="Form.php" hash="90ba2db39ab7e25127f8846c2a337e78"/></dir><file name="Edit.php" hash="b20d9c0b25b2d0e7ca75f540ecee644d"/><dir name="Grid"><dir name="Renderer"><file name="Action.php" hash="b43060dc3e63a35d11cec554003a2184"/><file name="Application.php" hash="2f0063e9970cf9566c7c110d7f91e5b5"/><file name="Id.php" hash="237889b1a6929e5976c2be04ada9dc15"/><file name="Msgtitle.php" hash="34c830f9ef566b955a000ac157c5123c"/><file name="Pushtitle.php" hash="a385800909bca55f77a890e14dd579a5"/><file name="Status.php" hash="f3317011cb190208e42fd516a4e65fc6"/><file name="Template.php" hash="569174f250776e4695f6772c779f02df"/></dir></dir><file name="Grid.php" hash="701ec3a6e9a2c0eabb37837916d7e340"/></dir><file name="Queue.php" hash="2a0ba5ac86ba9701b67219d636dfd003"/><dir name="Template"><dir name="Edit"><file name="Form.php" hash="0ed4b2df1a6b74d4bf56c60cd50b3b5d"/></dir><file name="Edit.php" hash="40cace124f237750624d35c12aac5073"/><dir name="Grid"><dir name="Renderer"><file name="Application.php" hash="ab50306bc4b26b45760edab0004d44fe"/><file name="Name.php" hash="f97e88f2f68623cb26f35f2f178fea3c"/></dir></dir><file name="Grid.php" hash="b53969b370f179fdd09d0314071c4edc"/><dir name="Preview"><file name="Form.php" hash="0e053c9d5fed78b67c86dbd1168d6f9b"/></dir><file name="Preview.php" hash="24ad4c47c1c851b599baa4e8c5114f19"/></dir><file name="Template.php" hash="692e804274907e986c54b4f70be921ee"/></dir><dir name="Cart"><dir name="CartTotals"><file name="Default.php" hash="1b136d777c1c0a28c1f9a93e427d835d"/><file name="Grandtotal.php" hash="4ce2394d5d267d2db9a978159953e15b"/><dir name="Nodes"><file name="Default.php" hash="83dacc218c70d3b2ec2e5a3d9aa6eb9a"/><file name="Giftcardaccount.php" hash="b53cad0aeaaaa220fb68ccaf05266333"/></dir><file name="Shipping.php" hash="f5991642fe7772180c8047184fcd1161"/><file name="Subtotal.php" hash="03eefc2f989c6cd6bac953d7df412988"/></dir><file name="CartTotals.php" hash="1babd3254f28e9a1ddb9a599a86d4514"/><file name="Crosssell.php" hash="73a0a0b0ff9e58f14319e6aac4fcf67d"/><file name="Info.php" hash="bf6baca3b660154aa2f04f96be8da31c"/><dir name="Item"><dir name="Renderer"><file name="Configurable.php" hash="057cd631834b45d7ecbd98dc33fba30a"/><file name="Grouped.php" hash="1f3016942638fb3cb89b5759680e3935"/></dir><file name="Renderer.php" hash="4d9fad104f7e8b60f74597c476496448"/></dir><file name="Items.php" hash="318e6ca5a6fa094dc7b8bb153fcb3e91"/><dir name="Paypal"><dir name="Mecl"><file name="Details.php" hash="a3319cd77773c05e4268c9ba94c285a2"/><file name="OrderDetails.php" hash="d862d3dd1755b7b38e48e81742ebfddc"/><file name="Review.php" hash="aea164d918f33e438d0f3933bf66708b"/><file name="Shippingmethods.php" hash="95f30bd79d4bffd03ff9e6864e592119"/></dir><dir name="Mep"><file name="Totals.php" hash="5942db40c8cb900cef089c276358aa11"/></dir></dir><file name="Totals.php" hash="0dc65b9c5398934830bdf1cfa885b4db"/></dir><file name="Cart.php" hash="e519c3943bf4d3525b3d9614c4da0764"/><dir name="Catalog"><dir name="Category"><file name="Info.php" hash="b79448d8f413faf34eea85aa929119c7"/></dir><file name="Category.php" hash="1494d497c25a64a6290c8bb5c3774127"/><file name="Filters.php" hash="034fb4406ebffa971b3513d2b3317744"/><dir name="Product"><file name="Attributes.php" hash="37d77f168c874a2764825628ebf94e67"/><file name="Gallery.php" hash="d196f3a5683daee10c4a1c7be1aa3be7"/><dir name="ItemPrice"><file name="Bundle.php" hash="00508bf0429c9147ad522d7472e2aec3"/><file name="Default.php" hash="10afdfaa3d9901df65836be0c7e53aff"/><file name="Giftcard.php" hash="4f75c7d42784400009668021f43e3aaf"/></dir><file name="ItemPrice.php" hash="c638f5ab6ec0eb837a9d078709c4808e"/><file name="List.php" hash="3421d4a4b5c28a8fedf69a2b30d72579"/><dir name="Options"><file name="Bundle.php" hash="e0a012200dafa6ce8774edec6d90d65f"/><file name="Configurable.php" hash="4fd0245fcd992850dc37f2de3fae0bce"/><file name="Downloadable.php" hash="906f890ad35b2f388ececf3c204f7b29"/><file name="Giftcard.php" hash="785fb7aeafcb2aa54d3b737aa1cc474e"/><file name="Grouped.php" hash="dff03abb13387397015d56cf1c812d4e"/><file name="Simple.php" hash="6d0576f1c23f9cdde1fbe07a286a044b"/><file name="Virtual.php" hash="dabf7c2fb97f4d95d0d63915f2668137"/></dir><file name="Options.php" hash="6067f2e7a9c9bf253ba60f48e551d427"/><dir name="Price"><file name="Bundle.php" hash="bd655b2be649521cfb9ce42fe0e94002"/><file name="Default.php" hash="afb4eb633d78cf9f778cdb8c3a7c28d4"/><file name="Giftcard.php" hash="d00901b021183008ade4f5d5fe3f0136"/></dir><file name="Price.php" hash="d91ac4d4a7ff31d884ce4b9a4a9a511f"/><file name="Related.php" hash="7d85e50c58d0f4702193b6a1a5f8a241"/><dir name="Review"><file name="List.php" hash="2bb87638a723c5e79caf0e65c8578900"/></dir><file name="Review.php" hash="4dc6bb45cbeccce79c90c150404e3c9e"/></dir><file name="Product.php" hash="06fadc44ab4cb0283f232a7c4637dac7"/><dir name="Search"><file name="Suggest.php" hash="2cf684e61a59e85872d4088df4d34f26"/></dir><file name="Search.php" hash="c76df74ce239f6cc9c97ffac0ba34840"/></dir><file name="Catalog.php" hash="98aa7ef2fdd60fc3d08611ead01a9462"/><dir name="Checkout"><dir name="Address"><file name="Billing.php" hash="dda4fcb0ca7f24aeb1457b50906746db"/><file name="Form.php" hash="b0610862258424b602d6e1d82fed3ebc"/><file name="Shipping.php" hash="49c9edc24e4d162ec937247ad107da7c"/></dir><file name="Agreements.php" hash="bd8b2ba64129380291de3071dd249afa"/><dir name="Cart"><dir name="Item"><dir name="Renderer"><file name="Bundle.php" hash="9a9993a79414f5a2cbd218dc9b9b6ccc"/><file name="Configurable.php" hash="265a49e5b3d07e6733fb8d36052fd01b"/><file name="Downloadable.php" hash="ad077e862c2dce16049b2e81f3b9739a"/><file name="Giftcard.php" hash="5f24a561d608eb04951d0571dcaac4df"/><file name="Grouped.php" hash="0eb5bf8d9c9e88d8c8b1293191ef759e"/></dir><file name="Renderer.php" hash="86f42693f44c141610c5fc0c8bf89b37"/></dir></dir><dir name="Onepage"><dir name="Address"><file name="Form.php" hash="acd1913b3d41727beaa72b5d23730fe8"/><file name="List.php" hash="cb82badb3bd83a9e612796c97a3eea00"/></dir><file name="Address.php" hash="3fe5ccf3a48a14ad949f838d8f409f04"/><file name="Review.php" hash="04c48836b2604c8e98555e3661c38f11"/></dir><dir name="Order"><dir name="Review"><file name="Info.php" hash="0dad6ef1b586b7a4ea2011ac58afb17e"/></dir><file name="Review.php" hash="290246cad6115999f483b309626ea1d5"/></dir><dir name="Payment"><dir name="Method"><file name="Authorizenet.php" hash="41874ca8e040863958130990314d007b"/><file name="Ccsave.php" hash="77198aba895aa5d2a2c12679b414a39f"/><file name="Checkmo.php" hash="0a7d3f89018ec4bc683bd1605465d5e9"/><dir name="Info"><file name="Authorizenet.php" hash="a081aef705f853e0465c32d8dfd6cfe4"/><file name="Ccsave.php" hash="7cbe7f676ec0c77f4a31f7a0035166e8"/><file name="Checkmo.php" hash="9f5b2229ae210cb38fbcaf824bc38f16"/><file name="Free.php" hash="335e6ba08eafa4be1920762600c32d6a"/><dir name="Paypal"><file name="Abstract.php" hash="281daf0e5bb924514ce4fdfc9f6f24a1"/><file name="Express.php" hash="32271792fb64f5fed457f7f964f33c43"/><file name="Mecl.php" hash="84d064b1c13ad1eedaa230492d771c6c"/></dir><dir name="Pbridge"><file name="Authorizenet.php" hash="4c1f13cea301c509f40e7ee07030f95d"/><dir name="Paypal"><file name="Direct.php" hash="8920782b5622512a77ecbfd7538a3187"/></dir><dir name="Paypaluk"><file name="Direct.php" hash="67b7eab62c68fd19c6b886f2954bf987"/></dir><file name="Verisign.php" hash="1da421d6bad805d944fcba96c9e99056"/></dir><file name="Purchaseorder.php" hash="bb8b5a96661d1932307d800c31e71e2d"/></dir><file name="List.php" hash="5e835636eb5d5be3fb8c45d8a559cf06"/><file name="ListApi23.php" hash="bd39ffc43bb808eadbb81b5c2a3c3e04"/><dir name="Paypal"><file name="Direct.php" hash="7119a3fede4bd80e32b77bed106e2d68"/><file name="Payflow.php" hash="90c07c686e0e9bce2161f971c69d1006"/></dir><dir name="Pbridge"><file name="Abstract.php" hash="ac5deb9c3b229853d2b66c2b8cb27f8f"/><file name="Authorizenet.php" hash="705ce298ace0af4dccfaf876d43adbdb"/><file name="Paypal.php" hash="f7c537d7d332fba8d0614afba286f1e9"/><file name="Paypaluk.php" hash="48e32f15a4356ddfbdebf3525df90b64"/><file name="Verisign.php" hash="d1107c7dae02312382a9c49869264ba0"/></dir><file name="Purchaseorder.php" hash="ab1ac313d0e13833d8734c5754bb62e0"/></dir></dir><dir name="Pbridge"><file name="Result.php" hash="11be3a34105a6272772a8082337507f7"/></dir><dir name="Shipping"><dir name="Method"><file name="Available.php" hash="e64b87b635aabaa2f364ba7e96f25943"/><file name="AvailableList.php" hash="dea350f8eeb675d26e4d2c7ec4ebdb64"/></dir></dir></dir><dir name="Cms"><file name="Page.php" hash="39b0889ccb35e41120e6481a0e59d781"/></dir><file name="Configuration.php" hash="255cdace32101aee9f57728b9161dc3e"/><dir name="Customer"><dir name="Address"><file name="Form.php" hash="b3be346ff0cc1e9a8388efe4e4e94a79"/><file name="List.php" hash="4c866445736bb0a81e7eeb26fb847ec0"/></dir><file name="Downloads.php" hash="f2124b1624b6aa5528f9c809b53806d3"/><dir name="Form"><dir name="Renderer"><file name="Boolean.php" hash="84ebb58ce45d926d64f4e925d2eafa4a"/><file name="Date.php" hash="6e5ac1cfe5bc00b53bf463ae304a029f"/><file name="File.php" hash="cf6371b1a58b80ba661c93c6a01b00da"/><file name="Image.php" hash="de7f0422d0399706421ef3e3308035a2"/><file name="Multiline.php" hash="d020f2ecc010106a22334f5f8c7304e8"/><file name="Multiselect.php" hash="731a1d8e3c227d5dfdbacf8b3a529299"/><file name="Select.php" hash="2ea8cf4ab7df763b923d0d2e88d9540f"/><file name="Text.php" hash="fc4019a6918fc9329e9ede589434d66f"/><file name="Textarea.php" hash="c07e56e9d61e50b5f668ac804def1690"/></dir></dir><file name="Form.php" hash="ad09612811fd232736d05b22bec642a2"/><file name="GiftcardCheck.php" hash="858f6b32864cbc723b18c5545b0f2f3e"/><dir name="Order"><file name="Details.php" hash="dd3f51c3bfbcb3c8935a08b626a0a05c"/><dir name="Item"><dir name="Renderer"><file name="Bundle.php" hash="72394c13ca338474becc38e99b520e17"/><file name="Default.php" hash="fb2223412f271d024f8cc5008732abd8"/><file name="Downloadable.php" hash="962fdcd851fb1a8b101f2004017a6797"/><file name="Giftcard.php" hash="246e5648b7c988106b45f13699b91cd2"/><file name="Grouped.php" hash="b55698b0b4e405cb180b61d41e8a6f0a"/></dir></dir><file name="Items.php" hash="e221d089b0cce1c12e7185fd6336d4c3"/><file name="List.php" hash="59468d0ff1ed51608f3eda46a0ae6034"/><dir name="Totals"><dir name="Customerbalance"><file name="Refunded.php" hash="4496c6a3ffaddfdc722e56e2554d4790"/></dir><file name="Customerbalance.php" hash="bd30268df36d48bde24555765a20c7d0"/><file name="Giftcards.php" hash="066278c5defddbfeddc21f45ceec1b4f"/><file name="Tax.php" hash="a21ae78f3c1847672ca81fd99f4c6a4e"/></dir><file name="Totals.php" hash="fdd30804a74aa3be42ba46baf9b2ace4"/></dir><file name="Storecredit.php" hash="a10332e7baaf35e615483b9bca2e65b6"/></dir><file name="Home.php" hash="c47a42e74d41fe1eca14ae03efdaa470"/><file name="Homebanners.php" hash="49e7f36437bd22355102f02f57066ed7"/><file name="Localization.php" hash="378200f79d181afd82c569aa865d8023"/><dir name="Review"><file name="Form.php" hash="fa2d335f74fed3ed785252fe7dac57d0"/></dir><file name="ShoppingCart.php" hash="3b048941c9f33c53e7569f382d298bd1"/><file name="Wishlist.php" hash="2817a3f663f4f03145277dcaaec3d935"/></dir><dir name="Controller"><file name="Action.php" hash="4f85d616749eaf69381e40d8a6d5df9e"/><file name="AdminAction.php" hash="fa85e41a9432174162411e89085007bf"/></dir><dir name="Helper"><file name="AdminApplication.php" hash="75ef4f153ca96d2ec92fc4f149af7cab"/><dir name="Adminhtml"><dir name="Dashboard"><file name="Order.php" hash="368b64cd5a90f9d8675b89df2a9afa8b"/></dir></dir><file name="Android.php" hash="6cb572f65eca315aa1af7be169848425"/><dir name="Catalog"><dir name="Category"><file name="Image.php" hash="23eb166fdb9bfe759c8dbfd57e5da60a"/></dir><dir name="Product"><file name="Image.php" hash="5542e8bcbbc45a1c748cb00f985e08ab"/></dir></dir><dir name="Customer"><dir name="Form"><file name="Renderer.php" hash="ab1050a0b1702b72327bdabb09da02e7"/></dir><file name="Order.php" hash="1da625a2a037e88ecba58f94a70dc430"/></dir><file name="Data.php" hash="34719d1627437a9a7f8e633305c8cb12"/><dir name="Device"><file name="Abstract.php" hash="b705df174054af86d61e7b49003138a8"/></dir><file name="Image.php" hash="4671c83f3a20b3f8f550e5fc571167ab"/><file name="Ipad.php" hash="faade44178499afd590c0c17229076c3"/><file name="Iphone.php" hash="44980ff0a6f63cccfebdf1675a27ed41"/><file name="OfflineCatalog.php" hash="8d8519291a5ea9652804382128d48989"/><file name="Payment.php" hash="a0e3eb53ca6a2b79ff61a049f0329bf5"/><file name="Theme.php" hash="34387e39dac12158eec9fe58e1718f27"/><file name="Translate.php" hash="69d2d088dc1229e4ef376f1b85f779ed"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="Search"><file name="Catalog.php" hash="ddada5808ac24d544b5d0284301c4a84"/><file name="Category.php" hash="f6733e8293d75a7ecc294e641adde648"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Baseurl.php" hash="849887e30c4866beb445acdb7c028c1e"/><dir name="Currency"><file name="Default.php" hash="bd129c34d57d88610d7f4703414254d0"/></dir></dir></dir></dir></dir><file name="Application.php" hash="46d35bef2316f7692df3423e26286291"/><dir name="Catalog"><dir name="Category"><file name="Image.php" hash="e14795e389f9e2ec9c622dc12cbae467"/><dir name="Media"><file name="Config.php" hash="f6cba78ddeb4040ed58d7d9081df3ad9"/></dir></dir></dir><file name="ConfigData.php" hash="66416b3566c2639d936bc8bba25d98c7"/><file name="Configuration.php" hash="7f3645a739873a13ea6720779a62af5b"/><dir name="Device"><file name="Abstract.php" hash="4f38a17dba5afd28995638a924bfa055"/><file name="Android.php" hash="8b3b4c806aedd3761d57f1224afa6bc9"/><file name="Ipad.php" hash="443cc4a506a49cfe97d033da414eaf49"/><file name="Iphone.php" hash="556065fe8a1589edf78f14097b32add4"/></dir><file name="History.php" hash="89b7e8e597707e97cdaeb9492773d943"/><file name="ImageAction.php" hash="4eb7e606102dd6f15aac8794c9866c4c"/><dir name="ImageLimits"><file name="Abstract.php" hash="a6e7208a1f501a12be81c02c5f2bf1cc"/></dir><file name="ImageLimits.php" hash="00ba19391283d53d4361c0bdb1ad994c"/><file name="Images.php" hash="93696563d5e1186a92fde69e5ac93589"/><dir name="Mysql4"><dir name="Application"><file name="Collection.php" hash="bccd543a012c3626ecb224b66d2a63a5"/></dir><file name="Application.php" hash="45d335136c036660aa6991720a0773d2"/><dir name="Cms"><dir name="Page"><file name="Collection.php" hash="0c9dce6904a72ee18f83bb3bb871461f"/></dir></dir><dir name="ConfigData"><file name="Collection.php" hash="bc2212381545d77117554b985d2f48eb"/></dir><file name="ConfigData.php" hash="4d7c1d33b1bafe9014827696d2f299c5"/><dir name="Filter"><file name="Collection.php" hash="903e9256b9cb33a4251775517370bc9d"/></dir><dir name="History"><file name="Collection.php" hash="e49817963619aceeb3441857a0c3566b"/></dir><file name="History.php" hash="636db1d3b896b65990cb428f0a612e91"/><dir name="Queue"><file name="Collection.php" hash="63ad3764d1e19131cab5773c79a86af7"/></dir><file name="Queue.php" hash="290172650d6be78510cf0d0984d35494"/><file name="Setup.php" hash="453f78c2757bf659d96c1e492cb2a4f4"/><dir name="Template"><file name="Collection.php" hash="867465c57e8e719d8c2bd255f6030965"/></dir><file name="Template.php" hash="e19efc19030705ec0403cfd950629a76"/></dir><file name="Observer.php" hash="ab7a3f533bb40fd6503348f468adaee4"/><dir name="OfflineCatalog"><file name="Abstract.php" hash="a9164ec5caa64f0144f6b9c0d21f39b7"/><dir name="Category"><file name="Category.php" hash="a5675c77b334b3e2c122fa96c3a54b7f"/><file name="IndexCategory.php" hash="a8b36ec3eb1a2b7bd026ee4d5dc8d59a"/></dir><file name="Category.php" hash="6d6ba2feb1b15d5b9a405e6468167f6b"/><file name="Config.php" hash="776d6f3bfbd3db5021fc4383e038b0c0"/><file name="Home.php" hash="422230a5a514d187c3d29c1ce4a47479"/><file name="Homebanners.php" hash="b8a9720f9ddae3ce3f05511d1861aa6d"/><dir name="Product"><file name="Gallery.php" hash="ec1d08ff8a3b8bccfb3cc5f1bafa63b9"/><file name="Product.php" hash="f1a0a15e7b9e14ab3de0bb9d9cd501ae"/><file name="Review.php" hash="4ebce61d30a1109d4d0a2804d01002ae"/></dir><file name="Product.php" hash="cb06ad18b67bd10fab88543add00da08"/></dir><file name="OfflineCatalog.php" hash="0c8f2d6c9bdbe981b858a53a6d4df609"/><dir name="Payment"><dir name="Method"><dir name="Paypal"><file name="Config.php" hash="e7292a16f7ee6477f06ff1c3a69507e0"/><file name="Mecl.php" hash="17d925f2a1be3d912159fa9c79cec3be"/><file name="Mep.php" hash="d46b7c94adb1e4a8e061e71585c61ad2"/><file name="Pro.php" hash="547aa0ec1658d3ed58012e511f54f3f8"/></dir></dir></dir><dir name="Paypal"><dir name="Mecl"><file name="Checkout.php" hash="a73d42d1700a02aa61fe203264dc97de"/></dir><dir name="Mep"><file name="Checkout.php" hash="2c8d7d45f7bf5a4da8b405a4104e5f87"/></dir></dir><dir name="Preview"><file name="Abstract.php" hash="68dac1d597ca312dcd684e681d740a8c"/><file name="Android.php" hash="702310934c01b6b5e5ac3085c7eb0494"/><file name="Ipad.php" hash="a05757d4896f26a2fb1fb1ccaa0e5cce"/><file name="Iphone.php" hash="1ee89069ce4139d39f8e22487c904716"/></dir><file name="Queue.php" hash="cd34c802e7bd929c3197982da1b5f01e"/><dir name="Resource"><dir name="Application"><file name="Collection.php" hash="67dfddb0929c10ef0040aa25d2a19f1b"/></dir><file name="Application.php" hash="8ee9333d6fe5a11d2fe65ac1ad078c18"/><dir name="CategorySearch"><file name="Collection.php" hash="1578bb88fb8d4afc2bcbe1d095988fe2"/></dir><dir name="Cms"><dir name="Page"><file name="Collection.php" hash="e548542dd09e3fd990ab27bb78d5db09"/></dir></dir><dir name="ConfigData"><file name="Collection.php" hash="d6919e6fdf18f0cdc5501b4a69df0486"/></dir><file name="ConfigData.php" hash="8202c1cbc842f155982f0fc62c77b392"/><dir name="Filter"><file name="Collection.php" hash="2b6755290929d7fc4baa31408c86cdcd"/></dir><dir name="History"><file name="Collection.php" hash="d4e1d300e92e9ad68aac3481873f9baf"/></dir><file name="History.php" hash="f42d2b9c5019b09bacfe4a4e04a91047"/><dir name="Images"><file name="Collection.php" hash="b3df7b74eb35c4997a3bc717b8a6d41d"/></dir><file name="Images.php" hash="451bf048c9c656bf74baeb2bcfc1fe87"/><dir name="Queue"><file name="Collection.php" hash="f8cd4e75574397b9b3f27d6a8f2352da"/></dir><file name="Queue.php" hash="71d9a314d51c2f85226ad1f90e45ba52"/><file name="Setup.php" hash="f2444d0e2d4a1d847c5178f385c3a654"/><dir name="Template"><file name="Collection.php" hash="93322e981be806d894fc6d9711eac9a6"/></dir><file name="Template.php" hash="c1a6b66b9b7af9016f91d1647aeec263"/></dir><dir name="Simplexml"><file name="Element.php" hash="46ec26a23f73c4e0c6a09e0e20a545af"/><dir name="Form"><file name="Abstract.php" hash="2a0bd8916e20bfd0471351b29ef0759f"/><dir name="Element"><file name="Abstract.php" hash="0d0eb26a18387215d872032ebfa88017"/><file name="Checkbox.php" hash="67400a338055ebc5a2e500bbcad05ce8"/><file name="Collection.php" hash="a8af91ba9ae94303a2655a99763c1c90"/><file name="CountryListSelect.php" hash="ecc0d57a15819ffe070aa23ce4c0a6c3"/><file name="Custom.php" hash="d4fbc6398c9cabec199a7205c593264b"/><file name="Date.php" hash="ad3b53abcef3b924490b74101aa371ad"/><file name="Email.php" hash="6aa8112eb17a50aaf3b0d38a99814627"/><file name="Fieldset.php" hash="9fc93f6765b48a150e07e65dac03b60c"/><file name="File.php" hash="6b05b9cccf52804f3d2d37e898011322"/><file name="Image.php" hash="ead7af574fdb87959c58ca0760af2db1"/><file name="Multiline.php" hash="c59d6b719d189d93139610bfb123665c"/><file name="Multiselect.php" hash="b546802a33a2890eea448707b1e2fd2b"/><file name="Password.php" hash="ea3025e58010a3ff1cb71ee7c59b7d16"/><dir name="Renderer"><file name="Interface.php" hash="ea87301075b27b96bf366d74eb4407f9"/></dir><file name="Select.php" hash="87554fa5295eb9cf78cb3d9e56759ae4"/><file name="Text.php" hash="d4d3a0d4664c950e761f64939b8a0f30"/><file name="Textarea.php" hash="2c724d533ac61eb4e1181d58265be1ab"/><dir name="Validator"><file name="Abstract.php" hash="32203ef1d3f90a1fc72b29ad9bc8e768"/><file name="Rule.php" hash="8a58f2b49e8e265c79621ab2f0136837"/></dir><file name="Validator.php" hash="20ad5e0a0c14d449c40900df5368fefa"/></dir></dir><file name="Form.php" hash="9743116b7bc9f347ce627a9183dc5e2f"/><dir name="Message"><file name="Abstract.php" hash="3464af33e80cd8808a0032f2fda07b8a"/><file name="Error.php" hash="7cb38a95c45b9e97c6482e800b3a6275"/><file name="Success.php" hash="3ac7e2dc752fec9374ceff39d3ac2286"/></dir><file name="Message.php" hash="7844c56e6cd789b9201409a0f65de1dd"/></dir><file name="Tabs.php" hash="33075235262031fe01515c9ac92cf24e"/><file name="Template.php" hash="93e485809ec3f62a924ca5218033e98d"/><file name="Theme.php" hash="1761a0d169501e301fb7d545b64c51b0"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Admin"><file name="ApplicationController.php" hash="5e48da8f2cb13c53eabb47c2d0245bcd"/></dir><dir name="Connect"><file name="ConfigController.php" hash="91ec5329711416ac83df996feec49f5f"/><file name="DashboardController.php" hash="2619d2bb0bd6767a4537dc9374a46f24"/><file name="UserController.php" hash="69683a10a671ad4610ac930eb696512a"/></dir><file name="MobileController.php" hash="083bb299cc570a2bb341951330c3624a"/></dir><file name="CartController.php" hash="9600f699b71e64bcc181a77d10a4ac6a"/><file name="CatalogController.php" hash="36aa67c056efc47b205840437a9fa01e"/><file name="CheckoutController.php" hash="f718e4fd4eb627240cb03ba7dd509c59"/><file name="CmsController.php" hash="baf898049a795fee3bd3e7381f5bb58f"/><file name="ConfigurationController.php" hash="ce1b5f9aacabe0b883d35ff6b29ddc33"/><file name="CustomerController.php" hash="e8850f9b2ed4d48e22b1568ea8d01730"/><file name="HomebannersController.php" hash="6c1073e288e1f38054e90e3e0c056a20"/><file name="IndexController.php" hash="65e3a32862adb16f5581518d4f799a88"/><file name="LocalizationController.php" hash="c2d6d0a420829e6b0efb1c1523f905d9"/><file name="OfflineCatalogController.php" hash="ccb82e18f78791aa9e60c467b11c3e8d"/><dir name="Paypal"><file name="MeclController.php" hash="4f7acd52117c3c19d5927baf503089f9"/><file name="MepController.php" hash="458fe1eff6e128d044769674ef9f23fb"/></dir><file name="PbridgeController.php" hash="3978ba3ba6fe6cf9b091ece381a8605c"/><file name="ReviewController.php" hash="3101fd1d9aedb1e89fc12c280a4fe8c2"/><file name="WishlistController.php" hash="d6dfeab3b5dc9bf587758589e5c1e096"/></dir><dir name="etc"><file name="adminhtml.xml" hash="3180468f2486f14e659e7c86343d78a5"/><file name="config.xml" hash="1de38befa8c04d27a273fc25a700eb68"/><file name="system.xml" hash="d1e5c80393cdde5fdd2a42a77b732850"/><dir name="themes"><file name="custom.xml" hash="7b7616e3703910b56e08b64b8f647ace"/><file name="default.xml" hash="302b0678de5bf387ac478cd255177d98"/><file name="funk_leaf.xml" hash="c2c66779f4f7554d171bbc0187a1faa3"/><file name="hot_red.xml" hash="b77adf8884c132d4ae7ac2f0e83fd38b"/><file name="sky_blue.xml" hash="dd0b4ace288f349765535b005d901df9"/></dir></dir><dir name="sql"><dir name="xmlconnect_setup"><file name="install-1.6.0.0.php" hash="fae35cdf1b6a6f32763755476423c3cb"/><file name="mysql4-data-upgrade-1.4.0.13-1.4.0.14.php" hash="ebff287fa37675f477e27bb1a9f6a810"/><file name="mysql4-data-upgrade-1.5.9.9-1.6.0.0.php" hash="0178c4ddfed9e241724e1cd2a4ba49ca"/><file name="mysql4-data-upgrade-1.6.0.0-1.6.0.0.1.php" hash="4583eac65129998fd864f0703df0c5bf"/><file name="mysql4-install-1.4.0.8.php" hash="8d1d456add747ab707911e0d53b1665b"/><file name="mysql4-upgrade-1.4.0.10-1.4.0.11.php" hash="984bb47b1a3bc4f1576289a523f0beb0"/><file name="mysql4-upgrade-1.4.0.11-1.4.0.12.php" hash="64ffb0a83e65cf295fa7ab3ba7e147d8"/><file name="mysql4-upgrade-1.4.0.12-1.4.0.13.php" hash="d2faa427e14b279854c34a56d73536cf"/><file name="mysql4-upgrade-1.4.0.13-1.4.0.14.php" hash="5084e9a4fd9de0d90910ea9d992b814f"/><file name="mysql4-upgrade-1.4.0.8-1.4.0.9.php" hash="0824bebc6a2a25c85e3924ffc6b17c32"/><file name="mysql4-upgrade-1.4.0.9-1.4.0.10.php" hash="51cd7c4464aac3e1e983c7c1c2344abf"/><file name="mysql4-upgrade-1.5.9.9-1.6.0.0.php" hash="81e1917dea39925c244155d9f699ddc0"/><file name="upgrade-1.6.0.0-1.6.0.0.1.php" hash="ed2536e6edeabda33ff16cf2f8f1ace9"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="xmlconnect.xml" hash="631be7dd152a813a09a4054e2d5dfd65"/></dir><dir name="template"><dir name="xmlconnect"><dir><dir name="centinel"><file name="authentication.phtml" hash="a33dc3e9291f2f68dda7cd50bc3edbb5"/></dir><dir name="pbridge"><file name="result.phtml" hash="a58c41580857dd7b3c324f5e5d01ba44"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="xmlconnect.xml" hash="1df03e1bbf02dabec988ba10be076da4"/></dir><dir name="template"><dir name="xmlconnect"><dir><dir name="edit"><dir name="tab"><file name="content.phtml" hash="cccdb617292cd9ac119af75a0eaf3e52"/><dir name="design"><file name="autocomplete.phtml" hash="8d0e4503c4bb5ce08ac12d701483c5b9"/><file name="image_edit.phtml" hash="169954201fa5130ab412f3d211520ce2"/><file name="images_android.phtml" hash="afedde6e67b886ee3c8093530799ac4e"/><file name="images_ipad.phtml" hash="52ce430db787cd687a765907383c2254"/><file name="images_iphone.phtml" hash="dd8088323457d1695197a6353fe02820"/><dir name="preview"><file name="banner_rotator.phtml" hash="b9bf00f6fe5a0ab14780a013809c182c"/><file name="catalog_android.phtml" hash="cd6db3fe4cfd03733355c68679d729ef"/><file name="catalog_hor_ipad.phtml" hash="2931348d3b3261505cbefb28ed4b1391"/><file name="catalog_ipad.phtml" hash="f07f8a5574d9e603e4db4c6b397ce456"/><file name="catalog_iphone.phtml" hash="2f467d91084f9eb38e73e5b78e130bbc"/><file name="home_android.phtml" hash="60954fb665ebcf1fe9df88827ab8e89e"/><file name="home_hor_ipad.phtml" hash="cb168b42074ea93752fa0af8e049c31d"/><file name="home_ipad.phtml" hash="51186c2bc5282e26c3a9741380484af8"/><file name="home_iphone.phtml" hash="d0e43871417c80802461ffbfdfd4122f"/><file name="productinfo_iphone.phtml" hash="bd15b96799a82ca62caf42dd1441c5db"/><file name="tab_items_android.phtml" hash="4169fcaba1c4ab0737ef2553213023e1"/><file name="tab_items_ipad.phtml" hash="d53134640f8298101ecadbea245313b1"/><file name="tab_items_iphone.phtml" hash="5249c8905d8a4d966f4be11b1e204d22"/></dir><file name="preview_android.phtml" hash="b2b641963de77ea583ebfff0c7c5583a"/><file name="preview_ipad.phtml" hash="e5ff74cf84b189d86b3ed42939dd0ca7"/><file name="preview_iphone.phtml" hash="32f44df018373682daeae7ae5dfd19ae"/></dir><file name="design.phtml" hash="16c1ff1bcf62f1d10398b9bb26d0f72b"/><file name="offlinecatalog.phtml" hash="32fd2419935b027df57226a116d1447b"/></dir></dir><dir name="form"><dir name="element"><file name="addrow.phtml" hash="ca76c0aac816736be0a85886f3e1aab2"/><file name="app_tabs_android.phtml" hash="054dcbf7761413d32f3604fd11bf30fa"/><file name="app_tabs_ipad.phtml" hash="7d8f990be10716b1ac9bd76290820108"/><file name="app_tabs_iphone.phtml" hash="06a4261f932168b79700c703132dec5f"/><dir name="country"><file name="androidmarket.phtml" hash="8d08ec7efb94b394c01c0f46eff762d7"/><file name="istore.phtml" hash="6a1057c17de4e2f89c5cfef4a432a3e3"/></dir><file name="themes.phtml" hash="eacd3bd1ef34fb756ededba6e04534f2"/></dir></dir><dir name="mobile"><file name="notification_helper.phtml" hash="c018a571d40518f0d84f208d89b4c8cb"/></dir><dir name="submission"><file name="app_icons_preview.phtml" hash="0f4fb7b7155c4ee2ff256312b8ce6a6d"/><file name="container.phtml" hash="4823bde69a271a804c577a53f3e9a872"/></dir><dir name="template"><file name="preview.phtml" hash="8dbc5932abfb66daa1afd6fc6a1fcfae"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_XmlConnect.xml" hash="7b82f645f5c140a6a3a75da5b9594d0b"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Mage_XmlConnect.csv" hash="50e9493da78f8e6591fd3fad1311047c"/></dir></target><target name="magemedia"><dir name="xmlconnect"><dir><dir name="custom"><file name="ok.gif" hash="398f81b3983f802a99932eaf97ee0806"/></dir><dir name="original"><file name="ok.gif" hash="398f81b3983f802a99932eaf97ee0806"/></dir><dir name="system"><file name="ok.gif" hash="398f81b3983f802a99932eaf97ee0806"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="xmlconnect"><file name="boxes.css" hash="31fe15977ad16056dc7674bc9152c5b5"/><file name="dropdown.css" hash="5d4330ec0accc200305f7b308bc9b547"/><dir><dir name="fonts"><file name="android_icons-webfont.eot" hash="2fc917efbfb3c933ccfddc108ef05f33"/><file name="android_icons-webfont.svg" hash="e8cb2b5ef019bbc2885c97ed0caaf2a0"/><file name="android_icons-webfont.ttf" hash="bc567dd7a381093fbb652c58cbad9430"/><file name="android_icons-webfont.woff" hash="8310b54d55bf84a8a3f3a86c22a51aef"/><file name="stars-webfont.eot" hash="019beb4b8ec19447657cf3106138bbe3"/><file name="stars-webfont.svg" hash="20cf0312c0b951d173d4531ea18abc6f"/><file name="stars-webfont.ttf" hash="d63d95e9adaf775f410437535622bf60"/><file name="stars-webfont.woff" hash="526d9756131c94139f0f1df5272197fd"/></dir></dir><file name="iestyles.css" hash="ac870e2cce9b9755d8a1fe5743302f76"/><file name="mobile-android.css" hash="ee0610aa03c10d9409ea18a1ea428a06"/><file name="mobile-catalog.css" hash="e6af0afaebe5eeb66cf2455aa4aa57b5"/><file name="mobile-home.css" hash="60935bcdc4b6116e90b594bc33aa4041"/><file name="mobile-ipad-catalog.css" hash="01a45d36921c4ed221f06691f0bfec31"/><file name="mobile-ipad-home.css" hash="486125018101841c276ffb6cbbb2fca0"/><file name="remove.png" hash="b4903936d44dc498d2f32b72d9161ff0"/><file name="styles.css" hash="cc99e6f892ca08bc6b1dcda74886bf35"/></dir><dir name="images"><dir name="xmlconnect"><file name="btn_edit.gif" hash="e7ecc9fea5c3813957814050508507a5"/><dir><dir name="design_default"><file name="accordion_open.png" hash="4c89d903ebbc61ee295ef64a60724b10"/><file name="accordion_open_android.png" hash="7ef2f1d193990c3f4c2c90aae9ab3281"/><file name="accordion_open_android_l.png" hash="bc27688afbfd866c618477ea2c7bf0ee"/><file name="accordion_open_android_p.png" hash="2e4549cba575c12ef2a39c12e9ffe173"/><file name="accordion_open_ipad_l.png" hash="dcdda97da6556393b972d6dae8d6bac5"/><file name="accordion_open_ipad_p.png" hash="55cca08a0ab79047961858789ff8c3a7"/><file name="banner_1_2.png" hash="0637d31df6b5a434c9a332ee46122ef4"/><file name="banner_android.png" hash="02695661b8e50e1a001c3369622f322f"/><file name="banner_ipad.png" hash="c1d59a6ec67da1bb76c5142453da7acf"/><file name="banner_ipad_l.png" hash="04e850d481a9ae902f33fd8c1f89cbf0"/><file name="smallIcon_1_6.png" hash="c1ce9e289eaf2c0504d502928693bd89"/></dir><dir name="mobile_preview"><file name="1.gif" hash="817fd84187db3eee00799b0acf316457"/><file name="2.gif" hash="1a842d8f3ac25cfcdeab6c86dd8fea89"/><file name="3.gif" hash="207cd55e968c284bd52c86efdcdda1c7"/><file name="actionsBackground.png" hash="11faa8baee72f3e6a9a02a83915c8658"/><file name="actionsBg.png" hash="9acccd1980f17006942d74a718ebd7da"/><dir name="android"><file name="background_home_landscape.jpg" hash="1f79a1f42ca4e2cf6010ab6c3ef66aa4"/><file name="background_portrait.jpg" hash="197b15e6455ad1a85e1bad6595371fa3"/><file name="bg_button_up.gif" hash="204f590a88933c930b7fc92963accfab"/><file name="bg_cat_item.png" hash="2859b45c387b66243d4af2ba973b2ae1"/><file name="bg_catalog_filters.png" hash="7464191ebaf576b73a3c021eb1cfcc25"/><file name="bg_catalog_filters_shadow.png" hash="5021ad60917190026d85fae1d33bdaa9"/><file name="bg_content.jpg" hash="70ddfc8959d878d1231dc7cbee4a063c"/><file name="bg_frame.gif" hash="7062ed9b7563fc658f49ce7cfdd34f1c"/><file name="bg_header.png" hash="d4a46c8850d1d89259921b1c28b5bce1"/><file name="bg_header_catalog.png" hash="c1080cd18a89e21da18fdc6955bf6230"/><file name="bg_header_home.png" hash="dfce0445ca7c7a45c7914a986b596ce0"/><file name="bg_home_content.jpg" hash="1d55a198279e4f2b163c98c18f699646"/><file name="bg_home_header.png" hash="8bc1887a0c5760cc47b77b8a7a320426"/><file name="bg_logo.png" hash="02695661b8e50e1a001c3369622f322f"/><file name="bg_page.png" hash="d65f1d123655c2eaf3bb4a1e6035a08d"/><file name="bg_star.png" hash="fc6de6c4e0ed3478b8840e1ab81da725"/><file name="bg_star_empty.png" hash="3f0421fb8c8f6c4be6ca501168a881e8"/><file name="bg_status_bar.png" hash="52b41106451ac34672f82338bbc5370c"/><file name="ico_account.png" hash="c1fd338c74fcf483155acbd37c430807"/><file name="ico_home.png" hash="2de37f640463b354d68945320bfe3e4f"/><file name="ico_search.png" hash="8b0dd17a3e9c3328e66204fe379c66aa"/><file name="logo_big.png" hash="693bb9d118155a146b21ce9fcfba08da"/><file name="product_image.png" hash="dd975b128ba303e0ae2adc9772e0433c"/><file name="product_image_1.jpg" hash="8994979d4dcc1f339c73cd1f44398a7d"/><file name="product_image_2.jpg" hash="26d6599bdb35d80b25a1e903b40cfa19"/><file name="product_image_3.jpg" hash="d7c6d05196a84341afe0025d01b9dc61"/><file name="product_image_4.jpg" hash="2a88ead3dbbeff1d40168db692841f2f"/></dir><file name="arrow.png" hash="837259a7c365e46034dca728bffe9070"/><file name="background.gif" hash="bd92833eb2eb32e4a0282cea153ac13f"/><file name="background.png" hash="3717f4b4ba725701e2a0604129a3a815"/><file name="banner.png" hash="0637d31df6b5a434c9a332ee46122ef4"/><file name="btn-l.png" hash="92b2454528e9d39119038777cf53329c"/><file name="btn-r.png" hash="8c6aa9fd9203bc10822e0505f11e0c4d"/><file name="circle.png" hash="f4c116cb0554bf936d3b9ee38b7f3d1f"/><dir name="custom_icons"><file name="account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="actionsBg.jpg" hash="ee3db742cbec9a436ba46118c8a01303"/><file name="addToCart.png" hash="e33876648546e99d875ca92bd2cd78e9"/><file name="addToWishlist.png" hash="1018602b7c5e0e11f0427ace96fd7d52"/><file name="background.gif" hash="bd92833eb2eb32e4a0282cea153ac13f"/><file name="buttons.gif" hash="0cd19a9d9178976906161ea100cba958"/><file name="cart.png" hash="815b4c64fae21b4c162525ece76dc44d"/><file name="home.png" hash="9e473791b022b7c2dfc7d29b1b6de887"/><file name="image-bg.png" hash="14bde5cf8b00dc5f6c60e52a0fa964dc"/><file name="logo-small.png" hash="9b3477a4552bcb878b4943aae5351622"/><file name="rowBgIcon.gif" hash="9ee89b961ae2bb047672ba5d2d2677c6"/><file name="search.png" hash="10bfa7ec3361ce7cbcc5d25087f181eb"/><file name="shop.png" hash="e6639a9fdc143363da82a7d78e126f1c"/><file name="star-active.png" hash="d4ab959a92bda610527a3e3942c4c0b0"/><file name="star-inactive.png" hash="f7fb99710be4c03ac23b1206f20e761d"/><file name="tellAFriend.png" hash="46f8ef48b29f245977d66d9312d87e70"/><file name="viewDetails.png" hash="9bacc63bcc483d3db5614a026d9391f6"/><file name="viewGallery.png" hash="304f3d03949d07055bc056359fe17763"/></dir><dir name="gradients"><file name="footer.png" hash="31a2feed50ef9c8637b412c4211f8300"/><file name="header.png" hash="5386da930a944cd75562216249cce08a"/><file name="header2.png" hash="ad5a2dc6ec93914e925cfe2d43fb30a2"/><file name="header3.png" hash="920ad8c6903e90323a57fb02dca37280"/><file name="item-bg.png" hash="a14886d1f9e14284ac6b4f1b61e68646"/><file name="sort-bg.png" hash="b8053bb772e849909e5b87e4fd1ebbe4"/></dir><file name="grid.png" hash="23faa3f5572cdeb597c2bceedd93a7f8"/><dir name="icons"><file name="account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="cart.png" hash="815b4c64fae21b4c162525ece76dc44d"/><file name="home.png" hash="9e473791b022b7c2dfc7d29b1b6de887"/><file name="more.png" hash="f3662ae29923b87eba3a729192aa3df3"/><file name="page.png" hash="2291d77f21de042040bc0864be40138b"/><file name="search.png" hash="10bfa7ec3361ce7cbcc5d25087f181eb"/><file name="shop.png" hash="e6639a9fdc143363da82a7d78e126f1c"/></dir><file name="image-bg.png" hash="a588b9cced95a25fc18e28c775d9a001"/><file name="info.png" hash="3f0d2ed85b81e8251f294457c6bfa404"/><dir name="ipad"><file name="background_home_landscape.jpg" hash="9e3ef117985113b804531142d539b60a"/><file name="background_portrait.jpg" hash="bdf9e034fd30b923086e6c622ea10451"/><file name="banner_image.png" hash="693bb9d118155a146b21ce9fcfba08da"/><file name="banner_image_l.png" hash="a070a40d57610b5cc7160fe894482a1c"/><file name="bg_catalog_header_hor.png" hash="f61a67aa288e1b8a8df7b4d4527c662e"/><file name="bg_content.jpg" hash="70ddfc8959d878d1231dc7cbee4a063c"/><file name="bg_filter_button.png" hash="728f1cd358446881ffd863eff12204a1"/><file name="bg_filters_buttons.png" hash="02fcb0ed7a7268e9f64ebaf06235bc09"/><file name="bg_filters_tooltip.png" hash="3b05ca6e585acd3d766be01eeaa23d47"/><file name="bg_filters_wrap.png" hash="31288784fe95c67de9b45b44458b4155"/><file name="bg_header.png" hash="e2cf5a575a27e6e4533e3c85e3472a82"/><file name="bg_home_content.jpg" hash="1d55a198279e4f2b163c98c18f699646"/><file name="bg_home_header.png" hash="00f2fbf96d2b915dcbcd921b0301ef3f"/><file name="bg_home_header_hor.png" hash="9bfef728ece003d5b3433d2623ea168c"/><file name="bg_home_products.png" hash="ac6a8a79b959a0c8298b1f607c0f0af8"/><file name="bg_home_shadow.png" hash="c54b071ca3e97a6ee67588ef74b7b44e"/><file name="bg_home_shadow_hor.png" hash="0d21a99c5c749d0e5070e3585ff4a23f"/><file name="bg_product_image.png" hash="4da74325c1a4ee1ca19b414e5d590f75"/><file name="bg_search.png" hash="6ee08d05d0c4ef9ed64b9914b821f408"/><file name="bg_sections.jpg" hash="0ee90005663aced09a9ce6385bdbce2c"/><file name="bg_status_bar.png" hash="17124d9d392bb8e37b202c80a595df54"/><file name="bg_status_bar_hor.png" hash="bd4a9f11ecb1c896145267731d8a951d"/><file name="i_cart.png" hash="1bbe0a0e54eed5bb14b9bfcce83da758"/><file name="i_info.png" hash="3f0fda8b294b67bf698badbcaa99150b"/><file name="i_login.png" hash="deb4089bdc61582c78c90ef192d577e8"/><file name="i_remove.png" hash="4923eb5e76b3c6ba6df5c667db816a0c"/><file name="logo.png" hash="49c19f59b459b6c0b3b99daa3fe7f932"/><file name="logo_big.png" hash="693bb9d118155a146b21ce9fcfba08da"/><file name="product_image.jpg" hash="2bb6c69129bcb18dc93e9f48605647c6"/><file name="sections_arrow.png" hash="7db7144083a31882e8a62cb9579f478f"/><file name="stars.png" hash="70d38cd9883d70e4f6b21ac4874b9868"/></dir><file name="lightStar.png" hash="b5dc40d5b793dae6a069357f49cccc24"/><file name="lightStar2.png" hash="75928926a6112540c9cb073157cb7d95"/><file name="lines-h.png" hash="ea3d95812c9838affc6df2f3a3cb1977"/><file name="lines-v.png" hash="9e3ffee29ba28477d50da9642019bc0a"/><file name="login-btn-left-alt.png" hash="71bb6c7d24252aace27bee711d7616f4"/><file name="login-btn-left.png" hash="cbbf9afc6e9fc433f57270e88b63f351"/><file name="login-btn-right.png" hash="438fcc598d012bf6d33184e95accfd24"/><file name="login-btn.png" hash="051ee2c1a8ce3f7b8de3293cd2e2ed85"/><file name="logo-small.png" hash="9b3477a4552bcb878b4943aae5351622"/><file name="logo_25.png" hash="ba41ed568d916175c32803b614442447"/><file name="men.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/><file name="mm-frame.gif" hash="eebf30806f1dbf2118e7ec39a016c86d"/><file name="mobile-catalog.css" hash="dd45f18b0767c1e1772988d6b403603b"/><file name="mobile-home.css" hash="24a9a06cf1a517de00ef0530cbe36307"/><file name="rowBgIcon.gif" hash="9ee89b961ae2bb047672ba5d2d2677c6"/><dir name="slider"><file name="actionsBg.jpg" hash="ee3db742cbec9a436ba46118c8a01303"/><file name="addToCart.png" hash="2a146be4bc63713df19cc353e030d44f"/><file name="addToWishlist.png" hash="9b23a4e0d9acfc79f314e9082f14c4de"/><file name="tellAFriend.png" hash="b7600fa2ae52bdb1d6bb86fe4d9f1773"/><file name="viewDetails.png" hash="90cf37c6dbbee1861350b4c05469e3ae"/><file name="viewGallery.png" hash="304f3d03949d07055bc056359fe17763"/></dir><file name="slider.gif" hash="c6b87bf15b85b18c0515e2cbefaabe60"/><file name="smallIcon.png" hash="e76d2a6364042f41b3f35fc8cdc9c0ee"/><dir name="sort_buttons"><file name="bg_button.png" hash="87d0f1b123f01c3aea3cb8a2b146306e"/><file name="button_up.gif" hash="7ad527f99b9975d5634fb2d5cc99e6b3"/><file name="buttons.gif" hash="2f14f1a3f0fb38790779c992a58654ae"/><file name="buttons.png" hash="b4a3f17370e03bf5d2a5cdf7800c25a7"/><file name="center-active.png" hash="5903988cd458cd794f23a212d51aa725"/><file name="center-inactive.png" hash="135b46aaa5c3b131a5a7e9c45c004e06"/><file name="filters.png" hash="3837ab6fcfe959833dd998533db1ca7f"/><file name="left-active.png" hash="86e94441b96a0d27d0b0a7e5108f86ed"/><file name="left-inactive.png" hash="0ddcb75aa9971cca39a5a65b4bdff8c4"/><file name="right-active.png" hash="320740ff608187301b06a96eab2f9e8e"/><file name="right-inactive.png" hash="cac4b39ab380353ffd5fdbcedb6e0a0a"/></dir><file name="star-active.png" hash="d4ab959a92bda610527a3e3942c4c0b0"/><file name="star-inactive.png" hash="f7fb99710be4c03ac23b1206f20e761d"/><file name="t-shirt.gif" hash="7505efdaabf13c4f8e26f7cfe15c8c96"/><file name="t-shirt.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/><file name="women.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/><file name="youth.png" hash="46d7d1773118ef0a27353e8a9f6719fe"/></dir></dir><file name="dropdown-arrow.gif" hash="332e99ca6b4d1e0d39972e04fb0b2395"/><file name="empty.png" hash="23dc9dc3c4751f83c2df7a5c42668824"/><file name="full-arrow-left.gif" hash="8ec91b60d38d1a16cba7670f2088a5c7"/><file name="full-arrow.gif" hash="36ddff0fca1c7d8900cb3633e0a30cea"/><file name="gel_green.png" hash="591959d831e8e42c9175d12a88f0bae2"/><file name="gel_red.png" hash="db442c023014df9da32b84bc1bb5a39f"/><file name="l-arrow.gif" hash="ee49f7eab64657b5131953acef0238fd"/><file name="loading.gif" hash="5d25806dac7cbee5f894b13144783866"/><file name="r-arrow.gif" hash="d0429a9781e915fc9d9ca8875c470d32"/><file name="remove.png" hash="ee9497c5f31933eaab3e9e352495ee12"/><file name="small_logo.gif" hash="d5c8be7c0f16aac2549759c0228492d6"/><file name="swatch_black.gif" hash="fd31d6a3a435c8ad1f7c43f346bb47e4"/><file name="swatch_custom.gif" hash="fb34791a48366957a141e12b563888c2"/><file name="swatch_default.gif" hash="fb34791a48366957a141e12b563888c2"/><file name="swatch_funk_leaf.gif" hash="f1d3ba87efb742b47da879a6f48909c4"/><file name="swatch_hot_red.gif" hash="d9363d45dc2993c2fdc3ea43c5b6f71c"/><file name="swatch_sky_blue.gif" hash="ded1455db119d09a3aedd7474fd1875a"/><file name="swatch_user_custom.gif" hash="a24f31421a1ff56d1be0845f9a7c7020"/><file name="switch-arrow.gif" hash="dc7243962b341f366cd072d486687e6a"/><file name="tab_account.png" hash="27101fbaa78a07426be4768acc4c53ff"/><file name="tab_account_android.png" hash="77605cbc87f75ca17e91a5393765ceb1"/><file name="tab_account_ipad.png" hash="2997de5402195d0720309b73c6446fab"/><file name="tab_cart.png" hash="e803f760ee81cb35183f1122f388b774"/><file name="tab_cart_android.png" hash="477e97f8d03ea8aa674e952709f86578"/><file name="tab_empty.png" hash="bdd4cc355566e8861b2c45424ad94516"/><file name="tab_home.png" hash="dfa104e4da74e4a55d3c98d6ee0f7122"/><file name="tab_home_active.png" hash="bba5eb9bb724c84c1ede9e6f4bec3575"/><file name="tab_home_android.png" hash="1fefc6b070cc21b31b43194a7d85f9d9"/><file name="tab_info_android.png" hash="67fc19d8d926f7aede482f5a7083fc71"/><file name="tab_more.png" hash="2803359cb3e795bf67457e727aa16020"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="2cf29dbe325558353621b4241543204f"/><file name="tab_search_android.png" hash="932c2c568872fd9e119367c887f0539a"/><file name="tab_shop.png" hash="f36be0d3d27f2b37626247d3f6a55e2a"/><file name="tab_shop_active.png" hash="de907d6a52d477d4319649f9b0e2e4aa"/><file name="tab_shop_android.png" hash="e119fcd20f8cba856d550a64d775ddbb"/><file name="tmp-icon.gif" hash="58b759aecf3bdae26d5aaff7a0be5c90"/><file name="xmlconnect_tab.png" hash="cd99a7e01a42a6c82d866f7684faeb95"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="xmlconnect"><dir><dir name="catalog"><dir name="category"><dir name="placeholder"><file name="image.jpg" hash="097ab8a3051bc037ea3de0e17f440540"/><file name="small_image.jpg" hash="f825d16f97a640453553c79c48ebaa73"/><file name="thumbnail.jpg" hash="b2b682d28a08a748a73d2cda70ab5a57"/></dir></dir></dir></dir><file name="tab_account.png" hash="0498d73e47ed47179e5546dc15c17dc7"/><file name="tab_cart.png" hash="9055ba76e256a51d3fee53a8c41d5226"/><file name="tab_home.png" hash="07d0af93e167b9366d3d4fb3d6cdb31c"/><file name="tab_more.png" hash="b9fc21feb8d7655bc9c2985c37b0de2f"/><file name="tab_page.png" hash="ca05dbc42f944b8d4255f6675f6dd93a"/><file name="tab_search.png" hash="25e880eb2a4d06828e2e1c3f32d22400"/><file name="tab_shop.png" hash="fe602fc2e7093efef5ecc0b027a32d91"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="jscolor"><file name="arrow.gif" hash="5034704a76cd55c1cbcbc58ea6bf523f"/><file name="cross.gif" hash="ba9a274b9323753cd95bc3b1eb2f4e5f"/><file name="demo.html" hash="edf71251cb2be20322d2efb00aee86a6"/><file name="hs.png" hash="fefa1a03d92ebad25c88dca94a0b63db"/><file name="hv.png" hash="990d71cada17da100653636cf8490884"/><file name="jscolor.js" hash="b65a1505390592ac6c0177d6b84774e0"/></dir></dir></target></contents>
16
  <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.9.3.0</min><max>1.9.3.0</max></package></required></dependencies>
18
  </package>
skin/adminhtml/default/default/xmlconnect/boxes.css CHANGED
@@ -90,6 +90,7 @@
90
  .image-item-upload .uploader .progress,
91
  .image-item-upload .uploader .complete,
92
  .image-item-upload .uploader .error { display:block; height:100px; text-align:center; }
 
93
  .image-item-upload .uploader .complete { text-align:center; line-height:95px; }
94
  .image-item-upload .uploader .file-row-info img { vertical-align:bottom; }
95
  .image-item-upload .uploader .file-row-narrow { margin:0; width:140px; }
90
  .image-item-upload .uploader .progress,
91
  .image-item-upload .uploader .complete,
92
  .image-item-upload .uploader .error { display:block; height:100px; text-align:center; }
93
+ .image-item-upload .uploader .progress,
94
  .image-item-upload .uploader .complete { text-align:center; line-height:95px; }
95
  .image-item-upload .uploader .file-row-info img { vertical-align:bottom; }
96
  .image-item-upload .uploader .file-row-narrow { margin:0; width:140px; }