summaryrefslogtreecommitdiffstats
path: root/etherpad/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'etherpad/src/main.js')
-rw-r--r--etherpad/src/main.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/etherpad/src/main.js b/etherpad/src/main.js
index 2cddbac..503bf9d 100644
--- a/etherpad/src/main.js
+++ b/etherpad/src/main.js
@@ -267,7 +267,7 @@ function checkHost() {
return;
}
- // redirect to etherpad.com
+ // redirect to pad.spline.inf.fu-berlin.de
var newurl = "http://pad.spline.inf.fu-berlin.de/"+request.path;
if (request.query) { newurl += "?"+request.query; }
response.redirect(newurl);
@@ -282,7 +282,7 @@ function checkHTTPS() {
/* Open-source note: this function used to check the protocol and make
* sure that pages that needed to be secure went over HTTPS, and pages
* that didn't go over HTTP. However, when we open-sourced the code,
- * we disabled HTTPS because we didn't want to ship the etherpad.com
+ * we disabled HTTPS because we didn't want to ship the pad.spline.inf.fu-berlin.de
* private crypto keys. --aiba */
return;
@@ -306,8 +306,6 @@ function checkHTTPS() {
var _requiredHttpsPrefixes = [
'/ep/admin', // pro and etherpad
'/ep/account', // pro only
- '/ep/store', // etherpad.com only
- '/ep/pro-account' // etherpad.com only
];
var httpsRequired = false;
@@ -393,7 +391,7 @@ function handlePath() {
]);
// dispatching logic: first try common, then dispatch to
- // etherpad.com or pro.
+ // pad.spline.inf.fu-berlin.de or pro.
if (commonDispatcher.dispatch()) {
return;