{
"info": {
"author": "kitconcept GmbH",
"author_email": "info@kitconcept.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities"
],
"description": ".. image:: https://secure.travis-ci.org/kitconcept/bobtemplates.kitconcept.png?branch=master\n :target: http://travis-ci.org/kitconcept/bobtemplates.kitconcept\n\n.. image:: https://coveralls.io/repos/kitconcept/bobtemplates.kitconcept/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/kitconcept/bobtemplates.kitconcept?branch=master\n :alt: Coveralls\n\n.. image:: https://img.shields.io/pypi/v/bobtemplates.kitconcept.svg\n :target: https://pypi.python.org/pypi/bobtemplates.kitconcept/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/status/bobtemplates.kitconcept.svg\n :target: https://pypi.python.org/pypi/bobtemplates.kitconcept/\n :alt: Egg Status\n\n.. image:: https://img.shields.io/pypi/l/bobtemplates.kitconcept.svg\n :target: https://pypi.python.org/pypi/bobtemplates.kitconcept/\n :alt: License\n\nbobtemplates.kitconcept\n=======================\n\n``bobtemplates.kitconcept`` provides a `mr.bob `_ template to generate packages for Plone projects.\n\nThis is a fork of bobtemplates.plone 1.x. The scope of this package is simplicity, maintainablility and testability.\n\nWe contributed to ZopeSkel and templer and this package is an attempt to prevent doing what we consider to be \"the same mistakes\" over and over again.\n\nDesign Goals\n\n- Simple is better than complex.\n- Cover 80% of use cases, don\u2019t become too complex.\n- Provide a good starting point for development, not a swiss army knife for the entire development cycle.\n- Code and tests should reflect the current coding best practice.\n- Generated code should have 100% test coverage.\n\nConcrete Decisions\n\n- Do not use local commands. They significantly increase complexity and mr.bob has no support for them anyways. We tried this with ZopeSkel/Templer and it did not work out that well.\n- Limit the overall number of questions to not confuse people too much. Having separate packages or providing commented out code sections might be a good alternative.\n- Fix problems in Plone itself rather than providing workarounds in our templates. (see #27)\n- Provide skeletons for the most important Plone package use cases, not for every possible scenario: Add-on product (collective, plone, custom project, policy product)\n\nThose goals have been originally outlined for bobtemplates.plone here: https://github.com/plone/bobtemplates.plone/issues/29\n\n\nFeatures\n--------\n\nPackage created with ``bobtemplates.kitconcept`` use the current best-practices when creating an add-on.\n\nBuildout\n The package is contained in a buildout that allows you to build Plone with the new package installed for testing-purposes.\n\nTests\n The package comes with a test setup and some `tests `_ for installing the package. It also contains a `robot-test `_ that tests logging in. The buildout also contains a config to allow testing the package on `travis `_ that sends `notifications `_ by email to the package author.\n\nProfile\n The package contains a `Generic Setup Profile `_ that installs a browserlayer. For Plone 5 it also contains a uninstall-profile.\n\nLocales\n The package registers a directory for locales.\n\nTemplate-Overrides\n The package registers the folder ``browser/overrides`` as a directory where you can drop template-overrides using `z3c.jbot `_.\n\nSetuphandler\n The package contains a `setuphandlers.py `_ where you can add code that is executed on installing the package. For Plone 5 there is also a method in `setuphandler.py` that is run on uninstalling.\n\nThe package-types `Dexterity` and `Theme` add the following to `Basic`:\n\nDexterity\n Adds a simple content-type (you get asked about its name) in ``profiles/default/types/`` with a python-schema in ``interfaces.py``.\n\nTheme\n Adds a simple bootstrap-based Diazo theme in the folder ``theme/`` and registers it in ``profiles/default/theme.xml``\n\n\nCompatibility\n=============\n\nAdd-ons created with ``bobtemplates.kitconcept`` are tested to work in Plone 4.3.x and Plone 5.\nThey should also work with older versions but that was not tested.\nIt should work on Linux, Mac and Windows.\n\n\nInstallation\n------------\n\nUse in a buildout\n^^^^^^^^^^^^^^^^^\n\n::\n\n [buildout]\n parts += mrbob\n\n [mrbob]\n recipe = zc.recipe.egg\n eggs =\n mr.bob\n bobtemplates.kitconcept\n\n\nThis creates a mrbob-executable in your bin-directory.\nCall it from the ``src``-directory of your Plone project like this.::\n\n $ ../bin/mrbob -O collective.foo bobtemplates:plone_addon\n\n\nInstallation in a virtualenv\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nYou can also install ``bobtemplates.kitconcept`` in a virtualenv.::\n\n $ pip install bobtemplates.kitconcept\n\nWith ``pip 6.0`` or newer ``mr.bob`` will automatically be installed as a dependency. If you still use a older version of pip you need install ``mr.bob`` before ``bobtemplates.kitconcept``.::\n\n $ pip install mr.bob\n\nNow you can use it like this::\n\n $ mrbob -O collective.foo bobtemplates:plone_addon\n\nSee `the documentation of mr.bob `_ for further information.\n\n\nContribute\n----------\n\n- Issue Tracker: https://github.com/plone/bobtemplates.kitconcept/issues\n- Source Code: https://github.com/plone/bobtemplates.kitconcept\n\n\nSupport\n-------\n\nIf you are having issues, please let us know.\n\n\nContributors\n============\n\nThis package is based on `bobtemplates.niteoweb `_ and `bobtemplates.ecreall `_\n\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\n\nChangelog\n=========\n\n2.0.1 (2018-02-08)\n------------------\n\n- Add missing package name.\n [sneridagh]\n\n\n2.0.0 (2018-01-23)\n------------------\n\n- Upgrade to Plone 4.3.15.\n [timo]\n\n- Upgrade to Plone 5.0.8.\n [timo]\n\n- Switch RobotFramework tests to use Chrome browser.\n [timo]\n\n- Remove recommended extra from p.r.codeanalysis.\n [timo]\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]",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/kitconcept/bobtemplates.kitconcept",
"keywords": "web plone zope skeleton project",
"license": "GPL version 2",
"maintainer": "",
"maintainer_email": "",
"name": "bobtemplates.kitconcept",
"package_url": "https://pypi.org/project/bobtemplates.kitconcept/",
"platform": "",
"project_url": "https://pypi.org/project/bobtemplates.kitconcept/",
"project_urls": {
"Homepage": "https://github.com/kitconcept/bobtemplates.kitconcept"
},
"release_url": "https://pypi.org/project/bobtemplates.kitconcept/2.0.1/",
"requires_dist": null,
"requires_python": "",
"summary": "Templates for Plone projects.",
"version": "2.0.1"
},
"last_serial": 3564965,
"releases": {
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "12412cb8d9dd8088adf4af54024a5c44",
"sha256": "cf6a462cf4c8237e0aae662900ab7d5e93d535a778acb28a51876babc793ed16"
},
"downloads": -1,
"filename": "bobtemplates.kitconcept-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "12412cb8d9dd8088adf4af54024a5c44",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34900,
"upload_time": "2018-01-23T10:28:13",
"url": "https://files.pythonhosted.org/packages/97/9d/430cd55db635cb079576a72930234f12af2b97aceaf9b5c646dc76b52b76/bobtemplates.kitconcept-2.0.0.tar.gz"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "26d56e4fba40f442bb3f898d4693f83c",
"sha256": "a85f23f403e7ce4783d63983e95481c4dba566309efa55941f43f11012950a6f"
},
"downloads": -1,
"filename": "bobtemplates.kitconcept-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "26d56e4fba40f442bb3f898d4693f83c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42527,
"upload_time": "2018-02-08T18:57:04",
"url": "https://files.pythonhosted.org/packages/6f/66/0f5da7851eb6da3651a3d6361f59c8964fdef716593e163cd07e68d3339d/bobtemplates.kitconcept-2.0.1.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "26d56e4fba40f442bb3f898d4693f83c",
"sha256": "a85f23f403e7ce4783d63983e95481c4dba566309efa55941f43f11012950a6f"
},
"downloads": -1,
"filename": "bobtemplates.kitconcept-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "26d56e4fba40f442bb3f898d4693f83c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42527,
"upload_time": "2018-02-08T18:57:04",
"url": "https://files.pythonhosted.org/packages/6f/66/0f5da7851eb6da3651a3d6361f59c8964fdef716593e163cd07e68d3339d/bobtemplates.kitconcept-2.0.1.tar.gz"
}
]
}