Cue - Version 3.0.17

Version Notes

- fixes for internet explorer
- stability improvements

Download this release

Release Info

Developer Cue Connect
Extension Cue
Version 3.0.17
Comparing to
See all releases


Code changes from version 3.0.16 to 3.0.17

app/code/community/CueConnect/Cue/Block/Adminhtml/System/Config/.DS_Store ADDED
Binary file
app/code/community/CueConnect/Cue/Block/Adminhtml/System/Config/._.DS_Store ADDED
Binary file
app/code/community/CueConnect/Cue/Model/Observer.php CHANGED
@@ -261,7 +261,6 @@ class CueConnect_Cue_Model_Observer
261
  'sku' => (string)$product->getSku(),
262
  'name' => $product->getName(),
263
  'description' => (string)$product->getDescription(),
264
- 'comment' => (string)$description,
265
  'brand' => (string)$product->getAttributeText('manufacturer'),
266
  'upc' => uniqid(),
267
  'sms_name' => $product->getName(),
261
  'sku' => (string)$product->getSku(),
262
  'name' => $product->getName(),
263
  'description' => (string)$product->getDescription(),
 
264
  'brand' => (string)$product->getAttributeText('manufacturer'),
265
  'upc' => uniqid(),
266
  'sms_name' => $product->getName(),
app/code/community/CueConnect/Cue/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <CueConnect_Cue>
5
- <version>3.0.16</version>
6
  </CueConnect_Cue>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <CueConnect_Cue>
5
+ <version>3.0.17</version>
6
  </CueConnect_Cue>
7
  </modules>
8
  <global>
app/design/frontend/base/default/template/cueconnect/customer/form/forgotpassword.phtml CHANGED
@@ -28,7 +28,7 @@
28
  <h1><?php echo $this->__('Forgot Your Password?') ?></h1>
29
  </div>
30
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
31
- <form action="<?php echo $this->getUrl('*/*/forgotpasswordpost') ?>" method="post" id="form-validate">
32
  <div class="fieldset">
33
  <h2 class="legend"><?php echo $this->__('Retrieve your password here') ?></h2>
34
  <p><?php echo $this->__('Please enter your email address below. You will receive a link to reset your password.') ?></p>
28
  <h1><?php echo $this->__('Forgot Your Password?') ?></h1>
29
  </div>
30
  <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
31
+ <form action="<?php echo $this->getUrl('customer/account/forgotpasswordpost') ?>" method="post" id="form-validate">
32
  <div class="fieldset">
33
  <h2 class="legend"><?php echo $this->__('Retrieve your password here') ?></h2>
34
  <p><?php echo $this->__('Please enter your email address below. You will receive a link to reset your password.') ?></p>
app/design/frontend/base/default/template/cueconnect/js.phtml CHANGED
@@ -1,40 +1,22 @@
1
  <?php if ($this->isEnabled() && $this->getRetailerId()): ?>
 
2
  <script src="https://stream.cueconnect.com/js/cue-seed.js"></script>
3
  <script>
4
- function cueInit() {
5
- CUE({
6
- 'retailId' : <?php echo $this->getRetailerId(); ?>,
7
- 'apiKey' : '<?php echo $this->getApiKey(); ?>',
8
- 'cid' : <?php echo $this->getCID(); ?>,
9
- 'path' : '<?php echo $this->getElistPath(); ?>'
10
- });
11
  }
12
- function cueKickstart() {
13
- var _onload = window.onload;
14
- if (typeof window.onload != 'function') {
15
- window.onload = cueInit;
16
- } else {
17
- window.onload = function() {
18
- _onload();
19
- cueInit();
20
- }
21
  }
22
- }
23
- cueKickstart();
24
- </script>
25
- <?php /*
26
- <script type="text/javascript">
27
- function executeOnLoad(script) {
28
- var script = script || this;
29
- if (!script.readyState || script.readyState == "loaded" || script.readyState == "complete") {
30
- CUE({'retailId': <?php echo $this->getRetailerId(); ?>, 'apiKey': '<?php echo $this->getApiKey(); ?>', 'cid': <?php echo $this->getCID(); ?>, 'path': '<?php echo $this->getElistPath() ?>'});
31
- }
32
- }
33
- var scriptElement = document.createElement('script');
34
- scriptElement.setAttribute('src', "https://stream.cueconnect.com/js/cue-seed.js");
35
- scriptElement.setAttribute('onload', 'executeOnLoad.apply(this)');
36
- scriptElement.setAttribute('onreadystatechange', 'executeOnLoad.apply(this)');
37
- document.body.appendChild(scriptElement);
38
  </script>
39
- */ ?>
40
  <?php endif; ?>
1
  <?php if ($this->isEnabled() && $this->getRetailerId()): ?>
2
+
3
  <script src="https://stream.cueconnect.com/js/cue-seed.js"></script>
4
  <script>
5
+ function doLoad() {
6
+ CUE({
7
+ 'retailId': <?php echo $this->getRetailerId(); ?>,
8
+ 'apiKey': '<?php echo $this->getApiKey(); ?>',
9
+ 'cid': <?php echo $this->getCID(); ?>,
10
+ 'path': '<?php echo $this->getElistPath() ?>'
11
+ });
12
  }
13
+ if ( window.addEventListener ) {
14
+ window.addEventListener( "load", doLoad, false );
15
+ } else if ( window.attachEvent ) {
16
+ window.attachEvent( "onload", doLoad );
17
+ } else if ( window.onLoad ) {
18
+ window.onload = doLoad;
 
 
 
19
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  </script>
21
+
22
  <?php endif; ?>
package.xml CHANGED
@@ -1,18 +1,20 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Cue</name>
4
- <version>3.0.16</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Powerful onsite marketing solution that helps increase engagement and conversions.</summary>
10
  <description>Drive greater ROI using an experience and tools shoppers already engage with on your site today. Provide Cue as a free personal shopping assistant to your customers and get an inside look at the items they save and conversations they have about them. Use the data to personalize various touch points of their shopping journey and thoughtfully stimulate conversions. Receive a free 90-day trial when you sign up and grow your business risk-free.</description>
11
- <notes>- Improvements and bugfixes</notes>
 
 
12
  <authors><author><name>Cue Connect</name><user>hrais</user><email>hrais@cueconnect.com</email></author></authors>
13
- <date>2016-09-09</date>
14
- <time>14:35:04</time>
15
- <contents><target name="mageetc"><dir name="modules"><file name="CueConnect_Cue.xml" hash="6bd6cf8a7f9e647dc5729e8b0a77cfa1"/></dir></target><target name="magecommunity"><dir name="CueConnect"><dir name="Cue"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><file name="Product.php" hash="da20e73d9d6c46f8e9b8f2e0b130b69a"/></dir><file name="Index.php" hash="0c40f5f733dd6ecd2dd5a0453d1df14b"/><file name="Progress.php" hash="9767500cf8507eacd58c6b441a23d7c1"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Readonly.php" hash="847f56fbe8ce7b3334b8831981aff5fb"/></dir></dir></dir></dir></dir><file name="Alert.php" hash="416cb0dba8485a32feb55306f2004664"/><file name="BaseCueBlock.php" hash="762bd5f6105ae2c82bb06888ac7e079d"/><file name="Collection.php" hash="34049e05086f52a1b74bcf7046f8a4f8"/><file name="Elist.php" hash="7832410c357470a083cf3d3679ab376d"/><file name="Favorite.php" hash="dd4bd0736e3cfea4d87e366fb0e228b3"/><file name="Js.php" hash="fa423dff429d99b1969fe9b2932be095"/><file name="Meta.php" hash="c16b07f77ac3c1ccb6fdcbcfc17ea703"/><file name="Navigation.php" hash="a43d159e9629ca20461c88ba9eb2c16a"/><file name="Share.php" hash="c0a2dd7fcc9a3537718fe811d1b4d7df"/></dir><dir name="Helper"><file name="Data.php" hash="b6483a7a9d4bd1025aaeec93840145a2"/><dir name="Wishlist"><file name="Data.php" hash="df7c81da4f905c5cfdc9adf18b2918f7"/></dir></dir><dir name="Model"><file name="CueConnect.php" hash="f87201b50f23e93a3c34f995de8a2fe5"/><file name="Demand.php" hash="e1d627c3207a364c861faf8decbcd7cc"/><dir name="Mysql4"><dir name="Demand"><file name="Collection.php" hash="4bd64ac5500aacdd861c05161bfdea60"/></dir><file name="Demand.php" hash="6b3b0d54f7d15fb55d47773ea96690d8"/><dir name="UserSync"><file name="Collection.php" hash="2f70172ef8506195355d0f34fa963de7"/></dir><file name="UserSync.php" hash="29fbf5674f15ba2a8db2c4f79545431c"/><dir name="WishlistSync"><file name="Collection.php" hash="c7ae0dc2a51c0d6e26360cba2c82c685"/></dir><file name="WishlistSync.php" hash="18079cce3dcf1129dd412d9de5199351"/></dir><file name="Observer.php" hash="4df7298647d514f8e6af371f2848307b"/><file name="Options.php" hash="6f312d0f07fb27129c6bb8eb83fdda8c"/><file name="UserSync.php" hash="45dc5508786c1db53088f4257cd5e3bd"/><file name="WishlistSync.php" hash="4b77f0097f4ed05ea63058cc1099ce66"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SyncController.php" hash="c9cd0b21c257205cae0f09044ba12333"/></dir><file name="ElistController.php" hash="dc112c88f2ced7880379bc87ec0138a9"/></dir><dir name="etc"><file name="config.xml" hash="8e6bcdf70a9d93314dbc7e4bd1a40af9"/><file name="system.xml" hash="1801e59671ae1e08f4a0ac5aae4e8c7f"/></dir><dir name="sql"><dir name="cueconnect_setup"><file name="mysql4-install-3.0.9.php" hash="35e874c8e139497043b0e50ea6cf2fa0"/><file name="mysql4-upgrade-3.0.8-3.0.9.php" hash="54cfba6c455bebb9e614013642fb8fdd"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cueconnect.xml" hash="4b7e20ae6fda830865d7b30ee9e82aae"/></dir><dir name="template"><dir name="cueconnect"><file name="alert.phtml" hash="1b84532e255e6c4cfba9881e48013896"/><file name="collection.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="customer"><dir name="form"><file name="forgotpassword.phtml" hash="6cc627d8f6f4224965c00d4f7c2fb939"/><file name="login.phtml" hash="830203b7f6a8d8647a3812b51ac45721"/><file name="register.phtml" hash="b23b45199434202d0c7f582e804fb8c1"/></dir></dir><file name="elist.phtml" hash="b8c2211f819d4ae9b0faa23caee7f677"/><file name="favorite.phtml" hash="89f0bca645d6f81e2a3c3cf375c5d44e"/><file name="js.phtml" hash="4d779502845e4dc876010e2c7933d434"/><file name="links.phtml" hash="b5567bf97bd53184fb84e23c73ab4778"/><file name="meta.phtml" hash="57bd5367b677d71d935faf8a9dfefa82"/><file name="share.phtml" hash="781d6414c1b41f3bdb2a5befc8817463"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>5.7.0</max></php><extension><name>Core</name><min/><max/></extension></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Cue</name>
4
+ <version>3.0.17</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Powerful onsite marketing solution that helps increase engagement and conversions.</summary>
10
  <description>Drive greater ROI using an experience and tools shoppers already engage with on your site today. Provide Cue as a free personal shopping assistant to your customers and get an inside look at the items they save and conversations they have about them. Use the data to personalize various touch points of their shopping journey and thoughtfully stimulate conversions. Receive a free 90-day trial when you sign up and grow your business risk-free.</description>
11
+ <notes>- fixes for internet explorer&#xD;
12
+ - stability improvements&#xD;
13
+ </notes>
14
  <authors><author><name>Cue Connect</name><user>hrais</user><email>hrais@cueconnect.com</email></author></authors>
15
+ <date>2016-10-10</date>
16
+ <time>15:17:42</time>
17
+ <contents><target name="mageetc"><dir name="modules"><file name="CueConnect_Cue.xml" hash="6bd6cf8a7f9e647dc5729e8b0a77cfa1"/></dir></target><target name="magecommunity"><dir name="CueConnect"><dir name="Cue"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><file name="Product.php" hash="da20e73d9d6c46f8e9b8f2e0b130b69a"/></dir><file name="Index.php" hash="0c40f5f733dd6ecd2dd5a0453d1df14b"/><file name="Progress.php" hash="9767500cf8507eacd58c6b441a23d7c1"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Readonly.php" hash="847f56fbe8ce7b3334b8831981aff5fb"/></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/><file name="._.DS_Store" hash="7d40ce63be1b295f209e8b80541f880d"/></dir></dir></dir><file name="Alert.php" hash="416cb0dba8485a32feb55306f2004664"/><file name="BaseCueBlock.php" hash="762bd5f6105ae2c82bb06888ac7e079d"/><file name="Collection.php" hash="34049e05086f52a1b74bcf7046f8a4f8"/><file name="Elist.php" hash="7832410c357470a083cf3d3679ab376d"/><file name="Favorite.php" hash="dd4bd0736e3cfea4d87e366fb0e228b3"/><file name="Js.php" hash="fa423dff429d99b1969fe9b2932be095"/><file name="Meta.php" hash="c16b07f77ac3c1ccb6fdcbcfc17ea703"/><file name="Navigation.php" hash="a43d159e9629ca20461c88ba9eb2c16a"/><file name="Share.php" hash="c0a2dd7fcc9a3537718fe811d1b4d7df"/></dir><dir name="Helper"><file name="Data.php" hash="b6483a7a9d4bd1025aaeec93840145a2"/><dir name="Wishlist"><file name="Data.php" hash="df7c81da4f905c5cfdc9adf18b2918f7"/></dir></dir><dir name="Model"><file name="CueConnect.php" hash="f87201b50f23e93a3c34f995de8a2fe5"/><file name="Demand.php" hash="e1d627c3207a364c861faf8decbcd7cc"/><dir name="Mysql4"><dir name="Demand"><file name="Collection.php" hash="4bd64ac5500aacdd861c05161bfdea60"/></dir><file name="Demand.php" hash="6b3b0d54f7d15fb55d47773ea96690d8"/><dir name="UserSync"><file name="Collection.php" hash="2f70172ef8506195355d0f34fa963de7"/></dir><file name="UserSync.php" hash="29fbf5674f15ba2a8db2c4f79545431c"/><dir name="WishlistSync"><file name="Collection.php" hash="c7ae0dc2a51c0d6e26360cba2c82c685"/></dir><file name="WishlistSync.php" hash="18079cce3dcf1129dd412d9de5199351"/></dir><file name="Observer.php" hash="e77bf0f4b7e37ae0f3652734d807a3e7"/><file name="Options.php" hash="6f312d0f07fb27129c6bb8eb83fdda8c"/><file name="UserSync.php" hash="45dc5508786c1db53088f4257cd5e3bd"/><file name="WishlistSync.php" hash="4b77f0097f4ed05ea63058cc1099ce66"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SyncController.php" hash="c9cd0b21c257205cae0f09044ba12333"/></dir><file name="ElistController.php" hash="dc112c88f2ced7880379bc87ec0138a9"/></dir><dir name="etc"><file name="config.xml" hash="9490de03f4daaa55e9ee849b51299306"/><file name="system.xml" hash="1801e59671ae1e08f4a0ac5aae4e8c7f"/></dir><dir name="sql"><dir name="cueconnect_setup"><file name="mysql4-install-3.0.9.php" hash="35e874c8e139497043b0e50ea6cf2fa0"/><file name="mysql4-upgrade-3.0.8-3.0.9.php" hash="54cfba6c455bebb9e614013642fb8fdd"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cueconnect.xml" hash="4b7e20ae6fda830865d7b30ee9e82aae"/></dir><dir name="template"><dir name="cueconnect"><file name="alert.phtml" hash="1b84532e255e6c4cfba9881e48013896"/><file name="collection.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><dir name="customer"><dir name="form"><file name="forgotpassword.phtml" hash="e77cbc35be0786aa61e08de47008595f"/><file name="login.phtml" hash="830203b7f6a8d8647a3812b51ac45721"/><file name="register.phtml" hash="b23b45199434202d0c7f582e804fb8c1"/></dir></dir><file name="elist.phtml" hash="951910b42b5115f2c39bd9d23b0b870e"/><file name="favorite.phtml" hash="89f0bca645d6f81e2a3c3cf375c5d44e"/><file name="js.phtml" hash="8a0fc52374904a5c932a927094cd0bfb"/><file name="links.phtml" hash="b5567bf97bd53184fb84e23c73ab4778"/><file name="meta.phtml" hash="57bd5367b677d71d935faf8a9dfefa82"/><file name="share.phtml" hash="781d6414c1b41f3bdb2a5befc8817463"/></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.1.0</min><max>5.7.0</max></php><extension><name>Core</name><min/><max/></extension></required></dependencies>
20
  </package>