Skip to content

Commit

Permalink
Item13004: default to https when talking to google
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDaum committed Aug 28, 2014
1 parent 7962bce commit edde6d6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
11 changes: 11 additions & 0 deletions .gitignore
@@ -0,0 +1,11 @@
*.gz
*.swp
pub/System/HyphenatorContrib/hyphenator.init.js
pub/System/HyphenatorContrib/hyphenator.js
HyphenatorContrib.md5
HyphenatorContrib.sha1
HyphenatorContrib.tgz
HyphenatorContrib.txt
HyphenatorContrib.zip
HyphenatorContrib_installer
HyphenatorContrib_installer.pl
1 change: 1 addition & 0 deletions data/System/HyphenatorContrib.txt
Expand Up @@ -115,6 +115,7 @@ Dieser Text wird mit deutscher Silbentrennung verarbeitet.
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order -->&nbsp; |
| 28 Aug 2014: | (3.02) use https by default talking to google |
| 15 Mar 2014: | (3.01) fixed syntax error in contrib stub |
| 07 Nov 2013: | (3.00) upgraded to Hyphenator-4.2.0 |
| 09 Aug 2011: | (2.00) upgraded to Hyphenator-4.0.0 |
Expand Down
4 changes: 2 additions & 2 deletions lib/Foswiki/Contrib/HyphenatorContrib.pm
Expand Up @@ -18,8 +18,8 @@ package Foswiki::Contrib::HyphenatorContrib;
use strict;
use warnings;

our $VERSION = '3.01';
our $RELEASE = '3.01';
our $VERSION = '3.02';
our $RELEASE = '3.02';
our $SHORTDESCRIPTION = 'Automatically hyphenates text';
our $NO_PREFS_IN_TOPIC = 1;

Expand Down
4 changes: 2 additions & 2 deletions pub/System/HyphenatorContrib/hyphenator.uncompressed.js
Expand Up @@ -167,7 +167,7 @@ var Hyphenator = (function (window) {
* A string storing the basepath from where hyphenator.js was loaded.
* This is used to load the patternfiles.
* The basepath is determined dynamically by searching all script-tags for hyphenator.js
* If the path cannot be determined http://hyphenator.googlecode.com/svn/trunk/ is used as fallback.
* If the path cannot be determined https://hyphenator.googlecode.com/svn/trunk/ is used as fallback.
* @type {string}
* @private
* @see Hyphenator-loadPatterns
Expand All @@ -185,7 +185,7 @@ var Hyphenator = (function (window) {
i += 1;
t = s[i];
}
return !!r ? r : 'http://hyphenator.googlecode.com/svn/trunk/';
return !!r ? r : 'https://hyphenator.googlecode.com/svn/trunk/';
}()),

/**
Expand Down

0 comments on commit edde6d6

Please sign in to comment.