pyams-zfiles


Namepyams-zfiles JSON
Version 2.0.6 PyPI version JSON
download
home_pagehttps://pyams.readthedocs.io
SummaryPyAMS files storage manager
upload_time2024-02-03 02:44:42
maintainer
docs_urlNone
authorThierry Florac
requires_python
licenseZPL
keywords pyramid pyams
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====================
PyAMS ZFiles 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>`_. Doctests are available in the *doctests* source folder.


What is ZFiles?
===============

ZFiles is an extension package for PyAMS which allows to define a "files storage" environment.

This environment is very simple, and provides several APIs (for REST/JSON, XML-RPC
or JSON-RPC protocols) which allows applications to store and retrieve external files of any
type (maybe images, videos, PDF files...). Applications which are using the service just get a
unique ID (called OID) when they upload a new document, which can be stored by the applications
and used to retrieve them afterwards when needed.

ZFiles is just a storage manager for these documents; the lifecycle management is delegated to
the applications which use it as storage backend.


Changelog
=========

2.0.6
-----
 - added missing documents container label provider

2.0.5
-----
 - corrected faulty import

2.0.4
-----
 - updated REST API route name and configuration setting name
 - moved objects finder helper to new module
 - updated doctests

2.0.3
-----
 - updated properties index values getter to correctly split values

2.0.2
-----
 - version mismatch

2.0.1
-----
 - updated modal forms title
 - small updates in documents workflow

2.0.0
-----
 - upgraded to Pyramid 2.0
 - updated tests for unauthenticated requests

1.4.6
-----
 - updated REST document search API schema

1.4.5
-----
 - updated access and update modes management

1.4.4
-----
 - updated Colander API schemas for better OpenAPI specifications
 - added enums for workflow states

1.4.3
-----
 - updated translations

1.4.2
-----
 - updated workflow delete view

1.4.1
-----
 - updated generation evolve

1.4.0
-----
 - added multiple synchronizer configurations
 - added synchronizer access to REST API

1.3.4
-----
 - updated synchronizer call result to return enums values instead of enums, which can't be
   converted to JSON

1.3.3
-----
 - removed permission check for CORS OPTIONS request on document data

1.3.2
-----
 - added new PyAMS_security CORS validators to REST services

1.3.1
-----
 - updated CORS support in REST API
 - added support for Python 3.10

1.3.0
-----
 - added support for CORS preflight OPTIONS verb used by REST services
 - updated support for search params in URL
 - updated Gitlab-CI configuration
 - small ZMI updates

1.2.1
-----
 - added enumeration to handle synchronizer status
 - PyAMS_security interfaces refactoring

1.2.0
-----
 - added workflow label
 - added "NOT_FOUND" status to documents synchronizer if given OID doesn't match an existing
   document
 - added "NO_DATA" status to documents synchronizer if a POSError occurs when reading
   document data

1.1.0
-----
 - add index on properties to make them searchable

1.0.6
-----
 - updated document properties widget template

1.0.5
-----
 - added option to display menu to access documents container from ZMI home page

1.0.4
-----
 - added missing "context" argument to permission check

1.0.3
-----
 - added title to applications vocabulary terms

1.0.2
-----
 - updated application manager permissions

1.0.1
-----
 - updated context of permissions checks in REST and GraphQL APIs

1.0.0
-----
 - initial release

            

Raw data

            {
    "_id": null,
    "home_page": "https://pyams.readthedocs.io",
    "name": "pyams-zfiles",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Pyramid PyAMS",
    "author": "Thierry Florac",
    "author_email": "tflorac@ulthar.net",
    "download_url": "https://files.pythonhosted.org/packages/0c/13/cacfa6b5c6d41a796b33cd6004773d619f8b18e86c41bf14938cb31b9fd6/pyams_zfiles-2.0.6.tar.gz",
    "platform": null,
    "description": "====================\nPyAMS ZFiles 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>`_. Doctests are available in the *doctests* source folder.\n\n\nWhat is ZFiles?\n===============\n\nZFiles is an extension package for PyAMS which allows to define a \"files storage\" environment.\n\nThis environment is very simple, and provides several APIs (for REST/JSON, XML-RPC\nor JSON-RPC protocols) which allows applications to store and retrieve external files of any\ntype (maybe images, videos, PDF files...). Applications which are using the service just get a\nunique ID (called OID) when they upload a new document, which can be stored by the applications\nand used to retrieve them afterwards when needed.\n\nZFiles is just a storage manager for these documents; the lifecycle management is delegated to\nthe applications which use it as storage backend.\n\n\nChangelog\n=========\n\n2.0.6\n-----\n - added missing documents container label provider\n\n2.0.5\n-----\n - corrected faulty import\n\n2.0.4\n-----\n - updated REST API route name and configuration setting name\n - moved objects finder helper to new module\n - updated doctests\n\n2.0.3\n-----\n - updated properties index values getter to correctly split values\n\n2.0.2\n-----\n - version mismatch\n\n2.0.1\n-----\n - updated modal forms title\n - small updates in documents workflow\n\n2.0.0\n-----\n - upgraded to Pyramid 2.0\n - updated tests for unauthenticated requests\n\n1.4.6\n-----\n - updated REST document search API schema\n\n1.4.5\n-----\n - updated access and update modes management\n\n1.4.4\n-----\n - updated Colander API schemas for better OpenAPI specifications\n - added enums for workflow states\n\n1.4.3\n-----\n - updated translations\n\n1.4.2\n-----\n - updated workflow delete view\n\n1.4.1\n-----\n - updated generation evolve\n\n1.4.0\n-----\n - added multiple synchronizer configurations\n - added synchronizer access to REST API\n\n1.3.4\n-----\n - updated synchronizer call result to return enums values instead of enums, which can't be\n   converted to JSON\n\n1.3.3\n-----\n - removed permission check for CORS OPTIONS request on document data\n\n1.3.2\n-----\n - added new PyAMS_security CORS validators to REST services\n\n1.3.1\n-----\n - updated CORS support in REST API\n - added support for Python 3.10\n\n1.3.0\n-----\n - added support for CORS preflight OPTIONS verb used by REST services\n - updated support for search params in URL\n - updated Gitlab-CI configuration\n - small ZMI updates\n\n1.2.1\n-----\n - added enumeration to handle synchronizer status\n - PyAMS_security interfaces refactoring\n\n1.2.0\n-----\n - added workflow label\n - added \"NOT_FOUND\" status to documents synchronizer if given OID doesn't match an existing\n   document\n - added \"NO_DATA\" status to documents synchronizer if a POSError occurs when reading\n   document data\n\n1.1.0\n-----\n - add index on properties to make them searchable\n\n1.0.6\n-----\n - updated document properties widget template\n\n1.0.5\n-----\n - added option to display menu to access documents container from ZMI home page\n\n1.0.4\n-----\n - added missing \"context\" argument to permission check\n\n1.0.3\n-----\n - added title to applications vocabulary terms\n\n1.0.2\n-----\n - updated application manager permissions\n\n1.0.1\n-----\n - updated context of permissions checks in REST and GraphQL APIs\n\n1.0.0\n-----\n - initial release\n",
    "bugtrack_url": null,
    "license": "ZPL",
    "summary": "PyAMS files storage manager",
    "version": "2.0.6",
    "project_urls": {
        "Homepage": "https://pyams.readthedocs.io"
    },
    "split_keywords": [
        "pyramid",
        "pyams"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01f9af4e13a0761328c646cc8786237584ee0d621e73a422d4a70cb5e6d0cfdc",
                "md5": "e93d20f2d23e448d201ce333bf316916",
                "sha256": "042b735f7ba0fef99f4b5e570ae9539d5251f53f7e7f4fe9e34a6821098c97bf"
            },
            "downloads": -1,
            "filename": "pyams_zfiles-2.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e93d20f2d23e448d201ce333bf316916",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 78636,
            "upload_time": "2024-02-03T02:44:40",
            "upload_time_iso_8601": "2024-02-03T02:44:40.163384Z",
            "url": "https://files.pythonhosted.org/packages/01/f9/af4e13a0761328c646cc8786237584ee0d621e73a422d4a70cb5e6d0cfdc/pyams_zfiles-2.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c13cacfa6b5c6d41a796b33cd6004773d619f8b18e86c41bf14938cb31b9fd6",
                "md5": "808d5582bf260a3b5509aab3c2c69494",
                "sha256": "330eab9dfd2c0c7c248697f528403f5cbe727f87ad6f80f4b80624e4a247492a"
            },
            "downloads": -1,
            "filename": "pyams_zfiles-2.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "808d5582bf260a3b5509aab3c2c69494",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 59847,
            "upload_time": "2024-02-03T02:44:42",
            "upload_time_iso_8601": "2024-02-03T02:44:42.266364Z",
            "url": "https://files.pythonhosted.org/packages/0c/13/cacfa6b5c6d41a796b33cd6004773d619f8b18e86c41bf14938cb31b9fd6/pyams_zfiles-2.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-03 02:44:42",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyams-zfiles"
}
        
Elapsed time: 0.17444s