diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-02-07 17:08:50 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-09 13:31:50 +0100 |
commit | bb1d8b318964b5b778e4c381db2f9ff281164384 (patch) | |
tree | 363ad7483868749111c6ba96b09dcf3f99ae751a /core/src/Util | |
parent | ac03f54079535fd9e047fbe3fbbe2a5768eb6e83 (diff) | |
download | nextcloud-server-bb1d8b318964b5b778e4c381db2f9ff281164384.tar.gz nextcloud-server-bb1d8b318964b5b778e4c381db2f9ff281164384.zip |
Remove deprecated global variables
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src/Util')
-rw-r--r-- | core/src/Util/format-date.js | 34 | ||||
-rw-r--r-- | core/src/Util/relative-modified-date.js | 39 |
2 files changed, 0 insertions, 73 deletions
diff --git a/core/src/Util/format-date.js b/core/src/Util/format-date.js deleted file mode 100644 index 9551804d4ab..00000000000 --- a/core/src/Util/format-date.js +++ /dev/null @@ -1,34 +0,0 @@ -/* - * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -// TODO: import Util directly: https://github.com/nextcloud/server/pull/13957 -import OC from '../OC/index' - -/** - * Format an UNIX timestamp to a human understandable format - * @param {number} timestamp UNIX timestamp - * @returns {string} Human readable format - * @deprecated 16.0.0 use OC.Util.formatDate instead - */ -export default function formatDate(timestamp) { - console.warn('formatDate is deprecated, use OC.Util.formatDate instead') - return OC.Util.formatDate(timestamp) -} diff --git a/core/src/Util/relative-modified-date.js b/core/src/Util/relative-modified-date.js deleted file mode 100644 index 4e41f939250..00000000000 --- a/core/src/Util/relative-modified-date.js +++ /dev/null @@ -1,39 +0,0 @@ -/** - * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -// TODO: import Util directly: https://github.com/nextcloud/server/pull/13957 -import OC from '../OC/index' - -/** - * Takes an absolute timestamp and return a string with a human-friendly relative date - * - * @param {number} timestamp A Unix timestamp - * @deprecated use OC.Util.relativeModifiedDate instead but beware the argument value - * @returns {string} - */ -export default function relativeModifiedDate(timestamp) { - console.warn('relativeModifiedDate is deprecated, use OC.Util.relativeModifiedDate instead') - /* - Were multiplying by 1000 to bring the timestamp back to its original value - per https://github.com/owncloud/core/pull/10647#discussion_r16790315 - */ - return OC.Util.relativeModifiedDate(timestamp * 1000) -} |