bobtemplates.plone


Namebobtemplates.plone JSON
Version 6.3.2 PyPI version JSON
download
home_pagehttps://github.com/plone/bobtemplates.plone/
SummaryTemplates for Plone projects.
upload_time2024-05-07 17:22:17
maintainerNone
docs_urlNone
authorPlone Foundation
requires_python>=3.7
licenseGPL version 2
keywords web plone zope skeleton project
VCS
bugtrack_url
requirements setuptools Sphinx flake8 tox
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://github.com/plone/bobtemplates.plone/actions/workflows/python-package.yml/badge.svg
    :target: https://github.com/plone/bobtemplates.plone/actions/workflows/python-package.yml

.. image:: https://codecov.io/gh/plone/plone.bobtemplates/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/plone/plone.bobtemplates

.. image:: https://img.shields.io/pypi/v/bobtemplates.plone.svg
    :target: https://pypi.python.org/pypi/bobtemplates.plone/
    :alt: Latest Version

.. image:: https://img.shields.io/pypi/status/bobtemplates.plone.svg
    :target: https://pypi.python.org/pypi/bobtemplates.plone/
    :alt: Egg Status

.. image:: https://img.shields.io/pypi/pyversions/bobtemplates.plone.svg?style=plastic
    :alt: Supported - Python Versions

.. image:: https://img.shields.io/pypi/l/bobtemplates.plone.svg
    :target: https://pypi.python.org/pypi/bobtemplates.plone/
    :alt: License


==================
bobtemplates.plone
==================

``bobtemplates.plone`` provides `mr.bob <http://mrbob.readthedocs.org/en/latest/>`_ templates to generate packages for Plone projects.

.. note::

   With the `plonecli <https://pypi.python.org/pypi/plonecli>`_, we have a nice command line client for bobtemplates.plone.
   We highly recommend to use the plonecli, because it adds auto completion and some nice helpers to bobtemplates.plone.

Features
========

Package created with ``bobtemplates.plone`` use the current best-practices when creating an add-on. It also support's GIT by default, to keep track of changes one is doing with the bobtemplates.

Provided templates
------------------

- addon
- buildout (useful setup a development buildout or to test new pending Plone versions)


Provided subtemplates
---------------------

These templates are meant to be used inside a package which was created by the addon template.

- behavior
- content_type
- controlpanel
- form
- indexer
- mockup_pattern
- portlet
- restapi_service
- subscriber
- svelte_app
- theme
- theme_barceloneta
- theme_basic
- upgrade_step
- view
- viewlet
- vocabulary


Compatibility
=============

Add-on's created with ``bobtemplates.plone`` are tested to work in **Plone >= 5.2** and **Python >= 3.7**.
the only exceptions are the theming templates. Those are Plone 6 only, because the markup and Diazo rules have changed.

If you need to create Plone packages for older versions of Plone and Python, please use bobtemplates.plone 5.x.
It should work on Linux, Mac and Windows.


Documentation
=============

Full documentation for end users and template developers can be found on `bobtemplatesplone.readthedocs.io <https://bobtemplatesplone.readthedocs.io>`_.

plonecli
--------

    For easy usage see: `plonecli <https://pypi.python.org/pypi/plonecli>`_


Installation
============

You can install bobtemplates.plone as every other normal Python package with `pip <https://pypi.python.org/pypi/pip>`_ user global or inside a virtualenv or better with `pipx <https://pypa.github.io/pipx/installation/>`_.

Installation with pip global for a user
---------------------------------------

.. code-block:: console

    pip install bobtemplates.plone --user


Installation with pipx
----------------------

pipx installs bobtemplates.plone and all dependencies in a global isolated virtualenv.

.. code-block:: console

    pipx install bobtemplates.plone


Installation with pip in a virtualenv
-------------------------------------

You can also install ``bobtemplates.plone`` with pip in a virtualenv.
If you don't have an active virtualenv, you can create one inside your project directory.

.. code-block:: bash

    python3 -m venv venv

Then either activate the virtualenv:

.. code-block:: bash

    source ./venv/bin/activate

or just use the binaries directly inside the bin folder as below:

.. code-block:: console

    ./venv/bin/pip install bobtemplates.plone


Usage
-----

As bobtemplates.plone is a template for mr.bob_, we use mrbob to run the templates.

If you are using pipx or have bobtemplates.plone globally installed, you can just use mrbob directly.

.. code-block:: console

    mrbob bobtemplates.plone:addon -O src/collective.foo

If you are using an unactivated virtualenv, you can use mrbob like this:

.. code-block:: console

    ./venv/bin/mrbob bobtemplates.plone:addon -O src/collective.foo

If you are using an activated virtualenv, you can use mrbob like this:

Activate your virtualenv:

.. code-block:: console

    source venv/bin/activate

.. code-block:: console

    mrbob bobtemplates.plone:addon -O src/collective.foo

This will create your Plone package inside the ``src`` directory.

See the documentation of mr.bob_ for further information.


Configuration
=============

You can set all `mr.bob configuration <http://mrbob.readthedocs.io/en/latest/userguide.html#configuration>`_ parameters in your ~/.mrbob file.

Here is an example:

.. code-block:: bash

    [mr.bob]
    verbose = False

    [variables]
    author.name = Maik Derstappen
    author.email = md@derico.de
    author.github.user = MrTango
    plone.version = 5.1.3-pending
    #package.git.init = y
    #package.git.autocommit = n
    #package.git.disabled = n

    [defaults]
    dexterity_type_global_allow = n
    dexterity_type_filter_content_types = y
    dexterity_type_activate_default_behaviors = n
    dexterity_type_supermodel = n


Contribute
==========

- Issue Tracker: https://github.com/plone/bobtemplates.plone/issues
- Source Code: https://github.com/plone/bobtemplates.plone
- Documentation: https://docs.plone.org/develop/addons/bobtemplates.plone/docs/ or https://bobtemplatesplone.readthedocs.io/en/latest/


Support
=======

If you are having issues, please let us know.
Just open an issue here.


Contributors
============

This package was originally based on `bobtemplates.niteoweb <https://github.com/niteoweb/bobtemplates.niteoweb>`_ and `bobtemplates.ecreall <https://github.com/cedricmessiant/bobtemplates.ecreall>`_

- Maik Derstappen [MrTango]
- Philip Bauer [pbauer]
- Cédric Messiant [cedricmessiant]
- Vincent Fretin [vincentfretin]
- Thomas Desvenain [thomasdesvenain]
- Domen Kožar [iElectric]
- Nejc Zupan [zupo]
- Patrick Gerken [do3cc]
- Timo Stollenwerk [timo]
- Johannes Raggam [thet]
- Sven Strack [svx]
- Héctor Velarde [hvelarde]
- Aurore Mariscal [AuroreMariscal]
- Víctor Fernández de Alba [sneridagh]
- Alexander Loechel [loechel]
- Peter Holzer [agitator]
- Manuel Reinhardt [reinhardt]


Changelog
=========

6.3.2 (2024-05-07)
------------------

New features:

- Add a starter subtemplate to initialize a Plone site with some sane default values
  [erral]


Bug fixes:

- add min_version = 4.11.0 to addon tempalte tox.ini
  [MrTango]


6.3.1 (2023-10-31)
------------------

New features:

- Add `icon_expr` for `content_type`` view/edit actions and ask for "Content type icon" when adding a `content_type`.
  [petschki]

Bug fixes:

- Fix permissions.zcml loaded too late
  [MrTango]

- Fix TinyMCE templates readme to work on Plone 6.
  [maurits]

- Use portal_url to root all CSS and rules file links
  [erral]


6.3.0 (2023-06-19)
------------------

New features:

- Fix SCSS imports for latest Bootstrap 5.3.
  See `Upgrade notes <https://github.com/plone/bobtemplates.plone/blob/main/docs/templates/addon/theme_barceloneta/index.rst#upgrade-notes>`_
  how you can update your existing theme.
  [petschki]


6.2.7 (2023-06-19)
------------------

- `theme_barceloneta`: pin version of `@plone/plonetheme-barceloneta-base` to
  `3.0.x` patch releases which is based on Bootstrap 5.2.
  Bootstrap 5.3 support will come with version `6.3.x`.
  [petschki]


6.2.6 (2023-04-24)
------------------

- Fix the GitLab CI cache for pip.
  [thet]

- mockup_pattern: Fix .prettierignore file to not exclude files within the /resources directory.
  [thet]

- Fix Plone 6 constraints file in addon template
  [MrTango]


6.2.5 (2023-03-02)
------------------

- fix generated view template
  [MrTango]


6.2.4 (2023-03-01)
------------------

- improve view template, fix name of test file and improve generated tests
  [MrTango]


6.2.3 (2023-02-22)
------------------

- Add Plone Classifiers to show up in Plone add-on gallery
  [MrTango]


6.2.2 (2023-02-22)
------------------

- mockup_pattern: Fix imports of config files to point to @patternslib/dev.
  [thet]

- mockup_pattern: The parser attribute should be a static attribute.
  [thet]

- improve view template, implement view interface
  [MrTango]


6.2.1 (2023-01-26)
------------------

- replace backslash with os.path.sep #531
  [me-kell]

- fix missing tox.ini in addon template
  [MrTango]

- fix missing comma in testing.py of addon template
  [MrTango]


6.2 (2022-10-28)
----------------

- Improve namespace support #419
  [mamico]

- Add support for Python 3.10 / drop Python 3.7 in CI
  [pbauer]

- use cmf.ManagePortal permission by default in forms
  [MrTango]

- run applyChanges in forms by default
  [MrTango]


6.1 (2022-10-24)
----------------

- Add sub-template form, to generate z3c.form based forms
  [MrTango]


6.0 (2022-10-24)
----------------

- Improve namespace support #520
  [mamico]

- Upgrade @patternslib/dev dependency for the `mockup_pattern` template.
  [thet]


6.0b15 (2022-10-08)
-------------------

- Remove stale templates from theme_basic
  [santonelli]

- Switch to class based Patterns in mockup_pattern template
  [thet]

- Improve theme template README and theme.scss
  [MrTango]


6.0b14 (2022-10-07)
-------------------

- Update theme_barceloneta to use plonetheme-barceloneta-base 3.0.0b6 and use SCSS example import structure from Bootstrap documentation.
  [agitator]

- Added mockup pattern template.
  [reinhardt, thet]

- update theme package versions and improve readme
  [MrTango]


6.0b13 (2022-08-06)
-------------------

- Remove install of unnecessary system libraries on Github Actions.
  [wesleybl]

- Fix import of ComponentLookupError in tests
  [MrTango]


6.0b12 (2022-05-03)
-------------------

- Add dummy style file in styles/theme.min.css to not break theme, when no css file was created
  [MrTango]

- Add layer attribute to view registrations
  [MrTango]


6.0b11 (2022-03-04)

- Remove deprecated theme_package template from entrypoints/bobregistry
  [MrTango]

- Add CollectionView to view base class options
  [MrTango]

- Add view_register_for question, to allow view registration for a specific content type
  [MrTango]

- Increment .gitignore.
  [wesleybl]

- Create an Interface for views by default
  [MrTango]


6.0b10 (2021-10-25)
-------------------

- Update theme_barceloneta to use plonetheme-barceloneta-base 3.0.0-alpha.7
  [agitator]

- Improve upgrade step template
  [MrTango]

- Hide all upgrade profiles from site-creation and quickinstaller.
  [thet]

- fix typo in README.rst
  [yurj]


6.0b9 (2021-10-23)
------------------

- Theme: Add some tags/attributes to the HTML Filter
  [MrTango]

- Cleanup and small Diazo fixes in theme template
  [MrTango]


6.0b8 (2021-10-21)
------------------

- Added theme_basic as basic theme template for Plone 6 Classic UI
  [santonelli]

- Template cleanup / Plone 6 fixes
  [MrTango]

- Provide some bootstrap snippet as TinyMCE templates, in theme
  [MrTango]

- Provide a Diazo rule, which by default deactivates RequireJS, so that one can use free style JS in the html. This well be removed when the ES6 branch is merged and RequireJS is finally gone
  [MrTango]

- Improve some default Diazo rules
  [MrTango]

- Improve view page template
  [MrTango]

- Added RegistryPanel adapter to controlpanel subtemplate, to have Volto support
  [erral]


6.0b7 (2021-10-15)
------------------

- Deprecated theme_package was removed, in 5.x it still exists
  [MrTango]

- Cleanup theme template and update generated README
  [MrTango]

- Add controlpanel subtemplate
  [erral]

- Updated theme_barceloneta for Plone 6 classic - uses plonetheme-barceloneta-base npm package
  [agitator]

- Updated TinyMCE template examples for Bootstrap 5
  [agitator]

- Multiple Plone 6 fixes and Plone 4 cleanup
  [MrTango]


6.0b6 (2021-10-13)
------------------

- Provide Plone 6 buildout config and constraints in generated add-on's
  [MrTango]


6.0b5 (2021-07-15)
------------------

- Use codecov badge in add-on README instead of coveralls
  [MrTango]


6.0b4 (2021-07-15)
------------------

- Add Upload coverage to Codecov GH-action and update DEVELOP.rst in add-on's
  [MrTango]


6.0b3 (2021-07-13)
------------------

- Update generated README from addon template, to replace Travis badge


6.0b2 (2021-07-13)
------------------

- Further cleanup
  [MrTango]


6.0b1 (2021-07-12)
------------------

- Drop Python 2 support
  [MrTango]

- Drop support for Plone < 5.2
  [MrTango]

- Fix placeholder syntax in configure.zmcl files
  [MrTango]

- Improve CI-Support with GitHub-Actions, in root package and generated add-on's
  [MrTango]

- Finalize Black code formater support in root package and generated add-on's
  [MrTango]


5.2.1 (2021-06-03)
------------------

- Do not create an empty docstring for the content-type class
  [erral]

- Updated default Plone version for addon packages to 5.2.4
  [MrTango]

- Change default answer of "Use XML Model" to false, because the Python way is usually easier and provides a better developer experience
  [MrTango]

- Pin importlib-metadata = >=1 to avoid broken buildout in new packages
  [MrTango]

- Change bundle names for svelte_app, it's now <my-app-name>-bundle.js/css, which makes it better distinguishable in Browser inspector
  [MrTango]

- Optimize skeleton test matrix, to be much faster
  [MrTango]

- Override index method in viewlets, not the render method.
  [MrTango]


5.2.0 (2020-11-12)
------------------

- addon: switch from profiles/default/registry.xml to profiles/default/registry folder
  [MrTango]

- Remove Travis configuration sudo false.
  [wesleybl]

- Fix svelte_app_name regex and add a test for it
  [MrTango]

- Fix #447: Typo in setup.cfg.bob - isort fails
  [MrTango]

- Add black-check env to tox.ini, this allows us to check for black linting issues in the templates
  [MTango]


5.2.0b4 (2020-11-06)
--------------------

- use dashed name for svelte apps, fix dev server including live reload
  [MrTango]

- Add custom elements to allowed tags by default via registry, also add slot to custom attributes
  [MrTango]


5.2.0b3 (2020-11-05)
--------------------

- fix svelte component import, in custom_element mode
  [MrTango]

- Improve svelte_app docs
  [MrTango]



5.2.0b2 (2020-11-05)
--------------------

- Add missing entry point for svelte_app template
  [MrTango]


5.2.0b1 (2020-11-05)
--------------------

- Add svelte_app template including with custom-element (web-component) support
  [MrTango]


5.1.2 (2020-10-14)
------------------

- Add tox as a dependency. Fixes #442.
  [erral]

- Improved run_isort error handling
  [MrTango]


5.1.1 (2020-07-30)
------------------

- Fix #436 remove index option in base.cfg
  [MrTango]

- Fix #437 cleanup .gitignore file
  [MrTango]

- Fix #432 Bare except in restapi_service
  [MrTango]


5.1 (2020-07-29)
----------------

- Create upgrade step profile directory. Fixes #434
  [erral]

- Require coverage<5. Fixes #421
- Fix indexer subtemplate. Fixes #425
  [erral]

- Require coverage<5 in travis configuration file. Fixes #421
  [erral]

- Align template's setup.cfg to the projects one.
  Especially raises the flake8 line-length to black default.
  [thet]

- Update travis setup, use tox for all testing and linting of addon package, not code-analysis.
  [MrTango]

- Update default Plone and Python version to 5.2.1 and 3.7 for addon template.
  [MrTango]

- Add badges to addon README file.
  [MrTango]

- Add collective.recipe.vscode to addon base.cfg, activated by default, we have a question to disable it.
  [MrTango]

- Fix flake8 missing trailing comma, format call uses missing keyword, provides unused keyword.
  [fulv]

- Improve generated package tox env, also run linting inside skeleton-tests.
  [MrTango]

- Improve bobtemplate.plone tox output, it's now easier to read and find the errors.
  [MrTango]

- Automatically fix isort issues after using addon template.
  [MrTango]

- Improve buildout template, it's now using Plone release versions rather than buildouttesting.
  [MrTango]


5.0.4 (2019-11-28)
------------------

- Fix flake8-plone-hasattr issue, space and unused import
  [balavec]

- Disable extra requirements for theme addon
  [balavec]

- Fix upgrade_step template, missing bob-file-extension and import
  [MrTango]

- Fix upgrade_step by add missing directory attribute to UpgradeStep profile, upgrade_steps are no longer visible in addon control panel
  [MrTango]


5.0.3 (2019-10-24)
------------------

- Fix upgrade_step sub-template
  [MrTango]


5.0.2 (2019-10-21)
------------------

- Add auto increment version to upgrade_step sub-template
  [MrTango]


5.0.1 (2019-10-18)
------------------

- Add missing registration for plonecli
  [MrTango]


5.0.0 (2019-10-18)
------------------

- Add upgrade_step sub-template, remove upgrades from addon template, read the `Upgrade chapter <https://bobtemplatesplone.readthedocs.io/en/latest/upgrade-packages.html>`_ in the docs, how to upgrade existing packages.
  [MrTango]


4.1.4 (2019-10-18)
------------------

- Fixed Travis caching.  Downloads do not need to be cached.
  And for the eggs we were caching the wrong directory.
  Fixes `issue #408 <https://github.com/plone/bobtemplates.plone/issues/408>`_.
  [maurits]

- Fixed name of commented out version behavior.
  This is ``plone.versioning`` and not ``plone.versionable``.
  [maurits]

- Run coveralls in the correct path
  [erral]

- Fix 'geckodriver' error when running tests in Travis.
  [erral]

- Use dist: bionic on Travis, install firefox-geckodriver via apt
  [MrTango]

- Add indexer sub-template to generate indexers
  [MrTango]


4.1.3 (2019-08-31)
------------------

- Fix restapi service_factory name.
  [erral]

- Allow user to insert view config, even if one exists
  [MrTango]

- Use snakecase for template files, as we do for python files
  [MrTango]

- Improve and fix package tests for view template
  [MrTango]

- Add init_package_base_structure method to easiely create test structures in packages tests
  [MrTango]


4.1.2 (2019-08-29)
------------------

- Fix match_str in view, viewlet and portlet templates
  [MrTango]


4.1.1 (2019-08-22)
------------------

- Fix failing ``./bin/update-locales`` if a theme is in development. See also
  `How can i exclude directories when is use i18ndude command <https://community.plone.org/t/solved-how-can-i-exclude-directories-when-is-use-i18ndude-command/6193/5>`_
  [jensens]

- Fix flake8 isort error in generated addon.
  [jensens]

- Change fonts mixin to bob template and use normalized_name.
  [balavec]


- Properly close HTML body tag in view template.
  [erral]

- Change classifiers URL, closes #389.
  [ale-rt]

- Fix content_type_test which test the deletion of an object
  [MrTango]


4.1.0 (2019-05-31)
------------------

- Add subscriber sub-template
  [MrTango]


4.0.5 (2019-05-22)
------------------

- Remove Gruntfile.js and package.json from .gitignore in addon package.
  [erral]
- Update theme_barceloneta with plonetheme.barceloneta 2.1.3 and cleanup structure
  [agitator]

- ReST fomatting and fix typo in README.rst
  Add version plone.app.dexterity pinning in Plone 4 buildout versions in addon template
  [MrTango]

- Improve view ZPT
  [MrTango]

- Add project_urls to setup.py, fixes: #376
  [MrTango]

- Check deleting object in content_type tests
  [MrTango]

- Add "mrbob: extra extends" marker in addon buildout.cfg, to allow injection of custom extends
  [MrTango]

- Improve default view/viewlet template filename, fixes #372
  [MrTango]

- view: add base_class question to allow BrowserView or DefaultView base class
  [MrTango]


4.0.4 (2019-04-14)
------------------

- Fix travis setup in generated addon template.
  [erral]

- extend versions from dist.plone.org in constraints files, to stay in sync with the buildout versions from there
  [MrTango]

- Add python.version question in addon template, to define the Python binary for the virtualenv to create
  [MrTango]


4.0.2 (2019-03-25)
------------------

- Fix git output in python 3.
  [pbauer]

- Change installer-tests to work in all Plone-Versions.
  [pbauer]

- Add `plone.translatable` as a commented behavior
  [erral]


4.0.1 (2019-03-11)
------------------

- Remove version conditions for addon dependencies, p43-p52 should be supported.
  [MrTango]


4.0 (2019-03-11)
----------------

- Only recommend using short names for behaviors, improve behavior docs.
  [MrTango]

- Generate the same tests for P4/5 packages.
  [MrTango]

- Add Tox setup to generated packages, to test multiple Python and Plone versions.
  [MrTango]

- Provided buildout, requirements and constraints for all Plone versions.
  [MrTango]

- Finally activate and fix new templates: view, viewlet, portlet, restapi_service.
  [MrTango]

- Refactor skeleton-tests setup, we call specific Tox envs inside the generated packages.
  [MrTango]

- Add Sphinx doc config to addon template docs.
  [MrTango]

- Make portlet sub-template Python 3 compatible.
  [MrTango]

- Remove skeleton test for theme_barceloneta on Plone 4
  [MrTango]

- Always include plone.restapi in setup.py
  [MrTango]

- Use newest Tox and Pytest versions, to allow running test in parallel mod on local machine.
  [MrTango]

- Add custom tox2travis.py script, to generate a Travis matrix from Tox configuration.
  [MrTango]

- Fixes #350: add "python_requires" option to setup.py.
  [jensens, iham]

- Fix some confusion in setup.py classifiers and depenencies due to introduction of Plone 5.2 support.
  Introduces plone.is_plone5.2 variable.
  [jensens]

- Fix behavior template: use separate marker interface,
  register marker in the behavior zcml and adapt content to the marker, not to IDexterityContent.
  For further reference, see the plone.behavior README.rst Example 2.
  Fixes #16.
  [fredvd, jensens]

- Use behavior shortnames in FTI.
  [jensens]

- Do not add dexterity as dependency in Plone 5.x due to the fact it is already in Plone core.
  [jensens]

- Enforce base class, when supermodel is used, to have a decent marker interface
  [MrTango]

- Fix theme templates: #349, use package_directory as target now, improve testing
  [MrTango]

- Correct viewlet example code, fixes: #351
  [MrTango]

- Add missing plone.app.themingplugins to dependencies, fixes: #353
  [MrTango]


3.6.0 (2019-02-25)
------------------

- Use @implementer decorator instead of implements.
  [erral]

- Fix FTI settings if default behaviors not active, #352
  [MrTango]

- Correct the sentence formation.
  [Akshjain99]


3.6.0b1 (2018-12-28)
--------------------

- Add support for Python 3.
  [pbauer]

- Replace portal_quickinstaller in tests for Plone 5.1+.
  [pbauer]

- Avoid linty issues in zcml files in updateing method for zcml files
  [MrTango]

- provide generic methods remove_unwanted_files/update_configure_zcml
  [MrTango]

- Add restapi_service sub-template
  [MrTango]


3.5.2 (2018-10-30)
------------------

- Improve content_type sub-template, to reduce linting issues on created code
  [MrTango]

- Replace python-slugify by custom slugify method, fixes #335 and #337
  [MrTango]

- Added safe_unicode/safe_encode and safe_nativestring methods in utils
  [MrTango]

- Add docs for view, viewlet and portlet
  [kakshay21]


3.5.1 (2018-10-23)
------------------

- Refactor and fix docs
  [MrTango]

- Fix updating of parent FTI file, when parent type name contains spaces, fixes #331
  [MrTango]

- Don't do git auto commit if git init was disabled in addon template, fixes #300
  [MrTango]


3.5.0 (2018-10-17)
------------------

- Add a new subtemplate for addon that creates a full barceloneta-based theme
  [erral]


3.4.3 (2018-10-17)
------------------

- Add a build step to report coverage on gitlab and run tests on stages
  [erral]

- Rename Roboto font files copies from barceloneta.theme to match CSS registrations
  [erral]

- Refresh backend.xml from latest plonetheme.barceloneta version so that the diazo theme resources
  are not copied into the backend.xml but dropped beforehand. Also removes toggle nav button which
  was removed from barceloneta theme. fixes #317
  [fredvd]

- Deactivated the dublicated template file definition in view Python class
  [MrTango]

- Don't override constructor in views by default
  [MrTango]

- Use --ignore-submodules in git_clean_state_check
  [MrTango]

- Commented out the HEAD SCRIPT rule in backend.xml that caused the scripts being pulled twice,
  in case that you are using it to style backend views. You should only use
  this rule once in your ruleset. Using it twice cause leads to JS errors and
  patterns initialition failures.
  This fixes: https://github.com/plone/plonetheme.barceloneta/issues/158
  [sneridagh]

- Updated "theme" subtemplate backend/frontend rules and add usage hints
  [MrTango]

- set correct classifiers for Plone 4 addons, fixes: #303
  [MrTango]

- remove boostrap-buildout.py references in config files, fixes #302
  [MrTango]

- Make adding default behaviors optional in content_type subtemplate, fixes #324
  [MrTango]

- Add deprecated flag and info to theme_package template in registry
  [MrTango]


3.4.2 (2018-08-13)
------------------

- Add portlet subtemplate
  [kakshay21]

- Replace stringcase library by case_conversion
  [kakshay21]

3.4.1 (2018-07-23)
------------------

- Fix #313 and improve tests
  [MrTango]

3.4.0 (2018-07-23)
------------------

- Add viewlet subtemplate
  [kakshay21]

- Add view subtemplate
  [kakshay21]

- Add update_locale script in bin/ folder to update locales
  [kakshay21]

- Add a custom to_boolean jinja filter
  [kakshay21]

- Add plone-compile-resources script in addon and extending .gitignore file
  [kakshay21]

- Add conditional tests in content_type
  [kakshay21]

- Improve DX CT name normalization and question info, added more tests for DX CT normalization
  [MrTango]

- Cleanup addon template, add one more test for to_boolean method
  [MrTango]


3.3.0 (2018-05-24)
------------------

- Ask for parent content_type when global_allow is set to false
  [kakshay21]

- Hide container filter options in FTI settings when dexterity_type_base_class is 'Item'
  [kakshay21]

- add package_folder_rel_path variable and fix robot test header
  [MrTango]


3.2.0 (2018-04-25)
------------------

- improve messages after using vocabulary/behavior sub-templates with names of the vocabulary or behavior
  [MrTango]

- fix behavior name registration
  [MrTango]

- Add gitlab CI config to addon template
  [MrTango]


3.2.0b3 (2018-04-20)
--------------------

- Add new field in behavior, improve test naming and tests
  [MrTango]

- Add a chapter howto upgrade existing packages to be compatible with plonecli and new bobtemplates.plone templates
  [MrTango]

- improve test naming of content_Type and vocabulary templates
  [MrTango]


3.2.0b2 (2018-04-11)
--------------------

- Fix reading default config parameters and improve git-support docs
  [MrTango]


3.2.0b1 (2018-04-11)
--------------------

- Add GIT support with clean state check and auto commit/init
  [MrTango]

- Refacture template structure and increase package test covarage
  [MrTango]


3.1.2 (2018-04-06)
------------------

- Set i18n:domain in supermodel xml files to the package domain
  [MrTango]


3.1.1 (2018-04-03)
------------------

- Fix add_view_expr in content_type template
  [MrTango]

- Fix robot test selector in content_type template
  [MrTango]

- Bump default Plone buildout version to 5.1
  [MrTango]


3.1.0 (2018-04-02)
------------------

- Add global_allow and filter_content_types questions
  [MrTango]
- don't use lower case version for CT name
  [MrTango]
- add behavior tests
  [MrTango]

3.0.1 (2018-03-29)
------------------

- Use set return-status-codes=True for tox, fixes #261
  [MrTango]

- set filter_content_types to False by default, fixes #256
  [MrTango]

- add ILeadImage behavior to FTI list of inactive behaviors, fixes #255
  [MrTango]


3.0.0 (2018-03-28)
------------------

- make final release of version 3


3.0.0b5 (2018-03-27)
--------------------

- enable lockingbehavior by default and reenable locking condition for edit button, fixes #257
  [MrTango]

- only require plone.app.dexterity<=2.1.1 and not excact that version for Plone 4
  [MrTango]


3.0.0b4 (2018-03-26)
--------------------

- Use more specific names for generated test files, like test_vocab_todo_tasks.py instead of test_todo_tasks.py
  [MrTango]


3.0.0b3 (2018-03-22)
--------------------

- Add behavior sub-template entrypoint, to make it available in plonecli
  [MrTango]
- Update link to document in README.
  [kakshay21]


3.0.0b2 (2018-02-27)
--------------------

- fixed FTI configuration, removed the plone_lock_info condition
  [MrTango]


3.0.0b1 (2018-02-25)
--------------------

- Quote version strings in YAML. See: https://github.com/travis-ci/docs-travis-ci-com/issues/1540
  [thet]

- Use default Travis notifications.
  Until now only the creator of the package would get a notification, instead of the committer.
  Fixes `issue 208 <https://github.com/plone/bobtemplates.plone/issues/208>`_.
  [maurits]

- Fixed the pypi index to explicitly reference https://pypi.python.org/simple/ to prevent buildout from defaulting to the old and unsupported http:// url.
  [pigeonflight]

- Fix coveralls for packages created with addon and theme_package by converting the pickle output of createcoverage in .coverage to json.
  [pbauer]

- Fixes #235: Different roles in tests for install and uninstall.
  Use Manager role in uninstall test.
  Then both install and uninstall are executed with role Manager.
  [jensens]

- fix linting problems and error in theme_package tests
  [MrTango]

- Update setuptools and zc.buildout versions.
  [tmassman]

- Improve docs by fixing some reST, typos and grammar
  [svx]

- Update link to docs.plone.org in README
  [svx]

- Imporve docs template for valid reST generation
  [svx]

- use bobtemplate.cfg to store meta data for sub-templates #245
  [MrTango]

- fix naming of vocabularies
  [MrTango]

- fix buildout template and add some docs about the used buildout.plonetest configuration
  [MrTango]

- add behavior sub-template to create Plone behaviors
  [MrTango]


3.0.0a3 (2017-10-30)
--------------------

- Fix #222 default travis setup is broken.
  [jensens, pbauer]

- Add template registration for mr.bob/plonecli for all provided templates
  [MrTango]

- Fix content_type and theme sub templates
  [MrTango]

- fix in themes.rst changed plone_addon to addon
  [pigeonflight]


3.0.0a2 (2017-10-01)
--------------------

- Cleanup Package - remove unnecessary files from past versions
  [loechel]

- Add vocabulary subtemplate
  [MrTango]


3.0.0a1 (2017-09-26)
--------------------

- Refacturing to support subtemplates
  [MrTango]

- Add theme and content_type subtemplates
  [MrTango]

- Add missing plone namespace, to avoid conflicts with other bobtemplate packages
  [MrTango]

- Removed bootstrap-buildout.py, Update barceloneta less files for theme_package
  [agitator]

- Fixed i18n attributes for View/Edit actions in dexterity type xml.
  [maurits]

- Testing of generated skeletons integrated with tox and pytest.
  [loechel]


2.0.0 (2017-08-28)
------------------

- Set the zope_i18n_compile_mo_files environment variable.
  [maurits]

- Fixed i18n attributes for View/Edit actions in dexterity type xml.
  [maurits]

- Separate theme template from addon template, we now have plone_addon and plone_theme_package
- Update barceloneta less files to 1.7.3 for plone_theme_package
  [agitator]
- Removed bootstrap-buildout.py and added DEVELOP.rst
  [agitator]

- Update barceloneta less files to 1.7.3 for plone_theme_package
  [agitator]

- Fixed i18n attributes for View/Edit actions in dexterity type xml.  [maurits]

- Seperate theme template from addon template, we now have plone_addon and plone_theme_package
  [MrTango]

- Update pins in the generated buildout.cfg
  [ale-rt]

- Change default values for code analysis' ``return-status-codes`` directive:
  it is now ``False`` on development and ``True`` on CI.
  [hvelarde]

- Pin flake8 to latest (3.3.0) to allow use of latest pycodestyle (2.3.1)
  [fulv]

- Imrove wording
  [svx]

- Add requirements.txt and update README.txt to use it
  [MrTango]

- Make cleanup hook windows friendly.
  [gforcada]

- Move LICENSE.rst out of docs folder into top level.
  [gforcada]

- Get rid of the last two code violations on generated package
  [sneridagh]

- Comment the toolbar rule by default in backend.xml and add a comment on how
  to add it properly if backend.xml is used. Declaring the toolbar rule twice
  causes the toolbar JS stop working properly
  [sneridagh]


1.0.5 (2016-10-16)
------------------

- Use same lines width than package name for title ##
  [AuroreMariscal]

- Get rid of ``travis.cfg`` configuration as its use is no longer considered best practice.
  [hvelarde]

- Update ``bootstrap-buildout.py`` to latest version.
  [hvelarde]

- Fix imports to follow conventions.
  [hvelarde]

- Avoid usage of double quotes on strings.
  [hvelarde]

- Avoid usage of invokeFactory.
  [hvelarde]

- Remove dependency on unittest2 as package is not intended to be compatible with Python 2.6.
  [hvelarde]

- Use selenium v2.53.6.
  [hvelarde]

- Use plone:static instead of browser:resourceDirectory to allow ttw-overrrides.
  [pbauer]

- Bump flake8 version to 3.x.
  [gforcada]

- Update theme template, include complete working Barceloneta resources + grunt setup
  [MrTango]


1.0.4 (2016-07-23)
------------------

- Upgrade some pinns.
  [pbauer]

- Upgrade to 5.0.5 and test against that.
  [pbauer]

- Add ``i18n:attributes`` for action nodes in FTI profile.
  [thet]

- Pin versions of coverage/createcoverage
  [staeff]

- Default to Plone 5.0.4.
  [jensens]

- Validate type name input (fixes #81).
  [pbauer]

- Git ignore ``.installed.cfg`` and ``mr.developer.cfg`` by default.
  [jensens]

- ``isort`` style checks are enabled, but no config was set. i
  Added config according to http://docs.plone.org/develop/styleguide/python.html#grouping-and-sorting
  [jensens]

- Ordered sections of generated FTI xml into semantical block and added comments for each block.
  [jensens]

- Bump setuptools version to 21.0.0 in buildout.cfg.bob
  [staeff]

- Configure buildout to install all recommended codeanalysis plugins
  [staeff]


1.0.3 (2016-04-13)
------------------

- Fix Plone default version (Plone 4.3.9).
  [timo]


1.0.2 (2016-04-13)
------------------

- Create uninstall profile also for Plone 4.3.x, since it already depends on ``Products.CMFQuickInstallerTool >= 3.0.9``.
  [thet]

- Update Plone versions to 4.3.9 and 5.0.4.
  [thet]

- Update robot test framework versions including Selenium to work with recent firefox releases.
  [thet]

- Replaced import steps by post_handlers.  Needs GenericSetup 1.8.2 or
  higher.  This is included by default in Plone 4.3.8 and 5.0.3 but
  should be fine to use on older Plone versions.  [maurits]

- Removed ``.*`` from the ``.gitignore`` file.  This would ignore the
  ``.gitkeep`` files, which would mean some directories are not added
  when you do ``git add`` after generating a new project.  [maurits]

- Note about disabled ``z3c.autoinclude`` in test layer setup.
  [thet]

- Remove the ``xmlns:five`` namespace, as it is not used at all.
  [thet]

- Fix build failure on Plone 4.x due to plone.app.contenttypes pulled in and having a plone.app.locales >= 4.3.9 dependency in it's depending packages.
  [thet]

- Declare the xml encoding for all GenericSetup profile files.
  Otherwise the parser has to autodetect it.
  Also add an xml version and encoding declaration to ``theme.xml``.
  [thet]

- Add "(uninstall)" to the uninstall profile title.
  Otherwise it cannot be distinguished from the install profile in portal_setup.
  [thet]

- Simplify concatenation of ``.rst`` files for ``setup.py``.
  [thet]

- Update ``.gitignores`` in repository to exclude ``lib64``, ``pip-selfcheck.json`` and all ``.*`` except necessary.
  Update ``.gitignore.bob`` in templates with these changes too.
  Add ``.gitattributes`` in repository for union-merge CHANGES.rst files.
  [thet]

- Update docs and README
  [svx]

1.0.1 (2015-12-12)
------------------

- Register locales directory before loading dependencies to avoid issues when overriding translations.
  [hvelarde]


1.0 (2015-10-02)
----------------

- Upgrade to Plone 4.3.7 and 5.0.
  [timo]

- Avoid pyflakes warnings for long package names.
  [maurits]


1.0b1 (2015-09-17)
------------------

- Always start with 1.0a1. No more 0.x releases please.
  [timo]

- Use Plone minor version for ``setup.py`` classifier. So 4.3 instead
  of 4.3.6.
  [maurits]

- Enabled robot part in generated package.
  [maurits]

- Add depedency on plone.testing 5.0.0. Despite the major version number,
  this change does not contain breaking changes.
  [do3cc]

- Fix #84 Make travis cache the egg directory of the generated package.
  [jensens]

- Update tests to use Plone 5.0b3.
  [jensens]

- Remove unittest2 dependency.
  [gforcada]


0.11 (2015-07-24)
-----------------

- Fix update.sh
  [pbauer]

- Add i18ndude to buildout
  [pbauer]

- Fix package-creation on Windows. Fixes #72.
  [pbauer]

- Add packagename to licence.
  [pbauer]

- Add uninstall-profile for Plone 5.
  [pbauer]

- Fix indentation to follow the conventions of plone.api.
  [pbauer]

- Move badges from pypin to shields.io.
  [timo]

- Fix coverage on travis template.
  [gil-cano]

- Enable code analysis on travis and fail if the code does not pass.
  [gforcada]


0.10 (2015-06-15)
-----------------

- Add check-readme script that detects Restructured Text issues.
  [timo]

- Use only version up to minor version in setup.py of package #56.
  [tomgross]

- Use class method to load ZCML in tests.
  [tomgross]

- Upgrade default Plone version to 4.3.6.
  [timo]

- Add zest.releaser to package buildout.
  [timo]

- Update README according to Plone docs best practice.
  [do3cc, timo]

- Add flake8-extensions to code-analysis.
  [timo]

- Upgrade Selenium to 2.46.0.
  [timo, pbauer]

- Don't create a type-schema unless it is needed.
  [pbauer]


0.9 (2015-03-24)
----------------

- Add Theme package type with simple bootstrap-based theme.
  [timo]

- Add Dexterity package type.
  [timo]

- Remove example view.
  [timo]

- Remove question for keywords.
  [timo]

- Remove question for locales.
  [timo]

- Remove questions for version and license.
  [timo]

- Remove questions for profile, setuphandler, and testing.
  [timo]

- Unify buildout configuration in buildout.cfg
  [timo]

- Fix bootstrap command in travis.yml.
  [timo]


0.8 (2015-02-06)
----------------

- Add includeDependencies. This fixes #23.
  [timo]


0.7 (2015-02-05)
----------------

- Use latest buildout-bootstrap.py.
  [timo]

- Fix failing nosetests.
  [timo]

- Add test that creates an add_on and runs all its tests and code analysis.
  [timo]

- Run tests on travis.
  [timo]

- Run code analysis on travis. Build fails on PEP8 violations.
  [timo]

- Add code analysis.
  [timo]

- Remove z2.InstallProducts. Not needed any longer.
  [timo]

- Use testing best practices and follow common naming conventions.
  [timo]

- Remove testing profile. Global testing state is considered an anti-pattern.
  [timo]

- Add example robot test.
  [timo]

- Add travis and pypip.in badges.
  [timo]

- Run code analysis on the generated addon as well within the tests to make
  sure we always ship 100% PEP8 compliant code.
  [timo]

- Add REMOTE_LIBRARY_BUNDLE_FIXTURE to acceptance test fixture.
  [timo]


0.6 (2015-01-17)
----------------

- Use PLONE_APP_CONTENTTYPES_FIXTURE for tests on when using Plone 5.
  [pbauer]


0.5 (2015-01-17)
----------------

- Remove useless base-classes for tests. Use 'layer = xxx' instead.
  [pbauer]

- Fix some minor code-analysis issues.
  [pbauer]

- Added .editorconfig file.
  [ale-rt]


0.4 (2014-12-08)
----------------

- Remove grok.
  [pbauer]

- Fix missed removals when testing was deselected.
  [pbauer]

- Only use jbot when there is a profile and a browser layer.
  [pbauer]

- Get username and email from git.
  [do3cc]


0.3 (2014-12-07)
----------------

- Pinn robotframework to 2.8.4 to fix package-tests.
  [pbauer]

- Add browserlayer to demoview to allow multiple addons.
  [pbauer]

- Fix creation of nested packages (wrong __init__.py).
  [pbauer]


0.2 (2014-12-07)
----------------

- Fix documentation
  [pbauer]


0.1 (2014-12-07)
----------------

- Get namespace, name and type from target-dir.
  [pbauer]

- Remove obsolete plone_addon_nested. Auto-nest package in after-render hook.
  [pbauer]

- Add many new features. Most of them are optional.
  [pbauer]

- Initial import based on bobtemplates.ecreall by
  cedricmessiant, vincentfretin and thomasdesvenain.
  [pbauer]

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/plone/bobtemplates.plone/",
    "name": "bobtemplates.plone",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "web plone zope skeleton project",
    "author": "Plone Foundation",
    "author_email": "plone-developers@lists.sourceforge.net",
    "download_url": "https://files.pythonhosted.org/packages/25/cf/109577cd6b19c77f88ee73751ad71908f245a9cd9ab73d5baeeee4a8d592/bobtemplates.plone-6.3.2.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/plone/bobtemplates.plone/actions/workflows/python-package.yml/badge.svg\n    :target: https://github.com/plone/bobtemplates.plone/actions/workflows/python-package.yml\n\n.. image:: https://codecov.io/gh/plone/plone.bobtemplates/branch/main/graph/badge.svg\n    :target: https://codecov.io/gh/plone/plone.bobtemplates\n\n.. image:: https://img.shields.io/pypi/v/bobtemplates.plone.svg\n    :target: https://pypi.python.org/pypi/bobtemplates.plone/\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/status/bobtemplates.plone.svg\n    :target: https://pypi.python.org/pypi/bobtemplates.plone/\n    :alt: Egg Status\n\n.. image:: https://img.shields.io/pypi/pyversions/bobtemplates.plone.svg?style=plastic\n    :alt: Supported - Python Versions\n\n.. image:: https://img.shields.io/pypi/l/bobtemplates.plone.svg\n    :target: https://pypi.python.org/pypi/bobtemplates.plone/\n    :alt: License\n\n\n==================\nbobtemplates.plone\n==================\n\n``bobtemplates.plone`` provides `mr.bob <http://mrbob.readthedocs.org/en/latest/>`_ templates to generate packages for Plone projects.\n\n.. note::\n\n   With the `plonecli <https://pypi.python.org/pypi/plonecli>`_, we have a nice command line client for bobtemplates.plone.\n   We highly recommend to use the plonecli, because it adds auto completion and some nice helpers to bobtemplates.plone.\n\nFeatures\n========\n\nPackage created with ``bobtemplates.plone`` use the current best-practices when creating an add-on. It also support's GIT by default, to keep track of changes one is doing with the bobtemplates.\n\nProvided templates\n------------------\n\n- addon\n- buildout (useful setup a development buildout or to test new pending Plone versions)\n\n\nProvided subtemplates\n---------------------\n\nThese templates are meant to be used inside a package which was created by the addon template.\n\n- behavior\n- content_type\n- controlpanel\n- form\n- indexer\n- mockup_pattern\n- portlet\n- restapi_service\n- subscriber\n- svelte_app\n- theme\n- theme_barceloneta\n- theme_basic\n- upgrade_step\n- view\n- viewlet\n- vocabulary\n\n\nCompatibility\n=============\n\nAdd-on's created with ``bobtemplates.plone`` are tested to work in **Plone >= 5.2** and **Python >= 3.7**.\nthe only exceptions are the theming templates. Those are Plone 6 only, because the markup and Diazo rules have changed.\n\nIf you need to create Plone packages for older versions of Plone and Python, please use bobtemplates.plone 5.x.\nIt should work on Linux, Mac and Windows.\n\n\nDocumentation\n=============\n\nFull documentation for end users and template developers can be found on `bobtemplatesplone.readthedocs.io <https://bobtemplatesplone.readthedocs.io>`_.\n\nplonecli\n--------\n\n    For easy usage see: `plonecli <https://pypi.python.org/pypi/plonecli>`_\n\n\nInstallation\n============\n\nYou can install bobtemplates.plone as every other normal Python package with `pip <https://pypi.python.org/pypi/pip>`_ user global or inside a virtualenv or better with `pipx <https://pypa.github.io/pipx/installation/>`_.\n\nInstallation with pip global for a user\n---------------------------------------\n\n.. code-block:: console\n\n    pip install bobtemplates.plone --user\n\n\nInstallation with pipx\n----------------------\n\npipx installs bobtemplates.plone and all dependencies in a global isolated virtualenv.\n\n.. code-block:: console\n\n    pipx install bobtemplates.plone\n\n\nInstallation with pip in a virtualenv\n-------------------------------------\n\nYou can also install ``bobtemplates.plone`` with pip in a virtualenv.\nIf you don't have an active virtualenv, you can create one inside your project directory.\n\n.. code-block:: bash\n\n    python3 -m venv venv\n\nThen either activate the virtualenv:\n\n.. code-block:: bash\n\n    source ./venv/bin/activate\n\nor just use the binaries directly inside the bin folder as below:\n\n.. code-block:: console\n\n    ./venv/bin/pip install bobtemplates.plone\n\n\nUsage\n-----\n\nAs bobtemplates.plone is a template for mr.bob_, we use mrbob to run the templates.\n\nIf you are using pipx or have bobtemplates.plone globally installed, you can just use mrbob directly.\n\n.. code-block:: console\n\n    mrbob bobtemplates.plone:addon -O src/collective.foo\n\nIf you are using an unactivated virtualenv, you can use mrbob like this:\n\n.. code-block:: console\n\n    ./venv/bin/mrbob bobtemplates.plone:addon -O src/collective.foo\n\nIf you are using an activated virtualenv, you can use mrbob like this:\n\nActivate your virtualenv:\n\n.. code-block:: console\n\n    source venv/bin/activate\n\n.. code-block:: console\n\n    mrbob bobtemplates.plone:addon -O src/collective.foo\n\nThis will create your Plone package inside the ``src`` directory.\n\nSee the documentation of mr.bob_ for further information.\n\n\nConfiguration\n=============\n\nYou can set all `mr.bob configuration <http://mrbob.readthedocs.io/en/latest/userguide.html#configuration>`_ parameters in your ~/.mrbob file.\n\nHere is an example:\n\n.. code-block:: bash\n\n    [mr.bob]\n    verbose = False\n\n    [variables]\n    author.name = Maik Derstappen\n    author.email = md@derico.de\n    author.github.user = MrTango\n    plone.version = 5.1.3-pending\n    #package.git.init = y\n    #package.git.autocommit = n\n    #package.git.disabled = n\n\n    [defaults]\n    dexterity_type_global_allow = n\n    dexterity_type_filter_content_types = y\n    dexterity_type_activate_default_behaviors = n\n    dexterity_type_supermodel = n\n\n\nContribute\n==========\n\n- Issue Tracker: https://github.com/plone/bobtemplates.plone/issues\n- Source Code: https://github.com/plone/bobtemplates.plone\n- Documentation: https://docs.plone.org/develop/addons/bobtemplates.plone/docs/ or https://bobtemplatesplone.readthedocs.io/en/latest/\n\n\nSupport\n=======\n\nIf you are having issues, please let us know.\nJust open an issue here.\n\n\nContributors\n============\n\nThis package was originally based on `bobtemplates.niteoweb <https://github.com/niteoweb/bobtemplates.niteoweb>`_ and `bobtemplates.ecreall <https://github.com/cedricmessiant/bobtemplates.ecreall>`_\n\n- Maik Derstappen [MrTango]\n- Philip Bauer [pbauer]\n- C\u00e9dric Messiant [cedricmessiant]\n- Vincent Fretin [vincentfretin]\n- Thomas Desvenain [thomasdesvenain]\n- Domen Ko\u017ear [iElectric]\n- Nejc Zupan [zupo]\n- Patrick Gerken [do3cc]\n- Timo Stollenwerk [timo]\n- Johannes Raggam [thet]\n- Sven Strack [svx]\n- H\u00e9ctor Velarde [hvelarde]\n- Aurore Mariscal [AuroreMariscal]\n- V\u00edctor Fern\u00e1ndez de Alba [sneridagh]\n- Alexander Loechel [loechel]\n- Peter Holzer [agitator]\n- Manuel Reinhardt [reinhardt]\n\n\nChangelog\n=========\n\n6.3.2 (2024-05-07)\n------------------\n\nNew features:\n\n- Add a starter subtemplate to initialize a Plone site with some sane default values\n  [erral]\n\n\nBug fixes:\n\n- add min_version = 4.11.0 to addon tempalte tox.ini\n  [MrTango]\n\n\n6.3.1 (2023-10-31)\n------------------\n\nNew features:\n\n- Add `icon_expr` for `content_type`` view/edit actions and ask for \"Content type icon\" when adding a `content_type`.\n  [petschki]\n\nBug fixes:\n\n- Fix permissions.zcml loaded too late\n  [MrTango]\n\n- Fix TinyMCE templates readme to work on Plone 6.\n  [maurits]\n\n- Use portal_url to root all CSS and rules file links\n  [erral]\n\n\n6.3.0 (2023-06-19)\n------------------\n\nNew features:\n\n- Fix SCSS imports for latest Bootstrap 5.3.\n  See `Upgrade notes <https://github.com/plone/bobtemplates.plone/blob/main/docs/templates/addon/theme_barceloneta/index.rst#upgrade-notes>`_\n  how you can update your existing theme.\n  [petschki]\n\n\n6.2.7 (2023-06-19)\n------------------\n\n- `theme_barceloneta`: pin version of `@plone/plonetheme-barceloneta-base` to\n  `3.0.x` patch releases which is based on Bootstrap 5.2.\n  Bootstrap 5.3 support will come with version `6.3.x`.\n  [petschki]\n\n\n6.2.6 (2023-04-24)\n------------------\n\n- Fix the GitLab CI cache for pip.\n  [thet]\n\n- mockup_pattern: Fix .prettierignore file to not exclude files within the /resources directory.\n  [thet]\n\n- Fix Plone 6 constraints file in addon template\n  [MrTango]\n\n\n6.2.5 (2023-03-02)\n------------------\n\n- fix generated view template\n  [MrTango]\n\n\n6.2.4 (2023-03-01)\n------------------\n\n- improve view template, fix name of test file and improve generated tests\n  [MrTango]\n\n\n6.2.3 (2023-02-22)\n------------------\n\n- Add Plone Classifiers to show up in Plone add-on gallery\n  [MrTango]\n\n\n6.2.2 (2023-02-22)\n------------------\n\n- mockup_pattern: Fix imports of config files to point to @patternslib/dev.\n  [thet]\n\n- mockup_pattern: The parser attribute should be a static attribute.\n  [thet]\n\n- improve view template, implement view interface\n  [MrTango]\n\n\n6.2.1 (2023-01-26)\n------------------\n\n- replace backslash with os.path.sep #531\n  [me-kell]\n\n- fix missing tox.ini in addon template\n  [MrTango]\n\n- fix missing comma in testing.py of addon template\n  [MrTango]\n\n\n6.2 (2022-10-28)\n----------------\n\n- Improve namespace support #419\n  [mamico]\n\n- Add support for Python 3.10 / drop Python 3.7 in CI\n  [pbauer]\n\n- use cmf.ManagePortal permission by default in forms\n  [MrTango]\n\n- run applyChanges in forms by default\n  [MrTango]\n\n\n6.1 (2022-10-24)\n----------------\n\n- Add sub-template form, to generate z3c.form based forms\n  [MrTango]\n\n\n6.0 (2022-10-24)\n----------------\n\n- Improve namespace support #520\n  [mamico]\n\n- Upgrade @patternslib/dev dependency for the `mockup_pattern` template.\n  [thet]\n\n\n6.0b15 (2022-10-08)\n-------------------\n\n- Remove stale templates from theme_basic\n  [santonelli]\n\n- Switch to class based Patterns in mockup_pattern template\n  [thet]\n\n- Improve theme template README and theme.scss\n  [MrTango]\n\n\n6.0b14 (2022-10-07)\n-------------------\n\n- Update theme_barceloneta to use plonetheme-barceloneta-base 3.0.0b6 and use SCSS example import structure from Bootstrap documentation.\n  [agitator]\n\n- Added mockup pattern template.\n  [reinhardt, thet]\n\n- update theme package versions and improve readme\n  [MrTango]\n\n\n6.0b13 (2022-08-06)\n-------------------\n\n- Remove install of unnecessary system libraries on Github Actions.\n  [wesleybl]\n\n- Fix import of ComponentLookupError in tests\n  [MrTango]\n\n\n6.0b12 (2022-05-03)\n-------------------\n\n- Add dummy style file in styles/theme.min.css to not break theme, when no css file was created\n  [MrTango]\n\n- Add layer attribute to view registrations\n  [MrTango]\n\n\n6.0b11 (2022-03-04)\n\n- Remove deprecated theme_package template from entrypoints/bobregistry\n  [MrTango]\n\n- Add CollectionView to view base class options\n  [MrTango]\n\n- Add view_register_for question, to allow view registration for a specific content type\n  [MrTango]\n\n- Increment .gitignore.\n  [wesleybl]\n\n- Create an Interface for views by default\n  [MrTango]\n\n\n6.0b10 (2021-10-25)\n-------------------\n\n- Update theme_barceloneta to use plonetheme-barceloneta-base 3.0.0-alpha.7\n  [agitator]\n\n- Improve upgrade step template\n  [MrTango]\n\n- Hide all upgrade profiles from site-creation and quickinstaller.\n  [thet]\n\n- fix typo in README.rst\n  [yurj]\n\n\n6.0b9 (2021-10-23)\n------------------\n\n- Theme: Add some tags/attributes to the HTML Filter\n  [MrTango]\n\n- Cleanup and small Diazo fixes in theme template\n  [MrTango]\n\n\n6.0b8 (2021-10-21)\n------------------\n\n- Added theme_basic as basic theme template for Plone 6 Classic UI\n  [santonelli]\n\n- Template cleanup / Plone 6 fixes\n  [MrTango]\n\n- Provide some bootstrap snippet as TinyMCE templates, in theme\n  [MrTango]\n\n- Provide a Diazo rule, which by default deactivates RequireJS, so that one can use free style JS in the html. This well be removed when the ES6 branch is merged and RequireJS is finally gone\n  [MrTango]\n\n- Improve some default Diazo rules\n  [MrTango]\n\n- Improve view page template\n  [MrTango]\n\n- Added RegistryPanel adapter to controlpanel subtemplate, to have Volto support\n  [erral]\n\n\n6.0b7 (2021-10-15)\n------------------\n\n- Deprecated theme_package was removed, in 5.x it still exists\n  [MrTango]\n\n- Cleanup theme template and update generated README\n  [MrTango]\n\n- Add controlpanel subtemplate\n  [erral]\n\n- Updated theme_barceloneta for Plone 6 classic - uses plonetheme-barceloneta-base npm package\n  [agitator]\n\n- Updated TinyMCE template examples for Bootstrap 5\n  [agitator]\n\n- Multiple Plone 6 fixes and Plone 4 cleanup\n  [MrTango]\n\n\n6.0b6 (2021-10-13)\n------------------\n\n- Provide Plone 6 buildout config and constraints in generated add-on's\n  [MrTango]\n\n\n6.0b5 (2021-07-15)\n------------------\n\n- Use codecov badge in add-on README instead of coveralls\n  [MrTango]\n\n\n6.0b4 (2021-07-15)\n------------------\n\n- Add Upload coverage to Codecov GH-action and update DEVELOP.rst in add-on's\n  [MrTango]\n\n\n6.0b3 (2021-07-13)\n------------------\n\n- Update generated README from addon template, to replace Travis badge\n\n\n6.0b2 (2021-07-13)\n------------------\n\n- Further cleanup\n  [MrTango]\n\n\n6.0b1 (2021-07-12)\n------------------\n\n- Drop Python 2 support\n  [MrTango]\n\n- Drop support for Plone < 5.2\n  [MrTango]\n\n- Fix placeholder syntax in configure.zmcl files\n  [MrTango]\n\n- Improve CI-Support with GitHub-Actions, in root package and generated add-on's\n  [MrTango]\n\n- Finalize Black code formater support in root package and generated add-on's\n  [MrTango]\n\n\n5.2.1 (2021-06-03)\n------------------\n\n- Do not create an empty docstring for the content-type class\n  [erral]\n\n- Updated default Plone version for addon packages to 5.2.4\n  [MrTango]\n\n- Change default answer of \"Use XML Model\" to false, because the Python way is usually easier and provides a better developer experience\n  [MrTango]\n\n- Pin importlib-metadata = >=1 to avoid broken buildout in new packages\n  [MrTango]\n\n- Change bundle names for svelte_app, it's now <my-app-name>-bundle.js/css, which makes it better distinguishable in Browser inspector\n  [MrTango]\n\n- Optimize skeleton test matrix, to be much faster\n  [MrTango]\n\n- Override index method in viewlets, not the render method.\n  [MrTango]\n\n\n5.2.0 (2020-11-12)\n------------------\n\n- addon: switch from profiles/default/registry.xml to profiles/default/registry folder\n  [MrTango]\n\n- Remove Travis configuration sudo false.\n  [wesleybl]\n\n- Fix svelte_app_name regex and add a test for it\n  [MrTango]\n\n- Fix #447: Typo in setup.cfg.bob - isort fails\n  [MrTango]\n\n- Add black-check env to tox.ini, this allows us to check for black linting issues in the templates\n  [MTango]\n\n\n5.2.0b4 (2020-11-06)\n--------------------\n\n- use dashed name for svelte apps, fix dev server including live reload\n  [MrTango]\n\n- Add custom elements to allowed tags by default via registry, also add slot to custom attributes\n  [MrTango]\n\n\n5.2.0b3 (2020-11-05)\n--------------------\n\n- fix svelte component import, in custom_element mode\n  [MrTango]\n\n- Improve svelte_app docs\n  [MrTango]\n\n\n\n5.2.0b2 (2020-11-05)\n--------------------\n\n- Add missing entry point for svelte_app template\n  [MrTango]\n\n\n5.2.0b1 (2020-11-05)\n--------------------\n\n- Add svelte_app template including with custom-element (web-component) support\n  [MrTango]\n\n\n5.1.2 (2020-10-14)\n------------------\n\n- Add tox as a dependency. Fixes #442.\n  [erral]\n\n- Improved run_isort error handling\n  [MrTango]\n\n\n5.1.1 (2020-07-30)\n------------------\n\n- Fix #436 remove index option in base.cfg\n  [MrTango]\n\n- Fix #437 cleanup .gitignore file\n  [MrTango]\n\n- Fix #432 Bare except in restapi_service\n  [MrTango]\n\n\n5.1 (2020-07-29)\n----------------\n\n- Create upgrade step profile directory. Fixes #434\n  [erral]\n\n- Require coverage<5. Fixes #421\n- Fix indexer subtemplate. Fixes #425\n  [erral]\n\n- Require coverage<5 in travis configuration file. Fixes #421\n  [erral]\n\n- Align template's setup.cfg to the projects one.\n  Especially raises the flake8 line-length to black default.\n  [thet]\n\n- Update travis setup, use tox for all testing and linting of addon package, not code-analysis.\n  [MrTango]\n\n- Update default Plone and Python version to 5.2.1 and 3.7 for addon template.\n  [MrTango]\n\n- Add badges to addon README file.\n  [MrTango]\n\n- Add collective.recipe.vscode to addon base.cfg, activated by default, we have a question to disable it.\n  [MrTango]\n\n- Fix flake8 missing trailing comma, format call uses missing keyword, provides unused keyword.\n  [fulv]\n\n- Improve generated package tox env, also run linting inside skeleton-tests.\n  [MrTango]\n\n- Improve bobtemplate.plone tox output, it's now easier to read and find the errors.\n  [MrTango]\n\n- Automatically fix isort issues after using addon template.\n  [MrTango]\n\n- Improve buildout template, it's now using Plone release versions rather than buildouttesting.\n  [MrTango]\n\n\n5.0.4 (2019-11-28)\n------------------\n\n- Fix flake8-plone-hasattr issue, space and unused import\n  [balavec]\n\n- Disable extra requirements for theme addon\n  [balavec]\n\n- Fix upgrade_step template, missing bob-file-extension and import\n  [MrTango]\n\n- Fix upgrade_step by add missing directory attribute to UpgradeStep profile, upgrade_steps are no longer visible in addon control panel\n  [MrTango]\n\n\n5.0.3 (2019-10-24)\n------------------\n\n- Fix upgrade_step sub-template\n  [MrTango]\n\n\n5.0.2 (2019-10-21)\n------------------\n\n- Add auto increment version to upgrade_step sub-template\n  [MrTango]\n\n\n5.0.1 (2019-10-18)\n------------------\n\n- Add missing registration for plonecli\n  [MrTango]\n\n\n5.0.0 (2019-10-18)\n------------------\n\n- Add upgrade_step sub-template, remove upgrades from addon template, read the `Upgrade chapter <https://bobtemplatesplone.readthedocs.io/en/latest/upgrade-packages.html>`_ in the docs, how to upgrade existing packages.\n  [MrTango]\n\n\n4.1.4 (2019-10-18)\n------------------\n\n- Fixed Travis caching.  Downloads do not need to be cached.\n  And for the eggs we were caching the wrong directory.\n  Fixes `issue #408 <https://github.com/plone/bobtemplates.plone/issues/408>`_.\n  [maurits]\n\n- Fixed name of commented out version behavior.\n  This is ``plone.versioning`` and not ``plone.versionable``.\n  [maurits]\n\n- Run coveralls in the correct path\n  [erral]\n\n- Fix 'geckodriver' error when running tests in Travis.\n  [erral]\n\n- Use dist: bionic on Travis, install firefox-geckodriver via apt\n  [MrTango]\n\n- Add indexer sub-template to generate indexers\n  [MrTango]\n\n\n4.1.3 (2019-08-31)\n------------------\n\n- Fix restapi service_factory name.\n  [erral]\n\n- Allow user to insert view config, even if one exists\n  [MrTango]\n\n- Use snakecase for template files, as we do for python files\n  [MrTango]\n\n- Improve and fix package tests for view template\n  [MrTango]\n\n- Add init_package_base_structure method to easiely create test structures in packages tests\n  [MrTango]\n\n\n4.1.2 (2019-08-29)\n------------------\n\n- Fix match_str in view, viewlet and portlet templates\n  [MrTango]\n\n\n4.1.1 (2019-08-22)\n------------------\n\n- Fix failing ``./bin/update-locales`` if a theme is in development. See also\n  `How can i exclude directories when is use i18ndude command <https://community.plone.org/t/solved-how-can-i-exclude-directories-when-is-use-i18ndude-command/6193/5>`_\n  [jensens]\n\n- Fix flake8 isort error in generated addon.\n  [jensens]\n\n- Change fonts mixin to bob template and use normalized_name.\n  [balavec]\n\n\n- Properly close HTML body tag in view template.\n  [erral]\n\n- Change classifiers URL, closes #389.\n  [ale-rt]\n\n- Fix content_type_test which test the deletion of an object\n  [MrTango]\n\n\n4.1.0 (2019-05-31)\n------------------\n\n- Add subscriber sub-template\n  [MrTango]\n\n\n4.0.5 (2019-05-22)\n------------------\n\n- Remove Gruntfile.js and package.json from .gitignore in addon package.\n  [erral]\n- Update theme_barceloneta with plonetheme.barceloneta 2.1.3 and cleanup structure\n  [agitator]\n\n- ReST fomatting and fix typo in README.rst\n  Add version plone.app.dexterity pinning in Plone 4 buildout versions in addon template\n  [MrTango]\n\n- Improve view ZPT\n  [MrTango]\n\n- Add project_urls to setup.py, fixes: #376\n  [MrTango]\n\n- Check deleting object in content_type tests\n  [MrTango]\n\n- Add \"mrbob: extra extends\" marker in addon buildout.cfg, to allow injection of custom extends\n  [MrTango]\n\n- Improve default view/viewlet template filename, fixes #372\n  [MrTango]\n\n- view: add base_class question to allow BrowserView or DefaultView base class\n  [MrTango]\n\n\n4.0.4 (2019-04-14)\n------------------\n\n- Fix travis setup in generated addon template.\n  [erral]\n\n- extend versions from dist.plone.org in constraints files, to stay in sync with the buildout versions from there\n  [MrTango]\n\n- Add python.version question in addon template, to define the Python binary for the virtualenv to create\n  [MrTango]\n\n\n4.0.2 (2019-03-25)\n------------------\n\n- Fix git output in python 3.\n  [pbauer]\n\n- Change installer-tests to work in all Plone-Versions.\n  [pbauer]\n\n- Add `plone.translatable` as a commented behavior\n  [erral]\n\n\n4.0.1 (2019-03-11)\n------------------\n\n- Remove version conditions for addon dependencies, p43-p52 should be supported.\n  [MrTango]\n\n\n4.0 (2019-03-11)\n----------------\n\n- Only recommend using short names for behaviors, improve behavior docs.\n  [MrTango]\n\n- Generate the same tests for P4/5 packages.\n  [MrTango]\n\n- Add Tox setup to generated packages, to test multiple Python and Plone versions.\n  [MrTango]\n\n- Provided buildout, requirements and constraints for all Plone versions.\n  [MrTango]\n\n- Finally activate and fix new templates: view, viewlet, portlet, restapi_service.\n  [MrTango]\n\n- Refactor skeleton-tests setup, we call specific Tox envs inside the generated packages.\n  [MrTango]\n\n- Add Sphinx doc config to addon template docs.\n  [MrTango]\n\n- Make portlet sub-template Python 3 compatible.\n  [MrTango]\n\n- Remove skeleton test for theme_barceloneta on Plone 4\n  [MrTango]\n\n- Always include plone.restapi in setup.py\n  [MrTango]\n\n- Use newest Tox and Pytest versions, to allow running test in parallel mod on local machine.\n  [MrTango]\n\n- Add custom tox2travis.py script, to generate a Travis matrix from Tox configuration.\n  [MrTango]\n\n- Fixes #350: add \"python_requires\" option to setup.py.\n  [jensens, iham]\n\n- Fix some confusion in setup.py classifiers and depenencies due to introduction of Plone 5.2 support.\n  Introduces plone.is_plone5.2 variable.\n  [jensens]\n\n- Fix behavior template: use separate marker interface,\n  register marker in the behavior zcml and adapt content to the marker, not to IDexterityContent.\n  For further reference, see the plone.behavior README.rst Example 2.\n  Fixes #16.\n  [fredvd, jensens]\n\n- Use behavior shortnames in FTI.\n  [jensens]\n\n- Do not add dexterity as dependency in Plone 5.x due to the fact it is already in Plone core.\n  [jensens]\n\n- Enforce base class, when supermodel is used, to have a decent marker interface\n  [MrTango]\n\n- Fix theme templates: #349, use package_directory as target now, improve testing\n  [MrTango]\n\n- Correct viewlet example code, fixes: #351\n  [MrTango]\n\n- Add missing plone.app.themingplugins to dependencies, fixes: #353\n  [MrTango]\n\n\n3.6.0 (2019-02-25)\n------------------\n\n- Use @implementer decorator instead of implements.\n  [erral]\n\n- Fix FTI settings if default behaviors not active, #352\n  [MrTango]\n\n- Correct the sentence formation.\n  [Akshjain99]\n\n\n3.6.0b1 (2018-12-28)\n--------------------\n\n- Add support for Python 3.\n  [pbauer]\n\n- Replace portal_quickinstaller in tests for Plone 5.1+.\n  [pbauer]\n\n- Avoid linty issues in zcml files in updateing method for zcml files\n  [MrTango]\n\n- provide generic methods remove_unwanted_files/update_configure_zcml\n  [MrTango]\n\n- Add restapi_service sub-template\n  [MrTango]\n\n\n3.5.2 (2018-10-30)\n------------------\n\n- Improve content_type sub-template, to reduce linting issues on created code\n  [MrTango]\n\n- Replace python-slugify by custom slugify method, fixes #335 and #337\n  [MrTango]\n\n- Added safe_unicode/safe_encode and safe_nativestring methods in utils\n  [MrTango]\n\n- Add docs for view, viewlet and portlet\n  [kakshay21]\n\n\n3.5.1 (2018-10-23)\n------------------\n\n- Refactor and fix docs\n  [MrTango]\n\n- Fix updating of parent FTI file, when parent type name contains spaces, fixes #331\n  [MrTango]\n\n- Don't do git auto commit if git init was disabled in addon template, fixes #300\n  [MrTango]\n\n\n3.5.0 (2018-10-17)\n------------------\n\n- Add a new subtemplate for addon that creates a full barceloneta-based theme\n  [erral]\n\n\n3.4.3 (2018-10-17)\n------------------\n\n- Add a build step to report coverage on gitlab and run tests on stages\n  [erral]\n\n- Rename Roboto font files copies from barceloneta.theme to match CSS registrations\n  [erral]\n\n- Refresh backend.xml from latest plonetheme.barceloneta version so that the diazo theme resources\n  are not copied into the backend.xml but dropped beforehand. Also removes toggle nav button which\n  was removed from barceloneta theme. fixes #317\n  [fredvd]\n\n- Deactivated the dublicated template file definition in view Python class\n  [MrTango]\n\n- Don't override constructor in views by default\n  [MrTango]\n\n- Use --ignore-submodules in git_clean_state_check\n  [MrTango]\n\n- Commented out the HEAD SCRIPT rule in backend.xml that caused the scripts being pulled twice,\n  in case that you are using it to style backend views. You should only use\n  this rule once in your ruleset. Using it twice cause leads to JS errors and\n  patterns initialition failures.\n  This fixes: https://github.com/plone/plonetheme.barceloneta/issues/158\n  [sneridagh]\n\n- Updated \"theme\" subtemplate backend/frontend rules and add usage hints\n  [MrTango]\n\n- set correct classifiers for Plone 4 addons, fixes: #303\n  [MrTango]\n\n- remove boostrap-buildout.py references in config files, fixes #302\n  [MrTango]\n\n- Make adding default behaviors optional in content_type subtemplate, fixes #324\n  [MrTango]\n\n- Add deprecated flag and info to theme_package template in registry\n  [MrTango]\n\n\n3.4.2 (2018-08-13)\n------------------\n\n- Add portlet subtemplate\n  [kakshay21]\n\n- Replace stringcase library by case_conversion\n  [kakshay21]\n\n3.4.1 (2018-07-23)\n------------------\n\n- Fix #313 and improve tests\n  [MrTango]\n\n3.4.0 (2018-07-23)\n------------------\n\n- Add viewlet subtemplate\n  [kakshay21]\n\n- Add view subtemplate\n  [kakshay21]\n\n- Add update_locale script in bin/ folder to update locales\n  [kakshay21]\n\n- Add a custom to_boolean jinja filter\n  [kakshay21]\n\n- Add plone-compile-resources script in addon and extending .gitignore file\n  [kakshay21]\n\n- Add conditional tests in content_type\n  [kakshay21]\n\n- Improve DX CT name normalization and question info, added more tests for DX CT normalization\n  [MrTango]\n\n- Cleanup addon template, add one more test for to_boolean method\n  [MrTango]\n\n\n3.3.0 (2018-05-24)\n------------------\n\n- Ask for parent content_type when global_allow is set to false\n  [kakshay21]\n\n- Hide container filter options in FTI settings when dexterity_type_base_class is 'Item'\n  [kakshay21]\n\n- add package_folder_rel_path variable and fix robot test header\n  [MrTango]\n\n\n3.2.0 (2018-04-25)\n------------------\n\n- improve messages after using vocabulary/behavior sub-templates with names of the vocabulary or behavior\n  [MrTango]\n\n- fix behavior name registration\n  [MrTango]\n\n- Add gitlab CI config to addon template\n  [MrTango]\n\n\n3.2.0b3 (2018-04-20)\n--------------------\n\n- Add new field in behavior, improve test naming and tests\n  [MrTango]\n\n- Add a chapter howto upgrade existing packages to be compatible with plonecli and new bobtemplates.plone templates\n  [MrTango]\n\n- improve test naming of content_Type and vocabulary templates\n  [MrTango]\n\n\n3.2.0b2 (2018-04-11)\n--------------------\n\n- Fix reading default config parameters and improve git-support docs\n  [MrTango]\n\n\n3.2.0b1 (2018-04-11)\n--------------------\n\n- Add GIT support with clean state check and auto commit/init\n  [MrTango]\n\n- Refacture template structure and increase package test covarage\n  [MrTango]\n\n\n3.1.2 (2018-04-06)\n------------------\n\n- Set i18n:domain in supermodel xml files to the package domain\n  [MrTango]\n\n\n3.1.1 (2018-04-03)\n------------------\n\n- Fix add_view_expr in content_type template\n  [MrTango]\n\n- Fix robot test selector in content_type template\n  [MrTango]\n\n- Bump default Plone buildout version to 5.1\n  [MrTango]\n\n\n3.1.0 (2018-04-02)\n------------------\n\n- Add global_allow and filter_content_types questions\n  [MrTango]\n- don't use lower case version for CT name\n  [MrTango]\n- add behavior tests\n  [MrTango]\n\n3.0.1 (2018-03-29)\n------------------\n\n- Use set return-status-codes=True for tox, fixes #261\n  [MrTango]\n\n- set filter_content_types to False by default, fixes #256\n  [MrTango]\n\n- add ILeadImage behavior to FTI list of inactive behaviors, fixes #255\n  [MrTango]\n\n\n3.0.0 (2018-03-28)\n------------------\n\n- make final release of version 3\n\n\n3.0.0b5 (2018-03-27)\n--------------------\n\n- enable lockingbehavior by default and reenable locking condition for edit button, fixes #257\n  [MrTango]\n\n- only require plone.app.dexterity<=2.1.1 and not excact that version for Plone 4\n  [MrTango]\n\n\n3.0.0b4 (2018-03-26)\n--------------------\n\n- Use more specific names for generated test files, like test_vocab_todo_tasks.py instead of test_todo_tasks.py\n  [MrTango]\n\n\n3.0.0b3 (2018-03-22)\n--------------------\n\n- Add behavior sub-template entrypoint, to make it available in plonecli\n  [MrTango]\n- Update link to document in README.\n  [kakshay21]\n\n\n3.0.0b2 (2018-02-27)\n--------------------\n\n- fixed FTI configuration, removed the plone_lock_info condition\n  [MrTango]\n\n\n3.0.0b1 (2018-02-25)\n--------------------\n\n- Quote version strings in YAML. See: https://github.com/travis-ci/docs-travis-ci-com/issues/1540\n  [thet]\n\n- Use default Travis notifications.\n  Until now only the creator of the package would get a notification, instead of the committer.\n  Fixes `issue 208 <https://github.com/plone/bobtemplates.plone/issues/208>`_.\n  [maurits]\n\n- Fixed the pypi index to explicitly reference https://pypi.python.org/simple/ to prevent buildout from defaulting to the old and unsupported http:// url.\n  [pigeonflight]\n\n- Fix coveralls for packages created with addon and theme_package by converting the pickle output of createcoverage in .coverage to json.\n  [pbauer]\n\n- Fixes #235: Different roles in tests for install and uninstall.\n  Use Manager role in uninstall test.\n  Then both install and uninstall are executed with role Manager.\n  [jensens]\n\n- fix linting problems and error in theme_package tests\n  [MrTango]\n\n- Update setuptools and zc.buildout versions.\n  [tmassman]\n\n- Improve docs by fixing some reST, typos and grammar\n  [svx]\n\n- Update link to docs.plone.org in README\n  [svx]\n\n- Imporve docs template for valid reST generation\n  [svx]\n\n- use bobtemplate.cfg to store meta data for sub-templates #245\n  [MrTango]\n\n- fix naming of vocabularies\n  [MrTango]\n\n- fix buildout template and add some docs about the used buildout.plonetest configuration\n  [MrTango]\n\n- add behavior sub-template to create Plone behaviors\n  [MrTango]\n\n\n3.0.0a3 (2017-10-30)\n--------------------\n\n- Fix #222 default travis setup is broken.\n  [jensens, pbauer]\n\n- Add template registration for mr.bob/plonecli for all provided templates\n  [MrTango]\n\n- Fix content_type and theme sub templates\n  [MrTango]\n\n- fix in themes.rst changed plone_addon to addon\n  [pigeonflight]\n\n\n3.0.0a2 (2017-10-01)\n--------------------\n\n- Cleanup Package - remove unnecessary files from past versions\n  [loechel]\n\n- Add vocabulary subtemplate\n  [MrTango]\n\n\n3.0.0a1 (2017-09-26)\n--------------------\n\n- Refacturing to support subtemplates\n  [MrTango]\n\n- Add theme and content_type subtemplates\n  [MrTango]\n\n- Add missing plone namespace, to avoid conflicts with other bobtemplate packages\n  [MrTango]\n\n- Removed bootstrap-buildout.py, Update barceloneta less files for theme_package\n  [agitator]\n\n- Fixed i18n attributes for View/Edit actions in dexterity type xml.\n  [maurits]\n\n- Testing of generated skeletons integrated with tox and pytest.\n  [loechel]\n\n\n2.0.0 (2017-08-28)\n------------------\n\n- Set the zope_i18n_compile_mo_files environment variable.\n  [maurits]\n\n- Fixed i18n attributes for View/Edit actions in dexterity type xml.\n  [maurits]\n\n- Separate theme template from addon template, we now have plone_addon and plone_theme_package\n- Update barceloneta less files to 1.7.3 for plone_theme_package\n  [agitator]\n- Removed bootstrap-buildout.py and added DEVELOP.rst\n  [agitator]\n\n- Update barceloneta less files to 1.7.3 for plone_theme_package\n  [agitator]\n\n- Fixed i18n attributes for View/Edit actions in dexterity type xml.  [maurits]\n\n- Seperate theme template from addon template, we now have plone_addon and plone_theme_package\n  [MrTango]\n\n- Update pins in the generated buildout.cfg\n  [ale-rt]\n\n- Change default values for code analysis' ``return-status-codes`` directive:\n  it is now ``False`` on development and ``True`` on CI.\n  [hvelarde]\n\n- Pin flake8 to latest (3.3.0) to allow use of latest pycodestyle (2.3.1)\n  [fulv]\n\n- Imrove wording\n  [svx]\n\n- Add requirements.txt and update README.txt to use it\n  [MrTango]\n\n- Make cleanup hook windows friendly.\n  [gforcada]\n\n- Move LICENSE.rst out of docs folder into top level.\n  [gforcada]\n\n- Get rid of the last two code violations on generated package\n  [sneridagh]\n\n- Comment the toolbar rule by default in backend.xml and add a comment on how\n  to add it properly if backend.xml is used. Declaring the toolbar rule twice\n  causes the toolbar JS stop working properly\n  [sneridagh]\n\n\n1.0.5 (2016-10-16)\n------------------\n\n- Use same lines width than package name for title ##\n  [AuroreMariscal]\n\n- Get rid of ``travis.cfg`` configuration as its use is no longer considered best practice.\n  [hvelarde]\n\n- Update ``bootstrap-buildout.py`` to latest version.\n  [hvelarde]\n\n- Fix imports to follow conventions.\n  [hvelarde]\n\n- Avoid usage of double quotes on strings.\n  [hvelarde]\n\n- Avoid usage of invokeFactory.\n  [hvelarde]\n\n- Remove dependency on unittest2 as package is not intended to be compatible with Python 2.6.\n  [hvelarde]\n\n- Use selenium v2.53.6.\n  [hvelarde]\n\n- Use plone:static instead of browser:resourceDirectory to allow ttw-overrrides.\n  [pbauer]\n\n- Bump flake8 version to 3.x.\n  [gforcada]\n\n- Update theme template, include complete working Barceloneta resources + grunt setup\n  [MrTango]\n\n\n1.0.4 (2016-07-23)\n------------------\n\n- Upgrade some pinns.\n  [pbauer]\n\n- Upgrade to 5.0.5 and test against that.\n  [pbauer]\n\n- Add ``i18n:attributes`` for action nodes in FTI profile.\n  [thet]\n\n- Pin versions of coverage/createcoverage\n  [staeff]\n\n- Default to Plone 5.0.4.\n  [jensens]\n\n- Validate type name input (fixes #81).\n  [pbauer]\n\n- Git ignore ``.installed.cfg`` and ``mr.developer.cfg`` by default.\n  [jensens]\n\n- ``isort`` style checks are enabled, but no config was set. i\n  Added config according to http://docs.plone.org/develop/styleguide/python.html#grouping-and-sorting\n  [jensens]\n\n- Ordered sections of generated FTI xml into semantical block and added comments for each block.\n  [jensens]\n\n- Bump setuptools version to 21.0.0 in buildout.cfg.bob\n  [staeff]\n\n- Configure buildout to install all recommended codeanalysis plugins\n  [staeff]\n\n\n1.0.3 (2016-04-13)\n------------------\n\n- Fix Plone default version (Plone 4.3.9).\n  [timo]\n\n\n1.0.2 (2016-04-13)\n------------------\n\n- Create uninstall profile also for Plone 4.3.x, since it already depends on ``Products.CMFQuickInstallerTool >= 3.0.9``.\n  [thet]\n\n- Update Plone versions to 4.3.9 and 5.0.4.\n  [thet]\n\n- Update robot test framework versions including Selenium to work with recent firefox releases.\n  [thet]\n\n- Replaced import steps by post_handlers.  Needs GenericSetup 1.8.2 or\n  higher.  This is included by default in Plone 4.3.8 and 5.0.3 but\n  should be fine to use on older Plone versions.  [maurits]\n\n- Removed ``.*`` from the ``.gitignore`` file.  This would ignore the\n  ``.gitkeep`` files, which would mean some directories are not added\n  when you do ``git add`` after generating a new project.  [maurits]\n\n- Note about disabled ``z3c.autoinclude`` in test layer setup.\n  [thet]\n\n- Remove the ``xmlns:five`` namespace, as it is not used at all.\n  [thet]\n\n- Fix build failure on Plone 4.x due to plone.app.contenttypes pulled in and having a plone.app.locales >= 4.3.9 dependency in it's depending packages.\n  [thet]\n\n- Declare the xml encoding for all GenericSetup profile files.\n  Otherwise the parser has to autodetect it.\n  Also add an xml version and encoding declaration to ``theme.xml``.\n  [thet]\n\n- Add \"(uninstall)\" to the uninstall profile title.\n  Otherwise it cannot be distinguished from the install profile in portal_setup.\n  [thet]\n\n- Simplify concatenation of ``.rst`` files for ``setup.py``.\n  [thet]\n\n- Update ``.gitignores`` in repository to exclude ``lib64``, ``pip-selfcheck.json`` and all ``.*`` except necessary.\n  Update ``.gitignore.bob`` in templates with these changes too.\n  Add ``.gitattributes`` in repository for union-merge CHANGES.rst files.\n  [thet]\n\n- Update docs and README\n  [svx]\n\n1.0.1 (2015-12-12)\n------------------\n\n- Register locales directory before loading dependencies to avoid issues when overriding translations.\n  [hvelarde]\n\n\n1.0 (2015-10-02)\n----------------\n\n- Upgrade to Plone 4.3.7 and 5.0.\n  [timo]\n\n- Avoid pyflakes warnings for long package names.\n  [maurits]\n\n\n1.0b1 (2015-09-17)\n------------------\n\n- Always start with 1.0a1. No more 0.x releases please.\n  [timo]\n\n- Use Plone minor version for ``setup.py`` classifier. So 4.3 instead\n  of 4.3.6.\n  [maurits]\n\n- Enabled robot part in generated package.\n  [maurits]\n\n- Add depedency on plone.testing 5.0.0. Despite the major version number,\n  this change does not contain breaking changes.\n  [do3cc]\n\n- Fix #84 Make travis cache the egg directory of the generated package.\n  [jensens]\n\n- Update tests to use Plone 5.0b3.\n  [jensens]\n\n- Remove unittest2 dependency.\n  [gforcada]\n\n\n0.11 (2015-07-24)\n-----------------\n\n- Fix update.sh\n  [pbauer]\n\n- Add i18ndude to buildout\n  [pbauer]\n\n- Fix package-creation on Windows. Fixes #72.\n  [pbauer]\n\n- Add packagename to licence.\n  [pbauer]\n\n- Add uninstall-profile for Plone 5.\n  [pbauer]\n\n- Fix indentation to follow the conventions of plone.api.\n  [pbauer]\n\n- Move badges from pypin to shields.io.\n  [timo]\n\n- Fix coverage on travis template.\n  [gil-cano]\n\n- Enable code analysis on travis and fail if the code does not pass.\n  [gforcada]\n\n\n0.10 (2015-06-15)\n-----------------\n\n- Add check-readme script that detects Restructured Text issues.\n  [timo]\n\n- Use only version up to minor version in setup.py of package #56.\n  [tomgross]\n\n- Use class method to load ZCML in tests.\n  [tomgross]\n\n- Upgrade default Plone version to 4.3.6.\n  [timo]\n\n- Add zest.releaser to package buildout.\n  [timo]\n\n- Update README according to Plone docs best practice.\n  [do3cc, timo]\n\n- Add flake8-extensions to code-analysis.\n  [timo]\n\n- Upgrade Selenium to 2.46.0.\n  [timo, pbauer]\n\n- Don't create a type-schema unless it is needed.\n  [pbauer]\n\n\n0.9 (2015-03-24)\n----------------\n\n- Add Theme package type with simple bootstrap-based theme.\n  [timo]\n\n- Add Dexterity package type.\n  [timo]\n\n- Remove example view.\n  [timo]\n\n- Remove question for keywords.\n  [timo]\n\n- Remove question for locales.\n  [timo]\n\n- Remove questions for version and license.\n  [timo]\n\n- Remove questions for profile, setuphandler, and testing.\n  [timo]\n\n- Unify buildout configuration in buildout.cfg\n  [timo]\n\n- Fix bootstrap command in travis.yml.\n  [timo]\n\n\n0.8 (2015-02-06)\n----------------\n\n- Add includeDependencies. This fixes #23.\n  [timo]\n\n\n0.7 (2015-02-05)\n----------------\n\n- Use latest buildout-bootstrap.py.\n  [timo]\n\n- Fix failing nosetests.\n  [timo]\n\n- Add test that creates an add_on and runs all its tests and code analysis.\n  [timo]\n\n- Run tests on travis.\n  [timo]\n\n- Run code analysis on travis. Build fails on PEP8 violations.\n  [timo]\n\n- Add code analysis.\n  [timo]\n\n- Remove z2.InstallProducts. Not needed any longer.\n  [timo]\n\n- Use testing best practices and follow common naming conventions.\n  [timo]\n\n- Remove testing profile. Global testing state is considered an anti-pattern.\n  [timo]\n\n- Add example robot test.\n  [timo]\n\n- Add travis and pypip.in badges.\n  [timo]\n\n- Run code analysis on the generated addon as well within the tests to make\n  sure we always ship 100% PEP8 compliant code.\n  [timo]\n\n- Add REMOTE_LIBRARY_BUNDLE_FIXTURE to acceptance test fixture.\n  [timo]\n\n\n0.6 (2015-01-17)\n----------------\n\n- Use PLONE_APP_CONTENTTYPES_FIXTURE for tests on when using Plone 5.\n  [pbauer]\n\n\n0.5 (2015-01-17)\n----------------\n\n- Remove useless base-classes for tests. Use 'layer = xxx' instead.\n  [pbauer]\n\n- Fix some minor code-analysis issues.\n  [pbauer]\n\n- Added .editorconfig file.\n  [ale-rt]\n\n\n0.4 (2014-12-08)\n----------------\n\n- Remove grok.\n  [pbauer]\n\n- Fix missed removals when testing was deselected.\n  [pbauer]\n\n- Only use jbot when there is a profile and a browser layer.\n  [pbauer]\n\n- Get username and email from git.\n  [do3cc]\n\n\n0.3 (2014-12-07)\n----------------\n\n- Pinn robotframework to 2.8.4 to fix package-tests.\n  [pbauer]\n\n- Add browserlayer to demoview to allow multiple addons.\n  [pbauer]\n\n- Fix creation of nested packages (wrong __init__.py).\n  [pbauer]\n\n\n0.2 (2014-12-07)\n----------------\n\n- Fix documentation\n  [pbauer]\n\n\n0.1 (2014-12-07)\n----------------\n\n- Get namespace, name and type from target-dir.\n  [pbauer]\n\n- Remove obsolete plone_addon_nested. Auto-nest package in after-render hook.\n  [pbauer]\n\n- Add many new features. Most of them are optional.\n  [pbauer]\n\n- Initial import based on bobtemplates.ecreall by\n  cedricmessiant, vincentfretin and thomasdesvenain.\n  [pbauer]\n",
    "bugtrack_url": null,
    "license": "GPL version 2",
    "summary": "Templates for Plone projects.",
    "version": "6.3.2",
    "project_urls": {
        "Documentation": "https://bobtemplatesplone.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/plone/bobtemplates.plone/",
        "PyPI": "https://pypi.python.org/pypi/bobtemplates.plone",
        "Source": "https://github.com/plone/bobtemplates.plone/",
        "Tracker": "https://github.com/plone/bobtemplates.plone/issues"
    },
    "split_keywords": [
        "web",
        "plone",
        "zope",
        "skeleton",
        "project"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b8157a2cc4da73dd0fa6098acf81cc3d9687b46795f4c1747539e4664cade36",
                "md5": "3548ecd245354afadc38c303e7e89d9f",
                "sha256": "f7fdf1d86e79b0821c9cf799bfa0b43cabc29569ff0589093c81885822526d89"
            },
            "downloads": -1,
            "filename": "bobtemplates.plone-6.3.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3548ecd245354afadc38c303e7e89d9f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 974454,
            "upload_time": "2024-05-07T17:22:13",
            "upload_time_iso_8601": "2024-05-07T17:22:13.370358Z",
            "url": "https://files.pythonhosted.org/packages/9b/81/57a2cc4da73dd0fa6098acf81cc3d9687b46795f4c1747539e4664cade36/bobtemplates.plone-6.3.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25cf109577cd6b19c77f88ee73751ad71908f245a9cd9ab73d5baeeee4a8d592",
                "md5": "95a00cf28c699e373cda4c639dc87a77",
                "sha256": "27e003bbc2c4b65387a71efe9cd63f3f55119a2e6a9641b731097d84fec05f4f"
            },
            "downloads": -1,
            "filename": "bobtemplates.plone-6.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "95a00cf28c699e373cda4c639dc87a77",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1006962,
            "upload_time": "2024-05-07T17:22:17",
            "upload_time_iso_8601": "2024-05-07T17:22:17.654436Z",
            "url": "https://files.pythonhosted.org/packages/25/cf/109577cd6b19c77f88ee73751ad71908f245a9cd9ab73d5baeeee4a8d592/bobtemplates.plone-6.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-07 17:22:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "plone",
    "github_project": "bobtemplates.plone",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [
        {
            "name": "setuptools",
            "specs": []
        },
        {
            "name": "Sphinx",
            "specs": []
        },
        {
            "name": "flake8",
            "specs": []
        },
        {
            "name": "tox",
            "specs": []
        }
    ],
    "tox": true,
    "lcname": "bobtemplates.plone"
}
        
Elapsed time: 0.21264s