]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move deprecation warnings to debug
authorSimon L <szaimen@e.mail.de>
Fri, 16 Jun 2023 11:22:55 +0000 (13:22 +0200)
committerJohn Molakvoæ <skjnldsv@users.noreply.github.com>
Sat, 24 Jun 2023 14:54:11 +0000 (16:54 +0200)
Signed-off-by: Simon L <szaimen@e.mail.de>
apps/files/js/filelist.js
apps/files/js/files.js
apps/files_sharing/src/services/ExternalLinkActions.js
core/src/OC/capabilities.js
core/src/OC/util.js
core/src/OCA/search.js
core/src/globals.js
core/src/jquery/placeholder.js

index 442fdec93229b07b4e948b0716a15afac900633e..c1b603da71454adeb5d1756785d3dcbff32d7e95 100644 (file)
                 * @param {string} [tabId] optional tab id to select
                 */
                showDetailsView: function(fileName, tabId) {
-                       console.warn('showDetailsView is deprecated! Use OCA.Files.Sidebar.activeTab. It will be removed in nextcloud 20.');
+                       console.debug('showDetailsView is deprecated! Use OCA.Files.Sidebar.activeTab. It will be removed in nextcloud 20.');
                        this._updateDetailsView(fileName);
                        if (tabId) {
                                OCA.Files.Sidebar.setActiveTab(tabId);
                 * Register a tab view to be added to all views
                 */
                registerTabView: function(tabView) {
-                       console.warn('registerTabView is deprecated! It will be removed in nextcloud 20.');
+                       console.debug('registerTabView is deprecated! It will be removed in nextcloud 20.');
                        const enabled = tabView.canDisplay || undefined
                        if (tabView.id) {
                                OCA.Files.Sidebar.registerTab(new OCA.Files.Sidebar.Tab({
                 * Register a detail view to be added to all views
                 */
                registerDetailView: function(detailView) {
-                       console.warn('registerDetailView is deprecated! It will be removed in nextcloud 20.');
+                       console.debug('registerDetailView is deprecated! It will be removed in nextcloud 20.');
                        if (detailView.el) {
                                OCA.Files.Sidebar.registerSecondaryView(detailView)
                        }
index b0c38248183094aefe1221be430195ab70cbd47e..f37ad88c86ad089e7f603114ac897f923b4dc8cb 100644 (file)
                 * @deprecated used OCA.Files.FileList.generatePreviewUrl instead
                 */
                generatePreviewUrl: function(urlSpec) {
-                       console.warn('DEPRECATED: please use generatePreviewUrl() from an OCA.Files.FileList instance');
+                       console.debug('DEPRECATED: please use generatePreviewUrl() from an OCA.Files.FileList instance');
                        return OCA.Files.App.fileList.generatePreviewUrl(urlSpec);
                },
 
                 * @deprecated used OCA.Files.FileList.lazyLoadPreview instead
                 */
                lazyLoadPreview : function(path, mime, ready, width, height, etag) {
-                       console.warn('DEPRECATED: please use lazyLoadPreview() from an OCA.Files.FileList instance');
+                       console.debug('DEPRECATED: please use lazyLoadPreview() from an OCA.Files.FileList instance');
                        return FileList.lazyLoadPreview({
                                path: path,
                                mime: mime,
index 06cf97ed255e9b06867b4f985e458ec95f05a13d..bef668ae2986598e379a22d066a6a4a599c492f6 100644 (file)
@@ -52,7 +52,7 @@ export default class ExternalLinkActions {
         * @return {boolean}
         */
        registerAction(action) {
-               console.warn('OCA.Sharing.ExternalLinkActions is deprecated, use OCA.Sharing.ExternalShareAction instead')
+               console.debug('OCA.Sharing.ExternalLinkActions is deprecated, use OCA.Sharing.ExternalShareAction instead')
 
                if (typeof action === 'object' && action.icon && action.name && action.url) {
                        this._state.actions.push(action)
index c7df9b4f3d1efc9547b23d6cf87423d0ab1ff79d..fffed92dede7850167c4faaa00690906aa919985 100644 (file)
@@ -32,6 +32,6 @@ import { getCapabilities as realGetCapabilities } from '@nextcloud/capabilities'
  * @since 14.0.0
  */
 export const getCapabilities = () => {
-       console.warn('OC.getCapabilities is deprecated and will be removed in Nextcloud 21. See @nextcloud/capabilities')
+       console.debug('OC.getCapabilities is deprecated and will be removed in Nextcloud 21. See @nextcloud/capabilities')
        return realGetCapabilities()
 }
index 8a50808b5cbf5921249d357e673293cef5e5973e..db6b0eccae03c35c4f224bd6a222deed92cd3dca 100644 (file)
@@ -124,7 +124,7 @@ export default {
         */
        formatDate(timestamp, format) {
                if (window.TESTING === undefined) {
-                       console.warn('OC.Util.formatDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
+                       console.debug('OC.Util.formatDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
                }
                format = format || 'LLL'
                return moment(timestamp).format(format)
@@ -136,7 +136,7 @@ export default {
         */
        relativeModifiedDate(timestamp) {
                if (window.TESTING === undefined) {
-                       console.warn('OC.Util.relativeModifiedDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
+                       console.debug('OC.Util.relativeModifiedDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
                }
                const diff = moment().diff(moment(timestamp))
                if (diff >= 0 && diff < 45000) {
index 10b629a0cf3a93fa9db64db7e1b6a9ac1646201c..e206e04f4b7db35992556dc507f9cc2783264dff 100644 (file)
@@ -26,7 +26,7 @@ export default class Search {
         * @deprecated 20.0.0, will be removed in Nextcloud 22
         */
        constructor() {
-               console.warn('OCA.Search is deprecated. Please use the unified search API instead')
+               console.debug('OCA.Search is deprecated. Please use the unified search API instead')
        }
 
 }
index 8d60bde6eb05a5d6e73729479f7fec31f01eb913..dcad2bcdbf66a9fa355c29b277db81df13de884d 100644 (file)
@@ -56,7 +56,7 @@ import { getToken as getRequestToken } from './OC/requesttoken.js'
 
 const warnIfNotTesting = function() {
        if (window.TESTING === undefined) {
-               console.warn.apply(console, arguments)
+               console.debug.apply(console, arguments)
        }
 }
 
index 0364705913138a29b595b9a64ddf99876a035257..d91c94c18acfaa9128be8af21950b527a8f4db5e 100644 (file)
@@ -140,7 +140,7 @@ const toRgb = (s) => {
 }
 
 String.prototype.toRgb = function() {
-       console.warn('String.prototype.toRgb is deprecated! It will be removed in Nextcloud 22.')
+       console.debug('String.prototype.toRgb is deprecated! It will be removed in Nextcloud 22.')
 
        return toRgb(this)
 }