From 9a8a09354a80275947dea23d040dc7169d3bfba2 Mon Sep 17 00:00:00 2001 From: Les De Ridder Date: Tue, 31 Jul 2018 22:52:51 +0200 Subject: [PATCH] Update name and repo --- settings.json.template | 4 ++-- src/node/hooks/express.js | 8 ++++---- src/package.json | 9 ++++++--- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/settings.json.template b/settings.json.template index 4275563a..91ac41e6 100644 --- a/settings.json.template +++ b/settings.json.template @@ -8,7 +8,7 @@ */ { // Name your instance! - "title": "Etherpad", + "title": "Etherpad Lite", // favicon default name // alternatively, set up a fully specified Url to your own favicon @@ -58,7 +58,7 @@ */ //the default text of a pad - "defaultPadText" : "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", + "defaultPadText" : "Welcome to Etherpad Lite!\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", /* Default Pad behavior, users can override by changing */ "padOptions": { diff --git a/src/node/hooks/express.js b/src/node/hooks/express.js index 48dcf56c..79df46d6 100644 --- a/src/node/hooks/express.js +++ b/src/node/hooks/express.js @@ -10,15 +10,15 @@ var server; var serverName; exports.createServer = function () { - console.log("Report bugs at https://github.com/ether/etherpad-lite/issues") + console.log("Report bugs at https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite/issues") - serverName = "Etherpad " + settings.getGitCommit() + " (http://etherpad.org)"; + serverName = "Etherpad Lite " + settings.getGitCommit() + " (https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite)"; - console.log("Your Etherpad version is " + settings.getEpVersion() + " (" + settings.getGitCommit() + ")"); + console.log("Your Etherpad Lite version is " + settings.getEpVersion() + " (" + settings.getGitCommit() + ")"); exports.restartServer(); - console.log("You can access your Etherpad instance at http://" + settings.ip + ":" + settings.port + "/"); + console.log("You can access your Etherpad Lite instance at http://" + settings.ip + ":" + settings.port + "/"); if(!_.isEmpty(settings.users)){ console.log("The plugin admin page is at http://" + settings.ip + ":" + settings.port + "/admin/plugins"); } diff --git a/src/package.json b/src/package.json index 30c1a02a..9d037c0f 100644 --- a/src/package.json +++ b/src/package.json @@ -1,7 +1,7 @@ { "name": "ep_etherpad-lite", - "description": "A Etherpad based on node.js", - "homepage": "http://etherpad.org", + "description": "An Etherpad clone based on node.js", + "homepage": "https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite", "keywords": [ "etherpad", "realtime", @@ -24,6 +24,9 @@ }, { "name": "Peter Martischka" + }, + { + "name": "Les De Ridder" } ], "dependencies": { @@ -73,7 +76,7 @@ }, "repository": { "type": "git", - "url": "http://github.com/ether/etherpad-lite.git" + "url": "https://git.fuwafuwa.moe/fuwafuwa/etherpad-lite.git" }, "scripts": { "test": "nyc mocha --timeout 5000 ../tests/backend/specs/api"