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 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 + + 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