Merge pull request #243 from tribut/use-https

Github pages now supports https
This commit is contained in:
David Cormier 2014-04-05 09:41:54 -04:00
commit 61ded6f2c4
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
A web client for WeeChat [![Build Status](http://travis-ci.org/cormier/glowing-bear.png)](http://travis-ci.org/cormier/glowing-bear) A web client for WeeChat [![Build Status](https://api.travis-ci.org/cormier/glowing-bear.png)](https://travis-ci.org/cormier/glowing-bear)
======================== ========================
Required Weechat version: 0.4.2 Required Weechat version: 0.4.2
@ -9,6 +9,6 @@ To use the web interface you first need to set a relay and a password:
/set relay.network.password YOURPASSWORD /set relay.network.password YOURPASSWORD
Then you can point your browser to the Then you can point your browser to the
[Glowing Bear](http://cormier.github.io/glowing-bear) ! [Glowing Bear](https://cormier.github.io/glowing-bear) !
Interested in contributing or simply want to talk about the project? Join us on **#glowing-bear** on **freenode**! Interested in contributing or simply want to talk about the project? Join us on **#glowing-bear** on **freenode**!

View File

@ -169,7 +169,7 @@ plugins.factory('userPlugins', function() {
var match = message.match(rPath) || message.match(rAnchor) || message.match(rShorten); var match = message.match(rPath) || message.match(rAnchor) || message.match(rShorten);
if (match) { if (match) {
var id = match[1]; var id = match[1];
var embedurl = 'http://www.dailymotion.com/embed/video/' + id + '?html&controls=html&startscreen=html&info=0&logo=0&related=0'; var embedurl = 'https://www.dailymotion.com/embed/video/' + id + '?html&controls=html&startscreen=html&info=0&logo=0&related=0';
return '<iframe frameborder="0" width="480" height="270" src="' + embedurl + '"></iframe>'; return '<iframe frameborder="0" width="480" height="270" src="' + embedurl + '"></iframe>';
} }

View File

@ -9,11 +9,11 @@
}, },
"app": { "app": {
"urls": [ "urls": [
"http://cormier.github.io/glowing-bear/" "https://cormier.github.io/glowing-bear/"
], ],
"launch": { "launch": {
"container": "panel", "container": "panel",
"web_url": "http://cormier.github.io/glowing-bear/" "web_url": "https://cormier.github.io/glowing-bear/"
} }
}, },
"permissions": [ "permissions": [

View File

@ -13,7 +13,7 @@
], ],
"developer": { "developer": {
"name": "Cormier", "name": "Cormier",
"url": "http://cormier.github.io/glowing-bear/" "url": "https://cormier.github.io/glowing-bear/"
}, },
"default_locale": "en", "default_locale": "en",
"version": "2" "version": "2"