[js-embedded-discovery COMMIT] in /trunk: build/build.bat build/build.sh doc/RELEASE-NOTES.txt src/apache/shibboleth-...
noreply at shibboleth.net
noreply at shibboleth.net
Sat Jan 10 07:28:55 EST 2015
Author: rdw
Date: Sat Jan 10 07:28:55 2015
New Revision: 125
URL: http://svn.shibboleth.net/view/js-embedded-discovery?rev=125&view=rev
Log:
EDS-43 Add a 1x1 px transparent gif for the default logo and refer to it.
Added:
trunk/src/resources/Blank.gif (with props)
Modified:
trunk/build/build.bat
trunk/build/build.sh
trunk/doc/RELEASE-NOTES.txt
trunk/src/apache/shibboleth-ds.conf
trunk/src/javascript/idpselect_config.js
Modified: trunk/build/build.bat
URL: http://svn.shibboleth.net/view/js-embedded-discovery/trunk/build/build.bat?rev=125&r1=124&r2=125&view=diff
==============================================================================
--- trunk/build/build.bat (original)
+++ trunk/build/build.bat Sat Jan 10 07:28:55 2015
@@ -36,6 +36,7 @@
copy ..\LICENSE.txt ..\target
copy ..\doc\*.txt ..\target
copy ..\src\resources\index.html ..\target
+copy ..\src\resources\blank.gif ..\target
copy ..\src\javascript\idpselect_config.js ..\target
mkdir ..\target\nonminimised\
copy ..\src\resources\idpselect.css ..\target\nonminimised\
Modified: trunk/build/build.sh
URL: http://svn.shibboleth.net/view/js-embedded-discovery/trunk/build/build.sh?rev=125&r1=124&r2=125&view=diff
==============================================================================
--- trunk/build/build.sh (original)
+++ trunk/build/build.sh Sat Jan 10 07:28:55 2015
@@ -49,6 +49,7 @@
cp ../LICENSE.txt ../target
cp ../doc/*.txt ../target
cp ../src/resources/index.html ../target
+cp ../src/resources/blank.gif ../target
cp ../src/javascript/idpselect_config.js ../target
mkdir ../target/nonminimised
cp ../src/resources/idpselect.css ../target/nonminimised
Modified: trunk/doc/RELEASE-NOTES.txt
URL: http://svn.shibboleth.net/view/js-embedded-discovery/trunk/doc/RELEASE-NOTES.txt?rev=125&r1=124&r2=125&view=diff
==============================================================================
--- trunk/doc/RELEASE-NOTES.txt (original)
+++ trunk/doc/RELEASE-NOTES.txt Sat Jan 10 07:28:55 2015
@@ -15,7 +15,8 @@
EDS-59 Minify the CSS for the EDS
EDS-40 Remove JSON from default minified code
EDS-51 Parameter ignoreURLParams completely ignores any params and makes EDS fully standalone.
-EDS-45 Explicitly avoid protecting the EDS if mod_shib is loaded into Apache
+EDS-45 Explicitly avoid protecting the EDS if mod_shib is loaded into Apache.
+EDS-43 Add a 1x1 px transparent gif for the default logo and refer to it.
Changed in V1.0.3
=============================================
Modified: trunk/src/apache/shibboleth-ds.conf
URL: http://svn.shibboleth.net/view/js-embedded-discovery/trunk/src/apache/shibboleth-ds.conf?rev=125&r1=124&r2=125&view=diff
==============================================================================
--- trunk/src/apache/shibboleth-ds.conf (original)
+++ trunk/src/apache/shibboleth-ds.conf Sat Jan 10 07:28:55 2015
@@ -10,6 +10,7 @@
Alias /shibboleth-ds/idpselect.js /etc/shibboleth-ds/idpselect.js
Alias /shibboleth-ds/idpselect.css /etc/shibboleth-ds/idpselect.css
Alias /shibboleth-ds/index.html /etc/shibboleth-ds/index.html
+ Alias /shibboleth-ds/blank.gif /etc/shibboleth-ds/blank.gif
<IfModule mod_shib.c>
ShibRequestSetting requireSession false
Modified: trunk/src/javascript/idpselect_config.js
URL: http://svn.shibboleth.net/view/js-embedded-discovery/trunk/src/javascript/idpselect_config.js?rev=125&r1=124&r2=125&view=diff
==============================================================================
--- trunk/src/javascript/idpselect_config.js (original)
+++ trunk/src/javascript/idpselect_config.js Sat Jan 10 07:28:55 2015
@@ -5,11 +5,11 @@
// Adjust the following to fit into your local configuration
//
this.alwaysShow = true; // If true, this will show results as soon as you start typing
- this.dataSource = 'DiscoFeed'; // Where to get the data from
+ this.dataSource = 'DiscoFeed'; // Where to get the data from
this.defaultLanguage = 'en'; // Language to use if the browser local doesnt have a bundle
- this.defaultLogo = 'flyingpiglogo.jpg';
- this.defaultLogoWidth = 90;
- this.defaultLogoHeight = 80 ;
+ this.defaultLogo = 'blank.gif'; // Replace with your own logo
+ this.defaultLogoWidth = 1;
+ this.defaultLogoHeight = 1 ;
this.defaultReturn = null; // If non null, then the default place to send users who are not
// Approaching via the Discovery Protocol for example
//this.defaultReturn = "https://example.org/Shibboleth.sso/DS?SAMLDS=1&target=https://example.org/secure";
More information about the commits
mailing list