pyams-form


Namepyams-form JSON
Version 2.0.2 PyPI version JSON
download
home_pagehttps://pyams.readthedocs.io
SummaryPyAMS forms management package
upload_time2023-12-11 13:34:43
maintainer
docs_urlNone
authorThierry Florac
requires_python>=3.7
licenseZPL
keywords pyramid pyams
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==================
PyAMS_form package
==================

.. contents::


What is PyAMS?
==============

PyAMS (Pyramid Application Management Suite) is a small suite of packages written for applications
and content management with the Pyramid framework.

**PyAMS** is actually mainly used to manage web sites through content management applications (CMS,
see PyAMS_content package), but many features are generic and can be used inside any kind of web
application.

All PyAMS documentation is available on `ReadTheDocs <https://pyams.readthedocs.io>`_; source code
is available on `Gitlab <https://gitlab.com/pyams>`_ and pushed to `Github
<https://github.com/py-ams>`_. Complete doctests are available in the *doctests* folder.


What is PyAMS_form?
===================

PyAMS_form is a fork of `z3c.form <https///github.com/zopefoundation/z3c.form>`_ package;
it provides the same features to generate HTML forms based on schema interfaces, but adapted to
the Pyramid framework for use with Chameleon templates.

It is also adding a few features, with custom form-related viewlets managers and AJAX forms.

** Package API is also converted to common Python standards, using snake_case for variables and
methods.


Changelog
=========

2.0.2
-----
 - added mising interfaces attributes

2.0.1
-----
 - updated Buildout configuration

2.0.0
-----
 - migrated to Pyramid 2.0

1.8.1
-----
 - small templates updates

1.8.0
-----
 - added support for optional *factory* argument when using *form_and_handler* decorator
 - added optional *notify* argument to form *extract_data* method; you can set this argument
   to *False* when you don't want to generate extra events on a manual data extraction

1.7.4
-----
 - reverted doctest

1.7.3
-----
 - added support for Python 3.10 and 3.11
 - updated doctests

1.7.2
-----
 - cancelled doctest update

1.7.1
-----
 - updated get_forms method to only get inner forms which are really implementing inner forms
   interfaces; this can be useful to include inner viewlets which are not forms into a parent
   form

1.7.0
-----
 - added interfaces support for form content and form fields adapters
 - added form update events
 - added support for Python 3.10

1.6.5
-----
 - cancelled doctest update

1.6.4
-----
 - small updates in default AJAX form renderer
 - reified form edit permission getter

1.6.3
-----
 - changed test in AJAX add form to check changes against *None* instead of boolean *false*
   value to handle use case where created object is an empty container

1.6.2
-----
 - updated doctests for *zope.schema* package >= 6.1.1, where boolean schema fields are
   automatically set as required

1.6.1
-----
 - updated doctests

1.6.0
-----
 - added optional *ajax_require_csrf* argument to *ajax_form_config* decorator

1.5.0
-----
 - updated sequence widget behaviour to be able to extract data from single
   value using a separator
 - updated default AJAX renderer to merge outputs of inner forms renderers

1.4.3
-----
 - version mismatch

1.4.2
-----
 - added missing "context" argument to permission check
 - added missing widget factory for text lines list field
 - removed unused interface

1.4.1
-----
 - Gitlab-CI pylint test update

1.4.0
-----
 - removed support for Python < 3.7
 - updated Bytes schema field to FileWidget data converter

1.3.1
-----
 - updated Gitlab-CI configuration

1.3.0
-----
 - look for actions in finished state to get AJAX renderers
 - updated Gitlab-CI configuration
 - removed Travis-CI configuration

1.2.1
-----
 - interfaces description updates
 - code cleanup

1.2.0
-----
 - added support for inner sub-forms and tab-forms in groups manager

1.1.0
-----
 - small updates in forms API
 - use form's "finished_state" attribute to store executed action and changes
 - automatically use objects factories in add forms
 - updated "adapter_config" decorator arguments names
 - updated access to Pyramid's global registry
 - updated doctests

1.0.4
-----
 - included edge case fix to handle missing values which are not None but that work as None
   (merged from z3c.form)

1.0.3
-----
 - updated doctests using ZCA hook

1.0.2
-----
 - code refactoring to reduce duplications

1.0.1
-----
 - updated doctests

1.0.0
-----
 - initial release

            

Raw data

            {
    "_id": null,
    "home_page": "https://pyams.readthedocs.io",
    "name": "pyams-form",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Pyramid PyAMS",
    "author": "Thierry Florac",
    "author_email": "tflorac@ulthar.net",
    "download_url": "https://files.pythonhosted.org/packages/61/a1/4d9b197a7f91821a8b03a2c30d231080d465cde95c9610e9f0e215338685/pyams_form-2.0.2.tar.gz",
    "platform": null,
    "description": "==================\nPyAMS_form package\n==================\n\n.. contents::\n\n\nWhat is PyAMS?\n==============\n\nPyAMS (Pyramid Application Management Suite) is a small suite of packages written for applications\nand content management with the Pyramid framework.\n\n**PyAMS** is actually mainly used to manage web sites through content management applications (CMS,\nsee PyAMS_content package), but many features are generic and can be used inside any kind of web\napplication.\n\nAll PyAMS documentation is available on `ReadTheDocs <https://pyams.readthedocs.io>`_; source code\nis available on `Gitlab <https://gitlab.com/pyams>`_ and pushed to `Github\n<https://github.com/py-ams>`_. Complete doctests are available in the *doctests* folder.\n\n\nWhat is PyAMS_form?\n===================\n\nPyAMS_form is a fork of `z3c.form <https///github.com/zopefoundation/z3c.form>`_ package;\nit provides the same features to generate HTML forms based on schema interfaces, but adapted to\nthe Pyramid framework for use with Chameleon templates.\n\nIt is also adding a few features, with custom form-related viewlets managers and AJAX forms.\n\n** Package API is also converted to common Python standards, using snake_case for variables and\nmethods.\n\n\nChangelog\n=========\n\n2.0.2\n-----\n - added mising interfaces attributes\n\n2.0.1\n-----\n - updated Buildout configuration\n\n2.0.0\n-----\n - migrated to Pyramid 2.0\n\n1.8.1\n-----\n - small templates updates\n\n1.8.0\n-----\n - added support for optional *factory* argument when using *form_and_handler* decorator\n - added optional *notify* argument to form *extract_data* method; you can set this argument\n   to *False* when you don't want to generate extra events on a manual data extraction\n\n1.7.4\n-----\n - reverted doctest\n\n1.7.3\n-----\n - added support for Python 3.10 and 3.11\n - updated doctests\n\n1.7.2\n-----\n - cancelled doctest update\n\n1.7.1\n-----\n - updated get_forms method to only get inner forms which are really implementing inner forms\n   interfaces; this can be useful to include inner viewlets which are not forms into a parent\n   form\n\n1.7.0\n-----\n - added interfaces support for form content and form fields adapters\n - added form update events\n - added support for Python 3.10\n\n1.6.5\n-----\n - cancelled doctest update\n\n1.6.4\n-----\n - small updates in default AJAX form renderer\n - reified form edit permission getter\n\n1.6.3\n-----\n - changed test in AJAX add form to check changes against *None* instead of boolean *false*\n   value to handle use case where created object is an empty container\n\n1.6.2\n-----\n - updated doctests for *zope.schema* package >= 6.1.1, where boolean schema fields are\n   automatically set as required\n\n1.6.1\n-----\n - updated doctests\n\n1.6.0\n-----\n - added optional *ajax_require_csrf* argument to *ajax_form_config* decorator\n\n1.5.0\n-----\n - updated sequence widget behaviour to be able to extract data from single\n   value using a separator\n - updated default AJAX renderer to merge outputs of inner forms renderers\n\n1.4.3\n-----\n - version mismatch\n\n1.4.2\n-----\n - added missing \"context\" argument to permission check\n - added missing widget factory for text lines list field\n - removed unused interface\n\n1.4.1\n-----\n - Gitlab-CI pylint test update\n\n1.4.0\n-----\n - removed support for Python < 3.7\n - updated Bytes schema field to FileWidget data converter\n\n1.3.1\n-----\n - updated Gitlab-CI configuration\n\n1.3.0\n-----\n - look for actions in finished state to get AJAX renderers\n - updated Gitlab-CI configuration\n - removed Travis-CI configuration\n\n1.2.1\n-----\n - interfaces description updates\n - code cleanup\n\n1.2.0\n-----\n - added support for inner sub-forms and tab-forms in groups manager\n\n1.1.0\n-----\n - small updates in forms API\n - use form's \"finished_state\" attribute to store executed action and changes\n - automatically use objects factories in add forms\n - updated \"adapter_config\" decorator arguments names\n - updated access to Pyramid's global registry\n - updated doctests\n\n1.0.4\n-----\n - included edge case fix to handle missing values which are not None but that work as None\n   (merged from z3c.form)\n\n1.0.3\n-----\n - updated doctests using ZCA hook\n\n1.0.2\n-----\n - code refactoring to reduce duplications\n\n1.0.1\n-----\n - updated doctests\n\n1.0.0\n-----\n - initial release\n",
    "bugtrack_url": null,
    "license": "ZPL",
    "summary": "PyAMS forms management package",
    "version": "2.0.2",
    "project_urls": {
        "Homepage": "https://pyams.readthedocs.io"
    },
    "split_keywords": [
        "pyramid",
        "pyams"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "086497aae7a46635bd5162bc11434015eb90e4fa6450424fdc1f500a51f6ec51",
                "md5": "897cedf8158107f7efdbc517d2151c6a",
                "sha256": "632252fe2c6769d73f387ce3a4bd924cb012974ab9c649f9152281cd46bda0fa"
            },
            "downloads": -1,
            "filename": "pyams_form-2.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "897cedf8158107f7efdbc517d2151c6a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 308705,
            "upload_time": "2023-12-11T13:34:41",
            "upload_time_iso_8601": "2023-12-11T13:34:41.455999Z",
            "url": "https://files.pythonhosted.org/packages/08/64/97aae7a46635bd5162bc11434015eb90e4fa6450424fdc1f500a51f6ec51/pyams_form-2.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61a14d9b197a7f91821a8b03a2c30d231080d465cde95c9610e9f0e215338685",
                "md5": "2fe698aa773e5564838ea29768f64122",
                "sha256": "ae582ac9d1c54dafa11b92c1b1bdd3d28840fc3eb5d5c71cb023b47a393f3c5e"
            },
            "downloads": -1,
            "filename": "pyams_form-2.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "2fe698aa773e5564838ea29768f64122",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 239687,
            "upload_time": "2023-12-11T13:34:43",
            "upload_time_iso_8601": "2023-12-11T13:34:43.790968Z",
            "url": "https://files.pythonhosted.org/packages/61/a1/4d9b197a7f91821a8b03a2c30d231080d465cde95c9610e9f0e215338685/pyams_form-2.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-11 13:34:43",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyams-form"
}
        
Elapsed time: 0.16878s