autocompleteplus_autosuggest - Version 3.0.0.15

Version Notes

* fix long file names bug

Download this release

Release Info

Developer Adar
Extension autocompleteplus_autosuggest
Version 3.0.0.15
Comparing to
See all releases


Code changes from version 3.0.0.14 to 3.0.0.15

app/code/local/Autocompleteplus/Autosuggest/Block/Adminhtml/Sync.php CHANGED
@@ -72,7 +72,7 @@ class Autocompleteplus_Autosuggest_Block_Adminhtml_Sync extends Mage_Adminhtml_B
72
  public function getSyncUrl()
73
  {
74
  return Mage::helper('adminhtml')
75
- ->getUrl('adminhtml/autocompleteplus_push/startpush');
76
  }
77
 
78
  /**
72
  public function getSyncUrl()
73
  {
74
  return Mage::helper('adminhtml')
75
+ ->getUrl('adminhtml/push/startpush');
76
  }
77
 
78
  /**
app/code/local/Autocompleteplus/Autosuggest/controllers/Adminhtml/PushController.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Autocompleteplus_Autosuggest_Adminhtml_PushController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ public function startpushAction()
6
+ {
7
+ $service = Mage::getModel('autocompleteplus_autosuggest/service');
8
+ $service->populatePusher();
9
+
10
+ $this->loadLayout();
11
+ $this->renderLayout();
12
+ }
13
+
14
+ protected function _isAllowed()
15
+ {
16
+ return Mage::getSingleton('admin/session')->isAllowed('system/config/autocompleteplus');
17
+ }
18
+ }
app/code/local/Autocompleteplus/Autosuggest/controllers/Adminhtml/RedirectController.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class Autocompleteplus_Autosuggest_Adminhtml_RedirectController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ const ISP_SITE_URL = 'https://magento.instantsearchplus.com/';
6
+ const REDIRECT_STATUS_CODE = 302;
7
+
8
+ protected function _getConfig()
9
+ {
10
+ return Mage::getModel('autocompleteplus_autosuggest/config');
11
+ }
12
+
13
+ public function gotoAction()
14
+ {
15
+ $kwys = $this->_getConfig()->getBothKeys();
16
+ $response = $this->getResponse();
17
+
18
+ $response->clearHeaders();
19
+ $response->setRedirect($this->_getIspLoginUrl($kwys), self::REDIRECT_STATUS_CODE);
20
+ $response->sendResponse();
21
+ }
22
+
23
+ protected function _getIspLoginUrl($kwys)
24
+ {
25
+ $uuid = $kwys['uuid'];
26
+ $authkey = $kwys['authkey'];
27
+
28
+ if (!isset($uuid) || !isset($authkey)) {
29
+ return self::ISP_SITE_URL.'login';
30
+ }
31
+
32
+ return self::ISP_SITE_URL."ma_dashboard?site_id=$uuid&authentication_key=$authkey";
33
+ }
34
+
35
+ protected function _isAllowed()
36
+ {
37
+ return Mage::getSingleton('admin/session')->isAllowed('system/config/autocompleteplus');
38
+ }
39
+ }
app/code/local/Autocompleteplus/Autosuggest/controllers/CategoriesController.php CHANGED
@@ -17,6 +17,10 @@ class Autocompleteplus_Autosuggest_CategoriesController extends Mage_Core_Contro
17
  {
18
  public function sendAction()
19
  {
 
 
 
 
20
  $categories = $this->loadTree();
21
 
22
  $response = $this->getResponse();
17
  {
18
  public function sendAction()
19
  {
20
+ $request = $this->getRequest();
21
+ $storeId = $request->getParam('store');
22
+ Mage::app()->setCurrentStore($storeId);
23
+
24
  $categories = $this->loadTree();
25
 
26
  $response = $this->getResponse();
app/code/local/Autocompleteplus/Autosuggest/etc/adminhtml.xml CHANGED
@@ -23,7 +23,7 @@
23
  <autocompleteplus>
24
  <title>InstantSearch+</title>
25
  <sort_order>999</sort_order>
26
- <action>adminhtml/autocompleteplus_redirect/goto</action>
27
  </autocompleteplus>
28
  </menu>
29
  </config>
23
  <autocompleteplus>
24
  <title>InstantSearch+</title>
25
  <sort_order>999</sort_order>
26
+ <action>adminhtml/redirect/goto</action>
27
  </autocompleteplus>
28
  </menu>
29
  </config>
app/code/local/Autocompleteplus/Autosuggest/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Autocompleteplus_Autosuggest>
5
- <version>3.0.0.14</version>
6
  <url>http://autocompleteplus.com/</url>
7
  <modulename>Autocompleteplus_Autosuggest</modulename>
8
  </Autocompleteplus_Autosuggest>
2
  <config>
3
  <modules>
4
  <Autocompleteplus_Autosuggest>
5
+ <version>3.0.0.15</version>
6
  <url>http://autocompleteplus.com/</url>
7
  <modulename>Autocompleteplus_Autosuggest</modulename>
8
  </Autocompleteplus_Autosuggest>
app/design/adminhtml/default/default/layout/autocompleteplus.xml CHANGED
@@ -22,7 +22,7 @@
22
  </block>
23
  </reference>
24
  </default>
25
- <adminhtml_autocompleteplus_push_startpush>
26
  <remove name="root"/>
27
  <block type="adminhtml/page" name="convert_root" output="toHtml" template="page.phtml">
28
  <block type="adminhtml/page_head" name="convert_root_head" as="head" template="page/head.phtml">
@@ -34,5 +34,5 @@
34
  </block>
35
  <block type="autocompleteplus_autosuggest/adminhtml_process" name="autocompleteplus_autosuggest_adminhtml_process" template="autocompleteplus/process.phtml" output="toHtml"/>
36
  </block>
37
- </adminhtml_autocompleteplus_push_startpush>
38
  </layout>
22
  </block>
23
  </reference>
24
  </default>
25
+ <adminhtml_push_startpush>
26
  <remove name="root"/>
27
  <block type="adminhtml/page" name="convert_root" output="toHtml" template="page.phtml">
28
  <block type="adminhtml/page_head" name="convert_root_head" as="head" template="page/head.phtml">
34
  </block>
35
  <block type="autocompleteplus_autosuggest/adminhtml_process" name="autocompleteplus_autosuggest_adminhtml_process" template="autocompleteplus/process.phtml" output="toHtml"/>
36
  </block>
37
+ </adminhtml_push_startpush>
38
  </layout>
app/design/adminhtml/default/default/template/autocompleteplus/notifications.phtml CHANGED
@@ -4,7 +4,7 @@ $shouldSync=$this->localhostSynced();
4
  if($shouldSync){
5
  ?>
6
  <div id="autosuggest-notification" class="notification-global">
7
- <a target="_blank" href="<?php echo Mage::helper('adminhtml')->getUrl('adminhtml/autocompleteplus_push/startpush');?>">
8
  <b><?php echo $this->__('Sync now'); ?></b>
9
  </a>
10
  <?php echo $this->__(' to complete the initial <strong>InstantSearch+</strong> product synchronization with our cloud service') ?>.
4
  if($shouldSync){
5
  ?>
6
  <div id="autosuggest-notification" class="notification-global">
7
+ <a target="_blank" href="<?php echo Mage::helper('adminhtml')->getUrl('adminhtml/push/startpush');?>">
8
  <b><?php echo $this->__('Sync now'); ?></b>
9
  </a>
10
  <?php echo $this->__(' to complete the initial <strong>InstantSearch+</strong> product synchronization with our cloud service') ?>.
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>autocompleteplus_autosuggest</name>
4
- <version>3.0.0.14</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.autocompleteplus.com/privacy">AC+</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>AutoComplete+ InstantSearch</summary>
10
  <description>AutoComplete+ InstantSearch triples visitor conversion, optimizes search, and offers promotions through state-of-the-art contextual suggestions dropdown. Since suggestions are lightning fast, accurate, and contextual - visitors find exactly what they want - faster.</description>
11
- <notes>* fix fancy url bug</notes>
12
  <authors><author><name>Adar</name><user>Adar</user><email>magento@autocompleteplus.com</email></author></authors>
13
- <date>2016-11-03</date>
14
- <time>15:37:18</time>
15
- <contents><target name="magelocal"><dir name="Autocompleteplus"><dir name="Autosuggest"><dir name="Adminhtml"><dir name="Model"><file name="Attributes.php" hash="49fe7441c35332852c853b44894a2db5"/><file name="Button.php" hash="c430dd9ddae72c6b70b4a78c7eaf43a4"/></dir></dir><dir name="Block"><dir name="Adminhtml"><file name="Button.php" hash="bf595c3fb6fc73689b1050870889f4e6"/><file name="Process.php" hash="ae35ea7c927d9dd5f2ecd6d22a616248"/><file name="Sync.php" hash="326fb5f81fcee4f0c090dc8333b45dba"/></dir><file name="Autocomplete.php" hash="9e491587ca76c2e01aa09c4163e3ebd6"/><file name="Autocorrection.php" hash="554976c4a2cc284b328aa273af816943"/><file name="Inject.php" hash="59290f5699de591fb27e7bdf8884dba3"/><file name="Notifications.php" hash="29e412619a1562672d7230b767f85404"/></dir><dir name="Controller"><file name="Abstract.php" hash="5ef554246df910c77f5ed217d97707d4"/></dir><dir name="Helper"><file name="Data.php" hash="83e0631380da2b153d493996f037dc8b"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Attributes.php" hash="985eca64f07681afb331da05459b858c"/></dir><dir name="Api"><file name="V2.php" hash="25678058e22f86e4df900cd1b6248d08"/></dir><file name="Api.php" hash="d56bf879fd921a21c902da69eefcc1e0"/><file name="Batches.php" hash="cbcb39300e92a6fcf0137455b1abadc4"/><file name="Catalog.php" hash="76d7550c147a928e311677c1eb1446b3"/><file name="Catalogreport.php" hash="a3587900c62e9a7103153905add264a3"/><file name="Checksum.php" hash="574e3fa7632d99d664f85bf330a00a2a"/><file name="Config.php" hash="d2e5d53c89d20c10812bd25cd67aac00"/><file name="Layer.php" hash="b9071f27d04ae4dfeac1beb6c4d0a677"/><dir name="Mysql4"><dir name="Batches"><file name="Collection.php" hash="86edbdecb8cdca6cc7a19c6e1624d993"/></dir><file name="Batches.php" hash="3e3ef8be56d7252cff42c40be7a5b372"/><dir name="Checksum"><file name="Collection.php" hash="8bfc716a071b67b4f1d9534744428190"/></dir><file name="Checksum.php" hash="fc893ee654c1e60daecace7ca34e58b1"/><dir name="Fulltext"><file name="Collection.php" hash="0886aa3111137c8bffdcb849b5986061"/></dir><dir name="Notifications"><file name="Collection.php" hash="c385dd061d7f425be4ddb760d515c1b3"/></dir><file name="Notifications.php" hash="ee2a70e340b096ac41fed17ee75c7d44"/><dir name="Pusher"><file name="Collection.php" hash="12bb14c7cdb97ceacd78899ee014e0da"/></dir><file name="Pusher.php" hash="44db865564a0a6d2c6646bfe1ba4cf7a"/></dir><file name="Notifications.php" hash="b06b24bfcadf86781316db136cb0beba"/><file name="Observer.php" hash="596fb69d7874222f9aee81fe3eef3255"/><file name="Pusher.php" hash="958e6fcede116b927734c7f26175d3fe"/><dir name="Renderer"><file name="Abstract.php" hash="a70cad3d0e362a457e3410442e97afba"/><file name="Batches.php" hash="cc3c073de3b3a56d488833e02997a4f8"/><dir name="Catalog"><file name="Product.php" hash="95936c0b271350e432256168fd130a50"/></dir></dir><dir name="Resource"><dir name="Batches"><file name="Collection.php" hash="7957ecce6ba2195209151082119cc7a6"/></dir><file name="Batches.php" hash="486601099e6c3d5acafedb2a494fdf53"/><dir name="Checksum"><file name="Collection.php" hash="532d0a67affac342520702dbe1bfcf2b"/></dir><file name="Checksum.php" hash="e7209f000caecadf49bfe76cfd1523f2"/><dir name="Fulltext"><file name="Collection.php" hash="952d3599ddc3c40279fc52d9bdb24f61"/></dir><dir name="Notifications"><file name="Collection.php" hash="b4a8654bc187c0bbfea44bcde42c9333"/></dir><file name="Notifications.php" hash="e77b5b4651b37dcca8261a07142e1e2c"/><dir name="Pusher"><file name="Collection.php" hash="6abec498173b76b494e5b414f03895ea"/></dir><file name="Pusher.php" hash="95841d08cba60e33b0311dfb563eed64"/></dir><file name="Service.php" hash="02aaed296432fe1927c534a3a31a8a1d"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Autocompleteplus"><file name="PushController.php" hash="158eb274edb766ff2d262754589f705d"/><file name="RedirectController.php" hash="6caaf09e28a7ab52037f6a970fe8a4e1"/></dir></dir><dir name="CatalogSearch"><file name="ResultController.php" hash="b3b6f8a2eda4834bb08af5452aae57a6"/></dir><file name="CatalogsearchController.php" hash="69cd8445623de0e6f8f04eadce83c0e5"/><file name="CategoriesController.php" hash="c05776f8296c06a7ee3e3162cc66e884"/><file name="LayeredController.php" hash="bc188069af7cfb3fe0078dfca075e313"/><file name="ProductsController.php" hash="33109560b141c0c697958aa99e238c9a"/><file name="ProductsbyidController.php" hash="15a856a778b694d7b2e14389ebe24d64"/><file name="ResultController.php" hash="fa3ba6b93f5891391f200ebf55d649ce"/><file name="SearchesController.php" hash="a2bf7e235e006488b71bb963c50203ea"/></dir><dir name="data"><dir name="autosuggest_setup"><file name="data-install-3.0.0.5.php" hash="a3651727777fd93a277ed7e494f371f7"/><file name="data-upgrade-3.0.0.9-3.0.0.10.php" hash="d8cd4e52b16430dc0d60b81d75cf4d94"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="697b17c6d9e377ef754675680cf6e7a8"/><file name="cache.xml" hash="37e44e63ee5608af5f980028437b9329"/><file name="config.xml" hash="76decd7b8b04dc3f13c012a4155929d7"/><file name="system.xml" hash="300a4b648a61473b23cc3e5e7fc0c778"/></dir><dir name="sql"><dir name="autosuggest_setup"><file name="mysql4-install-2.0.1.1.php" hash="e6d94272870c619be1677e8426a052d9"/><file name="mysql4-upgrade-2.0.1.3-2.0.2.2.php" hash="a862dc72fa1b13a21b20495267e02885"/><file name="mysql4-upgrade-2.0.2.5-2.0.2.6.php" hash="a1a38dbd41a39c87aac13c8d1cbdfdb0"/><file name="mysql4-upgrade-2.0.4.6-2.0.4.7.php" hash="b3eb893002512ccf25c71dc7023df27d"/><file name="mysql4-upgrade-2.0.5.4-2.0.5.5.php" hash="27ecf7651c3420930f4b1e68e2f76372"/><file name="mysql4-upgrade-2.0.7.0-2.0.7.1.php" hash="a015b2dcec2273ae60006561712a921c"/><file name="mysql4-upgrade-2.0.7.2-2.0.7.3.php" hash="f65f55adb2fa46869b802dbfe8c2ef67"/><file name="mysql4-upgrade-2.0.8.8-3.0.0.0.php" hash="a01107446bea54c9b3c4d245b71692bc"/><file name="mysql4-upgrade-3.0.0.3-3.0.0.4.php" hash="6fb787b5742332b64da62394e2546edc"/><file name="mysql4-upgrade-3.0.0.4-3.0.0.5.php" hash="8c8f360b5d6a01ffe6fdcb8a2c50812f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Autocompleteplus_Autosuggest.xml" hash="60e242b6c2c36e56c265e57f3ac0bcb1"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="autocompleteplus.xml" hash="87d15d88a45079525ed7ba5c62761bd7"/></dir><dir name="template"><dir name="autocompleteplus"><dir name="catalog"><dir name="layer"><file name="view.phtml" hash="2e2860a5896722172cbbf8887aa7834a"/></dir><dir name="product"><file name="list.phtml" hash="e7c6153481cd496bea8867a28a00dccd"/></dir></dir><file name="inject.phtml" hash="ac1746e5b9a34837029c2983735f6e0c"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="autocompleteplus"><file name="notifications.phtml" hash="c0f5bb1f78421ffc0064c8f928899701"/><file name="process.phtml" hash="e8c92df106d56f6c2733b1b9cf371c5b"/><dir name="system"><dir name="config"><file name="button.phtml" hash="d167de08a4b5c2514cfbfd56821f6abc"/><file name="sync.phtml" hash="c8dff813daec5afed63914181831e96d"/></dir></dir></dir></dir><dir name="layout"><file name="autocompleteplus.xml" hash="15b04fb5fb38092ec5d8d16815ba20ff"/></dir></dir></dir></dir></target><target name="magelib"><dir name="Autocompleteplus"><dir name="Autosuggest"><dir name="Xml"><file name="Generator.php" hash="7aefaa8e6b247bdcc62497ab5700872c"/><file name="GeneratorInterface.php" hash="14c8d2a5348be50f8cef6d794339f2ed"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>autocompleteplus_autosuggest</name>
4
+ <version>3.0.0.15</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.autocompleteplus.com/privacy">AC+</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>AutoComplete+ InstantSearch</summary>
10
  <description>AutoComplete+ InstantSearch triples visitor conversion, optimizes search, and offers promotions through state-of-the-art contextual suggestions dropdown. Since suggestions are lightning fast, accurate, and contextual - visitors find exactly what they want - faster.</description>
11
+ <notes>* fix long file names bug</notes>
12
  <authors><author><name>Adar</name><user>Adar</user><email>magento@autocompleteplus.com</email></author></authors>
13
+ <date>2016-11-15</date>
14
+ <time>13:32:25</time>
15
+ <contents><target name="magelocal"><dir name="Autocompleteplus"><dir name="Autosuggest"><dir name="Adminhtml"><dir name="Model"><file name="Attributes.php" hash="49fe7441c35332852c853b44894a2db5"/><file name="Button.php" hash="c430dd9ddae72c6b70b4a78c7eaf43a4"/></dir></dir><dir name="Block"><dir name="Adminhtml"><file name="Button.php" hash="bf595c3fb6fc73689b1050870889f4e6"/><file name="Process.php" hash="ae35ea7c927d9dd5f2ecd6d22a616248"/><file name="Sync.php" hash="6d176c0cd40370407212008ec9aa724d"/></dir><file name="Autocomplete.php" hash="9e491587ca76c2e01aa09c4163e3ebd6"/><file name="Autocorrection.php" hash="554976c4a2cc284b328aa273af816943"/><file name="Inject.php" hash="59290f5699de591fb27e7bdf8884dba3"/><file name="Notifications.php" hash="29e412619a1562672d7230b767f85404"/></dir><dir name="Controller"><file name="Abstract.php" hash="5ef554246df910c77f5ed217d97707d4"/></dir><dir name="Helper"><file name="Data.php" hash="83e0631380da2b153d493996f037dc8b"/></dir><dir name="Model"><dir name="Adminhtml"><file name="Attributes.php" hash="985eca64f07681afb331da05459b858c"/></dir><dir name="Api"><file name="V2.php" hash="25678058e22f86e4df900cd1b6248d08"/></dir><file name="Api.php" hash="d56bf879fd921a21c902da69eefcc1e0"/><file name="Batches.php" hash="cbcb39300e92a6fcf0137455b1abadc4"/><file name="Catalog.php" hash="76d7550c147a928e311677c1eb1446b3"/><file name="Catalogreport.php" hash="a3587900c62e9a7103153905add264a3"/><file name="Checksum.php" hash="574e3fa7632d99d664f85bf330a00a2a"/><file name="Config.php" hash="d2e5d53c89d20c10812bd25cd67aac00"/><file name="Layer.php" hash="b9071f27d04ae4dfeac1beb6c4d0a677"/><dir name="Mysql4"><dir name="Batches"><file name="Collection.php" hash="86edbdecb8cdca6cc7a19c6e1624d993"/></dir><file name="Batches.php" hash="3e3ef8be56d7252cff42c40be7a5b372"/><dir name="Checksum"><file name="Collection.php" hash="8bfc716a071b67b4f1d9534744428190"/></dir><file name="Checksum.php" hash="fc893ee654c1e60daecace7ca34e58b1"/><dir name="Fulltext"><file name="Collection.php" hash="0886aa3111137c8bffdcb849b5986061"/></dir><dir name="Notifications"><file name="Collection.php" hash="c385dd061d7f425be4ddb760d515c1b3"/></dir><file name="Notifications.php" hash="ee2a70e340b096ac41fed17ee75c7d44"/><dir name="Pusher"><file name="Collection.php" hash="12bb14c7cdb97ceacd78899ee014e0da"/></dir><file name="Pusher.php" hash="44db865564a0a6d2c6646bfe1ba4cf7a"/></dir><file name="Notifications.php" hash="b06b24bfcadf86781316db136cb0beba"/><file name="Observer.php" hash="596fb69d7874222f9aee81fe3eef3255"/><file name="Pusher.php" hash="958e6fcede116b927734c7f26175d3fe"/><dir name="Renderer"><file name="Abstract.php" hash="a70cad3d0e362a457e3410442e97afba"/><file name="Batches.php" hash="cc3c073de3b3a56d488833e02997a4f8"/><dir name="Catalog"><file name="Product.php" hash="95936c0b271350e432256168fd130a50"/></dir></dir><dir name="Resource"><dir name="Batches"><file name="Collection.php" hash="7957ecce6ba2195209151082119cc7a6"/></dir><file name="Batches.php" hash="486601099e6c3d5acafedb2a494fdf53"/><dir name="Checksum"><file name="Collection.php" hash="532d0a67affac342520702dbe1bfcf2b"/></dir><file name="Checksum.php" hash="e7209f000caecadf49bfe76cfd1523f2"/><dir name="Fulltext"><file name="Collection.php" hash="952d3599ddc3c40279fc52d9bdb24f61"/></dir><dir name="Notifications"><file name="Collection.php" hash="b4a8654bc187c0bbfea44bcde42c9333"/></dir><file name="Notifications.php" hash="e77b5b4651b37dcca8261a07142e1e2c"/><dir name="Pusher"><file name="Collection.php" hash="6abec498173b76b494e5b414f03895ea"/></dir><file name="Pusher.php" hash="95841d08cba60e33b0311dfb563eed64"/></dir><file name="Service.php" hash="02aaed296432fe1927c534a3a31a8a1d"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Autocompleteplus"><file name="PushController.php" hash="158eb274edb766ff2d262754589f705d"/><file name="RedirectController.php" hash="6caaf09e28a7ab52037f6a970fe8a4e1"/></dir><file name="PushController.php" hash="ce0309d7591881ab9bb5f9633ecd95ca"/><file name="RedirectController.php" hash="72893cca4a0c4b64239dfc4376f0f80e"/></dir><dir name="CatalogSearch"><file name="ResultController.php" hash="b3b6f8a2eda4834bb08af5452aae57a6"/></dir><file name="CatalogsearchController.php" hash="69cd8445623de0e6f8f04eadce83c0e5"/><file name="CategoriesController.php" hash="f45a2ec6f9d62ea12f75a7fdd99b5c4c"/><file name="LayeredController.php" hash="bc188069af7cfb3fe0078dfca075e313"/><file name="ProductsController.php" hash="33109560b141c0c697958aa99e238c9a"/><file name="ProductsbyidController.php" hash="15a856a778b694d7b2e14389ebe24d64"/><file name="ResultController.php" hash="fa3ba6b93f5891391f200ebf55d649ce"/><file name="SearchesController.php" hash="a2bf7e235e006488b71bb963c50203ea"/></dir><dir name="data"><dir name="autosuggest_setup"><file name="data-install-3.0.0.5.php" hash="a3651727777fd93a277ed7e494f371f7"/><file name="data-upgrade-3.0.0.9-3.0.0.10.php" hash="d8cd4e52b16430dc0d60b81d75cf4d94"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="042d3d1a88822b44145f14f5897c05f7"/><file name="cache.xml" hash="37e44e63ee5608af5f980028437b9329"/><file name="config.xml" hash="cbc6ade5a26c6753076e45c7b82e78eb"/><file name="system.xml" hash="300a4b648a61473b23cc3e5e7fc0c778"/></dir><dir name="sql"><dir name="autosuggest_setup"><file name="mysql4-install-2.0.1.1.php" hash="e6d94272870c619be1677e8426a052d9"/><file name="mysql4-upgrade-2.0.1.3-2.0.2.2.php" hash="a862dc72fa1b13a21b20495267e02885"/><file name="mysql4-upgrade-2.0.2.5-2.0.2.6.php" hash="a1a38dbd41a39c87aac13c8d1cbdfdb0"/><file name="mysql4-upgrade-2.0.4.6-2.0.4.7.php" hash="b3eb893002512ccf25c71dc7023df27d"/><file name="mysql4-upgrade-2.0.5.4-2.0.5.5.php" hash="27ecf7651c3420930f4b1e68e2f76372"/><file name="mysql4-upgrade-2.0.7.0-2.0.7.1.php" hash="a015b2dcec2273ae60006561712a921c"/><file name="mysql4-upgrade-2.0.7.2-2.0.7.3.php" hash="f65f55adb2fa46869b802dbfe8c2ef67"/><file name="mysql4-upgrade-2.0.8.8-3.0.0.0.php" hash="a01107446bea54c9b3c4d245b71692bc"/><file name="mysql4-upgrade-3.0.0.3-3.0.0.4.php" hash="6fb787b5742332b64da62394e2546edc"/><file name="mysql4-upgrade-3.0.0.4-3.0.0.5.php" hash="8c8f360b5d6a01ffe6fdcb8a2c50812f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Autocompleteplus_Autosuggest.xml" hash="60e242b6c2c36e56c265e57f3ac0bcb1"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="autocompleteplus.xml" hash="87d15d88a45079525ed7ba5c62761bd7"/></dir><dir name="template"><dir name="autocompleteplus"><dir name="catalog"><dir name="layer"><file name="view.phtml" hash="2e2860a5896722172cbbf8887aa7834a"/></dir><dir name="product"><file name="list.phtml" hash="e7c6153481cd496bea8867a28a00dccd"/></dir></dir><file name="inject.phtml" hash="ac1746e5b9a34837029c2983735f6e0c"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="autocompleteplus"><file name="notifications.phtml" hash="335d6ebe5ef880a0ad8006df2246524f"/><file name="process.phtml" hash="e8c92df106d56f6c2733b1b9cf371c5b"/><dir name="system"><dir name="config"><file name="button.phtml" hash="d167de08a4b5c2514cfbfd56821f6abc"/><file name="sync.phtml" hash="c8dff813daec5afed63914181831e96d"/></dir></dir></dir></dir><dir name="layout"><file name="autocompleteplus.xml" hash="d85f3d0deb90d06711bcb94776cba6c8"/></dir></dir></dir></dir></target><target name="magelib"><dir name="Autocompleteplus"><dir name="Autosuggest"><dir name="Xml"><file name="Generator.php" hash="7aefaa8e6b247bdcc62497ab5700872c"/><file name="GeneratorInterface.php" hash="14c8d2a5348be50f8cef6d794339f2ed"/></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>