From ac3869bce541fdeb2f081a7525dffa0df1e31e27 Mon Sep 17 00:00:00 2001 From: Les De Ridder Date: Wed, 1 Aug 2018 05:49:09 +0200 Subject: [PATCH] Change name in more places --- bin/run.sh | 2 +- src/node/hooks/express.js | 2 +- src/node/utils/Settings.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/run.sh b/bin/run.sh index b8049479..c5306db5 100755 --- a/bin/run.sh +++ b/bin/run.sh @@ -32,7 +32,7 @@ fi bin/installDeps.sh $* || exit 1 #Move to the node folder and start -echo "Started Etherpad..." +echo "Starting Etherpad Lite..." SCRIPTPATH=`pwd -P` exec node "$SCRIPTPATH/node_modules/ep_etherpad-lite/node/server.js" $* diff --git a/src/node/hooks/express.js b/src/node/hooks/express.js index 79df46d6..d98ce791 100644 --- a/src/node/hooks/express.js +++ b/src/node/hooks/express.js @@ -27,7 +27,7 @@ exports.createServer = function () { } var env = process.env.NODE_ENV || 'development'; if(env !== 'production'){ - console.warn("Etherpad is running in Development mode. This mode is slower for users and less secure than production mode. You should set the NODE_ENV environment variable to production by using: export NODE_ENV=production"); + console.warn("Etherpad Lite is running in Development mode. This mode is slower for users and less secure than production mode. You should set the NODE_ENV environment variable to production by using: export NODE_ENV=production"); } } diff --git a/src/node/utils/Settings.js b/src/node/utils/Settings.js index 08ace60c..9e53ac7b 100644 --- a/src/node/utils/Settings.js +++ b/src/node/utils/Settings.js @@ -36,7 +36,7 @@ exports.root = path.normalize(path.join(npm.dir, "..")); /** * The app title, visible e.g. in the browser window */ -exports.title = "Etherpad"; +exports.title = "Etherpad Lite"; /** * The app favicon fully specified url, visible e.g. in the browser window