معرفی شرکت ها


collective.contentcreator-2.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Create content structures from JSON configurations
ویژگی مقدار
سیستم عامل OS Independent
نام فایل collective.contentcreator-2.0
نام collective.contentcreator
نسخه کتابخانه 2.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Johannes Raggam
ایمیل نویسنده thetetet@gmail.com
آدرس صفحه اصلی https://github.com/collective/collective.contentcreator
آدرس اینترنتی https://pypi.org/project/collective.contentcreator/
مجوز GPL version 2
========================= collective.contentcreator ========================= Create content structures from JSON files or Python dictionaries. This package is meant as a helper to quickly create content structures from JSON files or Python structures for the purpose of pre-filling a site in development. It's the successor of the package `collective.setuphandlertools <https://github.com/collective/collective.setuphandlertools>`_. Examples -------- Register a ``post_handler`` in a GenericSetup profile: .. code-block:: xml <genericsetup:registerProfile name="basic_content" title="create basic content structure" directory="profiles/basic_content" description="Creates the basic content structure" provides="Products.GenericSetup.interfaces.EXTENSION" post_handler=".setuphandlers.basic_content" /> In your ``setuphandler.py``: .. code-block:: python # -*- coding: utf-8 -*- from collective.contentcreator import create_item_runner from collective.contentcreator import load_json from zope.component.hooks import getSite def basic_content(context): content_structure = load_json('data/basic_content.json', __file__) create_item_runner( getSite(), content_structure, default_lang='en', default_wf_action='publish' ) And in your ``data/basic_content.json``: .. code-block:: json [ { "@type": "Folder", "id": "main", "title": "Main Folder", "items": [ {"@type": "Page", "title": "Page within Folder"}, {"@type": "Folder", "title": "Folder within Folder", "description": "Not much more in here."} ] } ] License ------- The project is licensed under the GPLv2. Changelog ========= 2.0 (2018-12-03) ---------------- - Use ``plone.restapi`` and base content creator on ``plone.restapi.services.content.add``. This gives us correct value deserialization and schema validation. E.g. text fields are correctly deserialized to ``plone.app.textfield`` values. Breaking Change: The JSON Structure is based on the ``plone.restapi`` JSON structure. TBD See: https://plonerestapi.readthedocs.io/en/latest/content.html#creating-a-resource-with-post [thet] 1.0 (2018-12-01) ---------------- - Initial release. [thet]


نحوه نصب


نصب پکیج whl collective.contentcreator-2.0:

    pip install collective.contentcreator-2.0.whl


نصب پکیج tar.gz collective.contentcreator-2.0:

    pip install collective.contentcreator-2.0.tar.gz