Version Notes
Fixed: Load Janrain load.js file from correct location
Download this release
Release Info
Developer | Janrain |
Extension | Janrain_Engage_Plugin |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.2.3
- app/code/community/Janrain/Engage/.DS_Store +0 -0
- app/code/community/Janrain/Engage/Block/.DS_Store +0 -0
- app/code/community/Janrain/Engage/etc/config.xml +1 -1
- app/design/frontend/base/default/template/janrain/engage/auth.phtml +2 -2
- app/design/frontend/base/default/template/janrain/engage/scripts_dashboard.phtml +3 -3
- app/design/frontend/base/default/template/janrain/engage/share.phtml +2 -2
- package.xml +5 -6
app/code/community/Janrain/Engage/.DS_Store
DELETED
Binary file
|
app/code/community/Janrain/Engage/Block/.DS_Store
DELETED
Binary file
|
app/code/community/Janrain/Engage/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Janrain_Engage>
|
5 |
-
<version>1.2.
|
6 |
</Janrain_Engage>
|
7 |
</modules>
|
8 |
<frontend>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Janrain_Engage>
|
5 |
+
<version>1.2.3</version>
|
6 |
</Janrain_Engage>
|
7 |
</modules>
|
8 |
<frontend>
|
app/design/frontend/base/default/template/janrain/engage/auth.phtml
CHANGED
@@ -24,9 +24,9 @@
|
|
24 |
e.id = 'janrainAuthWidget';
|
25 |
|
26 |
if(document.location.protocol === 'https:') {
|
27 |
-
e.src = 'https://rpxnow.com/
|
28 |
} else {
|
29 |
-
e.src = 'http://widget-cdn.rpxnow.com/
|
30 |
}
|
31 |
|
32 |
var s = document.getElementsByTagName('script')[0];
|
24 |
e.id = 'janrainAuthWidget';
|
25 |
|
26 |
if(document.location.protocol === 'https:') {
|
27 |
+
e.src = 'https://rpxnow.com/load/<?php echo Mage::helper('engage')->rpxRealmName()?>';
|
28 |
} else {
|
29 |
+
e.src = 'http://widget-cdn.rpxnow.com/load/<?php echo Mage::helper('engage')->rpxRealmName()?>';
|
30 |
}
|
31 |
|
32 |
var s = document.getElementsByTagName('script')[0];
|
app/design/frontend/base/default/template/janrain/engage/scripts_dashboard.phtml
CHANGED
@@ -7,7 +7,7 @@ if (Mage::helper('engage')->isEngageEnabled()):
|
|
7 |
window.janrain = {};
|
8 |
window.janrain.settings = {};
|
9 |
|
10 |
-
janrain.settings.tokenUrl = "<?php echo Mage::getUrl('engage/rpx/token_url_add') ?>";
|
11 |
janrain.settings.appId = "<?php echo Mage::getStoreConfig('engage/vars/appid') ?>";
|
12 |
janrain.settings.appUrl = "https://<?php echo Mage::getStoreConfig('engage/vars/realm') ?>";
|
13 |
janrain.settings.type = 'modal';
|
@@ -27,9 +27,9 @@ if (Mage::helper('engage')->isEngageEnabled()):
|
|
27 |
e.id = 'janrainAuthWidget';
|
28 |
|
29 |
if(document.location.protocol === 'https:') {
|
30 |
-
e.src = 'https://rpxnow.com/
|
31 |
} else {
|
32 |
-
e.src = 'http://widget-cdn.rpxnow.com/
|
33 |
}
|
34 |
|
35 |
var s = document.getElementsByTagName('script')[0];
|
7 |
window.janrain = {};
|
8 |
window.janrain.settings = {};
|
9 |
|
10 |
+
janrain.settings.tokenUrl = "<?php echo Mage::getUrl('engage/rpx/token_url_add') ?>";
|
11 |
janrain.settings.appId = "<?php echo Mage::getStoreConfig('engage/vars/appid') ?>";
|
12 |
janrain.settings.appUrl = "https://<?php echo Mage::getStoreConfig('engage/vars/realm') ?>";
|
13 |
janrain.settings.type = 'modal';
|
27 |
e.id = 'janrainAuthWidget';
|
28 |
|
29 |
if(document.location.protocol === 'https:') {
|
30 |
+
e.src = 'https://rpxnow.com/load/<?php echo Mage::helper('engage')->rpxRealmName()?>';
|
31 |
} else {
|
32 |
+
e.src = 'http://widget-cdn.rpxnow.com/load/<?php echo Mage::helper('engage')->rpxRealmName()?>';
|
33 |
}
|
34 |
|
35 |
var s = document.getElementsByTagName('script')[0];
|
app/design/frontend/base/default/template/janrain/engage/share.phtml
CHANGED
@@ -20,9 +20,9 @@
|
|
20 |
e.id = 'janrainWidgets';
|
21 |
|
22 |
if (document.location.protocol === 'https:') {
|
23 |
-
e.src = 'https://rpxnow.com/
|
24 |
} else {
|
25 |
-
e.src = 'http://widget-cdn.rpxnow.com/
|
26 |
}
|
27 |
|
28 |
var s = document.getElementsByTagName('script')[0];
|
20 |
e.id = 'janrainWidgets';
|
21 |
|
22 |
if (document.location.protocol === 'https:') {
|
23 |
+
e.src = 'https://rpxnow.com/load/<?php echo Mage::helper('engage')->rpxRealmName()?>';
|
24 |
} else {
|
25 |
+
e.src = 'http://widget-cdn.rpxnow.com/load/<?php echo Mage::helper('engage')->rpxRealmName()?>';
|
26 |
}
|
27 |
|
28 |
var s = document.getElementsByTagName('script')[0];
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Janrain_Engage_Plugin</name>
|
4 |
-
<version>1.2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/Apache-2.0">ASL</license>
|
7 |
<channel>community</channel>
|
@@ -10,12 +10,11 @@
|
|
10 |
<description>Janrain Engage Social Login and Social Sharing Magento extension.
|
11 |

|
12 |
Formerly RPX.</description>
|
13 |
-
<notes
|
14 |
-
* Fixed: Invalid class reference in adminhtml controller</notes>
|
15 |
<authors><author><name>Janrain</name><user>Janrain</user><email>magento@janrain.com</email></author></authors>
|
16 |
-
<date>2013-
|
17 |
-
<time>
|
18 |
-
<contents><target name="magecommunity"><dir name="Janrain"><dir name="Engage"><dir name="Block"><file name="Accountdata.php" hash="90a8f7352ba9b1f0e54024aa1cf6ada2"/><file name="Auth.php" hash="f07d9dcf68a6cb7dfb31c8de49f61327"/><file name="Info.php" hash="83bc006b05eba79c576bd495c2e4b7da"/><file name="Share.php" hash="6dcaa98ae70f759829a06be51496082e"
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Janrain_Engage_Plugin</name>
|
4 |
+
<version>1.2.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/Apache-2.0">ASL</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Janrain Engage Social Login and Social Sharing Magento extension.
|
11 |

|
12 |
Formerly RPX.</description>
|
13 |
+
<notes>Fixed: Load Janrain load.js file from correct location</notes>
|
|
|
14 |
<authors><author><name>Janrain</name><user>Janrain</user><email>magento@janrain.com</email></author></authors>
|
15 |
+
<date>2013-10-22</date>
|
16 |
+
<time>17:38:16</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Janrain"><dir name="Engage"><dir name="Block"><file name="Accountdata.php" hash="90a8f7352ba9b1f0e54024aa1cf6ada2"/><file name="Auth.php" hash="f07d9dcf68a6cb7dfb31c8de49f61327"/><file name="Info.php" hash="83bc006b05eba79c576bd495c2e4b7da"/><file name="Share.php" hash="6dcaa98ae70f759829a06be51496082e"/></dir><dir name="Helper"><file name="Data.php" hash="5fd11f0bb2142d05a854b06ded0350bf"/><file name="Identifiers.php" hash="ae4a867e3451a5cf15e916e3af497864"/><file name="Rpxcall.php" hash="1ca07d0841e06fdddc15a3c18d6b30fc"/></dir><dir name="Model"><file name="Identifiers.php" hash="4e996d44faaa79db5cebd8e11b2e0583"/><dir name="Mysql4"><dir name="Identifiers"><file name="Collection.php" hash="55b32ceef6b7264c62833d7ed25bad13"/></dir><file name="Identifiers.php" hash="0caed34306118b774a903df2feb51169"/></dir><file name="Observer.php" hash="9639e480dfc1f20f8ffb25035031b71f"/><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="797bbf70f12b86487b1cda632e236cfb"/></dir></dir></dir><file name="Session.php" hash="b95af8380dc2b6290fa9597e2ee47e4a"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="LookupController.php" hash="44d68a5e058d7254246d9e6fd09b9fb1"/></dir><file name="RpxController.php" hash="2f7ff776ab393f31c67f6f12a0b25d30"/></dir><dir name="etc"><file name="config.xml" hash="358b8baf5fceb3c325c5518c6f8011ed"/><file name="system.xml" hash="fbb4521b0ac40230c882d567bae187f4"/><file name="widget.xml" hash="d9cc7143fe792fa2464a0e351b814f2f"/></dir><dir name="sql"><dir name="engage_setup"><file name="mysql4-install-1.2.0.php" hash="2ce66b0568ed83142c04c2ff03f0db0c"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="engage.xml" hash="12267f3a1850fb4657d490304c2a1020"/></dir><dir name="template"><dir name="janrain"><dir name="engage"><file name="auth.phtml" hash="6782c417292b3c2a4a57606a0b87a6fe"/><file name="dashboard.phtml" hash="9b793510890bc556f93ea7a5d32c2ac0"/><file name="duplicate.phtml" hash="771e6676b6d1f42283740deacafab4d8"/><file name="register.phtml" hash="9273f30fece25a7cc2503fdfd2d1b891"/><file name="scripts_dashboard.phtml" hash="69e85687067c44492e99983f5bc84069"/><file name="share.phtml" hash="605f3223651d2c85f1d4f0cac6db7699"/><file name="styles.phtml" hash="3be45ace87bbb5f498b23458fa6297a3"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Janrain_Engage.xml" hash="b13e55afe8a48e56ab57768870cfb7bc"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Janrain_Engage.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="janrain"><file name="stylesheet.css" hash="262fd7545136be7bf014f0b3090cac0f"/></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|