Skip to content

Commit 705cc6f

Browse files
committed
Change everywhere the link to https://etherpad.org (it was plain http)
1 parent a665610 commit 705cc6f

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 1.7.5
2-
* FEATURE: introduced support for multiple skins. See http://etherpad.org/doc/v1.7.5/#index_skins
2+
* FEATURE: introduced support for multiple skins. See https://etherpad.org/doc/v1.7.5/#index_skins
33
* FEATURE: added a new, optional skin. It can be activated choosing `skinName: "colibris"` in `settings.json`
44
* FEATURE: allow file import using LibreOffice
55
* SECURITY: updated many dependencies. No known high or moderate risk dependencies remain.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To update to the latest released version, execute `git pull origin`. The next st
3636
### Prebuilt Windows package
3737
This package works out of the box on any windows machine, but it's not very useful for developing purposes...
3838

39-
1. [Download the latest Windows package](http://etherpad.org/#download)
39+
1. [Download the latest Windows package](https://etherpad.org/#download)
4040
2. Extract the folder
4141

4242
Now, run `start.bat` and open <http://localhost:9001> in your browser. You like it? [Next steps](#next-steps).
@@ -124,7 +124,7 @@ Visit the **[FAQ](https://github.com/ether/etherpad-lite/wiki/FAQ)**.
124124

125125
# Donate!
126126
* [Flattr](https://flattr.com/thing/71378/Etherpad-Foundation)
127-
* Paypal - Press the donate button on [etherpad.org](http://etherpad.org)
127+
* Paypal - Press the donate button on [etherpad.org](https://etherpad.org)
128128
* [Bitcoin](https://coinbase.com/checkouts/1e572bf8a82e4663499f7f1f66c2d15a)
129129

130130
All donations go to the Etherpad foundation which is part of Software Freedom Conservency

doc/api/http_api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ get the changeset at a given revision, or last revision if 'rev' is not defined.
349349
*Example returns:*
350350
* `{ "code" : 0,
351351
"message" : "ok",
352-
"data" : "Z:1>6b|5+6b$Welcome to Etherpad!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nGet involved with Etherpad at http://etherpad.org\n"
352+
"data" : "Z:1>6b|5+6b$Welcome to Etherpad!\n\nThis pad text is synchronized as you type, so that everyone viewing this page sees the same text. This allows you to collaborate seamlessly on documents!\n\nGet involved with Etherpad at https://etherpad.org\n"
353353
}`
354354
* `{"code":1,"message":"padID does not exist","data":null}`
355355
* `{"code":1,"message":"rev is higher than the head revision of the pad","data":null}`

src/node/hooks/express.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var serverName;
1212
exports.createServer = function () {
1313
console.log("Report bugs at https://github.com/ether/etherpad-lite/issues")
1414

15-
serverName = `Etherpad ${settings.getGitCommit()} (http://etherpad.org)`;
15+
serverName = `Etherpad ${settings.getGitCommit()} (https://etherpad.org)`;
1616

1717
console.log(`Your Etherpad version is ${settings.getEpVersion()} (${settings.getGitCommit()})`);
1818

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ep_etherpad-lite",
33
"description": "A Etherpad based on node.js",
4-
"homepage": "http://etherpad.org",
4+
"homepage": "https://etherpad.org",
55
"keywords": [
66
"etherpad",
77
"realtime",

tests/frontend/specs/urls_become_clickable.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ describe("urls", function(){
66
});
77

88
it("when you enter an url, it becomes clickable", function(done) {
9-
var inner$ = helper.padInner$;
10-
var chrome$ = helper.padChrome$;
11-
9+
var inner$ = helper.padInner$;
10+
var chrome$ = helper.padChrome$;
11+
1212
//get the first text element out of the inner iframe
1313
var firstTextElement = inner$("div").first();
14-
14+
1515
// simulate key presses to delete content
1616
firstTextElement.sendkeys('{selectall}'); // select all
1717
firstTextElement.sendkeys('{del}'); // clear the first line
18-
firstTextElement.sendkeys('http://etherpad.org'); // insert a URL
18+
firstTextElement.sendkeys('https://etherpad.org'); // insert a URL
1919

2020
helper.waitFor(function(){
2121
return inner$("div").first().find("a").length === 1;
@@ -28,7 +28,7 @@ describe("urls", function(){
2828

2929
//get the first text element out of the inner iframe
3030
var firstTextElement = inner$("div").first();
31-
var url = "http://etherpad.org/!foo";
31+
var url = "https://etherpad.org/!foo";
3232

3333
// simulate key presses to delete content
3434
firstTextElement.sendkeys('{selectall}'); // select all
@@ -50,7 +50,7 @@ describe("urls", function(){
5050

5151
//get the first text element out of the inner iframe
5252
var firstTextElement = inner$("div").first();
53-
var url = "http://etherpad.org/";
53+
var url = "https://etherpad.org/";
5454

5555
// simulate key presses to delete content
5656
firstTextElement.sendkeys('{selectall}'); // select all

0 commit comments

Comments
 (0)