zope.app.onlinehelp


Namezope.app.onlinehelp JSON
Version 5.0 PyPI version JSON
download
home_pagehttp://github.com/zopefoundation/zope.app.onlinehelp
SummaryFramework for Context-Sensitive Help Pages
upload_time2023-07-06 06:27:12
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python
licenseZPL 2.1
keywords zope3 online help
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://readthedocs.org/projects/zopeapponlinehelp/badge/?version=latest
        :target: http://zopeapponlinehelp.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://github.com/zopefoundation/zope.app.onlinehelp/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/zope.app.onlinehelp/actions/workflows/tests.yml
        :alt: Build Status

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.app.onlinehelp/badge.svg?branch=master
        :target: https://coveralls.io/github/zopefoundation/zope.app.onlinehelp?branch=master
        :alt: Code Coverage

This package provides a framework for creating help pages for Zope 3
applications. ZCML directives are used to minimize the overhead of creating
new help pages.

Documentation is hosted at https://zopeapponlinehelp.readthedocs.io


=========
 CHANGES
=========

5.0 (2023-07-06)
================

- Add support for Python 3.11.

- Drop support for Python 2.7, 3.5, 3.6.


4.2.0 (2022-04-05)
==================

- Add support for Python 3.7, 3.8, 3.9, and 3.10.

- Drop support for Python 3.4.


4.1.0 (2017-07-12)
==================

- The help namespace no longer modifies the global help object on
  traversal. Instead it returns a new proxy object. This makes it
  thread-safe. See `issue 4
  <https://github.com/zopefoundation/zope.app.onlinehelp/issues/4>`_.

- ``getTopicFor`` now really returns the first found topic in the
  event that the object implements multiple interfaces that have
  registered topics for the given view. Previously it would return the
  topic for the least-specific interface.

4.0.1 (2017-05-21)
==================

- Drop test dependency on ``zope.app.securitypolicy``. It wasn't used,
  and it isn't yet fully ported to Python 3.


4.0.0 (2017-05-17)
==================

- Add support for Python 3.4, 3.5, 3.6 and PyPy.

- Change ZODB dependency to persistent.

- Drop test dependency on ``zope.app.testing``,
  ``zope.app.zcmlifiles`` and ``zope.app.apidoc``, among others.

3.5.2 (2010-01-08)
==================

- Fix tests using a newer zope.publisher that requires zope.login.

3.5.1 (2009-03-21)
==================

- Use ``zope.site`` instead of ``zope.app.folder``.

3.5.0 (2009-02-01)
==================

- Removed ``OnlineHelpTopicFactory``, ``simple`` and
  ``SimpleViewClass``. All of them where using old deprecated and
  removed Zope3 imports. None of them where used and tested.

- Use ``zope.container`` instead of ``zope.app.container``.

- Removed use of ``zope.app.zapi``.

3.4.1 (2007-10-25)
==================

- Package meta-data update.


3.4.0 (2007-10-23)
==================

- Initial release independent of the main Zope tree.

Older
=====


Make the onlinehelp utility more component oriented.

- Use registred page/view instead of ViewPageTemplate for rendering topic tree
  This way we can use/register own templates for tree layout.

- Add page template based topic for rendering topics which has to
  call other zope3 resources like javascripts and css styles sheets etc.
  This resources can be rendered in the header area of the onlinehelp_macros.

- Enhance the API of topics and simplyfie the view part.

- Implemented getSubTopics() method on topics. This way we can sublist topics.

- Remove unused onlinehelp code in rotterdam template.pt

- Add type to directive, this supports registration of README.txt as 'rest' topics

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/zopefoundation/zope.app.onlinehelp",
    "name": "zope.app.onlinehelp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "zope3 online help",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/ed/c0/e7b81735b082ecadd12c2b1f8e685f3f3d4527cea4254280455de84a636d/zope.app.onlinehelp-5.0.tar.gz",
    "platform": null,
    "description": ".. image:: https://readthedocs.org/projects/zopeapponlinehelp/badge/?version=latest\n        :target: http://zopeapponlinehelp.readthedocs.io/en/latest/?badge=latest\n        :alt: Documentation Status\n\n.. image:: https://github.com/zopefoundation/zope.app.onlinehelp/actions/workflows/tests.yml/badge.svg\n        :target: https://github.com/zopefoundation/zope.app.onlinehelp/actions/workflows/tests.yml\n        :alt: Build Status\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.app.onlinehelp/badge.svg?branch=master\n        :target: https://coveralls.io/github/zopefoundation/zope.app.onlinehelp?branch=master\n        :alt: Code Coverage\n\nThis package provides a framework for creating help pages for Zope 3\napplications. ZCML directives are used to minimize the overhead of creating\nnew help pages.\n\nDocumentation is hosted at https://zopeapponlinehelp.readthedocs.io\n\n\n=========\n CHANGES\n=========\n\n5.0 (2023-07-06)\n================\n\n- Add support for Python 3.11.\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n4.2.0 (2022-04-05)\n==================\n\n- Add support for Python 3.7, 3.8, 3.9, and 3.10.\n\n- Drop support for Python 3.4.\n\n\n4.1.0 (2017-07-12)\n==================\n\n- The help namespace no longer modifies the global help object on\n  traversal. Instead it returns a new proxy object. This makes it\n  thread-safe. See `issue 4\n  <https://github.com/zopefoundation/zope.app.onlinehelp/issues/4>`_.\n\n- ``getTopicFor`` now really returns the first found topic in the\n  event that the object implements multiple interfaces that have\n  registered topics for the given view. Previously it would return the\n  topic for the least-specific interface.\n\n4.0.1 (2017-05-21)\n==================\n\n- Drop test dependency on ``zope.app.securitypolicy``. It wasn't used,\n  and it isn't yet fully ported to Python 3.\n\n\n4.0.0 (2017-05-17)\n==================\n\n- Add support for Python 3.4, 3.5, 3.6 and PyPy.\n\n- Change ZODB dependency to persistent.\n\n- Drop test dependency on ``zope.app.testing``,\n  ``zope.app.zcmlifiles`` and ``zope.app.apidoc``, among others.\n\n3.5.2 (2010-01-08)\n==================\n\n- Fix tests using a newer zope.publisher that requires zope.login.\n\n3.5.1 (2009-03-21)\n==================\n\n- Use ``zope.site`` instead of ``zope.app.folder``.\n\n3.5.0 (2009-02-01)\n==================\n\n- Removed ``OnlineHelpTopicFactory``, ``simple`` and\n  ``SimpleViewClass``. All of them where using old deprecated and\n  removed Zope3 imports. None of them where used and tested.\n\n- Use ``zope.container`` instead of ``zope.app.container``.\n\n- Removed use of ``zope.app.zapi``.\n\n3.4.1 (2007-10-25)\n==================\n\n- Package meta-data update.\n\n\n3.4.0 (2007-10-23)\n==================\n\n- Initial release independent of the main Zope tree.\n\nOlder\n=====\n\n\nMake the onlinehelp utility more component oriented.\n\n- Use registred page/view instead of ViewPageTemplate for rendering topic tree\n  This way we can use/register own templates for tree layout.\n\n- Add page template based topic for rendering topics which has to\n  call other zope3 resources like javascripts and css styles sheets etc.\n  This resources can be rendered in the header area of the onlinehelp_macros.\n\n- Enhance the API of topics and simplyfie the view part.\n\n- Implemented getSubTopics() method on topics. This way we can sublist topics.\n\n- Remove unused onlinehelp code in rotterdam template.pt\n\n- Add type to directive, this supports registration of README.txt as 'rest' topics\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Framework for Context-Sensitive Help Pages",
    "version": "5.0",
    "project_urls": {
        "Homepage": "http://github.com/zopefoundation/zope.app.onlinehelp"
    },
    "split_keywords": [
        "zope3",
        "online",
        "help"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3c048b35a2c317c15e5d5ec09efcf0907dd2b58ce549ebeeaab49fe6753737b",
                "md5": "6f2710eb540ff99af80a5a37dda5be9c",
                "sha256": "05a9df45a6dec29e1e49e0d73b81104948a7fef4a9cdc278300929bffa7375b8"
            },
            "downloads": -1,
            "filename": "zope.app.onlinehelp-5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6f2710eb540ff99af80a5a37dda5be9c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 88540,
            "upload_time": "2023-07-06T06:27:09",
            "upload_time_iso_8601": "2023-07-06T06:27:09.994499Z",
            "url": "https://files.pythonhosted.org/packages/a3/c0/48b35a2c317c15e5d5ec09efcf0907dd2b58ce549ebeeaab49fe6753737b/zope.app.onlinehelp-5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edc0e7b81735b082ecadd12c2b1f8e685f3f3d4527cea4254280455de84a636d",
                "md5": "6b81447fa334b669c0643357221ab83d",
                "sha256": "179abbd2a50231a80d8b4ac2cb549b3aad8ef3891ca6a0e2147b670929ebb66a"
            },
            "downloads": -1,
            "filename": "zope.app.onlinehelp-5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6b81447fa334b669c0643357221ab83d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 83669,
            "upload_time": "2023-07-06T06:27:12",
            "upload_time_iso_8601": "2023-07-06T06:27:12.395227Z",
            "url": "https://files.pythonhosted.org/packages/ed/c0/e7b81735b082ecadd12c2b1f8e685f3f3d4527cea4254280455de84a636d/zope.app.onlinehelp-5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-06 06:27:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.app.onlinehelp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.app.onlinehelp"
}
        
Elapsed time: 0.08561s