Brainsins_Recommender - Version 1.5.5

Version Notes

Added a configuration option to retrieve description in recommendations

Download this release

Release Info

Developer Magento Core Team
Extension Brainsins_Recommender
Version 1.5.5
Comparing to
See all releases


Code changes from version 1.5.4 to 1.5.5

app/code/community/Brainsins/Recsins/Block/Adminhtml/Recsins/Edit/Form.php CHANGED
@@ -2,28 +2,28 @@
2
 
3
  /*
4
  * BrainSINS' Magento Extension allows to integrate the BrainSINS
5
- * personalized product recommendations into a Magento Store.
6
- * Copyright (c) 2011 Social Gaming Platform S.R.L.
7
- *
8
- * This file is part of BrainSINS' Magento Extension.
9
- *
10
- * BrainSINS' Magento Extension is free software: you can redistribute it
11
- * and/or modify it under the terms of the GNU General Public License
12
- * as published by the Free Software Foundation, either version 3 of the
13
- * License, or (at your option) any later version.
14
- *
15
- * BrainSINS' Magento Extension is distributed in the hope that it will be useful,
16
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
- * GNU General Public License for more details.
19
- *
20
- * You should have received a copy of the GNU General Public License
21
- * along with BrainSINS' Magento Extension. If not, see
22
- * <http://www.gnu.org/licenses/>.
23
- *
24
- * Please do not hesitate to contact us at info@brainsins.com
25
- *
26
- */
27
 
28
  final class BS_Radios extends Varien_Data_Form_Element_Radios {
29
 
@@ -105,7 +105,7 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
105
  )
106
  );
107
 
108
-
109
 
110
  $data = $this->getRequest()->getPost();
111
 
@@ -357,7 +357,7 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
357
  //$advancedFieldSet->addElement(new Varien_Data_Form_Element_Label(array('value' => $helper->__("Catalog upload page size"), 'bold' => 'true')));
358
 
359
  /*$radio1 = new Varien_Data_Form_Element_Radio();
360
- $radio1->setLabel("1");
361
  $radio1->setValue("page1");
362
  $radio1->setAdditional_text("");
363
 
@@ -401,11 +401,11 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
401
  $pageSize = Mage::getStoreConfig('brainsins/BS_PAGE_SIZE');
402
 
403
  if (!isset($pageSize) || !($pageSize != 'page1' || $pageSize != 'page10' || $pageSize != 'page20' || $pageSize != 'page50' || $pageSize != 'page100' || $pageSize != 'page200')) {
404
- $pageSize = 'page50';
405
  }
406
 
407
  $advancedRadios->setValue(array($pageSize));
408
- */
409
  $includeOutOfStockLabel = new Varien_Data_Form_Element_Label(array('value' => $helper->__("Include out of stock products in catalog upload (out of stock products will be recommended)"), 'bold' => 'true'));
410
 
411
  $outOfStockCheckbox = new Varien_Data_Form_Element_Checkbox(array('name' => 'out_of_stock_checkbox'));
@@ -502,7 +502,7 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
502
  $taxPriceInDisplay->setLabel($helper->__("Display Prices include taxes and Catalog Prices do not include taxes"));
503
  $taxPriceInDisplay->setValue("tax_price_plus");
504
  $taxPriceInDisplay->setAdditional_text("");
505
-
506
  $taxPriceInCatalog = new Varien_Data_Form_Element_Radio();
507
  $taxPriceInCatalog->setLabel($helper->__("Display Prices do not include taxes and Catalog Prices include taxes"));
508
  $taxPriceInCatalog->setValue("tax_price_minus");
@@ -512,7 +512,7 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
512
  $taxPriceOptions[] = $taxPriceEqual;
513
  $taxPriceOptions[] = $taxPriceInDisplay;
514
  $taxPriceOptions[] = $taxPriceInCatalog;
515
-
516
  $taxPriceRadios = new BS_Radios(array('name' => 'bstaxpriceoptions', 'separator' => '<br>'));
517
  $taxPriceRadios->setId("tax_price_options");
518
  $taxPriceRadios->setValues($taxPriceOptions);
@@ -526,20 +526,35 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
526
  }
527
 
528
  $taxPriceRadios->setValue(array($taxPriceDisplayOption));
529
-
530
-
531
  $importScriptLabel = new Varien_Data_Form_Element_Label(array('value' => $helper->__("Custom style script (HTTP)"), 'bold' => 'true'));
532
  $scriptUrl = Mage::getStoreConfig('brainsins/BS_SCRIPT_URL');
533
  $importScript = new Varien_Data_Form_Element_Text(array('name' => 'bs_script', 'style' => 'width:400px'));
534
  $importScript->setId('bs_script');
535
  $importScript->setValue($scriptUrl);
536
-
537
  $importScriptHttpsLabel = new Varien_Data_Form_Element_Label(array('value' => $helper->__("Custom style script (HTTPS)"), 'bold' => 'true'));
538
  $scriptHttpsUrl = Mage::getStoreConfig('brainsins/BS_SCRIPT_THTTPS_URL');
539
  $importScriptHttps = new Varien_Data_Form_Element_Text(array('name' => 'bs_script_https', 'style' => 'width:400px'));
540
  $importScriptHttps->setId('bs_script_https');
541
  $importScriptHttps->setValue($scriptHttpsUrl);
542
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
 
544
  //$advancedFieldSet->addElement($advancedRadios);
545
  $advancedFieldSet->addElement($includeOutOfStockLabel);
@@ -556,7 +571,9 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
556
  $advancedFieldSet->addElement($importScript);
557
  $advancedFieldSet->addElement($importScriptHttpsLabel);
558
  $advancedFieldSet->addElement($importScriptHttps);
559
-
 
 
560
  //$advancedFieldSet->addElement($imagesExplainLabel1);
561
  //$advancedFieldSet->addElement($imagesExplainLabel2);
562
  // buttons
@@ -571,7 +588,8 @@ class Brainsins_Recsins_Block_Adminhtml_Recsins_Edit_Form extends Mage_Adminhtml
571
  $importButton->setValue($helper->__('Import Recommenders'));
572
  $importButton->setOnclick("bsImportConfig()");
573
 
574
-
 
575
 
576
 
577
  // build the final form
2
 
3
  /*
4
  * BrainSINS' Magento Extension allows to integrate the BrainSINS
5
+ * personalized product recommendations into a Magento Store.
6
+ * Copyright (c) 2011 Social Gaming Platform S.R.L.
7
+ *
8
+ * This file is part of BrainSINS' Magento Extension.
9
+ *
10
+ * BrainSINS' Magento Extension is free software: you can redistribute it
11
+ * and/or modify it under the terms of the GNU General Public License
12
+ * as published by the Free Software Foundation, either version 3 of the
13
+ * License, or (at your option) any later version.
14
+ *
15
+ * BrainSINS' Magento Extension is distributed in the hope that it will be useful,
16
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
+ * GNU General Public License for more details.
19
+ *
20
+ * You should have received a copy of the GNU General Public License
21
+ * along with BrainSINS' Magento Extension. If not, see
22
+ * <http://www.gnu.org/licenses/>.
23
+ *
24
+ * Please do not hesitate to contact us at info@brainsins.com
25
+ *
26
+ */
27
 
28
  final class BS_Radios extends Varien_Data_Form_Element_Radios {
29
 
105
  )
106
  );
107
 
108
+
109
 
110
  $data = $this->getRequest()->getPost();
111
 
357
  //$advancedFieldSet->addElement(new Varien_Data_Form_Element_Label(array('value' => $helper->__("Catalog upload page size"), 'bold' => 'true')));
358
 
359
  /*$radio1 = new Varien_Data_Form_Element_Radio();
360
+ $radio1->setLabel("1");
361
  $radio1->setValue("page1");
362
  $radio1->setAdditional_text("");
363
 
401
  $pageSize = Mage::getStoreConfig('brainsins/BS_PAGE_SIZE');
402
 
403
  if (!isset($pageSize) || !($pageSize != 'page1' || $pageSize != 'page10' || $pageSize != 'page20' || $pageSize != 'page50' || $pageSize != 'page100' || $pageSize != 'page200')) {
404
+ $pageSize = 'page50';
405
  }
406
 
407
  $advancedRadios->setValue(array($pageSize));
408
+ */
409
  $includeOutOfStockLabel = new Varien_Data_Form_Element_Label(array('value' => $helper->__("Include out of stock products in catalog upload (out of stock products will be recommended)"), 'bold' => 'true'));
410
 
411
  $outOfStockCheckbox = new Varien_Data_Form_Element_Checkbox(array('name' => 'out_of_stock_checkbox'));
502
  $taxPriceInDisplay->setLabel($helper->__("Display Prices include taxes and Catalog Prices do not include taxes"));
503
  $taxPriceInDisplay->setValue("tax_price_plus");
504
  $taxPriceInDisplay->setAdditional_text("");
505
+
506
  $taxPriceInCatalog = new Varien_Data_Form_Element_Radio();
507
  $taxPriceInCatalog->setLabel($helper->__("Display Prices do not include taxes and Catalog Prices include taxes"));
508
  $taxPriceInCatalog->setValue("tax_price_minus");
512
  $taxPriceOptions[] = $taxPriceEqual;
513
  $taxPriceOptions[] = $taxPriceInDisplay;
514
  $taxPriceOptions[] = $taxPriceInCatalog;
515
+
516
  $taxPriceRadios = new BS_Radios(array('name' => 'bstaxpriceoptions', 'separator' => '<br>'));
517
  $taxPriceRadios->setId("tax_price_options");
518
  $taxPriceRadios->setValues($taxPriceOptions);
526
  }
527
 
528
  $taxPriceRadios->setValue(array($taxPriceDisplayOption));
529
+
530
+
531
  $importScriptLabel = new Varien_Data_Form_Element_Label(array('value' => $helper->__("Custom style script (HTTP)"), 'bold' => 'true'));
532
  $scriptUrl = Mage::getStoreConfig('brainsins/BS_SCRIPT_URL');
533
  $importScript = new Varien_Data_Form_Element_Text(array('name' => 'bs_script', 'style' => 'width:400px'));
534
  $importScript->setId('bs_script');
535
  $importScript->setValue($scriptUrl);
536
+
537
  $importScriptHttpsLabel = new Varien_Data_Form_Element_Label(array('value' => $helper->__("Custom style script (HTTPS)"), 'bold' => 'true'));
538
  $scriptHttpsUrl = Mage::getStoreConfig('brainsins/BS_SCRIPT_THTTPS_URL');
539
  $importScriptHttps = new Varien_Data_Form_Element_Text(array('name' => 'bs_script_https', 'style' => 'width:400px'));
540
  $importScriptHttps->setId('bs_script_https');
541
  $importScriptHttps->setValue($scriptHttpsUrl);
542
+
543
+ $useHighDetail = new Varien_Data_Form_Element_Checkbox(array('name' => 'use_high_detail'));
544
+ $useHighDetail->setId('use_high_detail');
545
+ $useHighDetail->setValue("checked");
546
+ $useHighDetailOption = Mage::getStoreConfig('brainsins/BS_USE_HIGH_DETAIL');
547
+ if (isset($useHighDetailOption) && $useHighDetailOption != null) {
548
+ if ($useHighDetailOption == "1") {
549
+ $useHighDetail->setIsChecked(true);
550
+ } else {
551
+ $useHighDetail->setIsChecked(false);
552
+ }
553
+ } else {
554
+ $useHighDetail->setIsChecked(false);
555
+ }
556
+ $useHighDetailLabel = new Varien_Data_Form_Element_Label(array('value' => $helper->__("Use high detail in recommendation requests"), 'bold' => 'true'));
557
+
558
 
559
  //$advancedFieldSet->addElement($advancedRadios);
560
  $advancedFieldSet->addElement($includeOutOfStockLabel);
571
  $advancedFieldSet->addElement($importScript);
572
  $advancedFieldSet->addElement($importScriptHttpsLabel);
573
  $advancedFieldSet->addElement($importScriptHttps);
574
+ $advancedFieldSet->addElement($useHighDetailLabel);
575
+ $advancedFieldSet->addElement($useHighDetail);
576
+
577
  //$advancedFieldSet->addElement($imagesExplainLabel1);
578
  //$advancedFieldSet->addElement($imagesExplainLabel2);
579
  // buttons
588
  $importButton->setValue($helper->__('Import Recommenders'));
589
  $importButton->setOnclick("bsImportConfig()");
590
 
591
+
592
+
593
 
594
 
595
  // build the final form
app/code/community/Brainsins/Recsins/Block/Recsins.php CHANGED
@@ -452,7 +452,14 @@ class Brainsins_Recsins_Block_Recsins extends Mage_Core_Block_Abstract {
452
  $script .= 'var bsHost = (("https:" == document.location.protocol) ? "https://" : "http://");' . PHP_EOL;
453
  $script .= 'document.write(unescape("%3Cscript src=\'" + bsHost + "' . $recUrl . '/bsrecwidget.js\' type=\'text/javascript\'%3E%3C/script%3E"));' . PHP_EOL;
454
  $script .= "</script>" . PHP_EOL;
455
-
 
 
 
 
 
 
 
456
  $script .= '
457
  <script type="text/javascript">
458
  try{
@@ -460,6 +467,7 @@ class Brainsins_Recsins_Block_Recsins extends Mage_Core_Block_Abstract {
460
  var BrainSINSRecommender = BrainSINS.getRecommender( BrainSINSTracker );
461
  ' . $filter . '
462
  ' . $currencyJs . '
 
463
  BrainSINSRecommender.loadWidget("' . $recommenderId . '",' . $prodId . ',"' . $langCode . '","' . $divId . '",' . $userId . ',' . $paintCallback . ');
464
  }catch(err) { }
465
  </script>
452
  $script .= 'var bsHost = (("https:" == document.location.protocol) ? "https://" : "http://");' . PHP_EOL;
453
  $script .= 'document.write(unescape("%3Cscript src=\'" + bsHost + "' . $recUrl . '/bsrecwidget.js\' type=\'text/javascript\'%3E%3C/script%3E"));' . PHP_EOL;
454
  $script .= "</script>" . PHP_EOL;
455
+
456
+ $useHighDetailScript = "";
457
+
458
+ $useHighDetail = Mage::getStoreConfig('brainsins/BS_USE_HIGH_DETAIL');
459
+ if (isset($useHighDetail) && $useHighDetail == "1") {
460
+ $useHighDetailScript = 'BrainSINSRecommender.setDetailsLevel("high");' . PHP_EOL;
461
+ }
462
+
463
  $script .= '
464
  <script type="text/javascript">
465
  try{
467
  var BrainSINSRecommender = BrainSINS.getRecommender( BrainSINSTracker );
468
  ' . $filter . '
469
  ' . $currencyJs . '
470
+ ' . $useHighDetailScript .'
471
  BrainSINSRecommender.loadWidget("' . $recommenderId . '",' . $prodId . ',"' . $langCode . '","' . $divId . '",' . $userId . ',' . $paintCallback . ');
472
  }catch(err) { }
473
  </script>
app/code/community/Brainsins/Recsins/controllers/Adminhtml/RecsinsController.php CHANGED
@@ -274,6 +274,18 @@ class Brainsins_Recsins_Adminhtml_RecsinsController extends Mage_Adminhtml_Contr
274
  Mage::getModel('core/config')->saveConfig('brainsins/BS_SCRIPT_THTTPS_URL', $bsScriptHttps);
275
  }
276
  }
 
 
 
 
 
 
 
 
 
 
 
 
277
 
278
  $importConfig = $data['import_config'];
279
  if (isset($importConfig) && $importConfig == '1') {
274
  Mage::getModel('core/config')->saveConfig('brainsins/BS_SCRIPT_THTTPS_URL', $bsScriptHttps);
275
  }
276
  }
277
+
278
+ if (array_key_exists("use_high_detail", $data)) {
279
+ $useHighDetailValue = $data['use_high_detail'];
280
+ if (isset($useHighDetailValue) && $useHighDetailValue == "checked") {
281
+ Mage::getModel('core/config')->saveConfig('brainsins/BS_USE_HIGH_DETAIL', "1");
282
+ } else {
283
+ Mage::getModel('core/config')->saveConfig('brainsins/BS_USE_HIGH_DETAIL', "0");
284
+ }
285
+ } else {
286
+
287
+ Mage::getModel('core/config')->saveConfig('brainsins/BS_USE_HIGH_DETAIL', "0");
288
+ }
289
 
290
  $importConfig = $data['import_config'];
291
  if (isset($importConfig) && $importConfig == '1') {
app/code/community/Brainsins/Recsins/etc/config.xml CHANGED
@@ -26,7 +26,7 @@
26
  <config>
27
  <modules>
28
  <Brainsins_Recsins>
29
- <version>1.5.4</version>
30
  </Brainsins_Recsins>
31
  </modules>
32
  <frontend>
26
  <config>
27
  <modules>
28
  <Brainsins_Recsins>
29
+ <version>1.5.5</version>
30
  </Brainsins_Recsins>
31
  </modules>
32
  <frontend>
app/code/community/Brainsins/Recsins/sql/recsins_setup/mysql4-upgrade-1.5.4-1.5.5.php ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * BrainSINS' Magento Extension allows to integrate the BrainSINS
5
+ * personalized product recommendations into a Magento Store.
6
+ * Copyright (c) 2011 Social Gaming Platform S.R.L.
7
+ *
8
+ * This file is part of BrainSINS' Magento Extension.
9
+ *
10
+ * BrainSINS' Magento Extension is free software: you can redistribute it
11
+ * and/or modify it under the terms of the GNU General Public License
12
+ * as published by the Free Software Foundation, either version 3 of the
13
+ * License, or (at your option) any later version.
14
+ *
15
+ * Foobar is distributed in the hope that it will be useful,
16
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
+ * GNU General Public License for more details.
19
+ *
20
+ * You should have received a copy of the GNU General Public License
21
+ * along with Foobar. If not, see <http://www.gnu.org/licenses/>.
22
+ *
23
+ * Please do not hesitate to contact us at info@brainsins.com
24
+ *
25
+ */
26
+ $installer = $this;
27
+
28
+ $table = $installer->getTable('recsins_recommender');
29
+
30
+ $installer->startSetup();
31
+
32
+ if (!$installer->tableExists($table)) {
33
+ $installer->run("
34
+ CREATE TABLE IF NOT EXISTS {$table} (
35
+ `id` int(10) unsigned NOT NULL,
36
+ `name` varchar(255),
37
+ `page` smallint(8),
38
+ PRIMARY KEY (`id`)
39
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Brainsins loaded Recommenders';
40
+ ");
41
+ }
42
+
43
+ Mage::getModel('core/config')->saveConfig('brainsins/BS_VERSION', '1.5.5');
44
+
45
+ $installer->endSetup();
46
+
47
+ Mage::getConfig()->cleanCache();
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Brainsins_Recommender</name>
4
- <version>1.5.4</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.brainsins.es/contrato-de-prestacion-de-servicios-brainsin-para-plugins/">GPL 3.0</license>
7
  <channel>community</channel>
@@ -19,12 +19,11 @@ BrainSINS Recommender is offered as a software as a service. It processes the us
19
  Increase your cross-sell, up-sell and Average Order Value (AOV) rates. Send personalized emails to your clients to increase the return to your store, and measure and control the effect of all the recommendations in your online store.&#xD;
20
  &#xD;
21
  Install the plugin in a few minutes and offer more than 100 personalized recommenders in any web page of your online store in less than 24 hours. Choose the plan that better fits to your store at http://www.brainsins.es/tarifas/ and try it for Free 1 month, experimenting the benefits in your own online store without compromise.</description>
22
- <notes>Unified price tracking&#xD;
23
- Added an option to import custom styling script</notes>
24
  <authors><author><name>BrainSINS</name><user>auto-converted</user><email>alejandro.cuevas@brainsins.com</email></author></authors>
25
  <date>2012-07-26</date>
26
- <time>12:44:04</time>
27
- <contents><target name="magecommunity"><dir name="Brainsins"><dir name="Recsins"><dir name="Block"><dir name="Adminhtml"><dir name="Recsins"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="f50e327073f6db6f0b7aaf2e6018834b"/><file name=".DS_Store" hash="47ab7c6331c785f3abe32e1d49659743"/></dir><file name="Form.php" hash="a9e1f799440e9ef7d6a731fbe0f50eca"/><file name="Tabs.php" hash="da7477ceefd6cc473fb2fb2a307f0282"/><file name=".DS_Store" hash="dbfd4b859fae44d226584cc0de499414"/></dir><file name="Edit.php" hash="942d16b49fca2566799c7c393ffdd4d2"/><file name="Grid.php" hash="bf34a0c320aeebfe1cc645dc4120b4aa"/><file name=".DS_Store" hash="550ce861437446e70bb1b83296032d36"/></dir><file name="Recsins.php" hash="f0bb580c8238818273726847917789f8"/><file name=".DS_Store" hash="1b0ef8c354534e8683bfa107de6b5724"/></dir><file name="Category.php" hash="fa64d544ad0020dfa651b6c27f95d734"/><file name="Checkout.php" hash="e6e523a465b52ff1d93dea497c15db5e"/><file name="Home.php" hash="26eb9d8e4f796bb0a2ba8ea90691c943"/><file name="Product.php" hash="648d439dc8729a8205449c6887175371"/><file name="Recsins.php" hash="c2bbcd8b3894963ca0b9a9eb4b7891c7"/><file name=".DS_Store" hash="685d9658140adde8787312ba21575a63"/><file name=".LCKRecsins.php~" hash="ed46e9b84acaa2b3b33539877109417b"/></dir><dir name="Entity"><file name="Setup.php" hash="02af74b02e083c4552762ecc9987a1a7"/><file name=".DS_Store" hash="904a17b2e133ff00bc1c75992115b463"/></dir><dir name="Helper"><file name="Data.php" hash="c117b4e42fef671651a78c8f4e01d0e5"/><file name="Recsins.php" hash="435d1402b9b860d906db3a3beb3c93de"/><file name=".DS_Store" hash="c9075ec8f3a93c790032a41253f0410d"/></dir><dir name="Model"><dir name="Api"><dir name="ficheros"><file name="Api.php" hash="1ee860dbae5f6b13258a0d0645d5adf8"/><file name="ProductsApi.php" hash="935bed7774eabfeda9949810faa116b0"/><file name=".DS_Store" hash="014af3b68e1d3b96ec61219fe428ff22"/></dir><file name="Api.php" hash="0fbdc82b29aaa90ecf3a4c0da9b15e7d"/><file name="ProductsApi.php" hash="0af71e0b0a1f3b1884428a5e43dea402"/><file name="ficheros.zip" hash="aa99d1feccadf91c4e467075feb1a875"/><file name=".DS_Store" hash="ef6c115a2d11276a7d6f63bf02593722"/></dir><dir name="Mysql4"><dir name="Recsins"><file name="Collection.php" hash="8c69337dee2f64516174e59805c6ec83"/></dir><file name="Recsins.php" hash="57256b85a9e1279e0875ea50cf8325d4"/><file name=".DS_Store" hash="738094d269ed6a646832036c60e08599"/></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><dir name="Recommender"><file name="Collection.php" hash="6c36324bb84cba28f6a5bdb7eb0c2bce"/></dir><file name="Recommender.php" hash="f6857e56874c6480447b5c411aa7a066"/></dir></dir><file name="Setup.php" hash="02af74b02e083c4552762ecc9987a1a7"/></dir><file name="Cart.php" hash="d19925676d18f200f25b1c995f035300"/><file name="CartProduct.php" hash="fffddbe0a759335f89bbdbcec7b4d2eb"/><file name="Client.php" hash="54ab4289c332f4414761ba4256dc205e"/><file name="NewFile.xml" hash="93286b7fccf6f6092628ada8b85c0727"/><file name="Observer.php" hash="6c0ff3f353947cda424057117c5ba530"/><file name="Order.php" hash="b8dcb3adfe676725fe4f09acff84cd97"/><file name="OrderProduct.php" hash="1d33e879db0bb8557704ed3b66fb584d"/><file name="Product.php" hash="222db5151109eb9e6741cc1fe0d1ba7f"/><file name="Recommender.php" hash="12532b4efd6fdec560522a2ecf029ed9"/><file name="Recsins.php" hash="6a324de328fce850a5f3955e33fb3ec0"/><file name="Recsins_1.php" hash="310a9b224478749d35c5b59689ce1a07"/><file name="Status.php" hash="e3f1a39141d7a4aaa99252937f60ca8d"/><file name="User.php" hash="3244421d7331e5167e910f6fc3827361"/><file name=".DS_Store" hash="1f13e526a6f8ed14ac43ebd700cb6f60"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RecsinsController.php" hash="41f9d0f8c32efaa9669cb71e79d63292"/><file name=".DS_Store" hash="eb69d7bfb18ebe8966b63ac54b04d1c0"/></dir><file name="IndexController.php" hash="2c9f228ed4e43c347235ed327365a219"/><file name=".DS_Store" hash="b415ad11c2cfebb78e16adb17ca06bff"/></dir><dir name="etc"><file name="api.xml" hash="c82c8df487ba808a8851ea9f1a8fe197"/><file name="config.xml" hash="8e9aa7b0d8c185b3ad3f773c7a96f643"/><file name="widget.xml" hash="c4f1829fa161f1119d817b64878f3b2f"/><file name=".DS_Store" hash="05e296fc2705958a70855fe260ceb9e5"/></dir><dir name="sql"><dir name="recsins_setup"><file name="mysql4-install-1.4.0.php" hash="33ae9091e3066779c13e738beae3650c"/><file name="mysql4-upgrade-1.4.0-1.4.1.php" hash="b636f16be2575bff013c14c012b34625"/><file name="mysql4-upgrade-1.4.1-1.4.2.php" hash="e73c5189c851c1ddb94d8ce8acd6f1a6"/><file name="mysql4-upgrade-1.4.2-1.4.3.php" hash="2297a4e5670b28a24c1fcd3d5d47aca6"/><file name="mysql4-upgrade-1.4.3-1.4.4.php" hash="6c76f6d7ffe9da72ebabd44779d13bde"/><file name="mysql4-upgrade-1.4.4-1.4.5.php" hash="1b932c2afb4543c6e067a7b769d48eb8"/><file name="mysql4-upgrade-1.4.5-1.4.6.php" hash="a851ccc0fa73440b74828c0b2ee993d9"/><file name="mysql4-upgrade-1.4.6-1.4.7.php" hash="923d491257ad9836738c1586d494e12c"/><file name="mysql4-upgrade-1.4.7-1.4.8.php" hash="a2c96553909227f5f5bd7a685691c0ac"/><file name="mysql4-upgrade-1.4.8-1.4.9.php" hash="86b6da79f302790ecb6a072c4ef68fb0"/><file name="mysql4-upgrade-1.4.9-1.5.0.php" hash="b10dd9d0dc951f3b783da743558af5ca"/><file name="mysql4-upgrade-1.5.0-1.5.1.php" hash="7f86ed73d2d35dd2989528046772fa8b"/><file name="mysql4-upgrade-1.5.1-1.5.2.php" hash="da8251355aa4811a099e5b22c9debca3"/><file name="mysql4-upgrade-1.5.2-1.5.3.php" hash="5ad2385bec084bc29a0673ed2a97231c"/><file name="mysql4-upgrade-1.5.3-1.5.4.php" hash="bda831da9d0a842c16092e1900d17087"/><file name=".DS_Store" hash="70fb1641ce88fc5fdb410744cb098089"/></dir><file name=".DS_Store" hash="fd4b270e5bdf8c2dbe56c9a98d4e6548"/></dir><file name="COPYING.txt" hash="4fe869ee987a340198fb0d54c55c47f1"/><file name=".DS_Store" hash="5fbb75ac088ce79fe0044c4951680ae6"/></dir><file name=".DS_Store" hash="6404be841b797bdacec75c7f7bb4a79c"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="recsins.xml" hash="c2608f0c7f9f6efcbeb74bd5b1427206"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="recsins"><file name="cart.phtml" hash="04ee1833a0177a83644e4d1f3211c789"/><file name="category.phtml" hash="1979377cb8f06740a6b44a922e46dacd"/><file name="product.phtml" hash="3a623d6b48cceae14912b4daf5113ca2"/><file name="recsins.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name=".DS_Store" hash="f0948e76df06a209a9b7f51ff398fd60"/></dir></dir><dir name="layout"><file name="recsins.xml" hash="9185dc1897ec93c400edd2cd95b6533d"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Brainsins_Recsins.xml" hash="54e1c94137477548911c4ebce7eb97fe"/></dir></target><target name="magelocale"><dir name="es_ES"><file name="Brainsins_Recsins.csv" hash="7f731ae9e9faa8b003a63722ef3ce18a"/></dir><dir name="en_US"><file name="Brainsins_Recsins.csv" hash="6381582be5edc31cba54a052bb48b86d"/></dir></target></contents>
28
  <compatible/>
29
  <dependencies/>
30
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Brainsins_Recommender</name>
4
+ <version>1.5.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.brainsins.es/contrato-de-prestacion-de-servicios-brainsin-para-plugins/">GPL 3.0</license>
7
  <channel>community</channel>
19
  Increase your cross-sell, up-sell and Average Order Value (AOV) rates. Send personalized emails to your clients to increase the return to your store, and measure and control the effect of all the recommendations in your online store.&#xD;
20
  &#xD;
21
  Install the plugin in a few minutes and offer more than 100 personalized recommenders in any web page of your online store in less than 24 hours. Choose the plan that better fits to your store at http://www.brainsins.es/tarifas/ and try it for Free 1 month, experimenting the benefits in your own online store without compromise.</description>
22
+ <notes>Added a configuration option to retrieve description in recommendations</notes>
 
23
  <authors><author><name>BrainSINS</name><user>auto-converted</user><email>alejandro.cuevas@brainsins.com</email></author></authors>
24
  <date>2012-07-26</date>
25
+ <time>17:43:25</time>
26
+ <contents><target name="magecommunity"><dir name="Brainsins"><dir name="Recsins"><dir name="Block"><dir name="Adminhtml"><dir name="Recsins"><dir name="Edit"><dir name="Tab"><file name="Form.php" hash="f50e327073f6db6f0b7aaf2e6018834b"/><file name=".DS_Store" hash="47ab7c6331c785f3abe32e1d49659743"/></dir><file name="Form.php" hash="a5eb38bd631ea495e1a367cdabd43cac"/><file name="Tabs.php" hash="da7477ceefd6cc473fb2fb2a307f0282"/><file name=".DS_Store" hash="dbfd4b859fae44d226584cc0de499414"/></dir><file name="Edit.php" hash="942d16b49fca2566799c7c393ffdd4d2"/><file name="Grid.php" hash="bf34a0c320aeebfe1cc645dc4120b4aa"/><file name=".DS_Store" hash="550ce861437446e70bb1b83296032d36"/></dir><file name="Recsins.php" hash="f0bb580c8238818273726847917789f8"/><file name=".DS_Store" hash="1b0ef8c354534e8683bfa107de6b5724"/></dir><file name="Category.php" hash="fa64d544ad0020dfa651b6c27f95d734"/><file name="Checkout.php" hash="e6e523a465b52ff1d93dea497c15db5e"/><file name="Home.php" hash="26eb9d8e4f796bb0a2ba8ea90691c943"/><file name="Product.php" hash="648d439dc8729a8205449c6887175371"/><file name="Recsins.php" hash="c2bcc5360a349057e9e5ec4c75f6ea02"/><file name=".DS_Store" hash="685d9658140adde8787312ba21575a63"/><file name=".LCKRecsins.php~" hash="ed46e9b84acaa2b3b33539877109417b"/></dir><dir name="Entity"><file name="Setup.php" hash="02af74b02e083c4552762ecc9987a1a7"/><file name=".DS_Store" hash="904a17b2e133ff00bc1c75992115b463"/></dir><dir name="Helper"><file name="Data.php" hash="c117b4e42fef671651a78c8f4e01d0e5"/><file name="Recsins.php" hash="435d1402b9b860d906db3a3beb3c93de"/><file name=".DS_Store" hash="c9075ec8f3a93c790032a41253f0410d"/></dir><dir name="Model"><dir name="Api"><dir name="ficheros"><file name="Api.php" hash="1ee860dbae5f6b13258a0d0645d5adf8"/><file name="ProductsApi.php" hash="935bed7774eabfeda9949810faa116b0"/><file name=".DS_Store" hash="014af3b68e1d3b96ec61219fe428ff22"/></dir><file name="Api.php" hash="0fbdc82b29aaa90ecf3a4c0da9b15e7d"/><file name="ProductsApi.php" hash="0af71e0b0a1f3b1884428a5e43dea402"/><file name="ficheros.zip" hash="aa99d1feccadf91c4e467075feb1a875"/><file name=".DS_Store" hash="ef6c115a2d11276a7d6f63bf02593722"/></dir><dir name="Mysql4"><dir name="Recsins"><file name="Collection.php" hash="8c69337dee2f64516174e59805c6ec83"/></dir><file name="Recsins.php" hash="57256b85a9e1279e0875ea50cf8325d4"/><file name=".DS_Store" hash="738094d269ed6a646832036c60e08599"/></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><dir name="Recommender"><file name="Collection.php" hash="6c36324bb84cba28f6a5bdb7eb0c2bce"/></dir><file name="Recommender.php" hash="f6857e56874c6480447b5c411aa7a066"/></dir></dir><file name="Setup.php" hash="02af74b02e083c4552762ecc9987a1a7"/></dir><file name="Cart.php" hash="d19925676d18f200f25b1c995f035300"/><file name="CartProduct.php" hash="fffddbe0a759335f89bbdbcec7b4d2eb"/><file name="Client.php" hash="54ab4289c332f4414761ba4256dc205e"/><file name="NewFile.xml" hash="93286b7fccf6f6092628ada8b85c0727"/><file name="Observer.php" hash="6c0ff3f353947cda424057117c5ba530"/><file name="Order.php" hash="b8dcb3adfe676725fe4f09acff84cd97"/><file name="OrderProduct.php" hash="1d33e879db0bb8557704ed3b66fb584d"/><file name="Product.php" hash="222db5151109eb9e6741cc1fe0d1ba7f"/><file name="Recommender.php" hash="12532b4efd6fdec560522a2ecf029ed9"/><file name="Recsins.php" hash="6a324de328fce850a5f3955e33fb3ec0"/><file name="Recsins_1.php" hash="310a9b224478749d35c5b59689ce1a07"/><file name="Status.php" hash="e3f1a39141d7a4aaa99252937f60ca8d"/><file name="User.php" hash="3244421d7331e5167e910f6fc3827361"/><file name=".DS_Store" hash="1f13e526a6f8ed14ac43ebd700cb6f60"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="RecsinsController.php" hash="d26b0053425cca1a56d3111194c64491"/><file name=".DS_Store" hash="eb69d7bfb18ebe8966b63ac54b04d1c0"/></dir><file name="IndexController.php" hash="2c9f228ed4e43c347235ed327365a219"/><file name=".DS_Store" hash="b415ad11c2cfebb78e16adb17ca06bff"/></dir><dir name="etc"><file name="api.xml" hash="c82c8df487ba808a8851ea9f1a8fe197"/><file name="config.xml" hash="f15a7b54816aa5df784863d49789e530"/><file name="widget.xml" hash="c4f1829fa161f1119d817b64878f3b2f"/><file name=".DS_Store" hash="05e296fc2705958a70855fe260ceb9e5"/></dir><dir name="sql"><dir name="recsins_setup"><file name="mysql4-install-1.4.0.php" hash="33ae9091e3066779c13e738beae3650c"/><file name="mysql4-upgrade-1.4.0-1.4.1.php" hash="b636f16be2575bff013c14c012b34625"/><file name="mysql4-upgrade-1.4.1-1.4.2.php" hash="e73c5189c851c1ddb94d8ce8acd6f1a6"/><file name="mysql4-upgrade-1.4.2-1.4.3.php" hash="2297a4e5670b28a24c1fcd3d5d47aca6"/><file name="mysql4-upgrade-1.4.3-1.4.4.php" hash="6c76f6d7ffe9da72ebabd44779d13bde"/><file name="mysql4-upgrade-1.4.4-1.4.5.php" hash="1b932c2afb4543c6e067a7b769d48eb8"/><file name="mysql4-upgrade-1.4.5-1.4.6.php" hash="a851ccc0fa73440b74828c0b2ee993d9"/><file name="mysql4-upgrade-1.4.6-1.4.7.php" hash="923d491257ad9836738c1586d494e12c"/><file name="mysql4-upgrade-1.4.7-1.4.8.php" hash="a2c96553909227f5f5bd7a685691c0ac"/><file name="mysql4-upgrade-1.4.8-1.4.9.php" hash="86b6da79f302790ecb6a072c4ef68fb0"/><file name="mysql4-upgrade-1.4.9-1.5.0.php" hash="b10dd9d0dc951f3b783da743558af5ca"/><file name="mysql4-upgrade-1.5.0-1.5.1.php" hash="7f86ed73d2d35dd2989528046772fa8b"/><file name="mysql4-upgrade-1.5.1-1.5.2.php" hash="da8251355aa4811a099e5b22c9debca3"/><file name="mysql4-upgrade-1.5.2-1.5.3.php" hash="5ad2385bec084bc29a0673ed2a97231c"/><file name="mysql4-upgrade-1.5.3-1.5.4.php" hash="bda831da9d0a842c16092e1900d17087"/><file name="mysql4-upgrade-1.5.4-1.5.5.php" hash="b04a5a6ea7a5ec0df04a42953bb97729"/><file name=".DS_Store" hash="70fb1641ce88fc5fdb410744cb098089"/></dir><file name=".DS_Store" hash="fd4b270e5bdf8c2dbe56c9a98d4e6548"/></dir><file name="COPYING.txt" hash="4fe869ee987a340198fb0d54c55c47f1"/><file name=".DS_Store" hash="5fbb75ac088ce79fe0044c4951680ae6"/></dir><file name=".DS_Store" hash="6404be841b797bdacec75c7f7bb4a79c"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="recsins.xml" hash="c2608f0c7f9f6efcbeb74bd5b1427206"/></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="recsins"><file name="cart.phtml" hash="04ee1833a0177a83644e4d1f3211c789"/><file name="category.phtml" hash="1979377cb8f06740a6b44a922e46dacd"/><file name="product.phtml" hash="3a623d6b48cceae14912b4daf5113ca2"/><file name="recsins.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name=".DS_Store" hash="f0948e76df06a209a9b7f51ff398fd60"/></dir></dir><dir name="layout"><file name="recsins.xml" hash="9185dc1897ec93c400edd2cd95b6533d"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Brainsins_Recsins.xml" hash="54e1c94137477548911c4ebce7eb97fe"/></dir></target><target name="magelocale"><dir name="es_ES"><file name="Brainsins_Recsins.csv" hash="7f731ae9e9faa8b003a63722ef3ce18a"/></dir><dir name="en_US"><file name="Brainsins_Recsins.csv" hash="6381582be5edc31cba54a052bb48b86d"/></dir></target></contents>
27
  <compatible/>
28
  <dependencies/>
29
  </package>