Simtech_Searchanise - Version 3.0.5

Version Notes

[*] Magento 1.9 support added.

[!] Catalog indexation would freeze for some stores. Fixed.

Download this release

Release Info

Developer Simbirsk Technologies, Ltd.
Extension Simtech_Searchanise
Version 3.0.5
Comparing to
See all releases


Code changes from version 3.0.4 to 3.0.5

app/code/community/Simtech/Searchanise/Block/Jsinit.php CHANGED
@@ -77,8 +77,6 @@ class Simtech_Searchanise_Block_Jsinit extends Mage_Core_Block_Text
77
  {$restrictBy}
78
 
79
  Searchanise.options = {};
80
- Searchanise.options.LabelSuggestions = 'Popular suggestions';
81
- Searchanise.options.LabelProducts = 'Products';
82
  Searchanise.AdditionalSearchInputs = '#name,#description,#sku';
83
 
84
  Searchanise.options.PriceFormat = {
77
  {$restrictBy}
78
 
79
  Searchanise.options = {};
 
 
80
  Searchanise.AdditionalSearchInputs = '#name,#description,#sku';
81
 
82
  Searchanise.options.PriceFormat = {
app/code/community/Simtech/Searchanise/Helper/ApiProducts.php CHANGED
@@ -245,11 +245,11 @@ class Simtech_Searchanise_Helper_ApiProducts extends Mage_Core_Helper_Data
245
  if (version_compare(Mage::getVersion(), '1.6', '<')) {
246
  $minimalPrice = $_priceModel->getPrices($product, 'min');
247
  // [/1.5]
248
- // [v1.6] [v1.7] [v1.8]
249
  } else {
250
  $minimalPrice = $_priceModel->getTotalPrices($product, 'min', null, false);
251
  }
252
- // [/v1.6] [/v1.7] [/v1.8]
253
  $minimalPrice = self::getProductShowPrice($product, $minimalPrice);
254
 
255
  } elseif ($product->isGrouped() && $childrenProducts) {
@@ -430,6 +430,8 @@ class Simtech_Searchanise_Helper_ApiProducts extends Mage_Core_Helper_Data
430
  }
431
 
432
  $arrTextValues[$key] = $values;
 
 
433
  }
434
 
435
  return $arrTextValues[$key];
@@ -1420,4 +1422,4 @@ class Simtech_Searchanise_Helper_ApiProducts extends Mage_Core_Helper_Data
1420
  'updated' => $date,
1421
  );
1422
  }
1423
- }
245
  if (version_compare(Mage::getVersion(), '1.6', '<')) {
246
  $minimalPrice = $_priceModel->getPrices($product, 'min');
247
  // [/1.5]
248
+ // [v1.6] [v1.7] [v1.8] [v1.9]
249
  } else {
250
  $minimalPrice = $_priceModel->getTotalPrices($product, 'min', null, false);
251
  }
252
+ // [/v1.6] [/v1.7] [/v1.8] [/v1.9]
253
  $minimalPrice = self::getProductShowPrice($product, $minimalPrice);
254
 
255
  } elseif ($product->isGrouped() && $childrenProducts) {
430
  }
431
 
432
  $arrTextValues[$key] = $values;
433
+ } else {
434
+ $arrTextValues[$key] = array();
435
  }
436
 
437
  return $arrTextValues[$key];
1422
  'updated' => $date,
1423
  );
1424
  }
1425
+ }
app/code/community/Simtech/Searchanise/Helper/ApiSe.php CHANGED
@@ -469,10 +469,10 @@ class Simtech_Searchanise_Helper_ApiSe
469
 
470
  $versionInfo = Mage::getVersionInfo();
471
  $coreEdition = 'Community';
472
- // [v1.7] [v1.8]
473
  if (method_exists('Mage', 'getEdition')) {
474
  $coreEdition = Mage::getEdition();
475
- // [/v1.7] [/v1.8]
476
  // [v1.5] [v1.6]
477
  } elseif (isset($versionInfo['minor']) && $versionInfo['minor'] > 6) {
478
  $coreEdition = 'Enterprise';
@@ -786,7 +786,7 @@ class Simtech_Searchanise_Helper_ApiSe
786
  $priceTo = $numberRange * $step;
787
  }
788
  } else {
789
- // [v1.7] [v1.8]
790
  $arrPrice = explode('-', $dataPrice);
791
  if (is_array($arrPrice) && (count($arrPrice) >= 2)) {
792
  $priceFrom = (int) reset($arrPrice);
@@ -1822,4 +1822,4 @@ class Simtech_Searchanise_Helper_ApiSe
1822
 
1823
  return true;
1824
  }
1825
- }
469
 
470
  $versionInfo = Mage::getVersionInfo();
471
  $coreEdition = 'Community';
472
+ // [v1.7] [v1.8] [v1.9]
473
  if (method_exists('Mage', 'getEdition')) {
474
  $coreEdition = Mage::getEdition();
475
+ // [/v1.7] [/v1.8] [/v1.9]
476
  // [v1.5] [v1.6]
477
  } elseif (isset($versionInfo['minor']) && $versionInfo['minor'] > 6) {
478
  $coreEdition = 'Enterprise';
786
  $priceTo = $numberRange * $step;
787
  }
788
  } else {
789
+ // [v1.7] [v1.8] [v1.9]
790
  $arrPrice = explode('-', $dataPrice);
791
  if (is_array($arrPrice) && (count($arrPrice) >= 2)) {
792
  $priceFrom = (int) reset($arrPrice);
1822
 
1823
  return true;
1824
  }
1825
+ }
app/code/community/Simtech/Searchanise/Model/LayerCatalogSearch.php CHANGED
@@ -17,7 +17,7 @@ class Simtech_Searchanise_Model_LayerCatalogSearch extends Mage_CatalogSearch_Mo
17
  /**
18
  * Prepare product collection
19
  *
20
- * @param Mage_Catalog_Model_Resource_Product_Collection [v1.6] [v1.7] [v1.8], Mage_Catalog_Model_Mysql4_Product_Collection [v1.5] $collection
21
  * @return Mage_Catalog_Model_Layer
22
  */
23
  public function prepareProductCollection($collection)
@@ -49,4 +49,4 @@ class Simtech_Searchanise_Model_LayerCatalogSearch extends Mage_CatalogSearch_Mo
49
 
50
  return $this;
51
  }
52
- }
17
  /**
18
  * Prepare product collection
19
  *
20
+ * @param Mage_Catalog_Model_Resource_Product_Collection [v1.6] [v1.7] [v1.8] [v1.9], Mage_Catalog_Model_Mysql4_Product_Collection [v1.5] $collection
21
  * @return Mage_Catalog_Model_Layer
22
  */
23
  public function prepareProductCollection($collection)
49
 
50
  return $this;
51
  }
52
+ }
app/code/community/Simtech/Searchanise/Model/Mysql4/Product/CollectionTag.php CHANGED
@@ -18,7 +18,7 @@ class Simtech_Searchanise_Model_Mysql4_Product_CollectionTag extends Mage_Tag_Mo
18
  /**
19
  * Product Collection
20
  *
21
- * @var Mage_Catalog_Model_Resource_Collection [v1.6] [v1.7] [v1.8], Mage_Catalog_Model_Mysql4_Collection [v1.5]
22
  */
23
  protected $_searchaniseCollection = null;
24
 
@@ -63,7 +63,7 @@ class Simtech_Searchanise_Model_Mysql4_Product_CollectionTag extends Mage_Tag_Mo
63
  *
64
  * @param string $attribute
65
  * @param string $dir
66
- * @return Mage_Catalog_Model_Resource_Collection [v1.6] [v1.7] [v1.8], Mage_Catalog_Model_Mysql4_Collection [v1.5]
67
  */
68
  public function setOrder($attribute, $dir = 'desc')
69
  {
@@ -75,7 +75,7 @@ class Simtech_Searchanise_Model_Mysql4_Product_CollectionTag extends Mage_Tag_Mo
75
  *
76
  * @param string $attribute
77
  * @param string $dir
78
- * @return Mage_Catalog_Model_Resource_Collection [v1.6] [v1.7] [v1.8], Mage_Catalog_Model_Mysql4_Collection [v1.5]
79
  */
80
  public function setOrderParent($attribute, $dir = 'desc')
81
  {
@@ -101,4 +101,4 @@ class Simtech_Searchanise_Model_Mysql4_Product_CollectionTag extends Mage_Tag_Mo
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
- }
18
  /**
19
  * Product Collection
20
  *
21
+ * @var Mage_Catalog_Model_Resource_Collection [v1.6] [v1.7] [v1.8] [v1.9], Mage_Catalog_Model_Mysql4_Collection [v1.5]
22
  */
23
  protected $_searchaniseCollection = null;
24
 
63
  *
64
  * @param string $attribute
65
  * @param string $dir
66
+ * @return Mage_Catalog_Model_Resource_Collection [v1.6] [v1.7] [v1.8] [v1.9], Mage_Catalog_Model_Mysql4_Collection [v1.5]
67
  */
68
  public function setOrder($attribute, $dir = 'desc')
69
  {
75
  *
76
  * @param string $attribute
77
  * @param string $dir
78
+ * @return Mage_Catalog_Model_Resource_Collection [v1.6] [v1.7] [v1.8] [v1.9], Mage_Catalog_Model_Mysql4_Collection [v1.5]
79
  */
80
  public function setOrderParent($attribute, $dir = 'desc')
81
  {
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
+ }
app/code/community/Simtech/Searchanise/Model/Resource/Advanced/Collection.php CHANGED
@@ -12,7 +12,7 @@
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
- // [v1.6] [v1.7] [v1.8]
16
  class Simtech_Searchanise_Model_Resource_Advanced_Collection extends Mage_CatalogSearch_Model_Resource_Advanced_Collection
17
  {
18
  /**
@@ -101,4 +101,4 @@ class Simtech_Searchanise_Model_Resource_Advanced_Collection extends Mage_Catalo
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
- }
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
+ // [v1.6] [v1.7] [v1.8] [v1.9]
16
  class Simtech_Searchanise_Model_Resource_Advanced_Collection extends Mage_CatalogSearch_Model_Resource_Advanced_Collection
17
  {
18
  /**
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
+ }
app/code/community/Simtech/Searchanise/Model/Resource/Fulltext/Collection.php CHANGED
@@ -12,7 +12,7 @@
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
- // [v1.6] [v1.7] [v1.8]
16
  class Simtech_Searchanise_Model_Resource_Fulltext_Collection extends Mage_CatalogSearch_Model_Resource_Fulltext_Collection
17
  {
18
  /**
@@ -101,4 +101,4 @@ class Simtech_Searchanise_Model_Resource_Fulltext_Collection extends Mage_Catalo
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
- }
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
+ // [v1.6] [v1.7] [v1.8] [v1.9]
16
  class Simtech_Searchanise_Model_Resource_Fulltext_Collection extends Mage_CatalogSearch_Model_Resource_Fulltext_Collection
17
  {
18
  /**
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
+ }
app/code/community/Simtech/Searchanise/Model/Resource/Layer/Filter/Attribute.php CHANGED
@@ -12,7 +12,7 @@
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
- // [v1.6] [v1.7] [v1.8]
16
  class Simtech_Searchanise_Model_Resource_Layer_Filter_Attribute extends Mage_Catalog_Model_Resource_Layer_Filter_Attribute
17
  {
18
  /**
@@ -60,4 +60,4 @@ class Simtech_Searchanise_Model_Resource_Layer_Filter_Attribute extends Mage_Cat
60
 
61
  return $this;
62
  }
63
- }
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
+ // [v1.6] [v1.7] [v1.8] [v1.9]
16
  class Simtech_Searchanise_Model_Resource_Layer_Filter_Attribute extends Mage_Catalog_Model_Resource_Layer_Filter_Attribute
17
  {
18
  /**
60
 
61
  return $this;
62
  }
63
+ }
app/code/community/Simtech/Searchanise/Model/Resource/Layer/Filter/Price.php CHANGED
@@ -12,7 +12,7 @@
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
- // [v1.6] [v1.7] [v1.8]
16
  class Simtech_Searchanise_Model_Resource_Layer_Filter_Price extends Mage_Catalog_Model_Resource_Layer_Filter_Price
17
  {
18
  public function getCount($filter, $range)
@@ -53,4 +53,4 @@ class Simtech_Searchanise_Model_Resource_Layer_Filter_Price extends Mage_Catalog
53
 
54
  return $this;
55
  }
56
- }
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
+ // [v1.6] [v1.7] [v1.8] [v1.9]
16
  class Simtech_Searchanise_Model_Resource_Layer_Filter_Price extends Mage_Catalog_Model_Resource_Layer_Filter_Price
17
  {
18
  public function getCount($filter, $range)
53
 
54
  return $this;
55
  }
56
+ }
app/code/community/Simtech/Searchanise/Model/Resource/Product/Collection.php CHANGED
@@ -12,7 +12,7 @@
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
- // [v1.6] [v1.7] [v1.8]
16
  class Simtech_Searchanise_Model_Resource_Product_Collection extends Mage_Catalog_Model_Resource_Product_Collection
17
  {
18
  /**
@@ -101,4 +101,4 @@ class Simtech_Searchanise_Model_Resource_Product_Collection extends Mage_Catalog
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
- }
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
+ // [v1.6] [v1.7] [v1.8] [v1.9]
16
  class Simtech_Searchanise_Model_Resource_Product_Collection extends Mage_Catalog_Model_Resource_Product_Collection
17
  {
18
  /**
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
+ }
app/code/community/Simtech/Searchanise/Model/Resource/Product/CollectionTag.php CHANGED
@@ -12,7 +12,7 @@
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
- // [v1.6] [v1.7] [v1.8]
16
  class Simtech_Searchanise_Model_Resource_Product_CollectionTag extends Mage_Tag_Model_Resource_Product_Collection
17
  {
18
  /**
@@ -101,4 +101,4 @@ class Simtech_Searchanise_Model_Resource_Product_CollectionTag extends Mage_Tag_
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
- }
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
+ // [v1.6] [v1.7] [v1.8] [v1.9]
16
  class Simtech_Searchanise_Model_Resource_Product_CollectionTag extends Mage_Tag_Model_Resource_Product_Collection
17
  {
18
  /**
101
  {
102
  return parent::getLastPageNumber();
103
  }
104
+ }
app/code/community/Simtech/Searchanise/Model/Resource/Store.php CHANGED
@@ -12,7 +12,7 @@
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
- // [v1.6] [v1.7] [v1.8]
16
  class Simtech_Searchanise_Model_Resource_Store extends Mage_Core_Model_Resource_Store
17
  {
18
  /**
@@ -59,4 +59,4 @@ class Simtech_Searchanise_Model_Resource_Store extends Mage_Core_Model_Resource_
59
 
60
  return $ret;
61
  }
62
- }
12
  * "copyright.txt" FILE PROVIDED WITH THIS DISTRIBUTION PACKAGE. *
13
  ****************************************************************************/
14
 
15
+ // [v1.6] [v1.7] [v1.8] [v1.9]
16
  class Simtech_Searchanise_Model_Resource_Store extends Mage_Core_Model_Resource_Store
17
  {
18
  /**
59
 
60
  return $ret;
61
  }
62
+ }
app/code/community/Simtech/Searchanise/Model/Searchanise.php CHANGED
@@ -17,7 +17,7 @@ class Simtech_Searchanise_Model_Searchanise extends Mage_Core_Model_Abstract
17
  /**
18
  * Mysql4_Product_Collection
19
  *
20
- * @var Mage_Catalog_Model_Resource_Product_Collection [v1.6] [v1.7] [v1.8], Mage_Catalog_Model_Mysql4_Product_Collection [v1.5]
21
  */
22
  protected $_collection = null;
23
 
@@ -139,4 +139,4 @@ class Simtech_Searchanise_Model_Searchanise extends Mage_Core_Model_Abstract
139
 
140
  return $this;
141
  }
142
- }
17
  /**
18
  * Mysql4_Product_Collection
19
  *
20
+ * @var Mage_Catalog_Model_Resource_Product_Collection [v1.6] [v1.7] [v1.8] [v1.9], Mage_Catalog_Model_Mysql4_Product_Collection [v1.5]
21
  */
22
  protected $_collection = null;
23
 
139
 
140
  return $this;
141
  }
142
+ }
app/code/community/Simtech/Searchanise/etc/config.xml CHANGED
@@ -15,7 +15,7 @@
15
  <config>
16
  <modules>
17
  <Simtech_Searchanise>
18
- <version>3.0.4</version>
19
  </Simtech_Searchanise>
20
  </modules>
21
  <frontend>
@@ -157,7 +157,7 @@
157
 
158
  <!-- <OVERRIDE CATALOG RESOURCE> -->
159
  <!-- [disabled_searchanise_search] -->
160
- <!-- [v1.6] [v1.7] [v1.8] -->
161
  <catalog_resource>
162
  <rewrite>
163
  <product_collection>Simtech_Searchanise_Model_Resource_Product_Collection</product_collection>
@@ -165,7 +165,7 @@
165
  <layer_filter_price>Simtech_Searchanise_Model_Resource_Layer_Filter_Price</layer_filter_price>
166
  </rewrite>
167
  </catalog_resource>
168
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
169
  <!-- [v1.5] -->
170
  <catalog_resource_eav_mysql4>
171
  <rewrite>
@@ -197,14 +197,14 @@
197
 
198
  <!-- <OVERRIDE CATALOGSEARCH RESOURCE> -->
199
  <!-- [disabled_searchanise_search] -->
200
- <!-- [v1.6] [v1.7] [v1.8] -->
201
  <catalogsearch_resource>
202
  <rewrite>
203
  <fulltext_collection>Simtech_Searchanise_Model_Resource_Fulltext_Collection</fulltext_collection>
204
  <advanced_collection>Simtech_Searchanise_Model_Resource_Advanced_Collection</advanced_collection>
205
  </rewrite>
206
  </catalogsearch_resource>
207
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
208
  <!-- [v1.5] -->
209
  <catalogsearch_mysql4>
210
  <rewrite>
@@ -225,13 +225,13 @@
225
  <!-- END -->
226
 
227
  <!-- OVERRIDE TAG RESOURCE -->
228
- <!-- [v1.6] [v1.7] [v1.8] -->
229
  <tag_resource>
230
  <rewrite>
231
  <product_collection>Simtech_Searchanise_Model_Resource_Product_CollectionTag</product_collection>
232
  </rewrite>
233
  </tag_resource>
234
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
235
  <!-- [v1.5]-->
236
  <tag_mysql4>
237
  <rewrite>
@@ -249,13 +249,13 @@
249
  </importexport>
250
  <!-- END -->
251
  <!-- <OVERRIDE CORE RESOURCE> -->
252
- <!-- [v1.6] [v1.7] [v1.8] -->
253
  <core_resource>
254
  <rewrite>
255
  <store>Simtech_Searchanise_Model_Resource_Store</store>
256
  </rewrite>
257
  </core_resource>
258
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
259
  <!-- [v1.5] -->
260
  <core_mysql4>
261
  <rewrite>
@@ -351,7 +351,7 @@
351
  </rating>
352
  </observers>
353
  </catalog_product_delete_before>
354
- <!-- [v1.6] [v1.7] [v1.8] -->
355
  <catalog_product_attribute_update_before>
356
  <observers>
357
  <rating>
@@ -360,7 +360,7 @@
360
  </rating>
361
  </observers>
362
  </catalog_product_attribute_update_before>
363
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
364
  <!-- [v1.5] -->
365
  <searchanise_product_attribute_update_before>
366
  <observers>
@@ -627,4 +627,4 @@
627
  </searchanise_indexer>
628
  </jobs>
629
  </crontab>
630
- </config>
15
  <config>
16
  <modules>
17
  <Simtech_Searchanise>
18
+ <version>3.0.5</version>
19
  </Simtech_Searchanise>
20
  </modules>
21
  <frontend>
157
 
158
  <!-- <OVERRIDE CATALOG RESOURCE> -->
159
  <!-- [disabled_searchanise_search] -->
160
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
161
  <catalog_resource>
162
  <rewrite>
163
  <product_collection>Simtech_Searchanise_Model_Resource_Product_Collection</product_collection>
165
  <layer_filter_price>Simtech_Searchanise_Model_Resource_Layer_Filter_Price</layer_filter_price>
166
  </rewrite>
167
  </catalog_resource>
168
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
169
  <!-- [v1.5] -->
170
  <catalog_resource_eav_mysql4>
171
  <rewrite>
197
 
198
  <!-- <OVERRIDE CATALOGSEARCH RESOURCE> -->
199
  <!-- [disabled_searchanise_search] -->
200
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
201
  <catalogsearch_resource>
202
  <rewrite>
203
  <fulltext_collection>Simtech_Searchanise_Model_Resource_Fulltext_Collection</fulltext_collection>
204
  <advanced_collection>Simtech_Searchanise_Model_Resource_Advanced_Collection</advanced_collection>
205
  </rewrite>
206
  </catalogsearch_resource>
207
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
208
  <!-- [v1.5] -->
209
  <catalogsearch_mysql4>
210
  <rewrite>
225
  <!-- END -->
226
 
227
  <!-- OVERRIDE TAG RESOURCE -->
228
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
229
  <tag_resource>
230
  <rewrite>
231
  <product_collection>Simtech_Searchanise_Model_Resource_Product_CollectionTag</product_collection>
232
  </rewrite>
233
  </tag_resource>
234
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
235
  <!-- [v1.5]-->
236
  <tag_mysql4>
237
  <rewrite>
249
  </importexport>
250
  <!-- END -->
251
  <!-- <OVERRIDE CORE RESOURCE> -->
252
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
253
  <core_resource>
254
  <rewrite>
255
  <store>Simtech_Searchanise_Model_Resource_Store</store>
256
  </rewrite>
257
  </core_resource>
258
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
259
  <!-- [v1.5] -->
260
  <core_mysql4>
261
  <rewrite>
351
  </rating>
352
  </observers>
353
  </catalog_product_delete_before>
354
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
355
  <catalog_product_attribute_update_before>
356
  <observers>
357
  <rating>
360
  </rating>
361
  </observers>
362
  </catalog_product_attribute_update_before>
363
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
364
  <!-- [v1.5] -->
365
  <searchanise_product_attribute_update_before>
366
  <observers>
627
  </searchanise_indexer>
628
  </jobs>
629
  </crontab>
630
+ </config>
app/code/community/Simtech/Searchanise/etc/config_without_search.xml CHANGED
@@ -15,7 +15,7 @@
15
  <config>
16
  <modules>
17
  <Simtech_Searchanise>
18
- <version>3.0.4</version>
19
  </Simtech_Searchanise>
20
  </modules>
21
  <frontend>
@@ -157,7 +157,7 @@
157
 
158
  <!-- <OVERRIDE CATALOG RESOURCE> -->
159
  <!-- [disabled_searchanise_search] -->
160
- <!-- [v1.6] [v1.7] [v1.8] -->
161
  <!-- <catalog_resource>
162
  <rewrite>
163
  <product_collection>Simtech_Searchanise_Model_Resource_Product_Collection</product_collection>
@@ -165,7 +165,7 @@
165
  <layer_filter_price>Simtech_Searchanise_Model_Resource_Layer_Filter_Price</layer_filter_price>
166
  </rewrite>
167
  </catalog_resource> -->
168
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
169
  <!-- [v1.5] -->
170
  <!-- <catalog_resource_eav_mysql4>
171
  <rewrite>
@@ -197,14 +197,14 @@
197
 
198
  <!-- <OVERRIDE CATALOGSEARCH RESOURCE> -->
199
  <!-- [disabled_searchanise_search] -->
200
- <!-- [v1.6] [v1.7] [v1.8] -->
201
  <!-- <catalogsearch_resource>
202
  <rewrite>
203
  <fulltext_collection>Simtech_Searchanise_Model_Resource_Fulltext_Collection</fulltext_collection>
204
  <advanced_collection>Simtech_Searchanise_Model_Resource_Advanced_Collection</advanced_collection>
205
  </rewrite>
206
  </catalogsearch_resource> -->
207
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
208
  <!-- [v1.5] -->
209
  <!-- <catalogsearch_mysql4>
210
  <rewrite>
@@ -225,13 +225,13 @@
225
  <!-- END -->
226
 
227
  <!-- OVERRIDE TAG RESOURCE -->
228
- <!-- [v1.6] [v1.7] [v1.8] -->
229
  <tag_resource>
230
  <rewrite>
231
  <product_collection>Simtech_Searchanise_Model_Resource_Product_CollectionTag</product_collection>
232
  </rewrite>
233
  </tag_resource>
234
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
235
  <!-- [v1.5]-->
236
  <tag_mysql4>
237
  <rewrite>
@@ -249,13 +249,13 @@
249
  </importexport>
250
  <!-- END -->
251
  <!-- <OVERRIDE CORE RESOURCE> -->
252
- <!-- [v1.6] [v1.7] [v1.8] -->
253
  <core_resource>
254
  <rewrite>
255
  <store>Simtech_Searchanise_Model_Resource_Store</store>
256
  </rewrite>
257
  </core_resource>
258
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
259
  <!-- [v1.5] -->
260
  <core_mysql4>
261
  <rewrite>
@@ -351,7 +351,7 @@
351
  </rating>
352
  </observers>
353
  </catalog_product_delete_before>
354
- <!-- [v1.6] [v1.7] [v1.8] -->
355
  <catalog_product_attribute_update_before>
356
  <observers>
357
  <rating>
@@ -360,7 +360,7 @@
360
  </rating>
361
  </observers>
362
  </catalog_product_attribute_update_before>
363
- <!-- [/v1.6] [/v1.7] [/v1.8] -->
364
  <!-- [v1.5] -->
365
  <searchanise_product_attribute_update_before>
366
  <observers>
@@ -627,4 +627,4 @@
627
  </searchanise_indexer>
628
  </jobs>
629
  </crontab>
630
- </config>
15
  <config>
16
  <modules>
17
  <Simtech_Searchanise>
18
+ <version>3.0.5</version>
19
  </Simtech_Searchanise>
20
  </modules>
21
  <frontend>
157
 
158
  <!-- <OVERRIDE CATALOG RESOURCE> -->
159
  <!-- [disabled_searchanise_search] -->
160
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
161
  <!-- <catalog_resource>
162
  <rewrite>
163
  <product_collection>Simtech_Searchanise_Model_Resource_Product_Collection</product_collection>
165
  <layer_filter_price>Simtech_Searchanise_Model_Resource_Layer_Filter_Price</layer_filter_price>
166
  </rewrite>
167
  </catalog_resource> -->
168
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
169
  <!-- [v1.5] -->
170
  <!-- <catalog_resource_eav_mysql4>
171
  <rewrite>
197
 
198
  <!-- <OVERRIDE CATALOGSEARCH RESOURCE> -->
199
  <!-- [disabled_searchanise_search] -->
200
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
201
  <!-- <catalogsearch_resource>
202
  <rewrite>
203
  <fulltext_collection>Simtech_Searchanise_Model_Resource_Fulltext_Collection</fulltext_collection>
204
  <advanced_collection>Simtech_Searchanise_Model_Resource_Advanced_Collection</advanced_collection>
205
  </rewrite>
206
  </catalogsearch_resource> -->
207
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
208
  <!-- [v1.5] -->
209
  <!-- <catalogsearch_mysql4>
210
  <rewrite>
225
  <!-- END -->
226
 
227
  <!-- OVERRIDE TAG RESOURCE -->
228
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
229
  <tag_resource>
230
  <rewrite>
231
  <product_collection>Simtech_Searchanise_Model_Resource_Product_CollectionTag</product_collection>
232
  </rewrite>
233
  </tag_resource>
234
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
235
  <!-- [v1.5]-->
236
  <tag_mysql4>
237
  <rewrite>
249
  </importexport>
250
  <!-- END -->
251
  <!-- <OVERRIDE CORE RESOURCE> -->
252
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
253
  <core_resource>
254
  <rewrite>
255
  <store>Simtech_Searchanise_Model_Resource_Store</store>
256
  </rewrite>
257
  </core_resource>
258
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
259
  <!-- [v1.5] -->
260
  <core_mysql4>
261
  <rewrite>
351
  </rating>
352
  </observers>
353
  </catalog_product_delete_before>
354
+ <!-- [v1.6] [v1.7] [v1.8] [v1.9] -->
355
  <catalog_product_attribute_update_before>
356
  <observers>
357
  <rating>
360
  </rating>
361
  </observers>
362
  </catalog_product_attribute_update_before>
363
+ <!-- [/v1.6] [/v1.7] [/v1.8] [/v1.9] -->
364
  <!-- [v1.5] -->
365
  <searchanise_product_attribute_update_before>
366
  <observers>
627
  </searchanise_indexer>
628
  </jobs>
629
  </crontab>
630
+ </config>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Simtech_Searchanise</name>
4
- <version>3.0.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://docs.searchanise.com/connector_addon/license_agreement.html">Commercial license: http://docs.searchanise.com/connector_addon/license_agreement.html</license>
7
  <channel>community</channel>
@@ -10,14 +10,12 @@
10
  <description>Searchanise is a free SaaS solution providing fast and smart search for online stores. It provides rapid search results and instant search suggestions presented in a fancy and customizable widget.&#xD;
11
  &#xD;
12
  With the help of Searchanise Connector Add-on you will be able to connect your store to the service and start using the search widget in no time. Power up your store right now!</description>
13
- <notes>[*] Notices removed from the Magento cron logs.&lt;br&gt;&#xD;
14
- [!] Multi-Store: Category links could be incorrect if there were several stores on different domains. Fixed.&lt;br&gt;&#xD;
15
- [!] Server connection timeout increased.&lt;br&gt;&#xD;
16
- [!] Searchanise server response correctness check improved.&lt;br&gt;</notes>
17
  <authors><author><name>Simbirsk Technologies, Ltd.</name><user>searchanise</user><email>sales@searchanise.com</email></author></authors>
18
- <date>2014-07-29</date>
19
- <time>07:01:04</time>
20
- <contents><target name="magecommunity"><dir name="Simtech"><dir name="Searchanise"><dir name="Block"><file name="Async.php" hash="143d28fa63be046b295bb7eb4783fb15"/><file name="Autocomplete.php" hash="efc89ac3f897be3bc307fba6a36778f0"/><file name="Jsinit.php" hash="3cb0a3bd02858a6ce81d14dbc7b6042f"/><dir name="Product"><dir name="List"><file name="Toolbar.php" hash="759854378cb8c35c37a8a7f44076194f"/></dir><file name="Result.php" hash="4e767e273ee21a38332ac226af878291"/></dir><file name="Result.php" hash="dec7b27ab9511c956680eb60eba9b95e"/></dir><dir name="Helper"><file name="ApiCategories.php" hash="7e1853b1b91712de4aa4f57beb9198f9"/><file name="ApiPages.php" hash="973c5346e0ebd4ac0f4688626a19aca8"/><file name="ApiProducts.php" hash="f4e5ca9428aa12cf12cf9784052b1177"/><file name="ApiSe.php" hash="d86a448b449b7bd9d47ac3ac0f5756a9"/><file name="Data.php" hash="d4925c397d8b821b47be87a4d377930a"/></dir><dir name="Model"><file name="Advanced.php" hash="deb3ae5193e0aee50b94360b1833ac82"/><dir name="Config"><file name="Data.php" hash="ddc558d22208f0ebc1e4378c9d050022"/></dir><file name="Config.php" hash="00ca3c7955f3ff2283c636a2074b6f03"/><dir name="Import"><dir name="Entity"><file name="Product.php" hash="4997af528b36f0f576d1c01402e14b03"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Category.php" hash="e290ab29f2d50e1acbbbb37496150ea4"/><file name="Price.php" hash="743887b32bf012274ad8a371fff96411"/></dir></dir><file name="Layer.php" hash="3e8c975d649ae6e20fcc69d35779c97c"/><file name="LayerCatalogSearch.php" hash="42058e0552719902f3f40f91e816b460"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="dd8c6f3cbb0621a5a7320f3104e68da6"/></dir><dir name="Config"><file name="Collection.php" hash="470218c1eb3f1cc1ca0e6d0e93e1b097"/></dir><file name="Config.php" hash="c95dc8ecd7ab4f955b6eaf4710ab960e"/><dir name="Fulltext"><file name="Collection.php" hash="5646955503a90020f87cfd861ac07e73"/></dir><dir name="Product"><file name="Collection.php" hash="28b478eb328502ce03e389404d9f54b5"/><file name="CollectionTag.php" hash="ea06ec75ee4d083f2b4232c5fe298f00"/></dir><dir name="Queue"><file name="Collection.php" hash="30ca0f8640bdc443deb94cd2e71010c8"/></dir><file name="Queue.php" hash="286351623e8f011a21519f8d9c3e3151"/><file name="Store.php" hash="0126a4291d7dad6641bf59abb0f64cc4"/></dir><file name="Observer.php" hash="e347d2e770c809aed137dcb7dc4df480"/><file name="Queue.php" hash="f862b207d2dc9bb7f56c829b8a1480fe"/><file name="Request.php" hash="e032bca52490ebb1813c443b002b5f49"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="6744555254ba1c57f482504b5f16012a"/></dir><dir name="Eav"><dir name="Mysql4"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="05320757b9289edac4f15230cd06c0e1"/><file name="Price.php" hash="ed4e21a18c552e3a92b21ff6e8bc5d61"/></dir></dir><dir name="Product"><file name="Action.php" hash="006e3c8c775cf31a8b9c66fb934c9d2d"/></dir></dir></dir><dir name="Fulltext"><file name="Collection.php" hash="273467b2e39649fcd0a8eede59c5ab98"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="643a513735ac2a2ac9fba08ff1fa79a0"/><file name="Price.php" hash="15d7ab510b37655a148e077dcece13df"/></dir></dir><dir name="Product"><file name="Collection.php" hash="b7c9a1c2fc24ecf78a32fd0d9d46b120"/><file name="CollectionTag.php" hash="60f12d27d78426a8e04e01d2cbdadb48"/></dir><file name="Store.php" hash="dee8bb23b7fe48dc55e46e93f583699a"/></dir><file name="Searchanise.php" hash="0a03a35854470a310f075298c9a1abf2"/><dir name="System"><dir name="Config"><dir name="Source"><dir name="Searchanise"><file name="TypeAsync.php" hash="11d1aa481094ccbeab365b1fed33440d"/></dir></dir></dir></dir><dir name="Tag"><file name="Relation.php" hash="598f81fd8b2ac77baf24211c2ed03e55"/></dir></dir><dir name="controllers"><file name="AdvancedController.php" hash="5ea4f7fb3362d720462dc0a8e1f1497b"/><file name="AsyncController.php" hash="0b89778497643fff6027fb47eceda82e"/><file name="CategoryController.php" hash="06eac1ad4730d42379f6bc6aae097427"/><file name="IndexController.php" hash="e3234ca51a7669741e29ff7c38789989"/><file name="InfoController.php" hash="9dc96775d093c25bc151a3ad8a50cdb6"/><file name="OptionsController.php" hash="46b8e49dd1026a5e07410b51d101d498"/><file name="ProductController.php" hash="4cf4e991446a36ea34b7c1d350971e1a"/><file name="ResultController.php" hash="2c1d838a2897ffcbb8bc61743254e934"/><file name="ResyncController.php" hash="0612f929d375427326821dfc12186be8"/><file name="SignupController.php" hash="80f87a63d6272f98a068dde35f1d140e"/></dir><dir name="etc"><file name="config.xml" hash="2284c98c87e1828b3a9b206b3e1896e4"/><file name="config_without_search.xml" hash="553f8fb548dbca826b7168a781dbfd73"/><file name="system.xml" hash="a006341e693571d11efaa9d289ebf7fa"/></dir><dir name="sql"><dir name="searchanise_setup"><file name="mysql4-install-0.1.0.php" hash="754324c8783e9cc24de86396e1587e73"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="searchanise"><file name="dashboard.phtml" hash="0ec8814b915e8594b019062c071cc485"/></dir></dir><dir name="layout"><file name="searchanise.xml" hash="68baa611d05db05f8816ea2a8260e961"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="searchanise.xml" hash="5e904fee02cbd42324a297d513b9f582"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="catalogsearch"><file name="form.mini.phtml" hash="fcf8e06e66801a36c96f20ca5d187123"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Simtech_Searchanise.xml" hash="04148681a6648bd370ab62140cbf2ad9"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Simtech_Searchanise.csv" hash="955cdb2011b7abf04227aae37db5bb0b"/></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.2.13</min><max>6.0.0</max></php></required></dependencies>
23
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Simtech_Searchanise</name>
4
+ <version>3.0.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://docs.searchanise.com/connector_addon/license_agreement.html">Commercial license: http://docs.searchanise.com/connector_addon/license_agreement.html</license>
7
  <channel>community</channel>
10
  <description>Searchanise is a free SaaS solution providing fast and smart search for online stores. It provides rapid search results and instant search suggestions presented in a fancy and customizable widget.&#xD;
11
  &#xD;
12
  With the help of Searchanise Connector Add-on you will be able to connect your store to the service and start using the search widget in no time. Power up your store right now!</description>
13
+ <notes>[*] Magento 1.9 support added.&lt;br&gt;&#xD;
14
+ [!] Catalog indexation would freeze for some stores. Fixed.</notes>
 
 
15
  <authors><author><name>Simbirsk Technologies, Ltd.</name><user>searchanise</user><email>sales@searchanise.com</email></author></authors>
16
+ <date>2015-03-24</date>
17
+ <time>10:01:37</time>
18
+ <contents><target name="magecommunity"><dir name="Simtech"><dir name="Searchanise"><dir name="Block"><file name="Async.php" hash="143d28fa63be046b295bb7eb4783fb15"/><file name="Autocomplete.php" hash="efc89ac3f897be3bc307fba6a36778f0"/><file name="Jsinit.php" hash="dfe317297c918e1cf7d551877904121e"/><dir name="Product"><dir name="List"><file name="Toolbar.php" hash="759854378cb8c35c37a8a7f44076194f"/></dir><file name="Result.php" hash="4e767e273ee21a38332ac226af878291"/></dir><file name="Result.php" hash="dec7b27ab9511c956680eb60eba9b95e"/></dir><dir name="Helper"><file name="ApiCategories.php" hash="7e1853b1b91712de4aa4f57beb9198f9"/><file name="ApiPages.php" hash="973c5346e0ebd4ac0f4688626a19aca8"/><file name="ApiProducts.php" hash="25161f78e58ac3c5de200a071b22c738"/><file name="ApiSe.php" hash="aa2ab9e35986365b2ea9152fe2b913a4"/><file name="Data.php" hash="d4925c397d8b821b47be87a4d377930a"/></dir><dir name="Model"><file name="Advanced.php" hash="deb3ae5193e0aee50b94360b1833ac82"/><dir name="Config"><file name="Data.php" hash="ddc558d22208f0ebc1e4378c9d050022"/></dir><file name="Config.php" hash="00ca3c7955f3ff2283c636a2074b6f03"/><dir name="Import"><dir name="Entity"><file name="Product.php" hash="4997af528b36f0f576d1c01402e14b03"/></dir></dir><dir name="Layer"><dir name="Filter"><file name="Category.php" hash="e290ab29f2d50e1acbbbb37496150ea4"/><file name="Price.php" hash="743887b32bf012274ad8a371fff96411"/></dir></dir><file name="Layer.php" hash="3e8c975d649ae6e20fcc69d35779c97c"/><file name="LayerCatalogSearch.php" hash="699179ce1fa119daf6a98bac01b9d9fe"/><dir name="Mysql4"><dir name="Advanced"><file name="Collection.php" hash="dd8c6f3cbb0621a5a7320f3104e68da6"/></dir><dir name="Config"><file name="Collection.php" hash="470218c1eb3f1cc1ca0e6d0e93e1b097"/></dir><file name="Config.php" hash="c95dc8ecd7ab4f955b6eaf4710ab960e"/><dir name="Fulltext"><file name="Collection.php" hash="5646955503a90020f87cfd861ac07e73"/></dir><dir name="Product"><file name="Collection.php" hash="28b478eb328502ce03e389404d9f54b5"/><file name="CollectionTag.php" hash="eb0690a8cdbd11d6a26d23994157126b"/></dir><dir name="Queue"><file name="Collection.php" hash="30ca0f8640bdc443deb94cd2e71010c8"/></dir><file name="Queue.php" hash="286351623e8f011a21519f8d9c3e3151"/><file name="Store.php" hash="0126a4291d7dad6641bf59abb0f64cc4"/></dir><file name="Observer.php" hash="e347d2e770c809aed137dcb7dc4df480"/><file name="Queue.php" hash="f862b207d2dc9bb7f56c829b8a1480fe"/><file name="Request.php" hash="e032bca52490ebb1813c443b002b5f49"/><dir name="Resource"><dir name="Advanced"><file name="Collection.php" hash="79160b9b7c205ee99d97870a076dfd11"/></dir><dir name="Eav"><dir name="Mysql4"><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="05320757b9289edac4f15230cd06c0e1"/><file name="Price.php" hash="ed4e21a18c552e3a92b21ff6e8bc5d61"/></dir></dir><dir name="Product"><file name="Action.php" hash="006e3c8c775cf31a8b9c66fb934c9d2d"/></dir></dir></dir><dir name="Fulltext"><file name="Collection.php" hash="f7e85d5050208cc0e0ba6e652be62f7f"/></dir><dir name="Layer"><dir name="Filter"><file name="Attribute.php" hash="e61907b6fbe825511ea3dc590cd9009f"/><file name="Price.php" hash="57d56f6841c0e2b89c21947aa2a23e86"/></dir></dir><dir name="Product"><file name="Collection.php" hash="8ebf563ee0c188cf0b226c6ef9408043"/><file name="CollectionTag.php" hash="42efdd1b9b79e42b1d59f0452266bd42"/></dir><file name="Store.php" hash="6a337d4b6561aa96b96236d66cc9aa30"/></dir><file name="Searchanise.php" hash="d38d587354466e3a36e9c0a4f078d5fd"/><dir name="System"><dir name="Config"><dir name="Source"><dir name="Searchanise"><file name="TypeAsync.php" hash="11d1aa481094ccbeab365b1fed33440d"/></dir></dir></dir></dir><dir name="Tag"><file name="Relation.php" hash="598f81fd8b2ac77baf24211c2ed03e55"/></dir></dir><dir name="controllers"><file name="AdvancedController.php" hash="5ea4f7fb3362d720462dc0a8e1f1497b"/><file name="AsyncController.php" hash="0b89778497643fff6027fb47eceda82e"/><file name="CategoryController.php" hash="06eac1ad4730d42379f6bc6aae097427"/><file name="IndexController.php" hash="e3234ca51a7669741e29ff7c38789989"/><file name="InfoController.php" hash="9dc96775d093c25bc151a3ad8a50cdb6"/><file name="OptionsController.php" hash="46b8e49dd1026a5e07410b51d101d498"/><file name="ProductController.php" hash="4cf4e991446a36ea34b7c1d350971e1a"/><file name="ResultController.php" hash="2c1d838a2897ffcbb8bc61743254e934"/><file name="ResyncController.php" hash="0612f929d375427326821dfc12186be8"/><file name="SignupController.php" hash="80f87a63d6272f98a068dde35f1d140e"/></dir><dir name="etc"><file name="config.xml" hash="36a873409e9800ca08bc36563d788ac4"/><file name="config_without_search.xml" hash="1b41812cf4fd2f14e7409916ac6ecb67"/><file name="system.xml" hash="a006341e693571d11efaa9d289ebf7fa"/></dir><dir name="sql"><dir name="searchanise_setup"><file name="mysql4-install-0.1.0.php" hash="754324c8783e9cc24de86396e1587e73"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="searchanise"><file name="dashboard.phtml" hash="0ec8814b915e8594b019062c071cc485"/></dir></dir><dir name="layout"><file name="searchanise.xml" hash="68baa611d05db05f8816ea2a8260e961"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="searchanise.xml" hash="5e904fee02cbd42324a297d513b9f582"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="template"><dir name="catalogsearch"><file name="form.mini.phtml" hash="fcf8e06e66801a36c96f20ca5d187123"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Simtech_Searchanise.xml" hash="04148681a6648bd370ab62140cbf2ad9"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Simtech_Searchanise.csv" hash="955cdb2011b7abf04227aae37db5bb0b"/></dir></target></contents>
19
  <compatible/>
20
  <dependencies><required><php><min>5.2.13</min><max>6.0.0</max></php></required></dependencies>
21
  </package>