From 87cd5e91346a66e813e4576c76527b5468877b53 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Fri, 10 Apr 2020 10:06:23 +0200 Subject: [PATCH] Update deprecated globals in 18 Ref https://github.com/nextcloud/server/pull/17402 Ref https://github.com/nextcloud/server/pull/17392 Signed-off-by: Christoph Wurst --- developer_manual/app/upgrade-guide.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/developer_manual/app/upgrade-guide.rst b/developer_manual/app/upgrade-guide.rst index b2898926fc8..a63548782a8 100644 --- a/developer_manual/app/upgrade-guide.rst +++ b/developer_manual/app/upgrade-guide.rst @@ -42,7 +42,20 @@ CSS Deprecated global variables *************************** +* ``Backbone``: ship your own. +* ``Clipboard``: ship your own. +* ``ClipboardJs``: ship your own. * ``DOMPurify``: ship your own. +* ``Handlebars``: ship your own. +* ``jstimezonedetect``: ship your own. +* ``jstz``: ship your own. +* ``md5``: ship your own. +* ``moment``: ship your own. +* ``OC.basename``: use ``getCurrentUser`` from https://www.npmjs.com/package/@nextcloud/paths +* ``OC.dirname``: use ``dirname`` from https://www.npmjs.com/package/@nextcloud/paths +* ``OC.encodePath``: use ``encodePath`` from https://www.npmjs.com/package/@nextcloud/paths +* ``OC.isSamePath``: use ``isSamePath`` from https://www.npmjs.com/package/@nextcloud/paths +* ``OC.joinPaths``: use ``joinPaths`` from https://www.npmjs.com/package/@nextcloud/paths Back-end changes ^^^^^^^^^^^^^^^^