From da0a7b8ed369f4aadc9c4913416e0c479ac4ef15 Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Tue, 18 Feb 2020 21:09:00 +0100 Subject: [PATCH 1/3] Added jQuery UI registry settings --- bika/lims/profiles/default/registry.xml | 325 ++++++++++++++++++++++++ 1 file changed, 325 insertions(+) diff --git a/bika/lims/profiles/default/registry.xml b/bika/lims/profiles/default/registry.xml index a9c17ee9d1..0e41ad4486 100644 --- a/bika/lims/profiles/default/registry.xml +++ b/bika/lims/profiles/default/registry.xml @@ -36,4 +36,329 @@ + + + + False + Activate the JQueryUI theme 'Sunburst' + Sunburst CSS for jqueryui + + True + + + + False + Activate the integration between JQueryUI 'Sunburst' theme and the Plone 'Sunburst' theme + Sunburst CSS Integration + + False + + + + + False + The core of jQuery UI, required for all interactions and widgets. + False + Core + + True + + + + + False + False + Widget + + True + + + + + False + False + Mouse + + False + + + + + False + False + Position + + True + + + + + False + False + Draggable + + True + + + + + False + False + Droppable + + False + + + + + False + False + Resizable + + True + + + + + False + False + Selectable + + False + + + + + False + False + Sortable + + True + + + + + False + False + Accordion + + False + + + + + False + False + Autocomplete + + False + + + + + False + False + Button + + False + + + + + False + False + Date picker + + True + + + + + False + False + Dialog + + True + + + + + False + False + Menu + + False + + + + + False + False + Progress bar + + False + + + + + False + False + Slider + + True + + + + + False + False + Spinner + + False + + + + + False + False + Tabs + + False + + + + + False + False + Tooltip + + False + + + + + False + False + Effects 'core' + + False + + + + + False + False + Effects 'blind' + + False + + + + + False + False + Effects 'bounce' + + False + + + + + False + False + Effects 'clip' + + False + + + + + False + False + Effects 'drop' + + False + + + + + False + False + Effects 'explode' + + False + + + + + False + False + Effects 'fade' + + False + + + + + False + False + Effects 'fold + + False + + + + + False + False + Effects 'highlight' + + False + + + + + False + False + Effects 'pulsate' + + False + + + + + False + False + Effects 'scale' + + False + + + + + False + False + Effects 'shake' + + False + + + + + False + False + Effects 'slide' + + False + + + + + False + False + Effects 'transfer' + + False + + From 71707bc3e7b94a21ea639f607674c03afd001335 Mon Sep 17 00:00:00 2001 From: Ramon Bartl Date: Tue, 18 Feb 2020 21:14:08 +0100 Subject: [PATCH 2/3] Changelog updated --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index 2e016ed85a..bf8461ab1c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,7 @@ Changelog **Added** +- #1549 Added registry profile for jQuery UI settings - #1544 Progress indicator for Batch listing - #1536 Integrated Setup and Profiles from senaite.lims - #1534 Integrate browser resources from senaite.lims From 8b1f5830726480f6a04730ea153edf0ff46a5292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Puiggen=C3=A9?= Date: Wed, 19 Feb 2020 00:52:20 +0100 Subject: [PATCH 3/3] Run plone.app.registry step in upgrade 1.3.3 --- bika/lims/upgrade/v01_03_003.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bika/lims/upgrade/v01_03_003.py b/bika/lims/upgrade/v01_03_003.py index 7e9156afcc..40a89160ee 100644 --- a/bika/lims/upgrade/v01_03_003.py +++ b/bika/lims/upgrade/v01_03_003.py @@ -403,8 +403,14 @@ def upgrade(tool): # Add progress metadata column for Batches add_metadata(portal, BIKA_CATALOG, "getProgress", True) + # Remove stale skin layers from portal_skins + # https://github.com/senaite/senaite.core/pull/1547 remove_skin_layers(portal) + # Disable not needed plugins and settings for jQuery UI + # https://github.com/senaite/senaite.core/pull/1549 + setup.runImportStepFromProfile(profile, "plone.app.registry") + logger.info("{0} upgraded to version {1}".format(product, version)) return True