abfab.plone


Nameabfab.plone JSON
Version 1.0.2 PyPI version JSON
download
home_pagehttps://github.com/collective/abfab.plone
SummaryAbFab for Plone
upload_time2023-10-28 15:45:30
maintainer
docs_urlNone
authorEric BREHAULT
requires_python>=3.7
licenseGPL version 2
keywords python plone cms
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===========
abfab.plone
===========

This is the server-side add-on implementing AbFab for Plone.

It requires https://github.com/ebrehault/abfab-volto to be installed on the client side.


Why? What for?
--------------

The main objective behind AbFab is to provide a way to make frontend easy, fun, and pleasant.

Client-side technics do improve the user experience, nevertheless they should not damage the developer experience. Bundling is not scalable, adding a new page to an existing app should not involve to re-deploy the entire thing.

AbFab is not meant to be a gigantic framework covering thousands of use cases. It targets small features that could probably be implemented in more classical ways, but you just do not want to deploy too many things (like a database, a bunch of backend endpoints, a security layer, a frontend app, etc.), or maybe you do not want to pollute your existing stack with extra dependencies just to achieve a small widget in one given page of your entire app.

AbFab is an all-in-one platform allowing to develop simple frontend components that can be published anywhere.

Description
-----------

AbFab is a web application publication environment. It provides the essential services any web application needs:

- a secured and fast backend storage,

- a minimalistic yet powerful frontend component framework (Svelte),

- a light JavaScript runtime offering routing and backend connectivity.

Components are written in Svelte, they are compiled in the browser (you do not need a local NPM), stored in the Plone site (in a soup, see https://pypi.org/project/souper.plone/), and can be published to any page as a web component.

Simple things must be simple
----------------------------

No bundle and no static files: You will not have to use NPM, you will not need to bundle your code. All the components and data are on the server, there is no need to generate and deploy static files.

**Code-splitting**: Each component is compiled automatically and independently, and each page of your app will load only the needed components.

**Client-side navigation**: Navigation from one page to another is performed by loading only the missing data and the application renders it on the client-side, so the application is always fast. It behaves as a Single-Page-App, but it's not.

**Component approach**: Components are an efficient way to structure an app (HTML is built that way actually). You should be able use them outside the SPA pattern.

Do you need to learn a new technology? NO :)
--------------------------------------------

**LOW CODE**: To develop an AbFab app, you will just need HTML, CSS and (simple) JavaScript. Svelte could be considered as a templating layer, it is very simple to learn and to use and will not be a blocker.

**LOW DEPLOYMENT**: AbFab is not just a frontend solution, it comes with backend capabilities, your component are stored in the site directly.

**LOW BUILD**: Components can be developed directly from the AbFab online interface. No NPM, no bundling.


Installation
------------

- Install abfab.plone with `pip`::

      $ pip install abfab.plone

  Or using buildout::

      [buildout]

      ...

      eggs =
          abfab.plone

  and then running `bin/buildout`

- Raise the upload max size limit in `zope.conf`::

      <dos_protection>
          form-memory-limit 4MB
      </dos_protection>

Check the rest of the installation in the abfab-volto's README https://github.com/ebrehault/abfab-volto#installation.

Author
------

Eric Bréhault


Inspiration
-----------

Dawn French, Jennifer Saunders and Joanna Lumley.


Contribute
----------

- Issue Tracker: https://github.com/ebrehault/abfab.plone/issues
- Source Code: https://github.com/ebrehault/abfab.plone


License
-------

The project is licensed under the GPLv2.


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

- Eric BREHAULT, ebrehault@gmail.com


Changelog
=========


1.0.2 (2023-10-28)
------------------

- Fix permission Check.
  [ebrehault]

1.0.1 (2023-10-03)
------------------

- Clean up.
  [ebrehault]

1.0a2 (2023-10-03)
------------------

- Check permissions.
  [ebrehault]


1.0a1 (2023-09-20)
------------------

- Initial release.
  [ebrehault]
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/collective/abfab.plone",
    "name": "abfab.plone",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Python Plone CMS",
    "author": "Eric BREHAULT",
    "author_email": "ebrehault@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/95/20/bafd9cde95f270439d5589fe81574ca89c02d7aa72988a2d669cb9eaee3a/abfab.plone-1.0.2.tar.gz",
    "platform": null,
    "description": "===========\nabfab.plone\n===========\n\nThis is the server-side add-on implementing AbFab for Plone.\n\nIt requires https://github.com/ebrehault/abfab-volto to be installed on the client side.\n\n\nWhy? What for?\n--------------\n\nThe main objective behind AbFab is to provide a way to make frontend easy, fun, and pleasant.\n\nClient-side technics do improve the user experience, nevertheless they should not damage the developer experience. Bundling is not scalable, adding a new page to an existing app should not involve to re-deploy the entire thing.\n\nAbFab is not meant to be a gigantic framework covering thousands of use cases. It targets small features that could probably be implemented in more classical ways, but you just do not want to deploy too many things (like a database, a bunch of backend endpoints, a security layer, a frontend app, etc.), or maybe you do not want to pollute your existing stack with extra dependencies just to achieve a small widget in one given page of your entire app.\n\nAbFab is an all-in-one platform allowing to develop simple frontend components that can be published anywhere.\n\nDescription\n-----------\n\nAbFab is a web application publication environment. It provides the essential services any web application needs:\n\n- a secured and fast backend storage,\n\n- a minimalistic yet powerful frontend component framework (Svelte),\n\n- a light JavaScript runtime offering routing and backend connectivity.\n\nComponents are written in Svelte, they are compiled in the browser (you do not need a local NPM), stored in the Plone site (in a soup, see https://pypi.org/project/souper.plone/), and can be published to any page as a web component.\n\nSimple things must be simple\n----------------------------\n\nNo bundle and no static files: You will not have to use NPM, you will not need to bundle your code. All the components and data are on the server, there is no need to generate and deploy static files.\n\n**Code-splitting**: Each component is compiled automatically and independently, and each page of your app will load only the needed components.\n\n**Client-side navigation**: Navigation from one page to another is performed by loading only the missing data and the application renders it on the client-side, so the application is always fast. It behaves as a Single-Page-App, but it's not.\n\n**Component approach**: Components are an efficient way to structure an app (HTML is built that way actually). You should be able use them outside the SPA pattern.\n\nDo you need to learn a new technology? NO :)\n--------------------------------------------\n\n**LOW CODE**: To develop an AbFab app, you will just need HTML, CSS and (simple) JavaScript. Svelte could be considered as a templating layer, it is very simple to learn and to use and will not be a blocker.\n\n**LOW DEPLOYMENT**: AbFab is not just a frontend solution, it comes with backend capabilities, your component are stored in the site directly.\n\n**LOW BUILD**: Components can be developed directly from the AbFab online interface. No NPM, no bundling.\n\n\nInstallation\n------------\n\n- Install abfab.plone with `pip`::\n\n      $ pip install abfab.plone\n\n  Or using buildout::\n\n      [buildout]\n\n      ...\n\n      eggs =\n          abfab.plone\n\n  and then running `bin/buildout`\n\n- Raise the upload max size limit in `zope.conf`::\n\n      <dos_protection>\n          form-memory-limit 4MB\n      </dos_protection>\n\nCheck the rest of the installation in the abfab-volto's README https://github.com/ebrehault/abfab-volto#installation.\n\nAuthor\n------\n\nEric Br\u00e9hault\n\n\nInspiration\n-----------\n\nDawn French, Jennifer Saunders and Joanna Lumley.\n\n\nContribute\n----------\n\n- Issue Tracker: https://github.com/ebrehault/abfab.plone/issues\n- Source Code: https://github.com/ebrehault/abfab.plone\n\n\nLicense\n-------\n\nThe project is licensed under the GPLv2.\n\n\nContributors\n============\n\n- Eric BREHAULT, ebrehault@gmail.com\n\n\nChangelog\n=========\n\n\n1.0.2 (2023-10-28)\n------------------\n\n- Fix permission Check.\n  [ebrehault]\n\n1.0.1 (2023-10-03)\n------------------\n\n- Clean up.\n  [ebrehault]\n\n1.0a2 (2023-10-03)\n------------------\n\n- Check permissions.\n  [ebrehault]\n\n\n1.0a1 (2023-09-20)\n------------------\n\n- Initial release.\n  [ebrehault]",
    "bugtrack_url": null,
    "license": "GPL version 2",
    "summary": "AbFab for Plone",
    "version": "1.0.2",
    "project_urls": {
        "Homepage": "https://github.com/collective/abfab.plone",
        "PyPI": "https://pypi.python.org/pypi/abfab.plone",
        "Source": "https://github.com/collective/abfab.plone",
        "Tracker": "https://github.com/collective/abfab.plone/issues"
    },
    "split_keywords": [
        "python",
        "plone",
        "cms"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9520bafd9cde95f270439d5589fe81574ca89c02d7aa72988a2d669cb9eaee3a",
                "md5": "6b7d332b9d5bbdbbe874ab8efa4d8bb7",
                "sha256": "83da7b8182af81cfc5c6d4793a92ffac13e8c63232240995ce9522124c52849b"
            },
            "downloads": -1,
            "filename": "abfab.plone-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "6b7d332b9d5bbdbbe874ab8efa4d8bb7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 25832,
            "upload_time": "2023-10-28T15:45:30",
            "upload_time_iso_8601": "2023-10-28T15:45:30.606364Z",
            "url": "https://files.pythonhosted.org/packages/95/20/bafd9cde95f270439d5589fe81574ca89c02d7aa72988a2d669cb9eaee3a/abfab.plone-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-28 15:45:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "collective",
    "github_project": "abfab.plone",
    "github_not_found": true,
    "lcname": "abfab.plone"
}
        
Elapsed time: 0.13119s