plone.app.mosaic


Nameplone.app.mosaic JSON
Version 3.1.5 PyPI version JSON
download
home_pagehttps://github.com/plone/plone.app.mosaic
SummaryPlone Mosaic Site Builder and Site Layout
upload_time2023-10-24 12:30:52
maintainer
docs_urlNone
authorPlone Foundation
requires_python>=3.8
license
keywords python plone javascript mosaic grideditor
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Plone Mosaic
============

**Plone Mosaic** is a site builder and layout solution for Plone Classic-UI.

Version Information
-------------------

- Version 3.1.x -> Plone 6.0.6+
- Version 3.0.x -> Plone 6.0.0 - 6.0.5
- Version 2.2.x -> Plone 5.1 + 5.2

Note on Version 3.0.x:

This version uses Bootstrap 5.2.x which was used in Plone 6.0.0 - 6.0.5.
Since Plone 6.0.6 the Bootstrap Version is updated to 5.3, therefore the latest
3.1.x release is recommended.


Concepts
--------

Mosaic, Blocks_ and Tiles_ provide a simple, yet powerful way to manage the pages on your Plone website.
At their core, they rely on semantic HTML and resources with valid, publishable URLs.

**Mosaic Editor** editor is a visual editor for pages rendered using Blocks.
It relies on a grid system to place tiles onto a page in an intuitive, WYSIWYG, drag-and-drop manner.
Using Mosaic Editor, it is easy to compose pages with complex, balanced and visually appealing layouts.

Currently, the Mosaic Editor is activated, when any content with *Mosaic layout* view active is being edited.
(Mosaic layout is available for any content with *Layout support* behavior enabled.)

**Blocks** is a rendering algorithm based on HTML markup conventions.
A page managed by Mosaic Editor is stored as a simple HTML document.
It is representing the actual content of that page as a standalone, publishable resource devoid of any site layout content (e.g. global navigation elements).
This is referred to as *content layout*.

**Tiles** represent the dynamic portions of a page.
At its most basic level, a tile is simply an HTML document with a publishable URL.

In practice, tiles are usually implemented as browser views deriving from the ``Tile`` base class and registered with the ``<plone:tile />`` ZCML directive.
This allows tiles to have some basic metadata and automatically generated edit forms for any configurable aspects, which Mosaic will expose to users.
See `plone.tiles`_ for examples.

When work with tiles in Mosaic Editor, there are three types of tiles:

Text tiles
    Static HTML markup (WYSIWYG-edited text) placed into the content or site layout.
    Strictly speaking, text tiles are not tiles in that they do not involve any tile fetching or merging - instead they are stored as part of the page or site layout.
    To the user, however, a text tile can be moved around and managed like any other.

Field tiles
    Render the value of a metadata field such as the title or description.
    The values of field tiles may be edited in-place in the page,
    but the value is stored in the underlying field and can be indexed in the catalog, used for navigation and so on.
    In practice, a field tile is an instance of the special tile ``plone.app.standardtiles.fields`` with the field name passed as a parameter.

App tiles
    Any other type of dynamic tile. Examples may include a folder listing, a media player, a poll or pretty much anything else you can think of.

..  _Blocks: https://pypi.python.org/pypi/plone.app.blocks
..  _Tiles: https://pypi.python.org/pypi/plone.app.tiles
..  _plone.tiles: https://pypi.python.org/pypi/plone.tiles


Advanced Editor usage
---------------------

Advanced mode
    If you press the "alt" key you will be shown the layout structure, labels for your tiles and css classes for rows.

Custom classes on rows
    Also in the advanced mode, you're able to add custom classes on rows by double clicking the displayed row class.

Subcolumns
    In order to nest columns inside a cell, drag a tile, then press the "ctrl" key and drop the tile close to an
    existing one, either before or after it, in accordance to the shown insert marker.

Fluid rows
    For fluid (full width) rows select any tile in the row and choose "Fluid" from the "Format" menu.
    Fluid row styles only make sense on pages without portlets. In Plone 5.1.3 we can check that automatically
    (with plone.app.layout 2.8.0) and those styles are only active if no portlet columns are shown.
    Since version 3 and Bootstrap 5 there's a feature for `fluid-row-background` which stretches the background of
    the row to 100% width but keeps the columns to the page container width.


Installation
------------

**Plone Mosaic** is installed by building a Plone site with package
``plone.app.mosaic`` and activating its **Plone Mosaic** add-on.

*The dependencies are already version pinned in Plones ecosystem.*

After the add-on activation, the new content layout and editor support can be
enabled for any content type by enabling behaviors **Layout support** and
**Drafting support**.


An example ``buildout.cfg`` for Plone ``6.x`` could look like this::

    [buildout]
    extends =
        https://dist.plone.org/release/6.0-latest/versions.cfg
        https://dist.plone.org/release/6.0-latest/versions-ecosystem.cfg

    parts =
        instance
        ...

    [instance]
    recipe = plone.recipe.zope2instance
    eggs =
        Plone
        plone.app.mosaic

    ...


Changelog
=========

3.1.5 (2023-10-24)
------------------

- Re-implement custom tinymce toolbar settings from mosaic registry.
  [petschki]


3.1.4 (2023-08-14)
------------------

- JavaScript: Reformat JavaScript with prettier and fix eslint errors.
- JavaScript: Loose dependencies to let Module Federation work with any Mockup version.
- JavaScript: Use the Module Federation name from package.json.
- JavaScript: Set the textarea contents via value rather than innerText.
  [thet]

- Re-implement `Custom layout` management functionality without pattern logic.
  [petschki]

- Fixing field editing in Properties form.
  [petschki, jensens, gogobd]

- Fixing tile settings modal.
  [petschki]

- Re-implement "elastic" column resizing.
  [petschki]


3.1.3 (2023-06-27)
------------------


- Fix `text` field tile initialization after refactoring modules in `plone.app.z3cform`
  [petschki]


3.1.2 (2023-06-05)
------------------

- Update dependencies to Bootstrap 5.3 final versions.
  [petschki]


3.1.1 (2023-05-16)
------------------

- Cleanup and update `advanced view` styles.
  [petschki]

- Remove obsolete row column presets from `Format` menu.
  [petschki]

- Refactor `TinyMCE` implementation: reuse already registered pattern from
  the registry. This fixes initialization issues and duplicated chunk loading.
  [petschki]

- Fix toolbar buttons visibility based on current selected layout template
  or customized layout.
  [petschki]

- Fix App Tile addForm modal event handling.
  [petschki]

- Fix for `#547 <https://github.com/plone/plone.app.mosaic/issues/547>`_
  [frapell, petschki]

- Fix for `#541 <https://github.com/plone/plone.app.mosaic/issues/541>`_
  [petschki]

- Correctly await the TinyMCE initialization and avoid TinyMCE double initialization.
  [thet]

- Fix CI builds which were failing with "pip: error: no such option: --install-option"
  [fredvd, thet]

- Remove ``plonetheme.barceloneta`` dependency. (Not needed)
  [toalba]


3.1.0 (2023-03-06)
------------------

- Update styles to support Bootstrap 5.3 dark mode.
  [lenadax]

- Depend on Bootstrap 5.3 enabled packages.
  [lenadax]

- Re-activate Robottests.
  [petschki]


3.0.1 (2023-02-24)
------------------

- Set modal closeOnClick to false to prevent modal closing when selecting text.
  (#522)
  [lenadax]

- Disable ability to edit the Discussion, Document byline, Related Items and
  Keywords tiles. (#517)
  [frapell]

- Define some webpack optimizations for generated chunks
  [frapell]


3.0.0 (2022-12-12)
------------------

- Fix saving/editing custom layouts and remove TTW layouts editing in the controlpanel.
  [petschki]

- Refactor resource bundles: use only one mosaic bundle.
  [petschki]


3.0.0b1 (2022-11-25)
--------------------


- Add upgrade steps to cleanup resource registry.
  [petschki]

- Upgrade JS dependencies and GHA config.
  [petschki]


3.0.0a6 (2022-08-17)
--------------------

- Fix saving TinyMCE content when editing source code.
  [petschki]

- Fix saving data in properties modal which got lost after saving mosaic page.
  [petschki]

- generalization in modal positioning (top center)
  [petschki]


3.0.0a5 (2022-08-02)
--------------------

- Code cleanup in properties modal.
  [petschki]

- Fix moving Tiles when there are `max-columns` tiles within a row.
  [petschki]

- Layout column handle drag/drop fixes and cleanup.
  [petschki]


3.0.0a4 (2022-07-22)
--------------------

- Fixed properties modal.
  [petschki]

- Update to mockup 5.0.0-alpha.18
  [petschki]


3.0.0a3 (2022-07-20)
--------------------

- Update to mockup 5.0.0-alpha.17 -> This fixes file upload in modal forms.
  [petschki]

- Fixed old upgrade step that tried to set plone.lessvariables.
  Ignore this on Plone 6, because it fails.
  [maurits]


3.0.0a2 (2022-07-07)
--------------------

- Update to mockup 5.0.0-alpha.12
- Packaging fixes
  [petschki]


3.0.0a1 (2022-06-28)
--------------------

- Refactoring of mosaic editor:

  - ES6 class construction
  - use mockup `pat-tinymce`
  - use mockup `pat-plone-modal`
  - get rid of $.mosaic initialization
  - start getting rid of jQuery (uncompleted)

  [petschki]

- Do not load mosaic editor on babel add form (`++addtranslation++...`).
  [jensens]

- pyupgrade, black, isort
  [jensens]

- Remove buildout and use mxdev/Makefile based approach.
  Plone 6 only.
  [jensens]

- Remove obsolete BS3 demo.
  [jensens]

- Add row columns presets feature for the row stiles
  [balavec]

- Fix advanced mode tile insert
  [balavec]

- Update for Bootstrap 5
  [agitator]


2.2.5 (2022-06-28)
------------------

- Bugfix: Use TinyMCE `getContent()` to get editor contents on save
  [frapell]

- Add ``bootstrapPath`` less variable.
  Now the bundle can be built with ``plone-compile-resources``.
  Contains an upgrade step.
  [thet]

- Fix Flake8 errors
  [jugmac00]


2.2.4 (unreleased, no changes)
------------------------------


2.2.3 (2020-07-02)
------------------

- Remove obsolete ``mockup-patterns-base`` -> use ``pat-base``
  [petschki]

- fix TinyMCE drop-down menus in toolbar by implementing ``ui_container`` option
  [petschki]


2.2.2 (2020-04-07)
------------------

- Fix ``plone.app.contenttypes`` dependency for Plone 5.1
  [agitator]

- Improve TinyMCE toolbar sticky computation
  [frapell]

- fix .mosaic-width-quarter/.mosaic-width-three-quarters grid CSS to wrap correctly
  [petschki]

- refactor mosaic-grid.less imports to avoid duplicated CSS selectors. (#453)
  [petschki]

- be more specific when removing top-margin
  [petschki]

- safely read tile weight from registry
  [petschki]

- refactor test-suites and add robot-tests
  [petschki]

- Fix pip install command in ``.travis.yml``
  [staeff]

- Fix byte-string join in ``main_template.py``
  [1letter]

- Bug-fix in robot test
  [1letter]


2.2.1 (2019-02-21)
------------------

Bug fixes:

- add ``plone-container-xl`` width for mosaic-rows and fix layout when left toolbar is enabled/expanded
  [petschki]

- Fix action button sorting (see #439)
  [petschki]

- Fix issue with renamed IRichTextBehavior class
  [petschki]

- Plone 5.1 compatible versions
  [petschki]


2.2.0 (2019-02-20)
------------------

New features:

- add uninstall profile for Plone versions >= 5
  [petschki]

- add python 3 compatibility
  [petschki]

Bug fixes:

- when deleting custom layout within ``manage custom layouts`` do not show currently selected layout in ``replacement layout`` listing.
  [petschki]

- Add styles to remove top-margin on first elements in a grid-cell
  [MrTango]


2.1.1 (2018-05-17)
------------------

- Fluid row styles only make sense on pages without portlets.
  In Plone 5.1.3 we can check that automatically (with plone.app.layout 2.8.0) and those styles are only active if no portlet columns are shown.
  [agitator]


2.1.0 (2018-04-13)
------------------

New features:

- Add functionality for fluid (full width) rows.
  [agitator, davilima6]

- Add documentation for advanced editor features.
  [agitator, davilima6]

Bug fixes:

- Image in "Existing-Content" Tile scaled width only, height was kept and aspect-ratio broke.
  Fixes https://github.com/plone/plone.app.standardtiles/issues/83.
  [jensens]

- Hide dependencies - like blocks and tiles - of Mosaic from appearing at Plone site setup.
  This reduces confusion and removes clutter from the setup screen.
  [jensens]

- Transform: Acquire a safe context or the portal object.
  In cases of a 404 page, the context is a browser view.
  [thet]

- Imports are Python3 compatible
  [b4oshany]

- Cleanup old code that would initialize TinyMCE several times for richtext tiles
  Fixes `issue 407 <https://github.com/plone/plone.app.mosaic/issues/407>`_.
  [frapell]


2.0rc8 (2017-09-05)
-------------------

WARNING: Upgrading from plone.app.mosaic 1.x will make pages with mosaic layout
look empty until plone.app.blocks has been upgraded (upgrade steps been run).
After upgrade, you may need to manually tweak Plone registry to only display
the desired tiles.

Bug fixes:

- Fix regression in 2.0.rc7 where removal of dead code was not completed
  resulting in a runtime error
  [datakurre]


2.0rc7 (2017-08-21)
-------------------

New features:

- Add simple descriptions for all the tiles listed in the docs.
  [cguardia]

- Allow to nest columns inside a cell
  [frapell]

- Allow to include custom CSS on rows
  [frapell]

Bug fixes:

- Fix issue where default rich text tiles had context menu
  from legacy HTML table tile
  [datakurre]

- Fix issue where TinyMCE was broken in properties overlay
  [datakurre]

- Fix issue where title field value was not set on some IE version
  [datakurre]

- Fix issue where block elements with display 'flex' were not blurred
  [datakurre]


2.0rc5 (2017-04-06)
-------------------

New features:

- Add support for optional ``permission``-key in content layout manifests
  [datakurre]

Bug fixes:

- Fix grid and row styles for anonymous
  [agitator]

- Fix issue where global TinyMCE setting for paste_as_text was not
  respected
  [datakurre]

- Fix issue where Mosaic Editor was activated on babel edit view
  [datakurre]

- Fix issue where Mosaic transforms did fire for ESI requests for ESI
  tile helper views
  [datakurre]

- Fix issue where multiple tile configurations from the same page were being
  autosaved at the same time causing write conflict errors
  [datakurre]

- Fix issue where configured text tile content was not removed from the server
  when tile was deleted
  [datakurre]

Other changes:

- Remove unneeded unittest2 imports
  [tomgross]


2.0.0rc4 (2016-12-13)
---------------------

New features:

- Show layouts description in Mosaic Select Layout overlay
  [annegilles]

Bug fixes:

- Disable non-functional table of contents tile by default
  [datakurre]

- Fix issue where toolbar menus were initially hidden on custom layout
  [datakurre]

- Fix issue where TinyMCE format menu was not visible
  [datakurre]

- Fix issue where default layouts did not work properly, because they were
  registered as unicode strings when encoded ASCII strings were required
  [datakurre]

- Fix to disable layout editor when edit form has a status message
  (which is usually a validation error message) as workaround for
  editor not being able to display validation errors
  [datakurre]


2.0.0rc3 (2016-11-27)
---------------------

WARNING: Migration from 1.0.0 to 2.0.0 may still have unsolved issues.

New features:

- In the ``BodyClass`` transform, retrieve the content layout path from
  ILayoutAware provided method which also considers default paths registered in
  the registry. Fixes no layout classes added to the body tag with default
  content layouts for types.
  [thet]

- Show layouts description in Mosaic Select Layout overlay
  [annegilles]

- Include source code button into TinyMCE toolbar by default
  [datakurre]

Bug fixes:

- ``plone_view/mark_view`` was deprecated and removed.
  Use ``plone_layout/mark_view`` instead.
  [thet]

- Fix issue where incomplete mosaic-grid bundle definition broke
  Plone bundle merge
  [datakurre]
- Enhance documentation
  [agitator, AnneGilles, krissik, staeff]

- Fixes problems introduces with grid responsive styles
  [agitator]


2.0.0rc2 (2016-09-15)
---------------------

Bug fixes:

- Fix issue where layout menu was misplaced in Mosaic toolbar
  [datakurre]


2.0.0rc1 (2016-09-15)
---------------------

WARNING: Migration from 1.0.0 to 2.0.0 may still unsolved have issues.

Breaking changes:

- Drop compatibility with Plone 4.3. For Plone 4.3 support, please use
  plone.app.mosaic < 2.0
  [datakurre, jensens]

- Depend on adapterized plone.app.blocks >= 4.0.0
  [jensens]

- Depend on plone.app.contenttypes (for GS install profile)
  [jensens]

- Move to using plone.app.standardtiles.html instead of
  the deprecated plone.app.standardtiles.rawhtml
  [vangheem]

- No longer use special HTML tiles that do not work in reusable layouts.
  These tiles are now all deprecated: table, numbers, bullets, text,
  subheading, heading
  [vangheem]

- Remove use image and attachment tiles as they are now deprecated
  [vangheem]

- Move custom layout from 'content' to 'customContentLayout' attribute
  [datakurre]

- Replace Deco-grid styles with Bootstrap mixins form mixins.grid.plone.less.
  Allows to use override grid system using standard mosaic class names.
  Main purpose is to unify the edit and view of your layout
  (fixes https://github.com/plone/plone.app.mosaic/issues/231).
  [agitator]

New features:

- Customize add form for types that have ILayoutAware enabled so that it just
  presents a title/description field
  [vangheem]

- Provide outline mode to be able to inspect rows and tiles
  [datakurre]

- Add preview button (disabled by default) for previewing currently edited
  layout
  [datakurre]

- Add a new raw embed tile
  [agitator]

- Saving a layout will now save default values for html tiles on the
  reusable layout.
  [vangheem]

- Provide better use of permissions in UI and enforcements on the server
  [vangheem]

- Enhance layout selector styles
  [vangheem]

- Hide plone toolbar when mosaic editor is active
  [vangheem]

- Move tile remove button onto tile instead of in toolbar
  [vangheem]

- Rename "Close" to "Done" on properties form.
  [vangheem]

- Add sitelayouts-meta.zcml, which allows enabling site layouts in
  buildout with ``zcml = plone.app.mosaic-meta:sitelayouts-meta.zcml``
  [datakurre]

Bug fixes:

- Handle missing tiles and tile configuration with layout editor where it
  doesn't destroy user's ability to still edit the layout/tiles.
  [vangheem]

- Fix bug when tinymce editor would no longer work when dragging one rich text
  tile around another rich text tile.
  [vangheem]

- Fixes TinyMCE focus issues, disables row merging
  [vangheem]

- Fix TinyMCE Insert Image search results to have fixed maximum height
  to prevent it from flowing over viewport
  [datakurre]

- Fix fieldset tabbing not working after user edits field tiles
  [vangheem]

- Fix pasting into title, description fields
  [vangheem]

- Use POST to render tiles through the editor so default query parameters
  provided in url can be utilized with latest plone.tiles
  [vangheem]

- Fix problem where layouts could be saved without a name
  [vangheem]

- Fix table context menu overlapping modals
  [vangheem]

- Fix default layout image not showing properly
  [vangheem]

- Fix modal to be structured like other plone modals
  [vangheem]

- Fix to not set own overhead space of edit modal, the default should apply
  [jensens]

- Fix reference to default layout preview image
  [vangheem]

- Fix issue where pattern settings are not applied to the body tag for mosaic
  layouts
  [jensens]

- Fix issue where plone_pattern_setting view lookup ran into empty
  (now renders all)
  [jensens]

Refactoring:

- Move list of valid layout view names for LayoutWidget in a module variable,
  so it can be extended on demand
  [jensens]

- Remove superfluous empty testing gs profile and its zcml
  [jensens]

- Log warning if plone_pattern_settings view was not found
  [jensens]

- Fix robot tests in docs to no run into timing traps
  [jensens, gforcada]

- Use buildout.coredev version pins
  [gforcada]

- Update testing infrastructure
  [gforcada]

- Make layouts HTML valid
  [gforcada]

- Add Webpack based frontend development flow
  [datakurre]


1.0 (2016-04-11)
----------------

- Nothing changed.


1.0rc2 (2016-04-08)
-------------------

- Fixed TypeError during editing when no layout resource directory was
  found.  [maurits]


1.0rc1 (2016-04-07)
-------------------

New:

- Allow users to save layouts they are creating
  [vangheem]

- If only one layout is available, auto-select it.
  [vangheem]

- Be able to show/hide content layouts.
  [vangheem]

- Add *Mosaic layout* into available views views when layout behavior
  is enabled and remove the view when layout behavior is disabled from
  a portal ype
  [datakurre]

- Ability to limit maximum amount of Mosaic columns by setting
  ``data-max-columns`` attribute on ``data-panel`` -element (default: 4).
  [neilferreira]

- Align rich text editor right if the tile is more on the right side
  of the page
  [vangheem]

Fixes:

- Do not remove data-pat-tinymce body attribute as this is not
  necessary with how tinymce is initialized anymore
  [vangheem]

- Fix use of rawhtml text tile
  [vangheem]

- Fix case where you could get an error on save because mosaic could not figure out
  the tile type correctly
  [vangheem]

- Do not allow hitting enter for editing non-rich text fields
  [vangheem]

- Disable clicking links of content inside tiles while in edit mode
  [vangheem]

- Fix TinyMCE widget in add-form which was broken due to a change how the
  settings are stored in Plone 5 vs 4. BBB compatible.
  [jensens]

- Fix tinymce toolbar scrolling out of view with large rich text tiles.
  TinyMCE toolbar will now being sticky as the user scrolls down.
  [vangheem]

- Fix tiles not rendering correctly if they contain JavaScript patterns
  when adding and moving them around.
  [vangheem]

- Fix do not add _layout multiple times to tile data
  [vangheem]

- Fix issue where spurious &nbsp; was getting saved to description
  [vangheem]

- Issue when registry configuration parsing would throw an error
  [vangheem]

- Fix issue where you would end up saving non-resolveuid urls to rawhtml
  tiles and also prevent write conflicts when the editor sends out multiple
  edits at the same time
  [vangheem]

- Fix to only show drag handlers if customizing layout
  [vangheem]

- fix issue where you would no longer be able to edit a rich text area
  after you clear the whole area out
  [vangheem]

- Fix weird Firefox bug with TinyMCE that prevented data from being saved.
  [vangheem]

- Fix properties overlay to be scrollable.
  [vangheem]

- Fix issue where tile field wouldn't get saved back to form with
  some refactoring.
  [vangheem]

- Fix issue where first fieldset would not show on properties modal.
  [vangheem]


1.0b3 (2015-09-29)
------------------

- Add ploneimage action for richtext tiles' toolbar
  [datakurre]

- Add transforms to set 'layout-' with active content layout name or
  'layout-custom' into body class
  [datakurre]


1.0b2 (2015-09-16)
------------------

- Fix issue where mosaic-grid was enabled even a default grid system was set
  [datakurre]

- Fix issue where Plone body class was added twice
  [datakurre]

- Fix issue where contentLayout field was shown in tile menu
  [datakurre]

- Pin plone.app.standardtiles >= 1.0b3
  [datakurre]


1.0b1 (2015-09-16)
------------------

- Change layout behavior default view from ``view`` to ``layout_view``
  [datakurre]

- Change to enable *Mosaic layout* noly for Document, Event, Folder and News
  Item by default
  [datakurre]

- Change text formatting actions from top toolbar to inline TinyMCE toolbars
  [datakurre]

- Change remove tile icon from inline close icons to top toolbar button
  [datakurre]

- Change BS3 as default grid system on Plone 5
  [vangheem]

- Change site layouts be disabled unless ``mosaic-sitelayouts`` feature is set
  [datakurre]

- Change displayemenu support be disabled unless ``mosaic-layoutmenu`` feature
  is set
  [datakurre]

- Change *Custom layout* menu item to be called *Mosaic layout*
  [datakurre]

- Change install to no longer to make *Mosaic layout* the default by default
  [datakurre]

- Add layout editor control panel for Plone 5
  [vangheem]

- Add link and unlink actions
  [datakurre]

- Add table tile
  [datakurre]

- Remove grid system from example layouts (to use configured default grid)
  [vangheem]

- Remove previously provided TTW content layout examples
  [datakurre]

- Fixed to work with (and require) plone.app.blocks >= 3.0.0
  [vangheem]

- Fix GenericSetup profile registration (removed "for")
  [agitator]

- Fix issue where title field tile and content tile being use on same page
  would cause weird issues with saving title values
  [vangheem]

- Fix situation where layout editor broke with broken or missing tiles
  [vangheem]

- Fix issue where check could not add tile with required selection field
  [datakurre]

1.0a3 (2015-06-10)
------------------

- Add "Bootstrap 3 Demo" example site layouts for Plone 5
  [datakurre]
- Add support for plone.app.blocks' generic data grid transform
  [datakurre]
- Change the default site layouts in Plone 5 to use 12 column deco grids
  [datakurre]
- Fix various site layout support related issues
  [datakurre]
- Upgrade to plone.app.drafts >= 1.0b3 and plone.app.blocks >= 2.1.2
  [datakurre]

1.0a2 (2015-06-08)
------------------

- Add 'Center tile content' tile style to allow e.g. centering of image tiles
  [datakurre]
- Add site and page layout fields to be available on properties overlay
  [datakurre]
- Add HTML tag language transform to set correct language for HTML site layouts
  [datakurre]
- Add HTML body tag class transform to set body class for HTML site layouts
  [datakurre]
- Add HTTP headers transform to ensure that the response headers normally set by
  plone.httpheaders viewlet manager are also set for HTML site layouts
  [datakurre]
- Update example site and content layouts
  [datakurre]
- Fix to only cache site layout when it's not the default main_template
  [datakurre]
- Upgrade to plone.app.drafts >= 1.0b2 and plone.app.standardtiles >= 1.0b1
  [datakurre]

1.0a1 (2015-05-27)
------------------

- First technology preview release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/plone/plone.app.mosaic",
    "name": "plone.app.mosaic",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "Python Plone javascript mosaic grideditor",
    "author": "Plone Foundation",
    "author_email": "foundation@plone.org",
    "download_url": "https://files.pythonhosted.org/packages/0a/04/0454d009f623c84e88520dcef8f7f9ae64a298959b3dea5bc9edbf960e82/plone.app.mosaic-3.1.5.tar.gz",
    "platform": null,
    "description": "Plone Mosaic\n============\n\n**Plone Mosaic** is a site builder and layout solution for Plone Classic-UI.\n\nVersion Information\n-------------------\n\n- Version 3.1.x -> Plone 6.0.6+\n- Version 3.0.x -> Plone 6.0.0 - 6.0.5\n- Version 2.2.x -> Plone 5.1 + 5.2\n\nNote on Version 3.0.x:\n\nThis version uses Bootstrap 5.2.x which was used in Plone 6.0.0 - 6.0.5.\nSince Plone 6.0.6 the Bootstrap Version is updated to 5.3, therefore the latest\n3.1.x release is recommended.\n\n\nConcepts\n--------\n\nMosaic, Blocks_ and Tiles_ provide a simple, yet powerful way to manage the pages on your Plone website.\nAt their core, they rely on semantic HTML and resources with valid, publishable URLs.\n\n**Mosaic Editor** editor is a visual editor for pages rendered using Blocks.\nIt relies on a grid system to place tiles onto a page in an intuitive, WYSIWYG, drag-and-drop manner.\nUsing Mosaic Editor, it is easy to compose pages with complex, balanced and visually appealing layouts.\n\nCurrently, the Mosaic Editor is activated, when any content with *Mosaic layout* view active is being edited.\n(Mosaic layout is available for any content with *Layout support* behavior enabled.)\n\n**Blocks** is a rendering algorithm based on HTML markup conventions.\nA page managed by Mosaic Editor is stored as a simple HTML document.\nIt is representing the actual content of that page as a standalone, publishable resource devoid of any site layout content (e.g. global navigation elements).\nThis is referred to as *content layout*.\n\n**Tiles** represent the dynamic portions of a page.\nAt its most basic level, a tile is simply an HTML document with a publishable URL.\n\nIn practice, tiles are usually implemented as browser views deriving from the ``Tile`` base class and registered with the ``<plone:tile />`` ZCML directive.\nThis allows tiles to have some basic metadata and automatically generated edit forms for any configurable aspects, which Mosaic will expose to users.\nSee `plone.tiles`_ for examples.\n\nWhen work with tiles in Mosaic Editor, there are three types of tiles:\n\nText tiles\n    Static HTML markup (WYSIWYG-edited text) placed into the content or site layout.\n    Strictly speaking, text tiles are not tiles in that they do not involve any tile fetching or merging - instead they are stored as part of the page or site layout.\n    To the user, however, a text tile can be moved around and managed like any other.\n\nField tiles\n    Render the value of a metadata field such as the title or description.\n    The values of field tiles may be edited in-place in the page,\n    but the value is stored in the underlying field and can be indexed in the catalog, used for navigation and so on.\n    In practice, a field tile is an instance of the special tile ``plone.app.standardtiles.fields`` with the field name passed as a parameter.\n\nApp tiles\n    Any other type of dynamic tile. Examples may include a folder listing, a media player, a poll or pretty much anything else you can think of.\n\n..  _Blocks: https://pypi.python.org/pypi/plone.app.blocks\n..  _Tiles: https://pypi.python.org/pypi/plone.app.tiles\n..  _plone.tiles: https://pypi.python.org/pypi/plone.tiles\n\n\nAdvanced Editor usage\n---------------------\n\nAdvanced mode\n    If you press the \"alt\" key you will be shown the layout structure, labels for your tiles and css classes for rows.\n\nCustom classes on rows\n    Also in the advanced mode, you're able to add custom classes on rows by double clicking the displayed row class.\n\nSubcolumns\n    In order to nest columns inside a cell, drag a tile, then press the \"ctrl\" key and drop the tile close to an\n    existing one, either before or after it, in accordance to the shown insert marker.\n\nFluid rows\n    For fluid (full width) rows select any tile in the row and choose \"Fluid\" from the \"Format\" menu.\n    Fluid row styles only make sense on pages without portlets. In Plone 5.1.3 we can check that automatically\n    (with plone.app.layout 2.8.0) and those styles are only active if no portlet columns are shown.\n    Since version 3 and Bootstrap 5 there's a feature for `fluid-row-background` which stretches the background of\n    the row to 100% width but keeps the columns to the page container width.\n\n\nInstallation\n------------\n\n**Plone Mosaic** is installed by building a Plone site with package\n``plone.app.mosaic`` and activating its **Plone Mosaic** add-on.\n\n*The dependencies are already version pinned in Plones ecosystem.*\n\nAfter the add-on activation, the new content layout and editor support can be\nenabled for any content type by enabling behaviors **Layout support** and\n**Drafting support**.\n\n\nAn example ``buildout.cfg`` for Plone ``6.x`` could look like this::\n\n    [buildout]\n    extends =\n        https://dist.plone.org/release/6.0-latest/versions.cfg\n        https://dist.plone.org/release/6.0-latest/versions-ecosystem.cfg\n\n    parts =\n        instance\n        ...\n\n    [instance]\n    recipe = plone.recipe.zope2instance\n    eggs =\n        Plone\n        plone.app.mosaic\n\n    ...\n\n\nChangelog\n=========\n\n3.1.5 (2023-10-24)\n------------------\n\n- Re-implement custom tinymce toolbar settings from mosaic registry.\n  [petschki]\n\n\n3.1.4 (2023-08-14)\n------------------\n\n- JavaScript: Reformat JavaScript with prettier and fix eslint errors.\n- JavaScript: Loose dependencies to let Module Federation work with any Mockup version.\n- JavaScript: Use the Module Federation name from package.json.\n- JavaScript: Set the textarea contents via value rather than innerText.\n  [thet]\n\n- Re-implement `Custom layout` management functionality without pattern logic.\n  [petschki]\n\n- Fixing field editing in Properties form.\n  [petschki, jensens, gogobd]\n\n- Fixing tile settings modal.\n  [petschki]\n\n- Re-implement \"elastic\" column resizing.\n  [petschki]\n\n\n3.1.3 (2023-06-27)\n------------------\n\n\n- Fix `text` field tile initialization after refactoring modules in `plone.app.z3cform`\n  [petschki]\n\n\n3.1.2 (2023-06-05)\n------------------\n\n- Update dependencies to Bootstrap 5.3 final versions.\n  [petschki]\n\n\n3.1.1 (2023-05-16)\n------------------\n\n- Cleanup and update `advanced view` styles.\n  [petschki]\n\n- Remove obsolete row column presets from `Format` menu.\n  [petschki]\n\n- Refactor `TinyMCE` implementation: reuse already registered pattern from\n  the registry. This fixes initialization issues and duplicated chunk loading.\n  [petschki]\n\n- Fix toolbar buttons visibility based on current selected layout template\n  or customized layout.\n  [petschki]\n\n- Fix App Tile addForm modal event handling.\n  [petschki]\n\n- Fix for `#547 <https://github.com/plone/plone.app.mosaic/issues/547>`_\n  [frapell, petschki]\n\n- Fix for `#541 <https://github.com/plone/plone.app.mosaic/issues/541>`_\n  [petschki]\n\n- Correctly await the TinyMCE initialization and avoid TinyMCE double initialization.\n  [thet]\n\n- Fix CI builds which were failing with \"pip: error: no such option: --install-option\"\n  [fredvd, thet]\n\n- Remove ``plonetheme.barceloneta`` dependency. (Not needed)\n  [toalba]\n\n\n3.1.0 (2023-03-06)\n------------------\n\n- Update styles to support Bootstrap 5.3 dark mode.\n  [lenadax]\n\n- Depend on Bootstrap 5.3 enabled packages.\n  [lenadax]\n\n- Re-activate Robottests.\n  [petschki]\n\n\n3.0.1 (2023-02-24)\n------------------\n\n- Set modal closeOnClick to false to prevent modal closing when selecting text.\n  (#522)\n  [lenadax]\n\n- Disable ability to edit the Discussion, Document byline, Related Items and\n  Keywords tiles. (#517)\n  [frapell]\n\n- Define some webpack optimizations for generated chunks\n  [frapell]\n\n\n3.0.0 (2022-12-12)\n------------------\n\n- Fix saving/editing custom layouts and remove TTW layouts editing in the controlpanel.\n  [petschki]\n\n- Refactor resource bundles: use only one mosaic bundle.\n  [petschki]\n\n\n3.0.0b1 (2022-11-25)\n--------------------\n\n\n- Add upgrade steps to cleanup resource registry.\n  [petschki]\n\n- Upgrade JS dependencies and GHA config.\n  [petschki]\n\n\n3.0.0a6 (2022-08-17)\n--------------------\n\n- Fix saving TinyMCE content when editing source code.\n  [petschki]\n\n- Fix saving data in properties modal which got lost after saving mosaic page.\n  [petschki]\n\n- generalization in modal positioning (top center)\n  [petschki]\n\n\n3.0.0a5 (2022-08-02)\n--------------------\n\n- Code cleanup in properties modal.\n  [petschki]\n\n- Fix moving Tiles when there are `max-columns` tiles within a row.\n  [petschki]\n\n- Layout column handle drag/drop fixes and cleanup.\n  [petschki]\n\n\n3.0.0a4 (2022-07-22)\n--------------------\n\n- Fixed properties modal.\n  [petschki]\n\n- Update to mockup 5.0.0-alpha.18\n  [petschki]\n\n\n3.0.0a3 (2022-07-20)\n--------------------\n\n- Update to mockup 5.0.0-alpha.17 -> This fixes file upload in modal forms.\n  [petschki]\n\n- Fixed old upgrade step that tried to set plone.lessvariables.\n  Ignore this on Plone 6, because it fails.\n  [maurits]\n\n\n3.0.0a2 (2022-07-07)\n--------------------\n\n- Update to mockup 5.0.0-alpha.12\n- Packaging fixes\n  [petschki]\n\n\n3.0.0a1 (2022-06-28)\n--------------------\n\n- Refactoring of mosaic editor:\n\n  - ES6 class construction\n  - use mockup `pat-tinymce`\n  - use mockup `pat-plone-modal`\n  - get rid of $.mosaic initialization\n  - start getting rid of jQuery (uncompleted)\n\n  [petschki]\n\n- Do not load mosaic editor on babel add form (`++addtranslation++...`).\n  [jensens]\n\n- pyupgrade, black, isort\n  [jensens]\n\n- Remove buildout and use mxdev/Makefile based approach.\n  Plone 6 only.\n  [jensens]\n\n- Remove obsolete BS3 demo.\n  [jensens]\n\n- Add row columns presets feature for the row stiles\n  [balavec]\n\n- Fix advanced mode tile insert\n  [balavec]\n\n- Update for Bootstrap 5\n  [agitator]\n\n\n2.2.5 (2022-06-28)\n------------------\n\n- Bugfix: Use TinyMCE `getContent()` to get editor contents on save\n  [frapell]\n\n- Add ``bootstrapPath`` less variable.\n  Now the bundle can be built with ``plone-compile-resources``.\n  Contains an upgrade step.\n  [thet]\n\n- Fix Flake8 errors\n  [jugmac00]\n\n\n2.2.4 (unreleased, no changes)\n------------------------------\n\n\n2.2.3 (2020-07-02)\n------------------\n\n- Remove obsolete ``mockup-patterns-base`` -> use ``pat-base``\n  [petschki]\n\n- fix TinyMCE drop-down menus in toolbar by implementing ``ui_container`` option\n  [petschki]\n\n\n2.2.2 (2020-04-07)\n------------------\n\n- Fix ``plone.app.contenttypes`` dependency for Plone 5.1\n  [agitator]\n\n- Improve TinyMCE toolbar sticky computation\n  [frapell]\n\n- fix .mosaic-width-quarter/.mosaic-width-three-quarters grid CSS to wrap correctly\n  [petschki]\n\n- refactor mosaic-grid.less imports to avoid duplicated CSS selectors. (#453)\n  [petschki]\n\n- be more specific when removing top-margin\n  [petschki]\n\n- safely read tile weight from registry\n  [petschki]\n\n- refactor test-suites and add robot-tests\n  [petschki]\n\n- Fix pip install command in ``.travis.yml``\n  [staeff]\n\n- Fix byte-string join in ``main_template.py``\n  [1letter]\n\n- Bug-fix in robot test\n  [1letter]\n\n\n2.2.1 (2019-02-21)\n------------------\n\nBug fixes:\n\n- add ``plone-container-xl`` width for mosaic-rows and fix layout when left toolbar is enabled/expanded\n  [petschki]\n\n- Fix action button sorting (see #439)\n  [petschki]\n\n- Fix issue with renamed IRichTextBehavior class\n  [petschki]\n\n- Plone 5.1 compatible versions\n  [petschki]\n\n\n2.2.0 (2019-02-20)\n------------------\n\nNew features:\n\n- add uninstall profile for Plone versions >= 5\n  [petschki]\n\n- add python 3 compatibility\n  [petschki]\n\nBug fixes:\n\n- when deleting custom layout within ``manage custom layouts`` do not show currently selected layout in ``replacement layout`` listing.\n  [petschki]\n\n- Add styles to remove top-margin on first elements in a grid-cell\n  [MrTango]\n\n\n2.1.1 (2018-05-17)\n------------------\n\n- Fluid row styles only make sense on pages without portlets.\n  In Plone 5.1.3 we can check that automatically (with plone.app.layout 2.8.0) and those styles are only active if no portlet columns are shown.\n  [agitator]\n\n\n2.1.0 (2018-04-13)\n------------------\n\nNew features:\n\n- Add functionality for fluid (full width) rows.\n  [agitator, davilima6]\n\n- Add documentation for advanced editor features.\n  [agitator, davilima6]\n\nBug fixes:\n\n- Image in \"Existing-Content\" Tile scaled width only, height was kept and aspect-ratio broke.\n  Fixes https://github.com/plone/plone.app.standardtiles/issues/83.\n  [jensens]\n\n- Hide dependencies - like blocks and tiles - of Mosaic from appearing at Plone site setup.\n  This reduces confusion and removes clutter from the setup screen.\n  [jensens]\n\n- Transform: Acquire a safe context or the portal object.\n  In cases of a 404 page, the context is a browser view.\n  [thet]\n\n- Imports are Python3 compatible\n  [b4oshany]\n\n- Cleanup old code that would initialize TinyMCE several times for richtext tiles\n  Fixes `issue 407 <https://github.com/plone/plone.app.mosaic/issues/407>`_.\n  [frapell]\n\n\n2.0rc8 (2017-09-05)\n-------------------\n\nWARNING: Upgrading from plone.app.mosaic 1.x will make pages with mosaic layout\nlook empty until plone.app.blocks has been upgraded (upgrade steps been run).\nAfter upgrade, you may need to manually tweak Plone registry to only display\nthe desired tiles.\n\nBug fixes:\n\n- Fix regression in 2.0.rc7 where removal of dead code was not completed\n  resulting in a runtime error\n  [datakurre]\n\n\n2.0rc7 (2017-08-21)\n-------------------\n\nNew features:\n\n- Add simple descriptions for all the tiles listed in the docs.\n  [cguardia]\n\n- Allow to nest columns inside a cell\n  [frapell]\n\n- Allow to include custom CSS on rows\n  [frapell]\n\nBug fixes:\n\n- Fix issue where default rich text tiles had context menu\n  from legacy HTML table tile\n  [datakurre]\n\n- Fix issue where TinyMCE was broken in properties overlay\n  [datakurre]\n\n- Fix issue where title field value was not set on some IE version\n  [datakurre]\n\n- Fix issue where block elements with display 'flex' were not blurred\n  [datakurre]\n\n\n2.0rc5 (2017-04-06)\n-------------------\n\nNew features:\n\n- Add support for optional ``permission``-key in content layout manifests\n  [datakurre]\n\nBug fixes:\n\n- Fix grid and row styles for anonymous\n  [agitator]\n\n- Fix issue where global TinyMCE setting for paste_as_text was not\n  respected\n  [datakurre]\n\n- Fix issue where Mosaic Editor was activated on babel edit view\n  [datakurre]\n\n- Fix issue where Mosaic transforms did fire for ESI requests for ESI\n  tile helper views\n  [datakurre]\n\n- Fix issue where multiple tile configurations from the same page were being\n  autosaved at the same time causing write conflict errors\n  [datakurre]\n\n- Fix issue where configured text tile content was not removed from the server\n  when tile was deleted\n  [datakurre]\n\nOther changes:\n\n- Remove unneeded unittest2 imports\n  [tomgross]\n\n\n2.0.0rc4 (2016-12-13)\n---------------------\n\nNew features:\n\n- Show layouts description in Mosaic Select Layout overlay\n  [annegilles]\n\nBug fixes:\n\n- Disable non-functional table of contents tile by default\n  [datakurre]\n\n- Fix issue where toolbar menus were initially hidden on custom layout\n  [datakurre]\n\n- Fix issue where TinyMCE format menu was not visible\n  [datakurre]\n\n- Fix issue where default layouts did not work properly, because they were\n  registered as unicode strings when encoded ASCII strings were required\n  [datakurre]\n\n- Fix to disable layout editor when edit form has a status message\n  (which is usually a validation error message) as workaround for\n  editor not being able to display validation errors\n  [datakurre]\n\n\n2.0.0rc3 (2016-11-27)\n---------------------\n\nWARNING: Migration from 1.0.0 to 2.0.0 may still have unsolved issues.\n\nNew features:\n\n- In the ``BodyClass`` transform, retrieve the content layout path from\n  ILayoutAware provided method which also considers default paths registered in\n  the registry. Fixes no layout classes added to the body tag with default\n  content layouts for types.\n  [thet]\n\n- Show layouts description in Mosaic Select Layout overlay\n  [annegilles]\n\n- Include source code button into TinyMCE toolbar by default\n  [datakurre]\n\nBug fixes:\n\n- ``plone_view/mark_view`` was deprecated and removed.\n  Use ``plone_layout/mark_view`` instead.\n  [thet]\n\n- Fix issue where incomplete mosaic-grid bundle definition broke\n  Plone bundle merge\n  [datakurre]\n- Enhance documentation\n  [agitator, AnneGilles, krissik, staeff]\n\n- Fixes problems introduces with grid responsive styles\n  [agitator]\n\n\n2.0.0rc2 (2016-09-15)\n---------------------\n\nBug fixes:\n\n- Fix issue where layout menu was misplaced in Mosaic toolbar\n  [datakurre]\n\n\n2.0.0rc1 (2016-09-15)\n---------------------\n\nWARNING: Migration from 1.0.0 to 2.0.0 may still unsolved have issues.\n\nBreaking changes:\n\n- Drop compatibility with Plone 4.3. For Plone 4.3 support, please use\n  plone.app.mosaic < 2.0\n  [datakurre, jensens]\n\n- Depend on adapterized plone.app.blocks >= 4.0.0\n  [jensens]\n\n- Depend on plone.app.contenttypes (for GS install profile)\n  [jensens]\n\n- Move to using plone.app.standardtiles.html instead of\n  the deprecated plone.app.standardtiles.rawhtml\n  [vangheem]\n\n- No longer use special HTML tiles that do not work in reusable layouts.\n  These tiles are now all deprecated: table, numbers, bullets, text,\n  subheading, heading\n  [vangheem]\n\n- Remove use image and attachment tiles as they are now deprecated\n  [vangheem]\n\n- Move custom layout from 'content' to 'customContentLayout' attribute\n  [datakurre]\n\n- Replace Deco-grid styles with Bootstrap mixins form mixins.grid.plone.less.\n  Allows to use override grid system using standard mosaic class names.\n  Main purpose is to unify the edit and view of your layout\n  (fixes https://github.com/plone/plone.app.mosaic/issues/231).\n  [agitator]\n\nNew features:\n\n- Customize add form for types that have ILayoutAware enabled so that it just\n  presents a title/description field\n  [vangheem]\n\n- Provide outline mode to be able to inspect rows and tiles\n  [datakurre]\n\n- Add preview button (disabled by default) for previewing currently edited\n  layout\n  [datakurre]\n\n- Add a new raw embed tile\n  [agitator]\n\n- Saving a layout will now save default values for html tiles on the\n  reusable layout.\n  [vangheem]\n\n- Provide better use of permissions in UI and enforcements on the server\n  [vangheem]\n\n- Enhance layout selector styles\n  [vangheem]\n\n- Hide plone toolbar when mosaic editor is active\n  [vangheem]\n\n- Move tile remove button onto tile instead of in toolbar\n  [vangheem]\n\n- Rename \"Close\" to \"Done\" on properties form.\n  [vangheem]\n\n- Add sitelayouts-meta.zcml, which allows enabling site layouts in\n  buildout with ``zcml = plone.app.mosaic-meta:sitelayouts-meta.zcml``\n  [datakurre]\n\nBug fixes:\n\n- Handle missing tiles and tile configuration with layout editor where it\n  doesn't destroy user's ability to still edit the layout/tiles.\n  [vangheem]\n\n- Fix bug when tinymce editor would no longer work when dragging one rich text\n  tile around another rich text tile.\n  [vangheem]\n\n- Fixes TinyMCE focus issues, disables row merging\n  [vangheem]\n\n- Fix TinyMCE Insert Image search results to have fixed maximum height\n  to prevent it from flowing over viewport\n  [datakurre]\n\n- Fix fieldset tabbing not working after user edits field tiles\n  [vangheem]\n\n- Fix pasting into title, description fields\n  [vangheem]\n\n- Use POST to render tiles through the editor so default query parameters\n  provided in url can be utilized with latest plone.tiles\n  [vangheem]\n\n- Fix problem where layouts could be saved without a name\n  [vangheem]\n\n- Fix table context menu overlapping modals\n  [vangheem]\n\n- Fix default layout image not showing properly\n  [vangheem]\n\n- Fix modal to be structured like other plone modals\n  [vangheem]\n\n- Fix to not set own overhead space of edit modal, the default should apply\n  [jensens]\n\n- Fix reference to default layout preview image\n  [vangheem]\n\n- Fix issue where pattern settings are not applied to the body tag for mosaic\n  layouts\n  [jensens]\n\n- Fix issue where plone_pattern_setting view lookup ran into empty\n  (now renders all)\n  [jensens]\n\nRefactoring:\n\n- Move list of valid layout view names for LayoutWidget in a module variable,\n  so it can be extended on demand\n  [jensens]\n\n- Remove superfluous empty testing gs profile and its zcml\n  [jensens]\n\n- Log warning if plone_pattern_settings view was not found\n  [jensens]\n\n- Fix robot tests in docs to no run into timing traps\n  [jensens, gforcada]\n\n- Use buildout.coredev version pins\n  [gforcada]\n\n- Update testing infrastructure\n  [gforcada]\n\n- Make layouts HTML valid\n  [gforcada]\n\n- Add Webpack based frontend development flow\n  [datakurre]\n\n\n1.0 (2016-04-11)\n----------------\n\n- Nothing changed.\n\n\n1.0rc2 (2016-04-08)\n-------------------\n\n- Fixed TypeError during editing when no layout resource directory was\n  found.  [maurits]\n\n\n1.0rc1 (2016-04-07)\n-------------------\n\nNew:\n\n- Allow users to save layouts they are creating\n  [vangheem]\n\n- If only one layout is available, auto-select it.\n  [vangheem]\n\n- Be able to show/hide content layouts.\n  [vangheem]\n\n- Add *Mosaic layout* into available views views when layout behavior\n  is enabled and remove the view when layout behavior is disabled from\n  a portal ype\n  [datakurre]\n\n- Ability to limit maximum amount of Mosaic columns by setting\n  ``data-max-columns`` attribute on ``data-panel`` -element (default: 4).\n  [neilferreira]\n\n- Align rich text editor right if the tile is more on the right side\n  of the page\n  [vangheem]\n\nFixes:\n\n- Do not remove data-pat-tinymce body attribute as this is not\n  necessary with how tinymce is initialized anymore\n  [vangheem]\n\n- Fix use of rawhtml text tile\n  [vangheem]\n\n- Fix case where you could get an error on save because mosaic could not figure out\n  the tile type correctly\n  [vangheem]\n\n- Do not allow hitting enter for editing non-rich text fields\n  [vangheem]\n\n- Disable clicking links of content inside tiles while in edit mode\n  [vangheem]\n\n- Fix TinyMCE widget in add-form which was broken due to a change how the\n  settings are stored in Plone 5 vs 4. BBB compatible.\n  [jensens]\n\n- Fix tinymce toolbar scrolling out of view with large rich text tiles.\n  TinyMCE toolbar will now being sticky as the user scrolls down.\n  [vangheem]\n\n- Fix tiles not rendering correctly if they contain JavaScript patterns\n  when adding and moving them around.\n  [vangheem]\n\n- Fix do not add _layout multiple times to tile data\n  [vangheem]\n\n- Fix issue where spurious &nbsp; was getting saved to description\n  [vangheem]\n\n- Issue when registry configuration parsing would throw an error\n  [vangheem]\n\n- Fix issue where you would end up saving non-resolveuid urls to rawhtml\n  tiles and also prevent write conflicts when the editor sends out multiple\n  edits at the same time\n  [vangheem]\n\n- Fix to only show drag handlers if customizing layout\n  [vangheem]\n\n- fix issue where you would no longer be able to edit a rich text area\n  after you clear the whole area out\n  [vangheem]\n\n- Fix weird Firefox bug with TinyMCE that prevented data from being saved.\n  [vangheem]\n\n- Fix properties overlay to be scrollable.\n  [vangheem]\n\n- Fix issue where tile field wouldn't get saved back to form with\n  some refactoring.\n  [vangheem]\n\n- Fix issue where first fieldset would not show on properties modal.\n  [vangheem]\n\n\n1.0b3 (2015-09-29)\n------------------\n\n- Add ploneimage action for richtext tiles' toolbar\n  [datakurre]\n\n- Add transforms to set 'layout-' with active content layout name or\n  'layout-custom' into body class\n  [datakurre]\n\n\n1.0b2 (2015-09-16)\n------------------\n\n- Fix issue where mosaic-grid was enabled even a default grid system was set\n  [datakurre]\n\n- Fix issue where Plone body class was added twice\n  [datakurre]\n\n- Fix issue where contentLayout field was shown in tile menu\n  [datakurre]\n\n- Pin plone.app.standardtiles >= 1.0b3\n  [datakurre]\n\n\n1.0b1 (2015-09-16)\n------------------\n\n- Change layout behavior default view from ``view`` to ``layout_view``\n  [datakurre]\n\n- Change to enable *Mosaic layout* noly for Document, Event, Folder and News\n  Item by default\n  [datakurre]\n\n- Change text formatting actions from top toolbar to inline TinyMCE toolbars\n  [datakurre]\n\n- Change remove tile icon from inline close icons to top toolbar button\n  [datakurre]\n\n- Change BS3 as default grid system on Plone 5\n  [vangheem]\n\n- Change site layouts be disabled unless ``mosaic-sitelayouts`` feature is set\n  [datakurre]\n\n- Change displayemenu support be disabled unless ``mosaic-layoutmenu`` feature\n  is set\n  [datakurre]\n\n- Change *Custom layout* menu item to be called *Mosaic layout*\n  [datakurre]\n\n- Change install to no longer to make *Mosaic layout* the default by default\n  [datakurre]\n\n- Add layout editor control panel for Plone 5\n  [vangheem]\n\n- Add link and unlink actions\n  [datakurre]\n\n- Add table tile\n  [datakurre]\n\n- Remove grid system from example layouts (to use configured default grid)\n  [vangheem]\n\n- Remove previously provided TTW content layout examples\n  [datakurre]\n\n- Fixed to work with (and require) plone.app.blocks >= 3.0.0\n  [vangheem]\n\n- Fix GenericSetup profile registration (removed \"for\")\n  [agitator]\n\n- Fix issue where title field tile and content tile being use on same page\n  would cause weird issues with saving title values\n  [vangheem]\n\n- Fix situation where layout editor broke with broken or missing tiles\n  [vangheem]\n\n- Fix issue where check could not add tile with required selection field\n  [datakurre]\n\n1.0a3 (2015-06-10)\n------------------\n\n- Add \"Bootstrap 3 Demo\" example site layouts for Plone 5\n  [datakurre]\n- Add support for plone.app.blocks' generic data grid transform\n  [datakurre]\n- Change the default site layouts in Plone 5 to use 12 column deco grids\n  [datakurre]\n- Fix various site layout support related issues\n  [datakurre]\n- Upgrade to plone.app.drafts >= 1.0b3 and plone.app.blocks >= 2.1.2\n  [datakurre]\n\n1.0a2 (2015-06-08)\n------------------\n\n- Add 'Center tile content' tile style to allow e.g. centering of image tiles\n  [datakurre]\n- Add site and page layout fields to be available on properties overlay\n  [datakurre]\n- Add HTML tag language transform to set correct language for HTML site layouts\n  [datakurre]\n- Add HTML body tag class transform to set body class for HTML site layouts\n  [datakurre]\n- Add HTTP headers transform to ensure that the response headers normally set by\n  plone.httpheaders viewlet manager are also set for HTML site layouts\n  [datakurre]\n- Update example site and content layouts\n  [datakurre]\n- Fix to only cache site layout when it's not the default main_template\n  [datakurre]\n- Upgrade to plone.app.drafts >= 1.0b2 and plone.app.standardtiles >= 1.0b1\n  [datakurre]\n\n1.0a1 (2015-05-27)\n------------------\n\n- First technology preview release.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Plone Mosaic Site Builder and Site Layout",
    "version": "3.1.5",
    "project_urls": {
        "Homepage": "https://github.com/plone/plone.app.mosaic"
    },
    "split_keywords": [
        "python",
        "plone",
        "javascript",
        "mosaic",
        "grideditor"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d085a17ac42221864c1184d9ed41cef013e90862cc94c541e0bd58e1201c849c",
                "md5": "eb58aa55a9a6169e2cdad7c495b4bc38",
                "sha256": "f7c3aab1aec319fb6e85821a3adf1c27eaf806d9938b32fcc2a49b7d6573c781"
            },
            "downloads": -1,
            "filename": "plone.app.mosaic-3.1.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "eb58aa55a9a6169e2cdad7c495b4bc38",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 2199777,
            "upload_time": "2023-10-24T12:30:48",
            "upload_time_iso_8601": "2023-10-24T12:30:48.665074Z",
            "url": "https://files.pythonhosted.org/packages/d0/85/a17ac42221864c1184d9ed41cef013e90862cc94c541e0bd58e1201c849c/plone.app.mosaic-3.1.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a040454d009f623c84e88520dcef8f7f9ae64a298959b3dea5bc9edbf960e82",
                "md5": "9a8f64ad2c08023a213a14798d700813",
                "sha256": "7dc06b44af7ae1d5b2483f92530645c703ef908b6ad77d5bddfa1e7496975752"
            },
            "downloads": -1,
            "filename": "plone.app.mosaic-3.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "9a8f64ad2c08023a213a14798d700813",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1734724,
            "upload_time": "2023-10-24T12:30:52",
            "upload_time_iso_8601": "2023-10-24T12:30:52.126823Z",
            "url": "https://files.pythonhosted.org/packages/0a/04/0454d009f623c84e88520dcef8f7f9ae64a298959b3dea5bc9edbf960e82/plone.app.mosaic-3.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-24 12:30:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "plone",
    "github_project": "plone.app.mosaic",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "plone.app.mosaic"
}
        
Elapsed time: 0.18999s