aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/js.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-13 20:46:13 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-14 08:36:54 +0200
commit9aeed859c40d1070645ece02db472e09c6aceccc (patch)
treee0fef69129a9b4d28e4b80ae209aeac59faf58e7 /core/js/js.js
parentc1bd7e7fe7914fb1a73eb8c03b135dd657f9ce7c (diff)
downloadnextcloud-server-9aeed859c40d1070645ece02db472e09c6aceccc.tar.gz
nextcloud-server-9aeed859c40d1070645ece02db472e09c6aceccc.zip
Move OC host/port/protocol helpers to the bundle and deprecate them
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/js/js.js')
-rw-r--r--core/js/js.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 7cccc66dc28..40b5630e9de 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -18,50 +18,6 @@ Object.assign(window.OC, {
},
/**
- * Protocol that is used to access this Nextcloud instance
- * @return {string} Used protocol
- */
- getProtocol: function() {
- return window.location.protocol.split(':')[0];
- },
-
- /**
- * Returns the host used to access this Nextcloud instance
- * Host is sometimes the same as the hostname but now always.
- *
- * Examples:
- * http://example.com => example.com
- * https://example.com => example.com
- * http://example.com:8080 => example.com:8080
- *
- * @return {string} host
- *
- * @since 8.2
- */
- getHost: function() {
- return window.location.host;
- },
-
- /**
- * Returns the hostname used to access this Nextcloud instance
- * The hostname is always stripped of the port
- *
- * @return {string} hostname
- * @since 9.0
- */
- getHostName: function() {
- return window.location.hostname;
- },
-
- /**
- * Returns the port number used to access this Nextcloud instance
- *
- * @return {int} port number
- *
- * @since 8.2
- */
- getPort: function() {
- return window.location.port;
},
/**