Springbot - Version 1.3.0.10

Version Notes

Defined package.xml for frontend template updates

Download this release

Release Info

Developer Springbot Integrations Team
Extension Springbot
Version 1.3.0.10
Comparing to
See all releases


Code changes from version 1.3.0.9 to 1.3.0.10

app/code/community/Springbot/BoneCollector/etc/config.xml CHANGED
@@ -87,24 +87,6 @@
87
  </springbot_bonecollector_customerdelete_observer>
88
  </observers>
89
  </newsletter_subscriber_delete_before>
90
- <salesrule_rule_save_after>
91
- <observers>
92
- <springbot_bonecollector_rulesave_observer>
93
- <type>singleton</type>
94
- <class>Springbot_BoneCollector_Model_HarvestRule_Observer</class>
95
- <method>onSalesruleRuleSaveAfter</method>
96
- </springbot_bonecollector_rulesave_observer>
97
- </observers>
98
- </salesrule_rule_save_after>
99
- <salesrule_rule_delete_before>
100
- <observers>
101
- <springbot_bonecollector_coupondelete_observer>
102
- <type>singleton</type>
103
- <class>Springbot_BoneCollector_Model_HarvestCoupon_Observer</class>
104
- <method>onSalesruleRuleDeleteBefore</method>
105
- </springbot_bonecollector_coupondelete_observer>
106
- </observers>
107
- </salesrule_rule_delete_before>
108
  </events>
109
  </global>
110
  <frontend>
@@ -185,6 +167,24 @@
185
  </springbot_bonecollector_attribute_set_observer>
186
  </observers>
187
  </eav_entity_attribute_save_commit_after>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  </events>
189
  </adminhtml>
190
  </config>
87
  </springbot_bonecollector_customerdelete_observer>
88
  </observers>
89
  </newsletter_subscriber_delete_before>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  </events>
91
  </global>
92
  <frontend>
167
  </springbot_bonecollector_attribute_set_observer>
168
  </observers>
169
  </eav_entity_attribute_save_commit_after>
170
+ <salesrule_rule_save_after>
171
+ <observers>
172
+ <springbot_bonecollector_rulesave_observer>
173
+ <type>singleton</type>
174
+ <class>Springbot_BoneCollector_Model_HarvestRule_Observer</class>
175
+ <method>onSalesruleRuleSaveAfter</method>
176
+ </springbot_bonecollector_rulesave_observer>
177
+ </observers>
178
+ </salesrule_rule_save_after>
179
+ <salesrule_rule_delete_before>
180
+ <observers>
181
+ <springbot_bonecollector_coupondelete_observer>
182
+ <type>singleton</type>
183
+ <class>Springbot_BoneCollector_Model_HarvestCoupon_Observer</class>
184
+ <method>onSalesruleRuleDeleteBefore</method>
185
+ </springbot_bonecollector_coupondelete_observer>
186
+ </observers>
187
+ </salesrule_rule_delete_before>
188
  </events>
189
  </adminhtml>
190
  </config>
app/code/community/Springbot/Combine/Model/Cron/Manager/Status.php CHANGED
@@ -8,8 +8,15 @@ class Springbot_Combine_Model_Cron_Manager_Status extends Varien_Object
8
 
9
  public function isActive()
10
  {
11
- $pid = $this->getPid();
12
- return !empty($pid) && file_exists("/proc/$pid");
 
 
 
 
 
 
 
13
  }
14
 
15
  public function toggle()
@@ -83,22 +90,6 @@ class Springbot_Combine_Model_Cron_Manager_Status extends Varien_Object
83
  }
84
  }
85
 
86
- public function getSched()
87
- {
88
- if($pid = $this->getPid()) {
89
- $sched = array();
90
- $handler = fopen('/proc/' . $pid . '/sched', 'r');
91
- while($line = fgets($handler)) {
92
- $pieces = array();
93
- if(preg_match('/^(\S+)\s+:\s+([0-9.]+)$/', $line, $pieces)) {
94
- $sched[$pieces[1]] = $pieces[2];
95
- }
96
- }
97
- fclose($handler);
98
- return $sched;
99
- }
100
- }
101
-
102
  protected function _getBlockFile()
103
  {
104
  return Mage::getBaseDir('tmp') . DS . self::BLOCKER;
8
 
9
  public function isActive()
10
  {
11
+ if (is_readable('/proc')) {
12
+ $pid = $this->getPid();
13
+ return !empty($pid) && file_exists("/proc/$pid");
14
+ }
15
+ else {
16
+ $filename = Mage::getBaseDir('tmp') . DS . Springbot_Services_Work_Manager::WORKMANAGER_FILENAME;
17
+ list($pid, $startTime) = explode('-', file_get_contents($filename));
18
+ return ((time() - $startTime) < Springbot_Services_Work_Manager::WORKER_TIMEOUT);
19
+ }
20
  }
21
 
22
  public function toggle()
90
  }
91
  }
92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  protected function _getBlockFile()
94
  {
95
  return Mage::getBaseDir('tmp') . DS . self::BLOCKER;
app/code/community/Springbot/Combine/etc/config.xml CHANGED
@@ -10,7 +10,7 @@
10
  <config>
11
  <modules>
12
  <Springbot_Combine>
13
- <version>1.3.0.6</version>
14
  </Springbot_Combine>
15
  </modules>
16
  <global>
@@ -74,7 +74,6 @@
74
  <segment_size>25</segment_size>
75
  <show_notifications>1</show_notifications>
76
  <remote_update>0</remote_update>
77
- <remote_update>0</remote_update>
78
  <stability>stable</stability>
79
  <email_selector>billing:email,login-email,newsletter</email_selector>
80
  <email_selector_classes>validate-email</email_selector_classes>
10
  <config>
11
  <modules>
12
  <Springbot_Combine>
13
+ <version>1.3.0.8</version>
14
  </Springbot_Combine>
15
  </modules>
16
  <global>
74
  <segment_size>25</segment_size>
75
  <show_notifications>1</show_notifications>
76
  <remote_update>0</remote_update>
 
77
  <stability>stable</stability>
78
  <email_selector>billing:email,login-email,newsletter</email_selector>
79
  <email_selector_classes>validate-email</email_selector_classes>
app/code/community/Springbot/DataServices/HarvestingManager.php CHANGED
@@ -15,7 +15,7 @@
15
 
16
  class Springbot_DataServices_HarvestingManager
17
  {
18
- const MAGENTO_PACKAGE_VERSION = '1.3.0.9';
19
  const SUCCESSFUL_RESPONSE = 'ok';
20
  const DATE_FORMAT = 'Y-m-d H:i:s';
21
 
15
 
16
  class Springbot_DataServices_HarvestingManager
17
  {
18
+ const MAGENTO_PACKAGE_VERSION = '1.3.0.10';
19
  const SUCCESSFUL_RESPONSE = 'ok';
20
  const DATE_FORMAT = 'Y-m-d H:i:s';
21
 
app/code/community/Springbot/Services/Work/Manager.php CHANGED
@@ -6,6 +6,7 @@ class Springbot_Services_Work_Manager extends Springbot_Services_Abstract
6
  const WORKER_PREFIX = 'springbotworker-';
7
  const SPAWN_WORKER_SECONDS = 2;
8
  const WORKMANAGER_MAX_TIME = 50;
 
9
 
10
  protected $_foremanQueued = false;
11
 
@@ -15,7 +16,7 @@ class Springbot_Services_Work_Manager extends Springbot_Services_Abstract
15
  if (!$this->_managerRunning()) {
16
 
17
  $filename = Mage::getBaseDir('tmp') . DS . self::WORKMANAGER_FILENAME;
18
- file_put_contents($filename, getmypid());
19
 
20
  if (file_exists($filename)) {
21
  if (!$maxWorkers = Mage::getStoreConfig('springbot/advanced/worker_count')) {
@@ -65,14 +66,15 @@ class Springbot_Services_Work_Manager extends Springbot_Services_Abstract
65
  {
66
  $filename = Mage::getBaseDir('tmp') . DS . self::WORKMANAGER_FILENAME;
67
  if (file_exists($filename)) {
68
- $pid = file_get_contents($filename);
69
- if (!file_exists("/proc/{$pid}")) {
70
- unlink($filename);
71
- return false;
72
  }
73
  else {
74
- return true;
75
  }
 
 
76
  }
77
  return false;
78
  }
@@ -82,15 +84,22 @@ class Springbot_Services_Work_Manager extends Springbot_Services_Abstract
82
  if($this->_foremanQueued) { return true; }
83
 
84
  $files = @glob(Mage::getBaseDir('tmp') . DS . 'springbotworkerforeman*');
85
- return count($files) > 0;
 
86
  }
87
 
88
  private function _verifyWorkersRunning()
89
  {
90
  foreach ($this->_getWorkerFiles() as $workerFile) {
91
- list($frontName, $pid) = explode('-', basename($workerFile));
92
- if (!file_exists("/proc/{$pid}")) {
93
- Springbot_Log::debug("Procfile not found, removing work file for pid => $pid");
 
 
 
 
 
 
94
  unlink($workerFile);
95
  }
96
  }
6
  const WORKER_PREFIX = 'springbotworker-';
7
  const SPAWN_WORKER_SECONDS = 2;
8
  const WORKMANAGER_MAX_TIME = 50;
9
+ const WORKER_TIMEOUT = 600; // 10 minutes
10
 
11
  protected $_foremanQueued = false;
12
 
16
  if (!$this->_managerRunning()) {
17
 
18
  $filename = Mage::getBaseDir('tmp') . DS . self::WORKMANAGER_FILENAME;
19
+ file_put_contents($filename, getmypid() . '-' . time());
20
 
21
  if (file_exists($filename)) {
22
  if (!$maxWorkers = Mage::getStoreConfig('springbot/advanced/worker_count')) {
66
  {
67
  $filename = Mage::getBaseDir('tmp') . DS . self::WORKMANAGER_FILENAME;
68
  if (file_exists($filename)) {
69
+ list($pid, $startTime) = explode('-', file_get_contents($filename));
70
+ if (is_readable('/proc')) {
71
+ $exists = file_exists("/proc/{$pid}");
 
72
  }
73
  else {
74
+ $exists = ((time() - $startTime) < self::WORKER_TIMEOUT);
75
  }
76
+ if (!$exists) unlink($filename);
77
+ return $exists;
78
  }
79
  return false;
80
  }
84
  if($this->_foremanQueued) { return true; }
85
 
86
  $files = @glob(Mage::getBaseDir('tmp') . DS . 'springbotworkerforeman*');
87
+ if ($files === false) return false;
88
+ else return count($files) > 0;
89
  }
90
 
91
  private function _verifyWorkersRunning()
92
  {
93
  foreach ($this->_getWorkerFiles() as $workerFile) {
94
+ if (is_readable('/proc')) {
95
+ list($frontName, $pid) = explode('-', basename($workerFile));
96
+ if (!file_exists("/proc/{$pid}")) {
97
+ Springbot_Log::debug("Procfile not found, removing work file for pid => $pid");
98
+ unlink($workerFile);
99
+ }
100
+ }
101
+ else if ((time() - file_get_contents($workerFile)) > self::WORKER_TIMEOUT) {
102
+ Springbot_Log::debug("/proc not readable and process timed out for pid => $pid");
103
  unlink($workerFile);
104
  }
105
  }
app/design/adminhtml/base/default/layout/bmbleb.xml DELETED
@@ -1,81 +0,0 @@
1
- <?xml version="1.0"?>
2
- <layout>
3
- <bmbleb_index_index>
4
- <reference name="head">
5
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
6
- </reference>
7
- </bmbleb_index_index>
8
- <bmbleb_adminhtml_index_index>
9
- <reference name="head">
10
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
11
- </reference>
12
- <reference name="content">
13
- <block type="bmbleb/adminhtml_index" name="bmbleb.index"></block>
14
- </reference>
15
- <reference name="left">
16
- <block type="bmbleb/adminhtml_tabs" name="bmbleb.tabs"></block>
17
- </reference>
18
- </bmbleb_adminhtml_index_index>
19
- <bmbleb_adminhtml_index_auth>
20
- <reference name="head">
21
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
22
- </reference>
23
- <reference name="content">
24
- <block type="bmbleb/adminhtml_auth" name="bmbleb.auth">
25
- <block type="bmbleb/adminhtml_bmbleb_login" as="login_form" name="bmbleb.auth.loginform" />
26
- </block>
27
- </reference>
28
- <reference name="left">
29
- <block type="bmbleb/adminhtml_tabs" name="bmbleb.tabs"></block>
30
- </reference>
31
- </bmbleb_adminhtml_index_auth>
32
- <bmbleb_adminhtml_index_status>
33
- <reference name="head">
34
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
35
- </reference>
36
- <reference name="content">
37
- <block type="bmbleb/adminhtml_status" name="bmbleb.status"></block>
38
- </reference>
39
- <reference name="left">
40
- <block type="bmbleb/adminhtml_tabs" name="bmbleb.tabs"></block>
41
- </reference>
42
- </bmbleb_adminhtml_index_status>
43
- <bmbleb_adminhtml_connectedtospringbot>
44
- <reference name="head">
45
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
46
- </reference>
47
- <reference name="content">
48
- <block type="bmbleb/adminhtml_status" name="bmbleb.status"></block>
49
- </reference>
50
- <reference name="left">
51
- <block type="bmbleb/adminhtml_tabs" name="bmbleb.tabs"></block>
52
- </reference>
53
- </bmbleb_adminhtml_connectedtospringbot>
54
- <bmbleb_adminhtml_help_index>
55
- <reference name="head">
56
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
57
- </reference>
58
- <reference name="content">
59
- <block type="bmbleb/adminhtml_help" name="bmbleb.help" />
60
- </reference>
61
- <reference name="left">
62
- <block type="bmbleb/adminhtml_tabs" name="bmbleb.tabs"></block>
63
- </reference>
64
- </bmbleb_adminhtml_help_index>
65
- <bmbleb_account_index>
66
- <reference name="head">
67
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
68
- </reference>
69
- </bmbleb_account_index>
70
- <bmbleb_adminhtml_settings_index>
71
- <reference name="head">
72
- <action method="addCss"><stylesheet>bmbleb/bmbleb.css</stylesheet></action>
73
- </reference>
74
- <reference name="content">
75
- <block type="bmbleb/adminhtml_settings" name="bmbleb.settings" />
76
- </reference>
77
- <reference name="left">
78
- <block type="bmbleb/adminhtml_tabs" name="bmbleb.tabs"></block>
79
- </reference>
80
- </bmbleb_adminhtml_settings_index>
81
- </layout>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/layout/shadow.xml ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * @category springbot
5
+ * @package springbot_Shadow
6
+ * @author springbot integration team
7
+ */
8
+ -->
9
+ <layout>
10
+ <default>
11
+ <reference name="before_body_end">
12
+ <block type="shadow/js_boot" name="shadow.js.boot" template="shadow/js/boot.phtml"/>
13
+ </reference>
14
+ </default>
15
+
16
+ <shadow_frontend_index_index>
17
+ <block type="core/template" name="root" output="toHtml" template="shadow/emailupdate.phtml"/>
18
+ </shadow_frontend_index_index>
19
+
20
+ <checkout_onepage_success>
21
+ <reference name="before_body_end">
22
+ <block type="core/template" template="shadow/conversion.phtml" name="shadow.conversion" />
23
+ </reference>
24
+ </checkout_onepage_success>
25
+
26
+ </layout>
27
+
28
+
app/design/frontend/base/default/template/shadow/conversion.phtml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $total = 0.0;
3
+ $escapedOrderId = '';
4
+ try {
5
+ $lastOrderId = Mage::getSingleton('checkout/session')->getLastOrderId();
6
+ $order = Mage::getModel('sales/order')->load($lastOrderId);
7
+ $total = $order->getGrandTotal();
8
+ $escapedOrderId = $this->escapeHtml($lastOrderId);
9
+ } catch (Exception $e) {
10
+ Springbot_Log::error($e);
11
+ }
12
+ ?>
13
+
14
+ <script type="text/javascript">
15
+ adroll_conversion_value_in_dollars = <?php echo $total ?>;
16
+ adroll_custom_data = {"ORDER_ID": "<?php echo $escapedOrderId ?>"};
17
+ </script>
app/design/frontend/base/default/template/shadow/emailupdate.phtml ADDED
@@ -0,0 +1 @@
 
1
+ {}
app/design/frontend/base/default/template/shadow/js/boot.phtml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php if ($publicId = $this->getPublicId()) : ?>
2
+ <script type="text/javascript">
3
+ var _sbparams = _sbparams || [];
4
+ _sbparams.push({'action': 'view'});
5
+ (function() {
6
+ var sb = document.createElement('script');
7
+ var fs = document.getElementsByTagName('script')[0];
8
+ sb.type = 'text/javascript'; sb.async = true;
9
+ sb.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + '<?php echo $this->getAssetsDomain()?>/async/preload/<?php echo $publicId ?>.js';
10
+ fs.parentNode.insertBefore(sb, fs);
11
+ })();
12
+ </script>
13
+ <?php endif ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Springbot</name>
4
- <version>1.3.0.9</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
@@ -47,11 +47,11 @@ Social Media Alerts example: Ted Smith Tweeted about your company &#xD;
47
  Proclivity to Buy Alerts example: Sally Avalon bought a house recently &#xD;
48
  &#xD;
49
  For support information, features and pricing and more details visit springbot.com</description>
50
- <notes>Fix for salesrule implementation issue</notes>
51
- <authors><author><name>Springbot </name><user>Springbot</user><email>bseitz@springbot.com</email></author></authors>
52
- <date>2014-09-17</date>
53
- <time>16:44:26</time>
54
- <contents><target name="mageetc"><dir name="modules"><file name="Springbot.xml" hash="69a4e2c056502cd8539b4f66a2c8b1bc"/></dir></target><target name="magecommunity"><dir name="Springbot"><dir name="Bmbleb"><dir name="Block"><dir name="Adminhtml"><file name="Auth.php" hash="7dc661bbe9ec85f700a22b319981114d"/><dir name="Bmbleb"><dir name="Login"><file name="Form.php" hash="92cb0b61cce7726f20eec7d5ba8b08a8"/></dir><file name="Login.php" hash="7232e8225f5b21de5675c0d84cb452bd"/></dir><file name="Connected.php" hash="833cef8e351f5efa7a4d104b1c51ca7f"/><file name="Help.php" hash="b280b3292ed778140b751b6426ef56fb"/><dir name="Index"><file name="Messages.php" hash="1e247e31194447de32e54f49dafc3ccc"/><file name="Terms.php" hash="739e5a9ebe204f1f9ac433557c994ae6"/></dir><file name="Index.php" hash="eb7bbef5fa26a53748596e145c3677c4"/><dir name="Jobs"><file name="Grid.php" hash="67255d982ac3d50b38d7a2a525c2b922"/><file name="Status.php" hash="f1b197bf6fdc392bed93ff0734a54ad6"/></dir><file name="Jobs.php" hash="84801c6008802496e168e763a7e6d71f"/><file name="Login.php" hash="2e4d8baead482d404ed40f7d5f3d902c"/><file name="Logout.php" hash="b75af51891b751b9d070e1e784dd6914"/><file name="Logs.php" hash="686e958b553c1e3fcf74841eab30fffb"/><file name="Notifications.php" hash="b9e103d6c255078274c2f3047d944d0e"/><file name="Problems.php" hash="d88e7f1ce79746a306e9b0ff7d0e49bd"/><file name="Status.php" hash="9b67a20f0ee00608029d24850cefda4d"/><file name="Tabs.php" hash="6f93d5c6bd5208a99637c06118c6c630"/></dir></dir><dir name="Helper"><file name="Account.php" hash="b6b8a7623c221d00b3bd142d2ee30e4a"/><file name="Data.php" hash="dca14b137de1e2734a377ca645eeddbe"/><file name="PluginStatus.php" hash="1423679a7e9636aaec854f617da81fe8"/></dir><dir name="Model"><file name="Bmbleb.php" hash="700d11c3006f2dcd2e80cd8bbbab15f9"/><file name="Status.php" hash="9409d26c7884be6b8075ba97dbf71f78"/><file name="Sync.php" hash="a800b6064a88f37957392cd967f2b3cb"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="HelpController.php" hash="087e7868dafe9dd2df89a642d405424a"/><file name="IndexController.php" hash="6b1059484b2d46453e0a429e2d4c8d71"/><file name="JobsController.php" hash="4e912a8fafd2f58235cb2299a83a128b"/><file name="LogsController.php" hash="20a0ce2f584f08480399b7a5ecbd9207"/><file name="ProblemsController.php" hash="a257b10a90bd3924d2396c1a7c272a38"/><file name="SettingsController.php" hash="f75a7a8ef28a296cbd46b04ae9dd5539"/></dir><file name="HelpController.php" hash="2df4608a957f151bf1d01dbde2113680"/><file name="IndexController.php" hash="ea5fa5e2b305f46b222cb2fc2a44f6a5"/><file name="LoginController.php" hash="fc5f7211f7d87c3b8d32bcf502dc1b3f"/><file name="LogoutController.php" hash="140c9d32f5557aa1169fd1b85cd5cc9f"/></dir><dir name="etc"><file name="config.xml" hash="45f7218274a3eed0086761942a95f27b"/></dir></dir><dir name="BoneCollector"><dir name="Model"><file name="HarvestAbstract.php" hash="cd3c3ebcd5c2f4d77d37147e3c722a47"/><dir name="HarvestAttribute"><file name="Observer.php" hash="50a54c290e468d584442c867e866c81b"/></dir><dir name="HarvestCaptureSKU"><file name="Observer.php" hash="428be8c5ac0c676ed4cf84cb3b94a35f"/></dir><dir name="HarvestCart"><file name="Observer.php" hash="63095a580cf0405685104d87cd4868ca"/></dir><dir name="HarvestCategory"><file name="Observer.php" hash="5983ae5a8a8a4d60594cfd081fa9541f"/></dir><dir name="HarvestCustomer"><file name="Observer.php" hash="b55ee79bb112671719e213abce02ecb5"/></dir><dir name="HarvestProduct"><file name="Observer.php" hash="2eb2c80e731d3142ef232bfd8a9035d4"/></dir><dir name="HarvestPurchase"><file name="Observer.php" hash="3310deefacb8d5d47f58bb7bdf3a2488"/></dir><dir name="HarvestRule"><file name="Observer.php" hash="c99b9c5a75f1a64ca050b5ef3a4eecfc"/></dir><dir name="HarvestSubscriber"><file name="Observer.php" hash="5e4ebcf718ff8ad9d12c9a2cb110c7d1"/></dir></dir><dir name="etc"><file name="config.xml" hash="9d23397da44604157d4370b27708c99d"/></dir></dir><file name="Boss.php" hash="1bf233aaf41168f5a4c37f79e02d9635"/><dir name="Combine"><dir name="Helper"><file name="Attributes.php" hash="5fb06e7cc89bb710039a79fb16e2a998"/><file name="Cart.php" hash="07ce5f461ecded3b9b00ed5c30faa266"/><file name="Data.php" hash="a014e541ad0af82eede3dd5500c6aa4a"/><file name="Harvest.php" hash="1844c637796109da078feee668ba5c51"/><file name="Parser.php" hash="de4ae8ca9d83a371586fe1424f7edbcd"/><file name="Redirect.php" hash="3b81406f5105040d17699ad1e0d7cd5d"/><file name="Store.php" hash="8db94d157d7e497e7612844da43a6c11"/><file name="Trackable.php" hash="8bc28aa708be61d4d0d1f79b3ad51a78"/></dir><dir name="Model"><file name="Abstract.php" hash="77bc1e853f03ca6a12ddd1dda12feda2"/><file name="Api.php" hash="7dc599eb13f12ec51a99af1f5893790a"/><dir name="Cron"><file name="Count.php" hash="06824a092141baf29222607a2dcb3d9c"/><dir name="Manager"><file name="Status.php" hash="d3e0e732a3512bb95214f33fa9f08457"/></dir><dir name="Queue"><dir name="Batch"><file name="Row.php" hash="f703a1bf9e14ef428ade448febc9d35b"/></dir><file name="Batch.php" hash="ec4a31552a5f94a16478057637645dfb"/></dir><file name="Queue.php" hash="fa0d2bfd3fbb879442e0edd4ea7915a9"/><file name="Worker.php" hash="f83199c1491083b68eaea08467114d4f"/></dir><dir name="File"><file name="Io.php" hash="6d1f79eaf45897bf0525b0f3f3ac69d2"/><file name="Path.php" hash="24900b670c07fcdc4e54bae585f20002"/></dir><dir name="Harvest"><file name="Abstract.php" hash="0cdc8ab7db784c9d1a0d0524b68e2d0f"/><file name="AttributeSets.php" hash="2799ee325cd5bdcae597e482ef96551a"/><file name="Carts.php" hash="27e992f0f8cc4b274cd05efc7ce3a7f2"/><file name="Categories.php" hash="ab5bd7e91444fd7cb8bfeae376cd3ea7"/><file name="Coupons.php" hash="d168fba39963899e60a166d1eae2634c"/><file name="CustomerAttributeSets.php" hash="9be018cc3cbb0f495aec4f1c3a9013c8"/><file name="Customers.php" hash="f31427406c56f2dcde5a4f7d04a773c9"/><file name="Guests.php" hash="bcb1fbdfb7b5bf822934d300c423e17f"/><file name="Products.php" hash="2261f2c79b59e59977d050630d0fe92f"/><file name="Purchases.php" hash="585b1cf18e857850920abc7425830388"/><file name="Rules.php" hash="1614bc2a6b69f69acd3edc6fa09def7a"/><file name="Subscribers.php" hash="0c6f8ce380f036599141c9231562aaa9"/></dir><file name="Harvester.php" hash="0578a78bb29782d6fba8fcfb5bcc30ce"/><dir name="Mysql4"><dir name="Cron"><file name="Count.php" hash="acbbb7ec28afbbe98101f5d114cb30b3"/><dir name="Queue"><file name="Collection.php" hash="b26806c9e7cefd052bb784f5a6ce814c"/></dir><file name="Queue.php" hash="4add10644bfc94b88ef5042b23c82ae7"/></dir><dir name="Redirect"><file name="Collection.php" hash="3bbe4f8729c603f8d8131154a0a117c1"/><dir name="Order"><file name="Collection.php" hash="88c0cfcce31b0eed8c035dee4e7e86df"/></dir><file name="Order.php" hash="852bea330edac3372ec5c168111301a8"/></dir><file name="Redirect.php" hash="842e4ba35c6b049c8eaa64704588ca76"/><file name="Setup.php" hash="3fdec335980846a4c3adbc6f4e3478eb"/><dir name="Trackable"><file name="Collection.php" hash="8799c5bf630d267b551cf9dba986cbb0"/></dir><file name="Trackable.php" hash="b38749697b641874b42dceae38ab4a30"/></dir><dir name="Parser"><file name="Abstract.php" hash="bb7ed7476afbdd115876be43108aa149"/><file name="AttributeSet.php" hash="fcb90beeebb921b349b28cadf354786c"/><file name="Category.php" hash="352b6ed7328c94524f4a7c3042949295"/><file name="Coupon.php" hash="53b3d28470146b03e8be2f828dfa92f1"/><file name="Customer.php" hash="083edca18fbdf0c496e6ad22775f596e"/><file name="CustomerAttributeSet.php" hash="f926ec29d1ae837c0ae3c0a9257438d4"/><file name="Guest.php" hash="cbcbf7532c67c72d7e3b77022abc76c3"/><file name="Product.php" hash="2a0d3822877074b2258cd10f9d230cb1"/><dir name="Purchase"><file name="Item.php" hash="f997c74c97f79054ba22e342eab88928"/></dir><file name="Purchase.php" hash="4f161bc021af1851c92bb1c9c33a26ee"/><dir name="Quote"><file name="Item.php" hash="4763cfb492dc6d60575154d8624d256f"/></dir><file name="Quote.php" hash="63c0899564e14208042ac64e371ce71d"/><file name="Rule.php" hash="1069dc15f2c30ec462eb1af51aeceb85"/><file name="Subscriber.php" hash="7cce4dbb928983be6444ce5ef369ffb0"/></dir><file name="Parser.php" hash="72b273215802ee5244fd9e24c223beb8"/><dir name="Redirect"><file name="Order.php" hash="0c31dee69473751d95e5c52f5c60ea48"/></dir><file name="Redirect.php" hash="4abc597d06bd9fa223218ee19be66e0c"/><dir name="Resource"><file name="Abstract.php" hash="a50723654e084875378838b89ffb74ce"/><dir name="Cron"><dir name="Count"><file name="Collection.php" hash="c5cb4ab406c1d008c1bc22bb95b3ba28"/></dir><file name="Count.php" hash="6a356b5d92b509945c4567f479b9bfdd"/><dir name="Queue"><file name="Collection.php" hash="c182c6f6f7d29ee26ddf2900a8497cdb"/></dir><file name="Queue.php" hash="01d35c9491516f7f4ef7d9cccb7b6202"/></dir><dir name="Redirect"><file name="Collection.php" hash="0f9db83ade4c50c2f7bbe40deae1c065"/><dir name="Order"><file name="Collection.php" hash="162359ed9499b6f976f5c341fd0585c3"/></dir><file name="Order.php" hash="7ea4477380a5215dc0efe561ede359d9"/></dir><file name="Redirect.php" hash="d239af442388bb9fa80db81a7fc43711"/><file name="Setup.php" hash="46cc5ec83478021a1fe7251d73ee568e"/><dir name="Trackable"><file name="Collection.php" hash="6f060c3537b49710302e38e881885a69"/></dir><file name="Trackable.php" hash="764b0d21c492dd69b9f85ae3c647666e"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="LogFormat.php" hash="828680dafe5a7042221900cb6d9dfa17"/><file name="LogLevel.php" hash="b86c793ca04205f045efd9ea42d02a10"/><file name="Stability.php" hash="830e5bc4e8ce9657221224dbaf99cee6"/><file name="UrlType.php" hash="28f9a5bc024afe5526685d429a751ad8"/></dir></dir></dir><file name="Trackable.php" hash="710d298645c0a809a1b70b936b0e4d09"/></dir><dir name="etc"><file name="adminhtml.xml" hash="794fc8a1d67ac3e6b5d71c707a0c7cad"/><file name="config.xml" hash="faa027ffb7e40a78110f367b6a9e550d"/><file name="system.xml" hash="12f0f05be054854c29751767a3c8ef97"/></dir><dir name="sql"><dir name="combine_setup"><file name="mysql4-install-1.0.0.70.php" hash="607957cf80927e2575e455074fea17ec"/><file name="mysql4-upgrade-1.0.0.70-1.0.0.84.php" hash="e51deaff9e65f43483ab00573605329d"/><file name="mysql4-upgrade-1.0.0.84-1.0.0.88.php" hash="89bd8a585c0d351aae6838ace48f608d"/><file name="mysql4-upgrade-1.0.0.88-1.2.0.0.php" hash="09f98d701b5030ccc27d9ca1503212c4"/><file name="mysql4-upgrade-1.2.0.0-1.2.0.1.php" hash="01a7ef2466b9f676884db4d7a7c562a9"/><file name="mysql4-upgrade-1.2.0.1-1.2.1.0.php" hash="ca68ef04700f892ae847aaf20155cb6a"/></dir></dir></dir><dir name="DataServices"><file name="HarvestingManager.php" hash="1be4b3fcf965b4c1bc2adf9a73651c10"/></dir><file name="Log.php" hash="742aa65d2a2eb1d9cb4b203b0141e2aa"/><dir name="Services"><file name="Abstract.php" hash="f779d8f0a1eaaa20364ccbf400c9e0ae"/><dir name="Cmd"><file name="Forecast.php" hash="3ac2b917db8c05ac085f213640b7be14"/><file name="Halt.php" hash="af1a47f7e9940c29b9c8380fbc69a447"/><file name="Harvest.php" hash="34eb715d51953451b4d082f0a141275c"/><file name="Healthcheck.php" hash="a51b3b7766afa1e6cca60fc3b206fb85"/><file name="Parse.php" hash="dbf89d3e1395511728063128703e3e97"/><file name="Update.php" hash="804da06229cc47eb850291847883c96d"/></dir><dir name="Harvest"><file name="AttributeSets.php" hash="c37c4c0642a06a27c6a28bee27e20b14"/><file name="Carts.php" hash="9496d5150a9b5e1282adb78d96f846fc"/><file name="Categories.php" hash="fc1b5b26d612d3232838c975c3e55646"/><file name="Coupons.php" hash="933ac544b0438b7b6e5c26f1d94b369a"/><file name="CustomerAttributeSets.php" hash="67368d6ba001310912d39df0bd9037ad"/><file name="Customers.php" hash="9ae9805bb89a7546ad7c126281ce5220"/><file name="Guests.php" hash="940bcfd10c656195953b77159a4ace10"/><file name="Products.php" hash="d249ec369bdaa38964906f9998d77d4b"/><file name="Purchases.php" hash="859c8af86ee44a896d94ac69decb851a"/><file name="Rules.php" hash="8da50acb7c2bfa0551dcc7727bb958d5"/><file name="Subscribers.php" hash="8fa28e316d7396ca79300813ea9bd7ca"/></dir><file name="Harvest.php" hash="1ed4efb9aa1f0ae30a3a4afb2cbf98f6"/><dir name="Log"><file name="Installer.php" hash="584f730627201a9e73f1d4101ad3fedd"/><file name="Purchase.php" hash="6060265974fe6b45768617f96ebba6b1"/></dir><dir name="Post"><file name="Attribute.php" hash="7e7a307180eb9b9cd7f5b9137e4bd647"/><file name="AttributeSet.php" hash="66968b3ea659253789bbf96ec828afcc"/><file name="Cart.php" hash="7465d7587762b82ffaefef6f27b40a58"/><file name="Category.php" hash="68be39b090f46f3f438ad2ed9f97f09f"/><file name="Coupon.php" hash="1c5484e6f2fd1d68e4a25a429f74376b"/><file name="Customer.php" hash="ecce6d30d3458e0786d4c6335a4c02cc"/><file name="Json.php" hash="86a5f26aa5367d8c4c66d278e4c02546"/><file name="Jsonstring.php" hash="9dfb5761d1a7835bf35040a073fa8fc4"/><file name="Product.php" hash="787e33146cc39d5f5eecd2d3a4ea842b"/><file name="Purchase.php" hash="80480bf01d11b1068d481c6ed50c2e1f"/><file name="Rule.php" hash="24c4c0bea020dbb3a4ff5420888d1f22"/><file name="Subscriber.php" hash="4d18235c4c0d11a8650b3e60c098908f"/></dir><file name="Post.php" hash="df362d5839aa050daa7b23660603b16d"/><file name="Priority.php" hash="d8fc0b57442d8e2e2ff7ba789c3d1fc9"/><file name="Registry.php" hash="c4f17c52b0814c29b7ab93e911a2de28"/><dir name="Store"><file name="Finalize.php" hash="6f61c4cd23ef3cd815b7eee545ecaa23"/><file name="Register.php" hash="523100a10a3ac39fa444801551bdbf25"/></dir><dir name="Update"><file name="Abstract.php" hash="7b9a1d36b4486e250587820731b7fb7c"/><file name="Connect.php" hash="3e4366a42e563ec3406a0fcb9a5f77bf"/><file name="Downloader.php" hash="934ef5788acb45ce94e0a32c1d705df1"/><file name="Installer.php" hash="a09ec2e9f7bbf12c117c8950e46072b0"/><file name="Package.php" hash="b025fa1c27aed03454e7d45d09705b3a"/></dir><dir name="Work"><file name="Cleanup.php" hash="d0915a0cde6d9cd4287a2f9fc4bc0056"/><file name="Manager.php" hash="507608c3fc9d34170e7326cb075d3b71"/><file name="Report.php" hash="688df023f8e1518d15e297b030618254"/><file name="Restart.php" hash="43af836b8950852efe62996facf4ad87"/><file name="Runner.php" hash="a2929a0e03dc99ac0ad5702b623eeb56"/><file name="Stop.php" hash="5e51ecf333282ad5d8dd6d40243c5e8e"/></dir></dir><dir name="Shadow"><dir name="Block"><dir name="Js"><file name="Boot.php" hash="3dec841c75ca7d3605681080aa19798b"/></dir></dir><dir name="Helper"><file name="Listeners.php" hash="432794c308714015009014a2620fca16"/></dir><dir name="Model"><dir name="Listeners"><file name="Observer.php" hash="3326cfb14a374c039f639bd74947c4fb"/></dir><file name="Timer.php" hash="bfdaef5388bfc7faf48544c18cee6854"/></dir><dir name="controllers"><file name="IndexController.php" hash="7740556a1a409412075fd3d1ce3514c5"/></dir><dir name="etc"><file name="config.xml" hash="6f8002880ac72e062ff1a22ddcc346ee"/></dir></dir><dir name="Util"><file name="Caller.php" hash="7674f6d3f6d0fc5e238c7e31e0516c52"/><file name="Categories.php" hash="1292843306c38d9593902616e04320a6"/><dir name="Log"><file name="Rollover.php" hash="47ecb75b56743147d77b33219ac657ac"/></dir><file name="Logger.php" hash="59abca8cb07ef933ca8ef2ac824591b5"/><file name="Partition.php" hash="b9296b086003ba58ba12f8b8b0373c50"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="bmbleb.xml" hash="aa390e236576f79375b407262961043e"/></dir><dir name="template"><dir name="bmbleb"><file name="auth.phtml" hash="2fc86d90ab53799e7309d3f88afff077"/><file name="dashboard_loggedout.phtml" hash="19281143b19a544d4e3072dc754ada2d"/><dir name="help"><file name="index.phtml" hash="e9d3f11c623c735c3e699e406ff9e0e7"/></dir><dir name="index"><file name="messages.phtml" hash="fcbbb47d2cc30c493ed2316a8b888f5d"/><file name="terms.phtml" hash="dfff1182d2fe7d8eee69b9b302c4cbc7"/></dir><file name="index.phtml" hash="86ad04e7c0f91dad8e2a08a3f5d70b64"/><dir name="jobs"><file name="status.phtml" hash="77f0b0ae7c3c6c42031675cfc959e270"/></dir><file name="jobs.phtml" hash="961ac83f56bf8703dbc433894da4933e"/><file name="login.phtml" hash="0a1a20dfaffe8646bb56323ab811d46a"/><file name="logout.phtml" hash="09b92790c5e124a01086d6929ed7e8de"/><dir name="logs"><file name="index.phtml" hash="17e773a761a24e292b09fe7da1bd7662"/></dir><file name="notifications.phtml" hash="45f8767a090a4f7a7e177151bbc43f4f"/><dir name="problems"><file name="index.phtml" hash="2027d07eed8848a4ed8e801d67072796"/></dir><file name="status.phtml" hash="4c6d8cd43e39184f35c715b785c8595a"/><file name="tabs.phtml" hash="778b686fb073a8aeb973db3bfb0302aa"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="layout"><file name="bmbleb.xml" hash="df1c52c006a507e5c9bc73e66adf8ae8"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="bmbleb"><file name="bmbleb.css" hash="8aea7d5d46e2a0d0ece11abca6ef5d3f"/><dir name="images"><file name="arrows_up-down-large.png" hash="72c27995e1ab1d182891dad0a4d1dae2"/><file name="bmb-ctl.png" hash="de59a694a82b8699560df5146b2e315f"/><file name="check.png" hash="126f33ed483549e79a16186b7499c190"/><file name="grn-bg.png" hash="f681a524e2b4561dbe94152a2d24d60b"/><file name="h3-bg.png" hash="b93df0b0bdba8e8f6e0a07cc31fcc180"/><file name="icon-alert.png" hash="ac2e70efdcebc3813222d0d3ee62a6d9"/><file name="icon-bmbleb.png" hash="fb5574b5e63ee33b84eee26b3d8ef8e3"/><file name="icon-insights.png" hash="725fd29fe1b705e358c9080408693d3d"/><file name="icon-status.png" hash="bd13429f23166a6d431739010ea1b2cd"/><file name="left-ico1.png" hash="7d188f5e6021569750756f58067f0a3b"/><file name="left-ico2.png" hash="d2f6379a73290a8ffa4cb3e19a809d25"/><file name="left-ico3.png" hash="73bc75f7a746e54a75f14eda7a28a6b9"/><file name="left-ico4.png" hash="1da2c26187fed26b6c61599682b2dc4b"/><file name="left-ico5.png" hash="ada61cb32805f2cb8e8dace46361613e"/><file name="left-ico6.png" hash="1e62822267f72589ffa0771352a002da"/><file name="left-ico7.png" hash="16118412d581f0c83ce45c44f62f25a1"/><file name="left-ico8.png" hash="c7de2fe523c892b432b575648cc05631"/><file name="left-ico_demographics.png" hash="3fe23a2dea68f6c65114f248a8bdaa5e"/><file name="login-icn-b.png" hash="64e72070f595e215ece79736ac77ee2f"/><file name="login-icn.png" hash="6142cc2fc8ee2d1c40bf3c8f9ac1fa85"/><file name="logo.png" hash="8fb783f7d68fca3914123f56b8c066a4"/><file name="orng-bg.png" hash="074a6912ca2a139df537e3d15b6bc9b2"/><file name="plugin_dashboard_syncing.jpg" hash="8511648541f6f1b96ff1c53dda3a439b"/><file name="register.png" hash="f73fe51cf7df27ab11089385fa50714e"/><file name="registration-bg-25.png" hash="9d2cf77619cc8fce3ae4d44b0aae30c1"/><file name="registration-bg-50.png" hash="99942fdc8c3f88b0d4b09f87c9e39045"/><file name="registration-bg.png" hash="96365b39495e56ffe491dd9930fe221d"/><file name="spinner.gif" hash="add667817f25bce331a213ab3cc9621f"/><file name="springbot-ctl.png" hash="de59a694a82b8699560df5146b2e315f"/><file name="submit-btn-bg.png" hash="d98aa287b7b73dad9f780b22cb53fbdb"/><file name="sync_icon.png" hash="cb12f2e8943c8e324e3456375f953c86"/><file name="white-check.png" hash="126f33ed483549e79a16186b7499c190"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="shell"><file name="springbot.php" hash="4de4684c57c242cbcb661cd6bc98844a"/></dir></target></contents>
55
  <compatible/>
56
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
57
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Springbot</name>
4
+ <version>1.3.0.10</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
47
  Proclivity to Buy Alerts example: Sally Avalon bought a house recently &#xD;
48
  &#xD;
49
  For support information, features and pricing and more details visit springbot.com</description>
50
+ <notes>Defined package.xml for frontend template updates</notes>
51
+ <authors><author><name>Springbot </name><user>Springbot</user><email>magento@springbot.com</email></author></authors>
52
+ <date>2014-09-22</date>
53
+ <time>18:43:41</time>
54
+ <contents><target name="mageetc"><dir name="modules"><file name="Springbot.xml" hash="69a4e2c056502cd8539b4f66a2c8b1bc"/></dir></target><target name="magecommunity"><dir name="Springbot"><dir name="Bmbleb"><dir name="Block"><dir name="Adminhtml"><file name="Auth.php" hash="7dc661bbe9ec85f700a22b319981114d"/><dir name="Bmbleb"><dir name="Login"><file name="Form.php" hash="92cb0b61cce7726f20eec7d5ba8b08a8"/></dir><file name="Login.php" hash="7232e8225f5b21de5675c0d84cb452bd"/></dir><file name="Connected.php" hash="833cef8e351f5efa7a4d104b1c51ca7f"/><file name="Help.php" hash="b280b3292ed778140b751b6426ef56fb"/><dir name="Index"><file name="Messages.php" hash="1e247e31194447de32e54f49dafc3ccc"/><file name="Terms.php" hash="739e5a9ebe204f1f9ac433557c994ae6"/></dir><file name="Index.php" hash="eb7bbef5fa26a53748596e145c3677c4"/><dir name="Jobs"><file name="Grid.php" hash="67255d982ac3d50b38d7a2a525c2b922"/><file name="Status.php" hash="f1b197bf6fdc392bed93ff0734a54ad6"/></dir><file name="Jobs.php" hash="84801c6008802496e168e763a7e6d71f"/><file name="Login.php" hash="2e4d8baead482d404ed40f7d5f3d902c"/><file name="Logout.php" hash="b75af51891b751b9d070e1e784dd6914"/><file name="Logs.php" hash="686e958b553c1e3fcf74841eab30fffb"/><file name="Notifications.php" hash="b9e103d6c255078274c2f3047d944d0e"/><file name="Problems.php" hash="d88e7f1ce79746a306e9b0ff7d0e49bd"/><file name="Status.php" hash="9b67a20f0ee00608029d24850cefda4d"/><file name="Tabs.php" hash="6f93d5c6bd5208a99637c06118c6c630"/></dir></dir><dir name="Helper"><file name="Account.php" hash="b6b8a7623c221d00b3bd142d2ee30e4a"/><file name="Data.php" hash="dca14b137de1e2734a377ca645eeddbe"/><file name="PluginStatus.php" hash="1423679a7e9636aaec854f617da81fe8"/></dir><dir name="Model"><file name="Bmbleb.php" hash="700d11c3006f2dcd2e80cd8bbbab15f9"/><file name="Status.php" hash="9409d26c7884be6b8075ba97dbf71f78"/><file name="Sync.php" hash="a800b6064a88f37957392cd967f2b3cb"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="HelpController.php" hash="087e7868dafe9dd2df89a642d405424a"/><file name="IndexController.php" hash="6b1059484b2d46453e0a429e2d4c8d71"/><file name="JobsController.php" hash="4e912a8fafd2f58235cb2299a83a128b"/><file name="LogsController.php" hash="20a0ce2f584f08480399b7a5ecbd9207"/><file name="ProblemsController.php" hash="a257b10a90bd3924d2396c1a7c272a38"/><file name="SettingsController.php" hash="f75a7a8ef28a296cbd46b04ae9dd5539"/></dir><file name="HelpController.php" hash="2df4608a957f151bf1d01dbde2113680"/><file name="IndexController.php" hash="ea5fa5e2b305f46b222cb2fc2a44f6a5"/><file name="LoginController.php" hash="fc5f7211f7d87c3b8d32bcf502dc1b3f"/><file name="LogoutController.php" hash="140c9d32f5557aa1169fd1b85cd5cc9f"/></dir><dir name="etc"><file name="config.xml" hash="45f7218274a3eed0086761942a95f27b"/></dir></dir><dir name="BoneCollector"><dir name="Model"><file name="HarvestAbstract.php" hash="cd3c3ebcd5c2f4d77d37147e3c722a47"/><dir name="HarvestAttribute"><file name="Observer.php" hash="50a54c290e468d584442c867e866c81b"/></dir><dir name="HarvestCaptureSKU"><file name="Observer.php" hash="428be8c5ac0c676ed4cf84cb3b94a35f"/></dir><dir name="HarvestCart"><file name="Observer.php" hash="63095a580cf0405685104d87cd4868ca"/></dir><dir name="HarvestCategory"><file name="Observer.php" hash="5983ae5a8a8a4d60594cfd081fa9541f"/></dir><dir name="HarvestCustomer"><file name="Observer.php" hash="b55ee79bb112671719e213abce02ecb5"/></dir><dir name="HarvestProduct"><file name="Observer.php" hash="2eb2c80e731d3142ef232bfd8a9035d4"/></dir><dir name="HarvestPurchase"><file name="Observer.php" hash="3310deefacb8d5d47f58bb7bdf3a2488"/></dir><dir name="HarvestRule"><file name="Observer.php" hash="c99b9c5a75f1a64ca050b5ef3a4eecfc"/></dir><dir name="HarvestSubscriber"><file name="Observer.php" hash="5e4ebcf718ff8ad9d12c9a2cb110c7d1"/></dir></dir><dir name="etc"><file name="config.xml" hash="2467d219cd2ad67e93f51f24d6adc68d"/></dir></dir><file name="Boss.php" hash="1bf233aaf41168f5a4c37f79e02d9635"/><dir name="Combine"><dir name="Helper"><file name="Attributes.php" hash="5fb06e7cc89bb710039a79fb16e2a998"/><file name="Cart.php" hash="07ce5f461ecded3b9b00ed5c30faa266"/><file name="Data.php" hash="a014e541ad0af82eede3dd5500c6aa4a"/><file name="Harvest.php" hash="1844c637796109da078feee668ba5c51"/><file name="Parser.php" hash="de4ae8ca9d83a371586fe1424f7edbcd"/><file name="Redirect.php" hash="3b81406f5105040d17699ad1e0d7cd5d"/><file name="Store.php" hash="8db94d157d7e497e7612844da43a6c11"/><file name="Trackable.php" hash="8bc28aa708be61d4d0d1f79b3ad51a78"/></dir><dir name="Model"><file name="Abstract.php" hash="77bc1e853f03ca6a12ddd1dda12feda2"/><file name="Api.php" hash="7dc599eb13f12ec51a99af1f5893790a"/><dir name="Cron"><file name="Count.php" hash="06824a092141baf29222607a2dcb3d9c"/><dir name="Manager"><file name="Status.php" hash="6cbb26b375c889049977a5ef41812a70"/></dir><dir name="Queue"><dir name="Batch"><file name="Row.php" hash="f703a1bf9e14ef428ade448febc9d35b"/></dir><file name="Batch.php" hash="ec4a31552a5f94a16478057637645dfb"/></dir><file name="Queue.php" hash="fa0d2bfd3fbb879442e0edd4ea7915a9"/><file name="Worker.php" hash="f83199c1491083b68eaea08467114d4f"/></dir><dir name="File"><file name="Io.php" hash="6d1f79eaf45897bf0525b0f3f3ac69d2"/><file name="Path.php" hash="24900b670c07fcdc4e54bae585f20002"/></dir><dir name="Harvest"><file name="Abstract.php" hash="0cdc8ab7db784c9d1a0d0524b68e2d0f"/><file name="AttributeSets.php" hash="2799ee325cd5bdcae597e482ef96551a"/><file name="Carts.php" hash="27e992f0f8cc4b274cd05efc7ce3a7f2"/><file name="Categories.php" hash="ab5bd7e91444fd7cb8bfeae376cd3ea7"/><file name="Coupons.php" hash="d168fba39963899e60a166d1eae2634c"/><file name="CustomerAttributeSets.php" hash="9be018cc3cbb0f495aec4f1c3a9013c8"/><file name="Customers.php" hash="f31427406c56f2dcde5a4f7d04a773c9"/><file name="Guests.php" hash="bcb1fbdfb7b5bf822934d300c423e17f"/><file name="Products.php" hash="2261f2c79b59e59977d050630d0fe92f"/><file name="Purchases.php" hash="585b1cf18e857850920abc7425830388"/><file name="Rules.php" hash="1614bc2a6b69f69acd3edc6fa09def7a"/><file name="Subscribers.php" hash="0c6f8ce380f036599141c9231562aaa9"/></dir><file name="Harvester.php" hash="0578a78bb29782d6fba8fcfb5bcc30ce"/><dir name="Mysql4"><dir name="Cron"><file name="Count.php" hash="acbbb7ec28afbbe98101f5d114cb30b3"/><dir name="Queue"><file name="Collection.php" hash="b26806c9e7cefd052bb784f5a6ce814c"/></dir><file name="Queue.php" hash="4add10644bfc94b88ef5042b23c82ae7"/></dir><dir name="Redirect"><file name="Collection.php" hash="3bbe4f8729c603f8d8131154a0a117c1"/><dir name="Order"><file name="Collection.php" hash="88c0cfcce31b0eed8c035dee4e7e86df"/></dir><file name="Order.php" hash="852bea330edac3372ec5c168111301a8"/></dir><file name="Redirect.php" hash="842e4ba35c6b049c8eaa64704588ca76"/><file name="Setup.php" hash="3fdec335980846a4c3adbc6f4e3478eb"/><dir name="Trackable"><file name="Collection.php" hash="8799c5bf630d267b551cf9dba986cbb0"/></dir><file name="Trackable.php" hash="b38749697b641874b42dceae38ab4a30"/></dir><dir name="Parser"><file name="Abstract.php" hash="bb7ed7476afbdd115876be43108aa149"/><file name="AttributeSet.php" hash="fcb90beeebb921b349b28cadf354786c"/><file name="Category.php" hash="352b6ed7328c94524f4a7c3042949295"/><file name="Coupon.php" hash="53b3d28470146b03e8be2f828dfa92f1"/><file name="Customer.php" hash="083edca18fbdf0c496e6ad22775f596e"/><file name="CustomerAttributeSet.php" hash="f926ec29d1ae837c0ae3c0a9257438d4"/><file name="Guest.php" hash="cbcbf7532c67c72d7e3b77022abc76c3"/><file name="Product.php" hash="2a0d3822877074b2258cd10f9d230cb1"/><dir name="Purchase"><file name="Item.php" hash="f997c74c97f79054ba22e342eab88928"/></dir><file name="Purchase.php" hash="4f161bc021af1851c92bb1c9c33a26ee"/><dir name="Quote"><file name="Item.php" hash="4763cfb492dc6d60575154d8624d256f"/></dir><file name="Quote.php" hash="63c0899564e14208042ac64e371ce71d"/><file name="Rule.php" hash="1069dc15f2c30ec462eb1af51aeceb85"/><file name="Subscriber.php" hash="7cce4dbb928983be6444ce5ef369ffb0"/></dir><file name="Parser.php" hash="72b273215802ee5244fd9e24c223beb8"/><dir name="Redirect"><file name="Order.php" hash="0c31dee69473751d95e5c52f5c60ea48"/></dir><file name="Redirect.php" hash="4abc597d06bd9fa223218ee19be66e0c"/><dir name="Resource"><file name="Abstract.php" hash="a50723654e084875378838b89ffb74ce"/><dir name="Cron"><dir name="Count"><file name="Collection.php" hash="c5cb4ab406c1d008c1bc22bb95b3ba28"/></dir><file name="Count.php" hash="6a356b5d92b509945c4567f479b9bfdd"/><dir name="Queue"><file name="Collection.php" hash="c182c6f6f7d29ee26ddf2900a8497cdb"/></dir><file name="Queue.php" hash="01d35c9491516f7f4ef7d9cccb7b6202"/></dir><dir name="Redirect"><file name="Collection.php" hash="0f9db83ade4c50c2f7bbe40deae1c065"/><dir name="Order"><file name="Collection.php" hash="162359ed9499b6f976f5c341fd0585c3"/></dir><file name="Order.php" hash="7ea4477380a5215dc0efe561ede359d9"/></dir><file name="Redirect.php" hash="d239af442388bb9fa80db81a7fc43711"/><file name="Setup.php" hash="46cc5ec83478021a1fe7251d73ee568e"/><dir name="Trackable"><file name="Collection.php" hash="6f060c3537b49710302e38e881885a69"/></dir><file name="Trackable.php" hash="764b0d21c492dd69b9f85ae3c647666e"/></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="LogFormat.php" hash="828680dafe5a7042221900cb6d9dfa17"/><file name="LogLevel.php" hash="b86c793ca04205f045efd9ea42d02a10"/><file name="Stability.php" hash="830e5bc4e8ce9657221224dbaf99cee6"/><file name="UrlType.php" hash="28f9a5bc024afe5526685d429a751ad8"/></dir></dir></dir><file name="Trackable.php" hash="710d298645c0a809a1b70b936b0e4d09"/></dir><dir name="etc"><file name="adminhtml.xml" hash="794fc8a1d67ac3e6b5d71c707a0c7cad"/><file name="config.xml" hash="a1bbfc56960608d27a758d8f2b78acd6"/><file name="system.xml" hash="12f0f05be054854c29751767a3c8ef97"/></dir><dir name="sql"><dir name="combine_setup"><file name="mysql4-install-1.0.0.70.php" hash="607957cf80927e2575e455074fea17ec"/><file name="mysql4-upgrade-1.0.0.70-1.0.0.84.php" hash="e51deaff9e65f43483ab00573605329d"/><file name="mysql4-upgrade-1.0.0.84-1.0.0.88.php" hash="89bd8a585c0d351aae6838ace48f608d"/><file name="mysql4-upgrade-1.0.0.88-1.2.0.0.php" hash="09f98d701b5030ccc27d9ca1503212c4"/><file name="mysql4-upgrade-1.2.0.0-1.2.0.1.php" hash="01a7ef2466b9f676884db4d7a7c562a9"/><file name="mysql4-upgrade-1.2.0.1-1.2.1.0.php" hash="ca68ef04700f892ae847aaf20155cb6a"/></dir></dir></dir><dir name="DataServices"><file name="HarvestingManager.php" hash="3e947c03730bfe37cbe14e4d5bffe9cf"/></dir><file name="Log.php" hash="742aa65d2a2eb1d9cb4b203b0141e2aa"/><dir name="Services"><file name="Abstract.php" hash="f779d8f0a1eaaa20364ccbf400c9e0ae"/><dir name="Cmd"><file name="Forecast.php" hash="3ac2b917db8c05ac085f213640b7be14"/><file name="Halt.php" hash="af1a47f7e9940c29b9c8380fbc69a447"/><file name="Harvest.php" hash="34eb715d51953451b4d082f0a141275c"/><file name="Healthcheck.php" hash="a51b3b7766afa1e6cca60fc3b206fb85"/><file name="Parse.php" hash="dbf89d3e1395511728063128703e3e97"/><file name="Update.php" hash="804da06229cc47eb850291847883c96d"/></dir><dir name="Harvest"><file name="AttributeSets.php" hash="c37c4c0642a06a27c6a28bee27e20b14"/><file name="Carts.php" hash="9496d5150a9b5e1282adb78d96f846fc"/><file name="Categories.php" hash="fc1b5b26d612d3232838c975c3e55646"/><file name="Coupons.php" hash="933ac544b0438b7b6e5c26f1d94b369a"/><file name="CustomerAttributeSets.php" hash="67368d6ba001310912d39df0bd9037ad"/><file name="Customers.php" hash="9ae9805bb89a7546ad7c126281ce5220"/><file name="Guests.php" hash="940bcfd10c656195953b77159a4ace10"/><file name="Products.php" hash="d249ec369bdaa38964906f9998d77d4b"/><file name="Purchases.php" hash="859c8af86ee44a896d94ac69decb851a"/><file name="Rules.php" hash="8da50acb7c2bfa0551dcc7727bb958d5"/><file name="Subscribers.php" hash="8fa28e316d7396ca79300813ea9bd7ca"/></dir><file name="Harvest.php" hash="1ed4efb9aa1f0ae30a3a4afb2cbf98f6"/><dir name="Log"><file name="Installer.php" hash="584f730627201a9e73f1d4101ad3fedd"/><file name="Purchase.php" hash="6060265974fe6b45768617f96ebba6b1"/></dir><dir name="Post"><file name="Attribute.php" hash="7e7a307180eb9b9cd7f5b9137e4bd647"/><file name="AttributeSet.php" hash="66968b3ea659253789bbf96ec828afcc"/><file name="Cart.php" hash="7465d7587762b82ffaefef6f27b40a58"/><file name="Category.php" hash="68be39b090f46f3f438ad2ed9f97f09f"/><file name="Coupon.php" hash="1c5484e6f2fd1d68e4a25a429f74376b"/><file name="Customer.php" hash="ecce6d30d3458e0786d4c6335a4c02cc"/><file name="Json.php" hash="86a5f26aa5367d8c4c66d278e4c02546"/><file name="Jsonstring.php" hash="9dfb5761d1a7835bf35040a073fa8fc4"/><file name="Product.php" hash="787e33146cc39d5f5eecd2d3a4ea842b"/><file name="Purchase.php" hash="80480bf01d11b1068d481c6ed50c2e1f"/><file name="Rule.php" hash="24c4c0bea020dbb3a4ff5420888d1f22"/><file name="Subscriber.php" hash="4d18235c4c0d11a8650b3e60c098908f"/></dir><file name="Post.php" hash="df362d5839aa050daa7b23660603b16d"/><file name="Priority.php" hash="d8fc0b57442d8e2e2ff7ba789c3d1fc9"/><file name="Registry.php" hash="c4f17c52b0814c29b7ab93e911a2de28"/><dir name="Store"><file name="Finalize.php" hash="6f61c4cd23ef3cd815b7eee545ecaa23"/><file name="Register.php" hash="523100a10a3ac39fa444801551bdbf25"/></dir><dir name="Update"><file name="Abstract.php" hash="7b9a1d36b4486e250587820731b7fb7c"/><file name="Connect.php" hash="3e4366a42e563ec3406a0fcb9a5f77bf"/><file name="Downloader.php" hash="934ef5788acb45ce94e0a32c1d705df1"/><file name="Installer.php" hash="a09ec2e9f7bbf12c117c8950e46072b0"/><file name="Package.php" hash="b025fa1c27aed03454e7d45d09705b3a"/></dir><dir name="Work"><file name="Cleanup.php" hash="d0915a0cde6d9cd4287a2f9fc4bc0056"/><file name="Manager.php" hash="d455384f9e9c14e2c4be2eb49677d372"/><file name="Report.php" hash="688df023f8e1518d15e297b030618254"/><file name="Restart.php" hash="43af836b8950852efe62996facf4ad87"/><file name="Runner.php" hash="a2929a0e03dc99ac0ad5702b623eeb56"/><file name="Stop.php" hash="5e51ecf333282ad5d8dd6d40243c5e8e"/></dir></dir><dir name="Shadow"><dir name="Block"><dir name="Js"><file name="Boot.php" hash="3dec841c75ca7d3605681080aa19798b"/></dir></dir><dir name="Helper"><file name="Listeners.php" hash="432794c308714015009014a2620fca16"/></dir><dir name="Model"><dir name="Listeners"><file name="Observer.php" hash="3326cfb14a374c039f639bd74947c4fb"/></dir><file name="Timer.php" hash="bfdaef5388bfc7faf48544c18cee6854"/></dir><dir name="controllers"><file name="IndexController.php" hash="7740556a1a409412075fd3d1ce3514c5"/></dir><dir name="etc"><file name="config.xml" hash="6f8002880ac72e062ff1a22ddcc346ee"/></dir></dir><dir name="Util"><file name="Caller.php" hash="7674f6d3f6d0fc5e238c7e31e0516c52"/><file name="Categories.php" hash="1292843306c38d9593902616e04320a6"/><dir name="Log"><file name="Rollover.php" hash="47ecb75b56743147d77b33219ac657ac"/></dir><file name="Logger.php" hash="59abca8cb07ef933ca8ef2ac824591b5"/><file name="Partition.php" hash="b9296b086003ba58ba12f8b8b0373c50"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="bmbleb.xml" hash="aa390e236576f79375b407262961043e"/></dir><dir name="template"><dir name="bmbleb"><file name="auth.phtml" hash="2fc86d90ab53799e7309d3f88afff077"/><file name="dashboard_loggedout.phtml" hash="19281143b19a544d4e3072dc754ada2d"/><dir name="help"><file name="index.phtml" hash="e9d3f11c623c735c3e699e406ff9e0e7"/></dir><dir name="index"><file name="messages.phtml" hash="fcbbb47d2cc30c493ed2316a8b888f5d"/><file name="terms.phtml" hash="dfff1182d2fe7d8eee69b9b302c4cbc7"/></dir><file name="index.phtml" hash="86ad04e7c0f91dad8e2a08a3f5d70b64"/><dir name="jobs"><file name="status.phtml" hash="77f0b0ae7c3c6c42031675cfc959e270"/></dir><file name="jobs.phtml" hash="961ac83f56bf8703dbc433894da4933e"/><file name="login.phtml" hash="0a1a20dfaffe8646bb56323ab811d46a"/><file name="logout.phtml" hash="09b92790c5e124a01086d6929ed7e8de"/><dir name="logs"><file name="index.phtml" hash="17e773a761a24e292b09fe7da1bd7662"/></dir><file name="notifications.phtml" hash="45f8767a090a4f7a7e177151bbc43f4f"/><dir name="problems"><file name="index.phtml" hash="2027d07eed8848a4ed8e801d67072796"/></dir><file name="status.phtml" hash="4c6d8cd43e39184f35c715b785c8595a"/><file name="tabs.phtml" hash="778b686fb073a8aeb973db3bfb0302aa"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="shadow.xml" hash="da2d548a83dc754a94d36714b28d269b"/></dir><dir name="template"><dir name="shadow"><file name="conversion.phtml" hash="3d46a8930d9658a24a77ff34d52e40eb"/><file name="emailupdate.phtml" hash="99914b932bd37a50b983c5e7c90ae93b"/><dir><dir name="js"><file name="boot.phtml" hash="af147801ed74d45bb0580b0bb69ce0fd"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="shell"><file name="springbot.php" hash="4de4684c57c242cbcb661cd6bc98844a"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="bmbleb"><file name="bmbleb.css" hash="8aea7d5d46e2a0d0ece11abca6ef5d3f"/><dir name="images"><file name="arrows_up-down-large.png" hash="72c27995e1ab1d182891dad0a4d1dae2"/><file name="bmb-ctl.png" hash="de59a694a82b8699560df5146b2e315f"/><file name="check.png" hash="126f33ed483549e79a16186b7499c190"/><file name="grn-bg.png" hash="f681a524e2b4561dbe94152a2d24d60b"/><file name="h3-bg.png" hash="b93df0b0bdba8e8f6e0a07cc31fcc180"/><file name="icon-alert.png" hash="ac2e70efdcebc3813222d0d3ee62a6d9"/><file name="icon-bmbleb.png" hash="fb5574b5e63ee33b84eee26b3d8ef8e3"/><file name="icon-insights.png" hash="725fd29fe1b705e358c9080408693d3d"/><file name="icon-status.png" hash="bd13429f23166a6d431739010ea1b2cd"/><file name="left-ico1.png" hash="7d188f5e6021569750756f58067f0a3b"/><file name="left-ico2.png" hash="d2f6379a73290a8ffa4cb3e19a809d25"/><file name="left-ico3.png" hash="73bc75f7a746e54a75f14eda7a28a6b9"/><file name="left-ico4.png" hash="1da2c26187fed26b6c61599682b2dc4b"/><file name="left-ico5.png" hash="ada61cb32805f2cb8e8dace46361613e"/><file name="left-ico6.png" hash="1e62822267f72589ffa0771352a002da"/><file name="left-ico7.png" hash="16118412d581f0c83ce45c44f62f25a1"/><file name="left-ico8.png" hash="c7de2fe523c892b432b575648cc05631"/><file name="left-ico_demographics.png" hash="3fe23a2dea68f6c65114f248a8bdaa5e"/><file name="login-icn-b.png" hash="64e72070f595e215ece79736ac77ee2f"/><file name="login-icn.png" hash="6142cc2fc8ee2d1c40bf3c8f9ac1fa85"/><file name="logo.png" hash="8fb783f7d68fca3914123f56b8c066a4"/><file name="orng-bg.png" hash="074a6912ca2a139df537e3d15b6bc9b2"/><file name="plugin_dashboard_syncing.jpg" hash="8511648541f6f1b96ff1c53dda3a439b"/><file name="register.png" hash="f73fe51cf7df27ab11089385fa50714e"/><file name="registration-bg-25.png" hash="9d2cf77619cc8fce3ae4d44b0aae30c1"/><file name="registration-bg-50.png" hash="99942fdc8c3f88b0d4b09f87c9e39045"/><file name="registration-bg.png" hash="96365b39495e56ffe491dd9930fe221d"/><file name="spinner.gif" hash="add667817f25bce331a213ab3cc9621f"/><file name="springbot-ctl.png" hash="de59a694a82b8699560df5146b2e315f"/><file name="submit-btn-bg.png" hash="d98aa287b7b73dad9f780b22cb53fbdb"/><file name="sync_icon.png" hash="cb12f2e8943c8e324e3456375f953c86"/><file name="white-check.png" hash="126f33ed483549e79a16186b7499c190"/></dir></dir></dir></dir></dir></target></contents>
55
  <compatible/>
56
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
57
  </package>