YOOCHOOSE_Recommender_Engine - Version 1.2.3

Version Notes

Adjusted Registration URL

Download this release

Release Info

Developer Magento Core Team
Extension YOOCHOOSE_Recommender_Engine
Version 1.2.3
Comparing to
See all releases


Code changes from version 1.2.0 to 1.2.3

app/code/community/AvS/Yoochoose/Block/Recommendation.php CHANGED
@@ -14,7 +14,7 @@ class AvS_Yoochoose_Block_Recommendation extends Mage_Catalog_Block_Product_List
14
 
15
  protected $_maxItems = 0;
16
 
17
- protected $_scenario = AvS_Yoochoose_Model_Api_Recommendation::SCENARIO_TOP_SELLING;
18
 
19
  /**
20
  * Request Recommendations from Yoochoose Api and transform them to an array
14
 
15
  protected $_maxItems = 0;
16
 
17
+ protected $_scenario = AvS_Yoochoose_Model_Api_Recommendation::SCENARIO_UP_SELLING;
18
 
19
  /**
20
  * Request Recommendations from Yoochoose Api and transform them to an array
app/code/community/AvS/Yoochoose/Model/Api/Recommendation.php CHANGED
@@ -8,9 +8,9 @@
8
 
9
  class AvS_Yoochoose_Model_Api_Recommendation extends AvS_Yoochoose_Model_Api
10
  {
11
- const SCENARIO_ALSO_CLICKED = 'also_clicked';
12
- const SCENARIO_ALSO_PURCHASED = 'also_purchased';
13
- const SCENARIO_TOP_SELLING = 'top_selling';
14
 
15
  protected $_recommendedProductIds = array();
16
  protected $_numberProducts = 10;
@@ -162,4 +162,4 @@ class AvS_Yoochoose_Model_Api_Recommendation extends AvS_Yoochoose_Model_Api
162
 
163
  return $itemArray;
164
  }
165
- }
8
 
9
  class AvS_Yoochoose_Model_Api_Recommendation extends AvS_Yoochoose_Model_Api
10
  {
11
+ const SCENARIO_CROSS_SELLING = 'cross_selling';
12
+ const SCENARIO_RELATED_PRODUCTS = 'related_products';
13
+ const SCENARIO_UP_SELLING = 'up_selling';
14
 
15
  protected $_recommendedProductIds = array();
16
  protected $_numberProducts = 10;
162
 
163
  return $itemArray;
164
  }
165
+ }
app/code/community/AvS/Yoochoose/Model/Observer.php CHANGED
@@ -8,8 +8,8 @@
8
 
9
  class AvS_Yoochoose_Model_Observer
10
  {
11
- const YOOCHOOSE_LICENSE_URL = 'https://config.yoochoose.net/ebl/%customer_id%/license.json';
12
- const YOOCHOOSE_SUMMARY_URL = 'https://config.yoochoose.net/rest/%customer_id%/counter/summary.json';
13
 
14
  /**
15
  * Update field "yoochoose_user_id" from session to
@@ -130,6 +130,7 @@ class AvS_Yoochoose_Model_Observer
130
  */
131
  protected function _generateStatsHtml($stats)
132
  {
 
133
  $statsHtml = '<table>';
134
  $statsLines = array();
135
  $baseSorting = 6;
@@ -150,27 +151,27 @@ class AvS_Yoochoose_Model_Observer
150
  $sorting = 1;
151
  break;
152
 
153
- case 'RECO_also_purchased':
154
 
155
- $label = Mage::helper('yoochoose')->__('"Also purchased" recommendations');
156
  $sorting = 3;
157
  break;
158
 
159
- case 'RECO_also_clicked':
160
 
161
- $label = Mage::helper('yoochoose')->__('"Also clicked" recommendations');
162
  $sorting = 4;
163
  break;
164
 
165
- case 'RECO_top_selling':
166
 
167
- $label = Mage::helper('yoochoose')->__('"Top selling" recommendations');
168
  $sorting = 5;
169
  break;
170
 
171
- case 'DELIVERED_RECOS_also_purchased':
172
- case 'DELIVERED_RECOS_also_clicked':
173
- case 'DELIVERED_RECOS_top_selling':
174
 
175
  continue;
176
 
@@ -192,7 +193,8 @@ class AvS_Yoochoose_Model_Observer
192
 
193
  $statsHtml .= '</table>';
194
 
195
- return $statsHtml;
 
196
  }
197
 
198
  protected function _setConfigData($configPath, $value)
@@ -203,4 +205,4 @@ class AvS_Yoochoose_Model_Observer
203
  $setup->endSetup();
204
  Mage::getSingleton('core/config')->reinit();
205
  }
206
- }
8
 
9
  class AvS_Yoochoose_Model_Observer
10
  {
11
+ const YOOCHOOSE_LICENSE_URL = 'https://admin.yoochoose.net/ebl/%customer_id%/license.json';
12
+ const YOOCHOOSE_SUMMARY_URL = 'https://admin.yoochoose.net/rest/%customer_id%/counter/summary.json';
13
 
14
  /**
15
  * Update field "yoochoose_user_id" from session to
130
  */
131
  protected function _generateStatsHtml($stats)
132
  {
133
+
134
  $statsHtml = '<table>';
135
  $statsLines = array();
136
  $baseSorting = 6;
151
  $sorting = 1;
152
  break;
153
 
154
+ case 'RECO_related_products':
155
 
156
+ $label = Mage::helper('yoochoose')->__('"Related products" recommendations');
157
  $sorting = 3;
158
  break;
159
 
160
+ case 'RECO_cross_selling':
161
 
162
+ $label = Mage::helper('yoochoose')->__('"Cross selling" recommendations');
163
  $sorting = 4;
164
  break;
165
 
166
+ case 'RECO_up_selling':
167
 
168
+ $label = Mage::helper('yoochoose')->__('"Up selling" recommendations');
169
  $sorting = 5;
170
  break;
171
 
172
+ case 'DELIVERED_RECOS_related_products':
173
+ case 'DELIVERED_RECOS_cross_selling':
174
+ case 'DELIVERED_RECOS_up_selling':
175
 
176
  continue;
177
 
193
 
194
  $statsHtml .= '</table>';
195
 
196
+ return $statsHtml;
197
+
198
  }
199
 
200
  protected function _setConfigData($configPath, $value)
205
  $setup->endSetup();
206
  Mage::getSingleton('core/config')->reinit();
207
  }
208
+ }
app/code/community/AvS/Yoochoose/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
 
4
  <modules>
5
  <AvS_Yoochoose>
6
- <version>1.1.0</version>
7
  </AvS_Yoochoose>
8
  </modules>
9
 
@@ -147,22 +147,22 @@
147
  <disabled>0</disabled>
148
  </general>
149
  <crossselling>
150
- <display_yoochoose_recommendations>0</display_yoochoose_recommendations>
151
- <scenario>also_purchased</scenario>
152
- <prefer_manual_connections>1</prefer_manual_connections>
153
- <max_count>4</max_count>
154
  </crossselling>
155
  <upselling>
156
- <display_yoochoose_recommendations>0</display_yoochoose_recommendations>
157
- <scenario>also_clicked</scenario>
158
- <prefer_manual_connections>1</prefer_manual_connections>
159
- <max_count>4</max_count>
160
  </upselling>
161
  <related>
162
- <display_yoochoose_recommendations>0</display_yoochoose_recommendations>
163
- <scenario>top_selling</scenario>
164
- <prefer_manual_connections>1</prefer_manual_connections>
165
- <max_count>4</max_count>
166
  </related>
167
  </yoochoose>
168
  </default>
@@ -178,11 +178,11 @@
178
  </modules>
179
  </translate>
180
 
181
- <jobs>
182
  <yoochoose_update_stats>
183
  <schedule><cron_expr>0 * * * *</cron_expr></schedule>
184
  <run><model>yoochoose/observer::updateStats</model></run>
185
  </yoochoose_update_stats>
186
- </jobs>
187
  </crontab>
188
  </config>
3
 
4
  <modules>
5
  <AvS_Yoochoose>
6
+ <version>1.2.3</version>
7
  </AvS_Yoochoose>
8
  </modules>
9
 
147
  <disabled>0</disabled>
148
  </general>
149
  <crossselling>
150
+ <display_yoochoose_recommendations>1</display_yoochoose_recommendations>
151
+ <scenario>cross_selling</scenario>
152
+ <prefer_manual_connections>0</prefer_manual_connections>
153
+ <max_count>3</max_count>
154
  </crossselling>
155
  <upselling>
156
+ <display_yoochoose_recommendations>1</display_yoochoose_recommendations>
157
+ <scenario>up_selling</scenario>
158
+ <prefer_manual_connections>0</prefer_manual_connections>
159
+ <max_count>3</max_count>
160
  </upselling>
161
  <related>
162
+ <display_yoochoose_recommendations>1</display_yoochoose_recommendations>
163
+ <scenario>related_products</scenario>
164
+ <prefer_manual_connections>0</prefer_manual_connections>
165
+ <max_count>3</max_count>
166
  </related>
167
  </yoochoose>
168
  </default>
178
  </modules>
179
  </translate>
180
 
181
+ <!--jobs>
182
  <yoochoose_update_stats>
183
  <schedule><cron_expr>0 * * * *</cron_expr></schedule>
184
  <run><model>yoochoose/observer::updateStats</model></run>
185
  </yoochoose_update_stats>
186
+ </jobs-->
187
  </crontab>
188
  </config>
app/code/community/AvS/Yoochoose/etc/system.xml CHANGED
@@ -16,11 +16,11 @@
16
  <show_in_website>1</show_in_website>
17
  <show_in_store>1</show_in_store>
18
  <comment><![CDATA[
19
- <script type="text/javascript">
20
  document.observe("dom:loaded", function() {
21
  $('yoochoose_general_stats').replace($('yoochoose_general_stats').value);
22
  });
23
- </script>
24
  ]]></comment>
25
  <fields>
26
  <disabled translate="label">
@@ -32,14 +32,13 @@
32
  <show_in_website>1</show_in_website>
33
  <show_in_store>1</show_in_store>
34
  </disabled>
35
- <stats translate="label">
36
  <label>Statistics</label>
37
- <frontend_type>textarea</frontend_type>
38
  <sort_order>20</sort_order>
39
  <show_in_default>1</show_in_default>
40
  <show_in_website>1</show_in_website>
41
  <show_in_store>1</show_in_store>
42
- </stats>
43
  </fields>
44
  </general>
45
  <api translate="label">
@@ -57,8 +56,8 @@
57
  ]]></comment>
58
  <fields>
59
  <client_id translate="label,comment">
60
- <label>Yoochoose Client ID</label>
61
- <comment><![CDATA[If you don't have a Client ID yet, <a href="http://config.yoochoose.net" target="_blank">click here</a>.]]></comment>
62
  <frontend_type>text</frontend_type>
63
  <sort_order>10</sort_order>
64
  <show_in_default>1</show_in_default>
@@ -67,6 +66,7 @@
67
  </client_id>
68
  <license_key translate="label">
69
  <label>Yoochoose License Key</label>
 
70
  <frontend_type>text</frontend_type>
71
  <sort_order>20</sort_order>
72
  <show_in_default>1</show_in_default>
@@ -108,24 +108,24 @@
108
  <show_in_website>1</show_in_website>
109
  <show_in_store>1</show_in_store>
110
  </scenario>
111
- <prefer_manual_connections translate="label,comment">
112
- <label>Prefer manually entered Connections</label>
113
- <frontend_type>select</frontend_type>
114
- <source_model>adminhtml/system_config_source_yesno</source_model>
115
  <sort_order>20</sort_order>
116
  <show_in_default>1</show_in_default>
117
  <show_in_website>1</show_in_website>
118
  <show_in_store>1</show_in_store>
119
- <comment>Don't display otherwise</comment>
120
- </prefer_manual_connections>
121
- <max_count translate="label">
122
- <label>Max count of recommendations</label>
123
- <frontend_type>text</frontend_type>
124
  <sort_order>30</sort_order>
125
  <show_in_default>1</show_in_default>
126
  <show_in_website>1</show_in_website>
127
  <show_in_store>1</show_in_store>
128
- </max_count>
 
129
  </fields>
130
  </crossselling>
131
  <upselling translate="label">
@@ -152,24 +152,24 @@
152
  <show_in_website>1</show_in_website>
153
  <show_in_store>1</show_in_store>
154
  </scenario>
155
- <prefer_manual_connections translate="label,comment">
156
- <label>Prefer manually entered Connections</label>
157
- <frontend_type>select</frontend_type>
158
- <source_model>adminhtml/system_config_source_yesno</source_model>
159
  <sort_order>20</sort_order>
160
  <show_in_default>1</show_in_default>
161
  <show_in_website>1</show_in_website>
162
  <show_in_store>1</show_in_store>
163
- <comment>Don't display otherwise</comment>
164
- </prefer_manual_connections>
165
- <max_count translate="label">
166
- <label>Max count of recommendations</label>
167
- <frontend_type>text</frontend_type>
168
  <sort_order>30</sort_order>
169
  <show_in_default>1</show_in_default>
170
  <show_in_website>1</show_in_website>
171
  <show_in_store>1</show_in_store>
172
- </max_count>
 
173
  </fields>
174
  </upselling>
175
  <related translate="label">
@@ -196,24 +196,24 @@
196
  <show_in_website>1</show_in_website>
197
  <show_in_store>1</show_in_store>
198
  </scenario>
199
- <prefer_manual_connections translate="label,comment">
200
- <label>Prefer manually entered Connections</label>
201
- <frontend_type>select</frontend_type>
202
- <source_model>adminhtml/system_config_source_yesno</source_model>
203
  <sort_order>20</sort_order>
204
  <show_in_default>1</show_in_default>
205
  <show_in_website>1</show_in_website>
206
  <show_in_store>1</show_in_store>
207
- <comment>Don't display otherwise</comment>
208
- </prefer_manual_connections>
209
- <max_count translate="label">
210
- <label>Max count of recommendations</label>
211
- <frontend_type>text</frontend_type>
212
  <sort_order>30</sort_order>
213
  <show_in_default>1</show_in_default>
214
  <show_in_website>1</show_in_website>
215
  <show_in_store>1</show_in_store>
216
- </max_count>
 
217
  </fields>
218
  </related>
219
  </groups>
16
  <show_in_website>1</show_in_website>
17
  <show_in_store>1</show_in_store>
18
  <comment><![CDATA[
19
+ <!--script type="text/javascript">
20
  document.observe("dom:loaded", function() {
21
  $('yoochoose_general_stats').replace($('yoochoose_general_stats').value);
22
  });
23
+ </script-->
24
  ]]></comment>
25
  <fields>
26
  <disabled translate="label">
32
  <show_in_website>1</show_in_website>
33
  <show_in_store>1</show_in_store>
34
  </disabled>
35
+ <!--stats translate="label">
36
  <label>Statistics</label>
 
37
  <sort_order>20</sort_order>
38
  <show_in_default>1</show_in_default>
39
  <show_in_website>1</show_in_website>
40
  <show_in_store>1</show_in_store>
41
+ </stats-->
42
  </fields>
43
  </general>
44
  <api translate="label">
56
  ]]></comment>
57
  <fields>
58
  <client_id translate="label,comment">
59
+ <label>Yoochoose Customer ID</label>
60
+ <comment><![CDATA[If you don't have a Customer ID yet, <a href="https://admin.yoochoose.net/registration_step_1.html?template=magento&solution=ebl" target="_blank">click here</a>.]]></comment>
61
  <frontend_type>text</frontend_type>
62
  <sort_order>10</sort_order>
63
  <show_in_default>1</show_in_default>
66
  </client_id>
67
  <license_key translate="label">
68
  <label>Yoochoose License Key</label>
69
+ <comment><![CDATA[You can find your license key and detailed statistics on the <a href="https://admin.yoochoose.net">YOOCHOOSE Administration Portal</a>]]></comment>
70
  <frontend_type>text</frontend_type>
71
  <sort_order>20</sort_order>
72
  <show_in_default>1</show_in_default>
108
  <show_in_website>1</show_in_website>
109
  <show_in_store>1</show_in_store>
110
  </scenario>
111
+ <max_count translate="label">
112
+ <label>Max count of recommendations</label>
113
+ <frontend_type>text</frontend_type>
 
114
  <sort_order>20</sort_order>
115
  <show_in_default>1</show_in_default>
116
  <show_in_website>1</show_in_website>
117
  <show_in_store>1</show_in_store>
118
+ </max_count>
119
+ <prefer_manual_connections translate="label,comment">
120
+ <label>Prefer manually entered similar items</label>
121
+ <frontend_type>select</frontend_type>
122
+ <source_model>adminhtml/system_config_source_yesno</source_model>
123
  <sort_order>30</sort_order>
124
  <show_in_default>1</show_in_default>
125
  <show_in_website>1</show_in_website>
126
  <show_in_store>1</show_in_store>
127
+ <comment>If set to 'Yes', similar items must be defined manually and the recommendation service is not used</comment>
128
+ </prefer_manual_connections>
129
  </fields>
130
  </crossselling>
131
  <upselling translate="label">
152
  <show_in_website>1</show_in_website>
153
  <show_in_store>1</show_in_store>
154
  </scenario>
155
+ <max_count translate="label">
156
+ <label>Max count of recommendations</label>
157
+ <frontend_type>text</frontend_type>
 
158
  <sort_order>20</sort_order>
159
  <show_in_default>1</show_in_default>
160
  <show_in_website>1</show_in_website>
161
  <show_in_store>1</show_in_store>
162
+ </max_count>
163
+ <prefer_manual_connections translate="label,comment">
164
+ <label>Prefer manually entered similar items</label>
165
+ <frontend_type>select</frontend_type>
166
+ <source_model>adminhtml/system_config_source_yesno</source_model>
167
  <sort_order>30</sort_order>
168
  <show_in_default>1</show_in_default>
169
  <show_in_website>1</show_in_website>
170
  <show_in_store>1</show_in_store>
171
+ <comment>If set to 'Yes', similar items must be defined manually and the recommendation service is not used</comment>
172
+ </prefer_manual_connections>
173
  </fields>
174
  </upselling>
175
  <related translate="label">
196
  <show_in_website>1</show_in_website>
197
  <show_in_store>1</show_in_store>
198
  </scenario>
199
+ <max_count translate="label">
200
+ <label>Max count of recommendations</label>
201
+ <frontend_type>text</frontend_type>
 
202
  <sort_order>20</sort_order>
203
  <show_in_default>1</show_in_default>
204
  <show_in_website>1</show_in_website>
205
  <show_in_store>1</show_in_store>
206
+ </max_count>
207
+ <prefer_manual_connections translate="label,comment">
208
+ <label>Prefer manually entered similar items</label>
209
+ <frontend_type>select</frontend_type>
210
+ <source_model>adminhtml/system_config_source_yesno</source_model>
211
  <sort_order>30</sort_order>
212
  <show_in_default>1</show_in_default>
213
  <show_in_website>1</show_in_website>
214
  <show_in_store>1</show_in_store>
215
+ <comment>If set to 'Yes', similar items must be defined manually and the recommendation service is not used</comment>
216
+ </prefer_manual_connections>
217
  </fields>
218
  </related>
219
  </groups>
app/locale/de_DE/AvS_Yoochoose.csv CHANGED
@@ -2,15 +2,15 @@
2
  "General Settings","Allgemeine Einstellungen"
3
  "Disabled","Deaktiviert"
4
  "API Settings","API-Benutzerdaten"
5
- "Yoochoose Client ID","Yoochoose Kundennummer"
6
- "If you don't have a Client ID yet, <a href=""http://config.yoochoose.net"" target=""_blank"">click here</a>.","Wenn Sie noch keine Kundennummer haben, <a href=""http://config.yoochoose.net"" target=""_blank"">klicken Sie hier</a>."
7
  "Yoochoose License Key","Yoochoose Lizenzschlüssel"
8
  "Yoochoose License Type","Yoochoose Lizenztyp"
9
  "Will be filled automatically after saving with correct license data","Wird nach dem Speichern mit korrekten Lizenz-Informationen automatisch befüllt."
10
  "License successfully verified.","Ihre Lizenz wurde bestätigt."
11
  "License could not be verified.","Ihre Lizenz konnte nicht bestätigt werden."
12
  "Events","Events"
13
- "Display Tracking Pixel with help of Javascript","Javascript benutzen, um Trackingpixel darzustellen"
14
  "Yoochoose Base URL","Yoochoose Basis-URL"
15
  "Tracking Pixel will be rendered after the rest of the page; recommended for performance reasons","Tracking-Pixel wird erst nach dem Rest der Seite erstellt; aus Performance-Gründen empfohlen."
16
  "Cross Selling","Cross-Selling"
@@ -20,9 +20,9 @@
20
  "Display Yoochoose Recommendations in Upselling Block","Yoochoose-Empfehlungen im Up-Selling-Block anzeigen"
21
  "Display Yoochoose Recommendations in Related Products Block","Yoochoose-Empfehlungen im Ähnliche-Produkte-Block anzeigen"
22
  "Scenario used","Verwendetes Szenario"
23
- "Prefer manually entered Connections","Manuell angelegte Verknüpfungen bevorzugt darstellen"
24
  "Don't display otherwise","Andernfalls nicht darstellen"
25
- "Max count of recommendations","Maximale Anzahl Verknüpfungen"
26
  "Registered Clicks","Registrierte Klicks"
27
  "Registered Buys","Registrierte Käufe"
28
  """Also purchased"" recommendations","Anzahl der Abrufe von Empfehlungen ""Kunden kauften auch …"""
@@ -33,4 +33,4 @@
33
  "Item Type %s unknown.","Item Type %s unbekannt."
34
  "Yoochoose Tracking","Yoochoose Tracking"
35
 
36
- "Yoochoose User Id","Yoochoose Kunden-ID"
2
  "General Settings","Allgemeine Einstellungen"
3
  "Disabled","Deaktiviert"
4
  "API Settings","API-Benutzerdaten"
5
+ "Yoochoose Customer ID","Yoochoose Kundennummer"
6
+ "If you don't have a Customer ID yet, <a href=""https://config.yoochoose.net/registration/registration.jsp?role=magento&lang=en"" target=""_blank"">click here</a>.","Wenn Sie noch keine Kundennummer haben, <a href=""https://config.yoochoose.net/registration/registration.jsp?role=magento&lang=en"" target=""_blank"">klicken Sie hier</a>."
7
  "Yoochoose License Key","Yoochoose Lizenzschlüssel"
8
  "Yoochoose License Type","Yoochoose Lizenztyp"
9
  "Will be filled automatically after saving with correct license data","Wird nach dem Speichern mit korrekten Lizenz-Informationen automatisch befüllt."
10
  "License successfully verified.","Ihre Lizenz wurde bestätigt."
11
  "License could not be verified.","Ihre Lizenz konnte nicht bestätigt werden."
12
  "Events","Events"
13
+ "Display Tracking Pixel with the help of Javascript","Javascript benutzen, um Trackingpixel darzustellen"
14
  "Yoochoose Base URL","Yoochoose Basis-URL"
15
  "Tracking Pixel will be rendered after the rest of the page; recommended for performance reasons","Tracking-Pixel wird erst nach dem Rest der Seite erstellt; aus Performance-Gründen empfohlen."
16
  "Cross Selling","Cross-Selling"
20
  "Display Yoochoose Recommendations in Upselling Block","Yoochoose-Empfehlungen im Up-Selling-Block anzeigen"
21
  "Display Yoochoose Recommendations in Related Products Block","Yoochoose-Empfehlungen im Ähnliche-Produkte-Block anzeigen"
22
  "Scenario used","Verwendetes Szenario"
23
+ "Prefer manually entered similar items","Manuell angelegte ähnliche Items bevorzugt darstellen"
24
  "Don't display otherwise","Andernfalls nicht darstellen"
25
+ "Max count of recommendations","Maximale Anzahl von Empfehlungen"
26
  "Registered Clicks","Registrierte Klicks"
27
  "Registered Buys","Registrierte Käufe"
28
  """Also purchased"" recommendations","Anzahl der Abrufe von Empfehlungen ""Kunden kauften auch …"""
33
  "Item Type %s unknown.","Item Type %s unbekannt."
34
  "Yoochoose Tracking","Yoochoose Tracking"
35
 
36
+ "Yoochoose User iID","Yoochoose Kunden-ID"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>YOOCHOOSE_Recommender_Engine</name>
4
- <version>1.2.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -60,11 +60,11 @@ Wir legen hohen Wert auf die Einhaltung der Datenschutzverordnungen und Gesetze.
60
  Sollten Sie Ihren Firmensitz au&#xDF;erhalb der EU haben, dann profitieren Sie ebenfalls automatisch von unseren hohen Sicherheitsstandards. So wird stets die Privatsph&#xE4;re Ihrer Kunden gewahrt.&#xD;
61
  Nutzen Sie unsere kostenlose Testphase! Wir bieten Ihnen den Empfehlungsdienst ohne Bereitstellungsgeb&#xFC;hr kostenlos f&#xFC;r 30-Tage* an.&#xD;
62
  *Eingeschr&#xE4;nkte Test Version &#x2013; Beschr&#xE4;nkung des Produktumfangs und der Empfehlungsabrufe. Bei Fragen stehen wir Ihnen gerne telefonisch unter der Rufnummer 0221/16800762 sowie unter info@yoochoose.com zur Verf&#xFC;gung.</description>
63
- <notes>Added compatibility for Magento 1.3.x</notes>
64
  <authors><author><name>Andreas von Studnitz</name><user>auto-converted</user><email>avs@avs-webentwicklung.de</email></author></authors>
65
- <date>2011-04-21</date>
66
- <time>13:34:16</time>
67
- <contents><target name="mageetc"><dir name="modules"><file name="AvS_Yoochoose.xml" hash="695d97ac588c41c8478b74cf27e24f56"/></dir></target><target name="magecommunity"><dir name="AvS"><dir name="Yoochoose"><dir name="Block"><file name="Crosssell.php" hash="19f6e22fb73a78ba7be2ed3986370943"/><file name="Recommendation.php" hash="476f5590d2613509f6fd3c3781801c57"/><file name="Related.php" hash="84d84555b6fa7ee79f56d75df752d00d"/><file name="Tracking.php" hash="0cee2eac736623c8d7ffdb400c126084"/><file name="Upsell.php" hash="d8f2b4597c96d54e7567e09223841a5b"/></dir><dir name="Helper"><file name="Data.php" hash="88e28453703452bb2b3a1c7fb0822915"/></dir><dir name="Model"><dir name="Api"><dir name="Recommendation"><file name="Crossselling.php" hash="a975b28acc8fb6fe5ef9bdae1ede7c09"/><file name="Related.php" hash="343feb6af7e8cdc2030819437b2c195d"/><file name="Upselling.php" hash="032a35a019762174ef1e1ea569ee61cb"/></dir><file name="Event.php" hash="e8a3294c4ee5cb7eec68d90621cf4774"/><file name="Recommendation.php" hash="840d90c0706a27718549c223c5a480c4"/></dir><file name="Api.php" hash="2ffa2e06e9b745b6759c4f3d0fce6853"/><file name="Observer.php" hash="7eb160372a4b2083c47c0a02b9f9d5e2"/></dir><dir name="etc"><file name="config.xml" hash="fdef729426792a59c9d856a8af221aa3"/><file name="system.xml" hash="b0c065dd22b27fa2034462bc8076b75e"/></dir><dir name="sql"><dir name="yoochoose_setup"><file name="mysql4-install-0.1.0.php" hash="d5c03520d481885434e75819007701a0"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="yoochoose"><file name="crosssell.phtml" hash="ed022f89202e2f41536a4f71bc3c491f"/><file name="recommendation.phtml" hash="8f6024432a96168f276670135fbe371d"/><file name="related.phtml" hash="04ea700df2c84cc4ea2cc12df5fec95b"/><file name="tracking.phtml" hash="b981947607bfcb8d0cf15eaec70cb380"/><file name="upsell.phtml" hash="5b39cafe647f645c080420b50299c5ba"/></dir></dir><dir name="layout"><file name="yoochoose.xml" hash="56b7ed57066f29e412e75cf55d3a0d21"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="AvS_Yoochoose.csv" hash="33c25b1743602613c850a9e50642ab15"/></dir></target></contents>
68
  <compatible/>
69
  <dependencies/>
70
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>YOOCHOOSE_Recommender_Engine</name>
4
+ <version>1.2.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
60
  Sollten Sie Ihren Firmensitz au&#xDF;erhalb der EU haben, dann profitieren Sie ebenfalls automatisch von unseren hohen Sicherheitsstandards. So wird stets die Privatsph&#xE4;re Ihrer Kunden gewahrt.&#xD;
61
  Nutzen Sie unsere kostenlose Testphase! Wir bieten Ihnen den Empfehlungsdienst ohne Bereitstellungsgeb&#xFC;hr kostenlos f&#xFC;r 30-Tage* an.&#xD;
62
  *Eingeschr&#xE4;nkte Test Version &#x2013; Beschr&#xE4;nkung des Produktumfangs und der Empfehlungsabrufe. Bei Fragen stehen wir Ihnen gerne telefonisch unter der Rufnummer 0221/16800762 sowie unter info@yoochoose.com zur Verf&#xFC;gung.</description>
63
+ <notes>Adjusted Registration URL</notes>
64
  <authors><author><name>Andreas von Studnitz</name><user>auto-converted</user><email>avs@avs-webentwicklung.de</email></author></authors>
65
+ <date>2011-05-18</date>
66
+ <time>13:36:20</time>
67
+ <contents><target name="mageetc"><dir name="modules"><file name="AvS_Yoochoose.xml" hash="695d97ac588c41c8478b74cf27e24f56"/></dir></target><target name="magecommunity"><dir name="AvS"><dir name="Yoochoose"><dir name="Block"><file name="Crosssell.php" hash="19f6e22fb73a78ba7be2ed3986370943"/><file name="Recommendation.php" hash="476f5590d2613509f6fd3c3781801c57"/><file name="Related.php" hash="84d84555b6fa7ee79f56d75df752d00d"/><file name="Tracking.php" hash="0cee2eac736623c8d7ffdb400c126084"/><file name="Upsell.php" hash="d8f2b4597c96d54e7567e09223841a5b"/></dir><dir name="Helper"><file name="Data.php" hash="88e28453703452bb2b3a1c7fb0822915"/></dir><dir name="Model"><dir name="Api"><dir name="Recommendation"><file name="Crossselling.php" hash="a975b28acc8fb6fe5ef9bdae1ede7c09"/><file name="Related.php" hash="343feb6af7e8cdc2030819437b2c195d"/><file name="Upselling.php" hash="032a35a019762174ef1e1ea569ee61cb"/></dir><file name="Event.php" hash="e8a3294c4ee5cb7eec68d90621cf4774"/><file name="Recommendation.php" hash="840d90c0706a27718549c223c5a480c4"/></dir><file name="Api.php" hash="2ffa2e06e9b745b6759c4f3d0fce6853"/><file name="Observer.php" hash="7eb160372a4b2083c47c0a02b9f9d5e2"/></dir><dir name="etc"><file name="config.xml" hash="c90f22076ca8d4ac831520376d951438"/><file name="system.xml" hash="3c2ffaccdaa8d561d3dbda49e5cffbc0"/></dir><dir name="sql"><dir name="yoochoose_setup"><file name="mysql4-install-0.1.0.php" hash="d5c03520d481885434e75819007701a0"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="yoochoose"><file name="crosssell.phtml" hash="ed022f89202e2f41536a4f71bc3c491f"/><file name="recommendation.phtml" hash="8f6024432a96168f276670135fbe371d"/><file name="related.phtml" hash="04ea700df2c84cc4ea2cc12df5fec95b"/><file name="tracking.phtml" hash="b981947607bfcb8d0cf15eaec70cb380"/><file name="upsell.phtml" hash="5b39cafe647f645c080420b50299c5ba"/></dir></dir><dir name="layout"><file name="yoochoose.xml" hash="56b7ed57066f29e412e75cf55d3a0d21"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="AvS_Yoochoose.csv" hash="1e5b71973b4aac4231c4cd5b93b88d1d"/></dir></target></contents>
68
  <compatible/>
69
  <dependencies/>
70
  </package>