cone.app


Namecone.app JSON
Version 1.0.7 PyPI version JSON
download
home_pagehttp://github.com/conestack/cone.app
SummaryWeb application stub
upload_time2023-05-15 11:33:06
maintainer
docs_urlNone
authorCone Contributors
requires_python
licenseSimplified BSD
keywords node pyramid cone web
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            **``cone.app`` - Build Web Applications on top of the pyramid framework.**

.. image:: https://img.shields.io/pypi/v/cone.app.svg
    :target: https://pypi.python.org/pypi/cone.app
    :alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/dm/cone.app.svg
    :target: https://pypi.python.org/pypi/cone.app
    :alt: Number of PyPI downloads

.. image:: https://travis-ci.org/bluedynamics/cone.app.svg?branch=master
    :target: https://travis-ci.org/bluedynamics/cone.app

.. image:: https://coveralls.io/repos/github/bluedynamics/cone.app/badge.svg?branch=master
    :target: https://coveralls.io/github/bluedynamics/cone.app?branch=master


Detailed Documentation
======================

The detailed ``cone.app`` documentation is available 
`here <https://coneapp.readthedocs.io>`_.


Source Code
===========

The sources are in a GIT DVCS with its main branches at 
`github <http://github.com/conestack/cone.app>`_.


Copyright
=========

- Copyright (c) 2009-2023 Cone Contributors


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

- Robert Niederreiter (Author)
- Jens Klein
- Georg Gogo. BERNHARD
- Phil Auersperg
- Florian Friesdorf
- Attila Olah
- Peter Holzer
- Johannes Raggam


Changes
=======

1.0.7 (2023-05-15)
------------------

- Check breakpoint against node path in ``PathBar.items_for`` instead of using
  ``is`` and check for referencable root against node path in
  ``ReferenceBrowserModelMixin.referencebrowser_model`` instead of checking
  node containment with ``LocationIterator``. Application nodes might not be
  cached in tree so comparison with ``is`` not works.
  [rnix]

- Fix plus and minus icon CSS classes in referencebrowser.
  [rnix]


1.0.6 (2022-12-05)
------------------

- Consider ``ugm.user_expires_attr`` setting in application configuration
  ini file and pass it to ``cone.ugm.file.Ugm``.
  [rnix]

- Introduce ``OwnerSupport.owner_attribute_name`` which defines the
  attribute name on which the owner is stored.
  [rnix]

- Introduce ``UUIDAttributeAware.uuid_attribute_name`` which defines the
  attribute name on which the UUID is stored.
  [rnix]

- Use ``get`` instead of ``__getitem__`` in ``UUIDAttributeAware.uuid`` to
  lookup UUID from attributes to prevent ``KeyError`` due to behavioral
  change in ``node.behaviors.UUIDAware.__init__`` in ``node`` 1.2.
  [rnix]

- Add support for defining ``navigable`` types in referencebrowser.
  [rnix]

- Introduce ``cone.app.interfaces.ILeafNode`` and ``cone.app.model.LeafNode``.
  [rnix]


1.0.5 (2022-10-06)
------------------

- Extend ``yafowil.referencebrowser`` JS by ``register_array_hooks``,
  ``array_add``, ``array_index`` methods to enable usage in
  ``yafowil.widget.array``.
  [lenadax]

- Use ``get_root`` in ``register_config`` and ``register_entry``.
  [rnix]

- Remove usage of ``Nodespaces`` behavior.
  [rnix]

- Replace deprecated use of ``Nodify`` by ``MappingNode``.
  [rnix]

- Replace deprecated use of ``NodeChildValidate`` by ``MappingConstraints``.
  [rnix]

- Replace deprecated use of ``Adopt`` by ``MappingAdopt``.
  [rnix]

- Replace deprecated use of ``allow_non_node_childs`` by ``child_constraints``.
  [rnix]


1.0.4 (2021-11-21)
------------------

- Visual padding for footer on sidebar and content instead of body.
  [rnix]

- Introduce ``cone.app.import_from_string``.
  [rnix]

- Fix execution order of main hooks. They get now executed in plugin loading
  order.
  [rnix]

- Custom application root node factory can be set via ``cone.root.node_factory``
  property in application config file.
  [rnix]

- Introduce ``cone.app.browser.actions.ButtonAction``.
  [rnix]

- Introduce ``cone.app.thread_shutdown_hook``.
  [rnix]

- Introduce ``cone.app.security.AdapterACL`` plumbing behavior.
  [rnix]

- Prevent auto persistence of generated language child widgets in translation
  widget.
  [rnix]

- Add ``canonical_value`` to ``cone.app.model.Translation``.
  [rnix]


1.0.3 (2021-11-08)
------------------

- Add ``translation`` YAFOWIL blueprint.
  [rnix]

- Provide dedicated forbidden and not found views for request types `text/html`
  and `application/json`.
  [rnix]

- Implement move actions for changing order of children within it's container.
  [rnix]

- Move ``cone.app.browser.utils.node_path`` to ``cone.app.browser.node_path``.
  Import from old location is deprecated.
  [rnix]

- Introduce ``cone.app.NodeTraverser``. It ensures only ``IApplicationNode``
  implementing children get traversed.
  [rnix]

- Ignore children which not implements ``IApplicationNode`` in ``navtree``,
  ``mainmenu`` and ``listing`` tiles.
  [rnix]

- Consider ``INavigationLeaf`` interface in ``navtree`` tile.
  [rnix]

- Introduce ``cone.app.model.AppEnvironment`` behavior.
  [rnix]

- Introduce ``cone.app.model.Translation`` behavior.
  [rnix]

- Add language selection dropdown.
  [rnix]

**Breaking changes:**

- Change signature of internal ``MainMenu.ignore_node`` and
  ``MainMenu.create_item``. They do not expect the ``props`` argument any more.


1.0.2 (2021-10-21)
------------------

- Workflow transition title is taken from zcml transition title if no
  translation factory is defined.
  [rnix, 2021-08-06]

- Workflow state title is taken from zcml state title if no translation factory
  is defined.
  [rnix, 2021-08-06]

- Main template can be defined in the application ini config file.
  [rnix, 2021-08-06]

- Get label ``lookup`` function in reference browser widget directly from widget
  instance instead of using ``attr_value``. Lookup function is expected to be a
  callable accepting a uuid as argument while ``attr_value`` tries to invoke
  callables with widget and data as arguments. The code worked due to a B/C
  fallback behavior in ``attr_value`` which was dropped in yafowil 3.0.
  [rnix, 2021-07-08]

- Deliver CSS before Javascript in HTML head.
  [rnix, 2021-06-30]


1.0.1 (2021-05-17)
------------------

- Use ``safe_encode`` and ``safe_decode`` from ``node.utils``.
  [rnix, 2021-05-17]


1.0 (2021-02-07)
----------------

- Introduce ``cone.app.browser.content.content_view_tile`` decorator.
  [rnix, 2021-02-05]

- Introduce ``cone.app.browser.content.content_view_action`` decorator.
  [rnix, 2021-02-05]

- Introduce ``cone.app.browser.layout.personal_tools_action`` decorator.
  [rnix, 2021-02-04]

- Introduce ``cone.app.browser.contextmenu.context_menu_group`` and
  ``cone.app.browser.contextmenu.context_menu_item`` decorators.
  [rnix, 2021-02-04]

- Introduce ``cone.app.interfaces.IAuthenticator`` utility.
  [rnix, zworkb, 2021-02-02]


1.0rc3 (2020-10-12)
-------------------

- ``cone.app.browser.ajax.AjaxEvent`` supports optional ``data`` argument
  supported as of ``bdajax`` 1.13.
  [rnix, 2020-09-29]


1.0rc2 (2020-08-12)
-------------------

- Fix print CSS.
  [rnix, 2020-08-12]

- Fix case when pasting to empty folder in copysupport JS.
  [rnix, 2020-08-12]

- Remove ``col-xs-4`` CSS class from ``h4`` headings in panel headers.
  [rnix, 2020-08-12]


1.0rc1 (2020-07-09)
-------------------

- Implement ``__copy__`` and ``__deepcopy__`` on ``Properties``,
  ``ProtectedProperties``, ``XMLProperties`` and ``ConfigProperties`` in
  ``cone.app.model``.
  [rnix, 2020-06-30]

- Overhaul copy support. ``paste`` action triggers ``contextchanged`` event to
  ``#layout`` instead of ``.contextsensitiv`` selector. Paste action considers
  ``action_paste_tile`` model property for customizing rerendering after paste.
  Move JS copysupport logic from ``cone.copysupportbinder`` to
  ``cone.CopySupport``. Do not unselect items if mouse click outside selectable
  listing. Preselect items on page and tile load.
  [rnix, 2020-06-28]

- Rename JS ``cone.selectable`` to ``cone.Selectable``. It is now a class and
  each selectable listing gets it's own instance. No longer automatically binds
  to table with selectable rows.
  [rnix, 2020-06-28]

- Do not check 'delete' permission on parent node in
  ``cona.app.browser.actions.ActionDelete.display``.
  [rnix, 2020-06-27]

- Add ``ProtectedContentTile.content_permission``. If this permission is not
  granted on model node, ``insufficient_privileges`` tile gets rendered.
  [rnix, 2020-06-25]

- Remove ``cone.app.security.DEFAULT_NODE_PROPERTY_PERMISSIONS``.
  [rnix, 2020-06-25]

- Fix CSS for selected items in dropdown menues.
  [rnix, 2020-06-25]

- Improve layout configuration handling. Rename ``cone.app.interfaces.ILayout``
  to ``cone.app.interfaces.ILayoutConfig`` and ``cone.app.model.Layout`` to
  ``cone.app.model.LayoutConfig``. Remove ``layout`` property from application
  model. Introduce ``cone.app.layout_config`` decorator which is used to register
  concrete ``LayoutConfig`` implementations for model nodes.
  [rnix, 2020-06-22]

- Fix asking for interface implementations via ``Interface.providedBy`` on
  subclasses of ``cone.app.model.Properties``.
  [rnix, 2020-06-22]

- Fix workflow state styles if no transitions are available.
  [rnix, 2020-06-15]

- Introduce ``cone.app.workflow.lookup_workflow`` and use it internally to get
  workflow. Fixes issue with interface bound workflows.
  [rnix, 2020-06-15]

- Fix principal name displaying. Fall back to principal id if configured display
  name attribute returns empty value.
  [rnix, 2020-06-14]

- Introduce ``cone.app.ugm.ugm_backend.user_display_attr`` and
  ``cone.app.ugm.ugm_backend.group_display_attr`` for configuring user and
  group display names in the UI. The config values can be customized in the
  application config file via ``ugm.user_display_attr`` and
  ``ugm.group_display_attr`` settings. This settings supersede
  ``cone.app.browser.sharing.GROUP_TITLE_ATTR`` and
  ``cone.app.browser.sharing.USER_TITLE_ATTR``.
  [rnix, 2020-06-14]


1.0b3 (2020-05-30)
------------------

- Improve multivalued handling of reference browser. Instead of passing
  ``vocabulary`` property, a ``lookup`` function gets passed which is used
  for looking up labels for currently selected references.
  [rnix, 2020-05-13]

- Proper required handling in reference browser.
  [rnix, 2020-05-13]

- Add ``form-control`` CSS class to referencebrowser input and select tags.
  [rnix, 2020-05-06]

- Fix reference browser no referencable restrictions.
  [rnix, 2020-05-06]

- Implement ``cone.app.model.NamespaceUUID``.
  [rnix, 2020-05-06]

- Expect ``node.interfaces.IUUID`` instead of ``node.interfaces.IUUIDAware`` in
  reference browser for referencable nodes.
  [rnix, 2020-05-06]

- Fix reference browser widget rendering ``target`` handling.
  [rnix, 2020-05-06]


1.0b2 (2020-03-30)
------------------

- Adopt ``cone.app.model.UUIDAware`` to use ``uuid.factory`` introduced in
  ``node`` 0.9.25.
  [rnix, 2020-03-01]

- Add ``cone.app.browser.table.Table.table_css`` for rendering additinal
  CSS classes to table wrapper.
  [rnix, 2020-02-27]


1.0b1 (2019-11-06)
------------------

- Fix ``DatetimeHelper.r_value`` and ``DatetimeHelper.w_value`` handling
  non string data types.
  [rnix, 2019-04-30]

- Only execute main hooks contained in defined plugins names from application
  config file.
  [rnix, 2019-03-31]

- Ignore commented out plugin names from application config file on startup
  [rnix, 2019-03-31]

- Remove ``cone.auth_impl`` setting from application config ini file. Use
  ``ugm.backend`` instead.
  [rnix, 2019-03-29]

- Move ``cone.app.utils.principal_data`` to ``cone.app.ugm.principal_data``.
  [rnix, 2019-03-28]

- Remove ``cone.app.cfg.auth``. The corresponding UGM implementation is now
  at ``cone.app.ugm.ugm_backend.ugm``.
  [rnix, 2019-03-28]

- Introduce ``cone.app.ugm.UGMFactory`` contract and implement
  ``cone.app.FileUGMFactory`` and ``BCFileUGMFactory``.
  [rnix, 2019-03-27]

- Introduce ``cone.app.ugm.ugm_backend`` decorator for registering and
  accessing ``UGMFactory`` objects.
  [rnix, 2019-03-27]

- Add ``cone.app.utils.format_traceback``.
  [rnix, 2019-03-27]

- Python 3 support.
  [rnix, 2019-03-25]

- Drop support for pyramid < 1.5.
  [rnix, 2019-03-25]

- Remove ``request`` from ``cone.app.browser.utils.node_icon`` signature.
  It was never used.
  [rnix, 2019-03-25]

- Make ``configure.zcml`` file in plugins optional.
  [rnix, 2019-03-24]

- Introduce ``cone.app.browser.sharing.GROUP_TITLE_ATTR`` and
  ``cone.app.browser.sharing.USER_TITLE_ATTR``.
  [rnix, 2019-03-24]

- Add content type header to merged js file.
  [rnix, 2019-03-24]

- Change signature of referencebrowser yafowil widget callable attributes. Gets
  passed ``widget`` and ``data`` as common in yafowil.
  [rnix, 2019-03-24]

- Prevent ``ComponentLookupError`` in
  ``cone.app.browser.form.Form._process_form`` if ``controller.next`` returns
  ``HTTPFound`` instance. This never had any effect due to a redirect, we want
  to avoid the error anyway.
  [rnix, 2019-03-22]

- Add ``cone.app.main_hook`` decorator. ``cone.app.register_main_hook`` is
  deprecated and will be removed as of ``cone.app`` version 1.1.
  [rnix, 2019-03-21]

- Add ``cone.app.workflow.permission_checker`` for use with ``repoze.workflow``
  to make it wirk with pyramid >= 1.8.
  [rnix, 2019-03-21]

- Use ``request.has_permission`` instead of deprecated
  ``pyramid.security.has_permission``.
  [rnix, 2019-03-21]

- Use ``request.authenticated_userid`` instead of deprecated
  ``pyramid.security.authenticated_userid``.
  [rnix, 2019-03-21]

- Add ``cone.app.main_hook`` decorator. ``cone.app.register_main_hook`` is
  deprecated and will be removed as of ``cone.app`` version 1.1.
  [rnix, 2019-03-21]

- Convert doctests to unittests.
  [rnix, 2019-03-21]

- Do not use ``cone.tile.register_tile`` any more. Create dedicated tile
  classes and use ``cone.tile.tile`` all over the place.
  [rnix, 2017-02-21]


1.0a12 (2018-11-20)
-------------------

- Introduce ``show_confirm_deleted`` on
  ``cone.app.browser.authoring.DeleteAction`` which can be used to prevent
  "Item has been deleted" ajax continuation message.
  [rnix, 2018-11-20]

- Add default favicon.ico.
  [rnix, 2018-11-19]


1.0a11 (2018-11-07)
-------------------

- Add ``cone.light.browser.exception.not_found_view`` and ``not_found`` tile.
  [rnix, 2018-09-11]

- Move ``cone.light.browser.login.forbidden_view`` to
  ``cone.app.browser.exception``.
  [rnix, 2018-09-11]

- Move registration of ``unauthorized`` tile from ``cone.app.browser.layout``
  to ``cone.app.browser.exception``.
  [rnix, 2018-09-11]

- Move ``cone.app.browser.exception.format_traceback`` to
  ``cone.app.browser.utils``.
  [rnix, 2018-09-11]


1.0a10 (2018-07-17)
-------------------

- Modify response body of ``request.response`` and return this one instead of
  creating a new response in ``cone.app.browser.render_ajax_form`` to ensure
  response header modifications gets delivered properly.
  [rnix, 2018-07-12]

- Batched items filter input fields may provide a prefilled text which gets
  emptied on first focus. Use ``empty_filter`` CSS class on input field for
  this.
  [rnix, 2017-12-20]

- Introduce ``cone.batcheditems_size_binder`` and
  ``cone.batcheditems_filter_binder`` helper functions in ``protected.js``.
  [rnix, 2017-12-20]


1.0a9 (2017-11-13)
------------------

- Add ``quote_params`` keyword argument to ``cone.app.browser.utils.make_query``
  to control explicitely if some request paramater values should be URL quoted.
  Needed to make ``cone.app.browser.authoring.CameFromNext`` work properly if
  ``came_from`` URL contains a query on it's own.
  [rnix, 2017-11-07]


1.0a8 (2017-10-10)
------------------

- Include related view in ``cone.app.browser.contents.ContentsViewLink.target``
  if present and node is container, otherwise ``target`` of superclass.
  [rnix, 2017-10-09]

- Revert use ``urllib2.quote`` in ``cone.app.browser.utils.make_query`` to
  quote query parameter values.
  [rnix, 2017-10-09]

- ``safe_decode`` keys to check for current node in ``NavTree.fillchildren``.
  [rnix, 2017-09-27]


1.0a7 (2017-09-17)
------------------

- Update to ``bdajax`` 1.10 and adopt server side ajax form processing code.
  [rnix, 2017-09-12]


1.0a6 (2017-08-28)
------------------

- Use ``RelatedViewConsumer`` on ``cone.app.browser.batch.BatchedItems``
  and ``cone.app.browser.table.Table``.
  [rnix, 2017-07-23]

- Use ``RelatedViewProvider`` on ``listing`` and ``sharing`` tile.
  [rnix, 2017-07-23]

- Add related view support. This includes ``set_related_view``,
  ``get_related_view``, ``RelatedViewProvider`` and ``RelatedViewConsumer``
  in ``cone.app.browser``.
  [rnix, 2017-07-23]

- Introduce dedicated ``href`` and ``target`` keys for batch vocab
  pages. Makes it possible to consider view names. ``url`` key still works
  as B/C, but will be removed as of ``cone.app`` 1.1.
  [rnix, 2017-07-23]

- Copy passed ``path`` in ``cone.app.browser.utils.make_url`` to avoid
  modification of given argument.
  [rnix, 2017-07-23]

- Use ``urllib2.quote`` in ``cone.app.browser.utils.make_query`` to quote
  query parameter values.
  [rnix, 2017-07-19]

- Include query when setting browser path in ``cone.batcheditemsbinder`` JS.
  [rnix, 2017-07-19]

- Update to ``bdajax`` 1.9 and adopt bdajax binder function registration.
  [rnix, 2017-07-19]


1.0a5 (2017-05-15)
------------------

- Add ajax overlay additional CSS class support which has been introduced in
  ``bdajax`` 1.8
  [rnix, 2017-05-12]


1.0a4 (2017-03-28)
------------------

- Fix children filtering in ``cone.app.browser.contents.ContentsTile`` if
  title or creator from metadata is ``None``.
  [rnix, 2017-03-28]

- Fix ``href`` link creation of ``ActionList``, ``ActionSharing`` and
  ``ActionEdit`` in ``cone.app.browser.actions`` to ensure correct links if
  ``target`` gets overwritten on subclass.
  [rnix, 2017-03-28]

- Consolidate ``batcheditemsbinder`` and ``tabletoolbarbinder`` in
  ``protected.js``.
  [rnix, 2017-03-28]

- ``cone.app.browser.actions.ActionUp`` sets ``href`` properly.
  [rnix, 2017-03-28]

- Introduce ``logout`` tile.
  [rnix, 2017-03-23]

- Move ``login_view``, ``logout_view`` and ``forbidden_view`` from
  ``cone.app.browser`` to ``cone.app.browser.login``.
  [rnix, 2017-03-23]

- Catch ``Forbidden`` exception explicitely in ``ajaxaction`` JSON view and
  set 403 response status in order to ensure bdajax redirects to login view
  properly.
  [rnix, 2017-03-23]

- Ajax path is not longer set on server side in layout tile via ajax
  continuation but explicitely via ``ajax:path`` in markup where appropriate.
  [rnix, 2017-03-23]

- ``cone.app.browser.actions.LinkAction`` now supports ``path``,
  ``path_target``, ``path_action``, ``path_event`` and ``path_overlay``.
  [rnix, 2017-03-23]

- ``cone.app.browser.ajax.AjaxPath`` now supports ``target``, ``action``,
  ``event`` and ``overlay``.
  [rnix, 2017-03-23]

- Update to ``bdajax`` 1.7 which supports browser history handling for ajax
  actions.
  [rnix, 2017-03-23]

- Rename ``nodepath`` to ``node_path`` in ``cone.app.browser.utils``. B/C
  ``nodepath`` is suppoerted as of ``cone.app`` 1.1.
  [rnix, 2017-03-23]


1.0a3
-----

- Add ``BatchedItems`` tile to ``cone.app.browser.batch``.
  [rnix, 2017-02-21]

- Add ``trigger_event`` and ``trigger_selector`` to ``cone.app.browser.Batch``
  to make ajax JS event and selector customizble.
  [rnix, 2017-02-21]


1.0a2
-----

- Provide ``icon`` on ``ReferencableChildrenLink`` to render node icons in
  ``referencelisting`` tile.
  [rnix, 2017-02-07]

- Fix referencebrowser navigation root lookup and render
  ``referencebrowser_pathbar`` and ``referencelisting`` tiles on proper
  context in ``referencebrowser`` tile.
  [rnix, 2017-02-07]

- Add ``cone.app.browser.referencebrowser.ReferenceBrowserModelMixin``.
  [rnix, 2017-02-07]

- Handle unicode properly in ``cone.app.model.ConfigProperties``.
  [rnix, 2017-02-07]

- Move ``safe_encode`` and ``safe_decode`` utility functions from
  ``cone.app.browser.utils`` to ``cone.app.utils``.
  [rnix, 2017-02-07]

- Section name for ``cone.app.model.ConfigProperties`` can be customized.
  [rnix, 2017-02-06]

- Check whether owner already has been set in
  ``cone.app.security.OwnerSupport.__init__`` and skip setting it if so.
  [rnix, 2017-01-29]


1.0a1
-----

- Display ``userid`` in peronal tools if ``fullname`` found but empty.
  [rnix, 2015-04-11]

- ``sort_key`` not mandatory on column definitions any longer in tables.
  [rnix, 2015-02-23]

- URL's may contain umlaute.
  [rnix, 2015-02-18]

- Application nodes can be marked as root for navigation tree by setting
  ``is_navroot`` property to True.
  [rnix, 2015-02-17]

- No default values for admin user and password from ini file if not set.
  [rnix, 2014-12-01]

- Main menu can display first level children in dropdown menu if
  ``model.properties.mainmenu_display_children`` is set to ``True``.
  [rnix, 2014-09-08]

- Add login form actions to form compound. Thus login form actions can be
  extended keeping UI rednering sane.
  [rnix, 2014-09-04]

- Default model layout lookup considers ``default_child`` property.
  [rnix, 2014-08-28]

- Remove ``yafowil.yaml`` dependency.
  [rnix, 2014-08-26]

- Refactor ``cone.app.browser.AddDropdown``. It provides now a ``make_item``
  for better customizability.
  [rnix, 2014-08-21]

- Rename ``cone.app.model.registerNodeInfo`` to
  ``cone.app.model.register_node_info``. B/C import avaiable as of ``cone.app``
  1.1.
  [rnix, 2014-08-19]

- Rename ``cone.app.model.getNodeInfo`` to ``cone.app.model.get_node_info``.
  B/C import avaiable as of ``cone.app`` 1.1.
  [rnix, 2014-08-19]

- Modify ``class_add`` instead of ``class`` property in
  ``cone.app.browser.form.Form.prepare_ajax``.
  [rnix, 2014-08-16]

- Default layout lookup mechanism is done via ZCA adapter. Provide default
  ``__init__`` function on ``cone.app.model.Layout``.
  [rnix, 2014-08-13]

- Deprecate ``cone.app.register_plugin``. Use ``cone.app.register_entry``
  instead.
  [rnix, 2014-08-13]

- Deprecate ``cone.app.register_plugin_config``. Use
  ``cone.app.register_config`` instead.
  [rnix, 2014-08-13]

- Settings link in personaltools gets skipped if there are no settings nodes
  registered.
  [rnix, 2014-08-13]

- Add example ``twisted.cfg`` buildout configuration and ``cone.tac`` twisted
  configuration file for running cone with twisted WSGI.
  [rnix, 2014-08-02]

- Adopt ``IWorkflowState`` interface. Workflow name is now set directly
  on node. Optional a trnaslation string factory can be set for workflow
  state and transision translations.
  [rnix, 2014-08-01]

- Use ``plumbing`` decorator instead of ``plumber`` metaclass.
  [rnix, 2014-08-01]

- Introduce ``list`` permission, bind ``listing`` and ``contents`` tile to it
  and adopt default ACL's.
  [rnix, 2014-07-26]

- Improve forbidden view, renders unauthorized tile in case user is
  authenticated, otherwise redirect to login form.
  [rnix, 2014-07-26]

- All Authoring forms are no longer derived from ``ProtectedContentTile``.
  [rnix, 2014-07-26]

- ``OverlayForm`` now renders by default to ``#ajax-overlay`` instead of
  ``#ajax-form``. Latter is supposed to be used if overlay form should be
  rendered above an already opened overlay.
  [rnix, 2014-07-25]

- Introduce ``OverlayAddForm`` and ``OverlayEditForm``.
  [rnix, 2014-07-24]

- ``OverlayForm`` renders ``overlayform`` form tile instead of
  ``overlayeditform``.
  [rnix, 2014-07-24]

- Authoring forms cleanup. Rename ``AddBehavior`` to ``ContentAddForm``,
  ``EditBehavior`` to ``ContentEditForm`` and ``OverlayBehavior`` to
  ``OverlayForm``.
  [rnix, 2014-07-24]

- Introduce ``ILiveSearch`` adapter interface and remove
  ``cone.app.browser.ajax.LIVESEARCH_CALLBACK``.
  [rnix, 2014-07-15]

- Move over to ``typeahead.js`` for livesearch.
  [rnix, 2014-07-14]

- ``cone.app.cfg.layout`` not exists any longer. Register ``ILayout`` providing
  adapter for application nodes in order to customize layout configuration.
  [rnix, 2014-07-14]

- Add ``node_info`` decorator.
  [rnix, 2014-07-11]

- Trigger ``contextchanged`` to ``#layout`` rather than ``.contextsensitiv``
  in ``mainmenu``, ``logo``, ``pathbar``, ``navtree``.
  [rnix, 2014-07-11]

- Introduce ``layout`` tile.
  [rnix, 2014-07-11]

- Provide Layout configuration via ``AppNode``.
  [rnix, 2014-07-11]

- Remove ``cone.app.util.AppUtil``.
  [rnix, 2014-07-11]

- Workflow state only gets initialized at node creation time if not set at
  corresponding data yet. Needed for non persisting application nodes.
  [rnix, 2014-07-09]

- Content forms are now wrapped by a bs3 panel element.
  [rnix, 2014-07-09]

- Introduce ``skip_mainmenu`` in ``model.properties``. Gets considered in
  mainmenu.
  [rnix, 2014-07-09]

- Settings are displayed in personaltools menu rather than navtree and
  mainmenu.
  [rnix, 2014-07-09]

- ``personaltools`` tile now renders ``cone.app.browser.actions.LinkAction``
  based items.
  [rnix, 2014-07-09]

- Use bootstrap 3 related resources for bdajax integration.
  [rnix, 2014-07-04]

- Remove custom dropdown from ``cone.app.js``. Boostrap dropdown is used all
  over the place.
  [rnix, 2014-07-03]

- Introduce ``cone.app.browser.batch.BATCH_RANGE`` which can be used for
  default batch range configuration.
  [rnix, 2014-07-03]

- Remove ``cone.app.utils.node_icon_url``.
  [rnix, 2014-07-03]

- Include ionicons.
  [rnix, 2014-07-02]

- Introduce ``cone.app.is_remote_resource``.
  [rnix, 2014-06-27]

- CSS background image path from site root.
  [rnix, 2014-06-27]

- Fix yafowil JS resources delivery order.
  [rnix, 2014-06-19]

- Do not fail in ``cone.app.browser.actions.Action.action_scope`` if no
  ``ActionContext`` defined. Useful for testing.
  [rnix, 2014-06-18]

- Update jQuery, jQuery-UI and remove jQuery Tools.
  [rnix, 2013-08-13]

- ``cone.app.model.Properties`` now supports ``__setitem__`` and setting file
  ``path`` manually.
  [rnix, 2013-08-06]

- No more generic tabs binder, refactor settings tabs.
  [rnix, 2013-08-06]

- Change base styles to twitter bootstrap 3.
  [rnix, 2013-08-05]


0.9.5
-----

- ``lxml`` is no longer a hard dependency.
  [rnix, 2014-01-18]

- Factory node can be invalidated now.
  [rnix, 2014-01-15]

- Update jQuery, jQuery-UI and remove jQuery Tools.
  [rnix, 2013-08-13]

- ``cone.app.model.Properties`` now supports ``__setitem__`` and setting file
  ``path`` manually.
  [rnix, 2013-08-06]

- No more generic tabs binder, refactor settings tabs.
  [rnix, 2013-08-06]

- Change base styles to twitter bootstrap.
  [rnix, 2013-08-05]

- Test request can be flagged as XHR request.
  [rnix, 2013-03-23]

- Improve exception view to handle default error page and bdajax action
  requests. Move Exception code to ``cone.app.browser.exception``.
  [rnix, 2013-02-10]

- Introduce ``cone.app.browser.utils.request_property``.
  [rnix, 2013-02-05]

- Do not load ``cone.app.js`` merged, ensures to be loaded after bdajax.
  [rnix, 2013-01-20]

- Check if autocomplete plugin is available in ``cone.app.js`` when trying to
  bind livesearch.
  [rnix, 2013-01-08]

- Make yafowil resources beeing delivered public as well.
  [rnix, 2013-01-08]

- Possibility to skip yafowil resource groups, deliver yafowil resources
  before addon resources.
  [rnix, 2013-01-08]

- Remove yafowil addon widgets from default setup dependencies.
  [rnix, 2013-01-04]


0.9.4
-----

- Introduce ``Table.display_table_header`` and ``Table.display_table_footer``
  properties.
  [rnix, 2012-10-30]

- Introduce ``cone.app.browser.actions.DropdownAction``.
  [rnix, 2012-10-28]

- Introduce ``row_data`` on ``ContentsTile`` for customizing column data on
  ``ContentsTile`` deriving objects.
  [rnix, 2012-10-28]

- ``model.properties.action_delete_tile`` can be set if
  ``model.properties.action_delete`` is True. Used to define the content tile
  which gets rendered on parent of model after deleting.
  [rnix, 2012-10-26]

- Available child nodes of ``ContentsTile`` can be controlled by
  ``listable_children``.
  [rnix, 2012-10-26]

- Introduce ``show_slicesize`` on tables.
  [rnix, 2012-10-19]

- PEP-8.
  [rnix, 2012-10-16]

- Python2.7 Support.
  [rnix, 2012-10-16]

- Rename parts to behaviors.
  [rnix, 2012-07-29]

- adopt to ``node`` 0.9.8
  [rnix, 2012-07-29]

- adopt to ``plumber`` 1.2
  [rnix, 2012-07-29]

- use fresh Chameleon and fix tests to recognize correct output of new Chameleon
  [jensens, 2012-07-04]


0.9.3
-----

- Add basic print CSS.
  [rnix, 2012-05-29]

- ``contextmenu`` tile got a ``bdajax`` contract.
  [rnix, 2012-05-23]

- CSS and JS can be delivered merged if desired.
  [rnix, 2012-05-22]

- Move resources rendering to seperate module.
  [rnix, 2012-05-21]

- Add ``form_flavor`` attribute to ``cone.app.browser.form.YAMLForm``.
  [rnix, 2012-05-18]

- Add ``cone.app.model.UUIDAsName`` part.
  [rnix, 2012-05-18]

- Use ``zope.interface.implementer`` instead of ``zope.interface.implements``.
  [rnix, 2012-05-18]

- Remove BBB classes ``come.app.model.BaseNodeInfo`` and
  ``cone.app.model.BaseMetadata``.
  [rnix, 2012-05-18]

- Consider ``default_content_tile`` in application ini in order to support
  configuring root content tile.
  [rnix, 2012-05-14]

- Support bdajax overlay continuation as introduced in bdajax 1.4.
  [rnix, 2012-05-04]

- Move AJAX forms related markup and javascript to bdajax.
  [rnix, 2012-05-04]

- Add property ``head_additional`` to table tile. Supposed to be used for
  hooking additional markup to table header.
  [rnix, 2012-05-03]

- Fix bug in navtree when displaying children of node with ``hide_if_default``
  property set.
  [rnix, 2012-04-26]

- Consider ``default_child`` property in UP action and action scope.
  [rnix, 2012-04-24]

- Include ``yafowil.widget.image``.
  [rnix, 2012-04-21]

- Improve ajax form rendering.
  [rnix, 2012-04-19]

- Ajaxify settings tabs.
  [rnix, 2012-04-19]

- Add resizeable plugin to jQuery UI custom built.
  [rnix, 2012-03-27]


0.9.2
-----

- Resources also can originate at a remote server.
  [rnix, 2012-03-21]


0.9.1
-----

- Better table and batch templates and styles. Table now supports slice size
  selection and filtering.
  [rnix, 2012-03-19]

- Fix default ``sort`` and ``order`` request parameters for table batch.
  [rnix, 2012-03-16]

- Cleanup self contained buidlout.
  [rnix, 2012-02-29]

- Remove ``cone.app.APP_PATH``.
  [rnix, 2012-02-29]

- Adopt YAFOWIL addon registration to YAFOWIL 1.3
  [rnix, 2012-02-29]

- Use ``node.ext.ugm.interfaces.Users.id_for_login`` contract for remembering
  User id instead of login name in authentication cookie.
  [rnix, 2012-01-18]

- Dynamic width CSS
  [rnix, 2011-12-18]

- Extend UI actions by ``selected`` property.
  [rnix, 2011-12-16]

- Add ``cone.app.model.UUIDAttributeAware``.
  [rnix, 2011-12-07]

- Add ``cone.app.security.OwnerSupport``.
  [rnix, 2011-12-07]

- Add ``cone.app.security.ACLRegistry``.
  [rnix, 2011-12-07]

- Use ``node.parts.IUUIDAware`` as dependency for node beeing referencable.
  [rnix, 2011-12-02]

- Add ``browser.actions``.
  [rnix, 2011-12-01]

- Update jQuery (1.6.4) and jQuery Tools (1.2.6).
  [rnix, 2011-11-30]

- Add copy support.
  [rnix, 2011-11-30]

- Single UGM implementation.
  [rnix, 2011-11-21]

- Add ``PrincipalACL`` part and ``sharing`` tile.
  [rnix, 2011-11-21]

- Refactor contextmenu, can now be extended.
  [rnix, 2011-11-19]

- Add margin top for sidebar and content.
  [rnix, 2011-11-18]

- ``contextmenu`` tile considers ``action_up_tile`` property now.
  [rnix, 2011-11-17]

- Add ``bda.calendar.base`` as install dependency for timezone aware 
  datetime handling.
  [rnix, 2011-11-16]

- Show error message at attempt to add reference with missing UID.
  [rnix, 2011-11-16]

- Add yafowil.widget.array to dependencies.
  [rnix]


0.9
---

- Initial work


License
=======

Copyright (c) 2009-2021, BlueDynamics Alliance, Austria
Copyright (c) 2021-2022, Cone Contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this
  list of conditions and the following disclaimer in the documentation and/or
  other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/conestack/cone.app",
    "name": "cone.app",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "node pyramid cone web",
    "author": "Cone Contributors",
    "author_email": "dev@conestack.org",
    "download_url": "https://files.pythonhosted.org/packages/54/1a/fdbff070731bad656ed6a1d9f593cd055fa0a02edb31d38b0c3b5cdbaca1/cone.app-1.0.7.tar.gz",
    "platform": null,
    "description": "**``cone.app`` - Build Web Applications on top of the pyramid framework.**\n\n.. image:: https://img.shields.io/pypi/v/cone.app.svg\n    :target: https://pypi.python.org/pypi/cone.app\n    :alt: Latest PyPI version\n\n.. image:: https://img.shields.io/pypi/dm/cone.app.svg\n    :target: https://pypi.python.org/pypi/cone.app\n    :alt: Number of PyPI downloads\n\n.. image:: https://travis-ci.org/bluedynamics/cone.app.svg?branch=master\n    :target: https://travis-ci.org/bluedynamics/cone.app\n\n.. image:: https://coveralls.io/repos/github/bluedynamics/cone.app/badge.svg?branch=master\n    :target: https://coveralls.io/github/bluedynamics/cone.app?branch=master\n\n\nDetailed Documentation\n======================\n\nThe detailed ``cone.app`` documentation is available \n`here <https://coneapp.readthedocs.io>`_.\n\n\nSource Code\n===========\n\nThe sources are in a GIT DVCS with its main branches at \n`github <http://github.com/conestack/cone.app>`_.\n\n\nCopyright\n=========\n\n- Copyright (c) 2009-2023 Cone Contributors\n\n\nContributors\n============\n\n- Robert Niederreiter (Author)\n- Jens Klein\n- Georg Gogo. BERNHARD\n- Phil Auersperg\n- Florian Friesdorf\n- Attila Olah\n- Peter Holzer\n- Johannes Raggam\n\n\nChanges\n=======\n\n1.0.7 (2023-05-15)\n------------------\n\n- Check breakpoint against node path in ``PathBar.items_for`` instead of using\n  ``is`` and check for referencable root against node path in\n  ``ReferenceBrowserModelMixin.referencebrowser_model`` instead of checking\n  node containment with ``LocationIterator``. Application nodes might not be\n  cached in tree so comparison with ``is`` not works.\n  [rnix]\n\n- Fix plus and minus icon CSS classes in referencebrowser.\n  [rnix]\n\n\n1.0.6 (2022-12-05)\n------------------\n\n- Consider ``ugm.user_expires_attr`` setting in application configuration\n  ini file and pass it to ``cone.ugm.file.Ugm``.\n  [rnix]\n\n- Introduce ``OwnerSupport.owner_attribute_name`` which defines the\n  attribute name on which the owner is stored.\n  [rnix]\n\n- Introduce ``UUIDAttributeAware.uuid_attribute_name`` which defines the\n  attribute name on which the UUID is stored.\n  [rnix]\n\n- Use ``get`` instead of ``__getitem__`` in ``UUIDAttributeAware.uuid`` to\n  lookup UUID from attributes to prevent ``KeyError`` due to behavioral\n  change in ``node.behaviors.UUIDAware.__init__`` in ``node`` 1.2.\n  [rnix]\n\n- Add support for defining ``navigable`` types in referencebrowser.\n  [rnix]\n\n- Introduce ``cone.app.interfaces.ILeafNode`` and ``cone.app.model.LeafNode``.\n  [rnix]\n\n\n1.0.5 (2022-10-06)\n------------------\n\n- Extend ``yafowil.referencebrowser`` JS by ``register_array_hooks``,\n  ``array_add``, ``array_index`` methods to enable usage in\n  ``yafowil.widget.array``.\n  [lenadax]\n\n- Use ``get_root`` in ``register_config`` and ``register_entry``.\n  [rnix]\n\n- Remove usage of ``Nodespaces`` behavior.\n  [rnix]\n\n- Replace deprecated use of ``Nodify`` by ``MappingNode``.\n  [rnix]\n\n- Replace deprecated use of ``NodeChildValidate`` by ``MappingConstraints``.\n  [rnix]\n\n- Replace deprecated use of ``Adopt`` by ``MappingAdopt``.\n  [rnix]\n\n- Replace deprecated use of ``allow_non_node_childs`` by ``child_constraints``.\n  [rnix]\n\n\n1.0.4 (2021-11-21)\n------------------\n\n- Visual padding for footer on sidebar and content instead of body.\n  [rnix]\n\n- Introduce ``cone.app.import_from_string``.\n  [rnix]\n\n- Fix execution order of main hooks. They get now executed in plugin loading\n  order.\n  [rnix]\n\n- Custom application root node factory can be set via ``cone.root.node_factory``\n  property in application config file.\n  [rnix]\n\n- Introduce ``cone.app.browser.actions.ButtonAction``.\n  [rnix]\n\n- Introduce ``cone.app.thread_shutdown_hook``.\n  [rnix]\n\n- Introduce ``cone.app.security.AdapterACL`` plumbing behavior.\n  [rnix]\n\n- Prevent auto persistence of generated language child widgets in translation\n  widget.\n  [rnix]\n\n- Add ``canonical_value`` to ``cone.app.model.Translation``.\n  [rnix]\n\n\n1.0.3 (2021-11-08)\n------------------\n\n- Add ``translation`` YAFOWIL blueprint.\n  [rnix]\n\n- Provide dedicated forbidden and not found views for request types `text/html`\n  and `application/json`.\n  [rnix]\n\n- Implement move actions for changing order of children within it's container.\n  [rnix]\n\n- Move ``cone.app.browser.utils.node_path`` to ``cone.app.browser.node_path``.\n  Import from old location is deprecated.\n  [rnix]\n\n- Introduce ``cone.app.NodeTraverser``. It ensures only ``IApplicationNode``\n  implementing children get traversed.\n  [rnix]\n\n- Ignore children which not implements ``IApplicationNode`` in ``navtree``,\n  ``mainmenu`` and ``listing`` tiles.\n  [rnix]\n\n- Consider ``INavigationLeaf`` interface in ``navtree`` tile.\n  [rnix]\n\n- Introduce ``cone.app.model.AppEnvironment`` behavior.\n  [rnix]\n\n- Introduce ``cone.app.model.Translation`` behavior.\n  [rnix]\n\n- Add language selection dropdown.\n  [rnix]\n\n**Breaking changes:**\n\n- Change signature of internal ``MainMenu.ignore_node`` and\n  ``MainMenu.create_item``. They do not expect the ``props`` argument any more.\n\n\n1.0.2 (2021-10-21)\n------------------\n\n- Workflow transition title is taken from zcml transition title if no\n  translation factory is defined.\n  [rnix, 2021-08-06]\n\n- Workflow state title is taken from zcml state title if no translation factory\n  is defined.\n  [rnix, 2021-08-06]\n\n- Main template can be defined in the application ini config file.\n  [rnix, 2021-08-06]\n\n- Get label ``lookup`` function in reference browser widget directly from widget\n  instance instead of using ``attr_value``. Lookup function is expected to be a\n  callable accepting a uuid as argument while ``attr_value`` tries to invoke\n  callables with widget and data as arguments. The code worked due to a B/C\n  fallback behavior in ``attr_value`` which was dropped in yafowil 3.0.\n  [rnix, 2021-07-08]\n\n- Deliver CSS before Javascript in HTML head.\n  [rnix, 2021-06-30]\n\n\n1.0.1 (2021-05-17)\n------------------\n\n- Use ``safe_encode`` and ``safe_decode`` from ``node.utils``.\n  [rnix, 2021-05-17]\n\n\n1.0 (2021-02-07)\n----------------\n\n- Introduce ``cone.app.browser.content.content_view_tile`` decorator.\n  [rnix, 2021-02-05]\n\n- Introduce ``cone.app.browser.content.content_view_action`` decorator.\n  [rnix, 2021-02-05]\n\n- Introduce ``cone.app.browser.layout.personal_tools_action`` decorator.\n  [rnix, 2021-02-04]\n\n- Introduce ``cone.app.browser.contextmenu.context_menu_group`` and\n  ``cone.app.browser.contextmenu.context_menu_item`` decorators.\n  [rnix, 2021-02-04]\n\n- Introduce ``cone.app.interfaces.IAuthenticator`` utility.\n  [rnix, zworkb, 2021-02-02]\n\n\n1.0rc3 (2020-10-12)\n-------------------\n\n- ``cone.app.browser.ajax.AjaxEvent`` supports optional ``data`` argument\n  supported as of ``bdajax`` 1.13.\n  [rnix, 2020-09-29]\n\n\n1.0rc2 (2020-08-12)\n-------------------\n\n- Fix print CSS.\n  [rnix, 2020-08-12]\n\n- Fix case when pasting to empty folder in copysupport JS.\n  [rnix, 2020-08-12]\n\n- Remove ``col-xs-4`` CSS class from ``h4`` headings in panel headers.\n  [rnix, 2020-08-12]\n\n\n1.0rc1 (2020-07-09)\n-------------------\n\n- Implement ``__copy__`` and ``__deepcopy__`` on ``Properties``,\n  ``ProtectedProperties``, ``XMLProperties`` and ``ConfigProperties`` in\n  ``cone.app.model``.\n  [rnix, 2020-06-30]\n\n- Overhaul copy support. ``paste`` action triggers ``contextchanged`` event to\n  ``#layout`` instead of ``.contextsensitiv`` selector. Paste action considers\n  ``action_paste_tile`` model property for customizing rerendering after paste.\n  Move JS copysupport logic from ``cone.copysupportbinder`` to\n  ``cone.CopySupport``. Do not unselect items if mouse click outside selectable\n  listing. Preselect items on page and tile load.\n  [rnix, 2020-06-28]\n\n- Rename JS ``cone.selectable`` to ``cone.Selectable``. It is now a class and\n  each selectable listing gets it's own instance. No longer automatically binds\n  to table with selectable rows.\n  [rnix, 2020-06-28]\n\n- Do not check 'delete' permission on parent node in\n  ``cona.app.browser.actions.ActionDelete.display``.\n  [rnix, 2020-06-27]\n\n- Add ``ProtectedContentTile.content_permission``. If this permission is not\n  granted on model node, ``insufficient_privileges`` tile gets rendered.\n  [rnix, 2020-06-25]\n\n- Remove ``cone.app.security.DEFAULT_NODE_PROPERTY_PERMISSIONS``.\n  [rnix, 2020-06-25]\n\n- Fix CSS for selected items in dropdown menues.\n  [rnix, 2020-06-25]\n\n- Improve layout configuration handling. Rename ``cone.app.interfaces.ILayout``\n  to ``cone.app.interfaces.ILayoutConfig`` and ``cone.app.model.Layout`` to\n  ``cone.app.model.LayoutConfig``. Remove ``layout`` property from application\n  model. Introduce ``cone.app.layout_config`` decorator which is used to register\n  concrete ``LayoutConfig`` implementations for model nodes.\n  [rnix, 2020-06-22]\n\n- Fix asking for interface implementations via ``Interface.providedBy`` on\n  subclasses of ``cone.app.model.Properties``.\n  [rnix, 2020-06-22]\n\n- Fix workflow state styles if no transitions are available.\n  [rnix, 2020-06-15]\n\n- Introduce ``cone.app.workflow.lookup_workflow`` and use it internally to get\n  workflow. Fixes issue with interface bound workflows.\n  [rnix, 2020-06-15]\n\n- Fix principal name displaying. Fall back to principal id if configured display\n  name attribute returns empty value.\n  [rnix, 2020-06-14]\n\n- Introduce ``cone.app.ugm.ugm_backend.user_display_attr`` and\n  ``cone.app.ugm.ugm_backend.group_display_attr`` for configuring user and\n  group display names in the UI. The config values can be customized in the\n  application config file via ``ugm.user_display_attr`` and\n  ``ugm.group_display_attr`` settings. This settings supersede\n  ``cone.app.browser.sharing.GROUP_TITLE_ATTR`` and\n  ``cone.app.browser.sharing.USER_TITLE_ATTR``.\n  [rnix, 2020-06-14]\n\n\n1.0b3 (2020-05-30)\n------------------\n\n- Improve multivalued handling of reference browser. Instead of passing\n  ``vocabulary`` property, a ``lookup`` function gets passed which is used\n  for looking up labels for currently selected references.\n  [rnix, 2020-05-13]\n\n- Proper required handling in reference browser.\n  [rnix, 2020-05-13]\n\n- Add ``form-control`` CSS class to referencebrowser input and select tags.\n  [rnix, 2020-05-06]\n\n- Fix reference browser no referencable restrictions.\n  [rnix, 2020-05-06]\n\n- Implement ``cone.app.model.NamespaceUUID``.\n  [rnix, 2020-05-06]\n\n- Expect ``node.interfaces.IUUID`` instead of ``node.interfaces.IUUIDAware`` in\n  reference browser for referencable nodes.\n  [rnix, 2020-05-06]\n\n- Fix reference browser widget rendering ``target`` handling.\n  [rnix, 2020-05-06]\n\n\n1.0b2 (2020-03-30)\n------------------\n\n- Adopt ``cone.app.model.UUIDAware`` to use ``uuid.factory`` introduced in\n  ``node`` 0.9.25.\n  [rnix, 2020-03-01]\n\n- Add ``cone.app.browser.table.Table.table_css`` for rendering additinal\n  CSS classes to table wrapper.\n  [rnix, 2020-02-27]\n\n\n1.0b1 (2019-11-06)\n------------------\n\n- Fix ``DatetimeHelper.r_value`` and ``DatetimeHelper.w_value`` handling\n  non string data types.\n  [rnix, 2019-04-30]\n\n- Only execute main hooks contained in defined plugins names from application\n  config file.\n  [rnix, 2019-03-31]\n\n- Ignore commented out plugin names from application config file on startup\n  [rnix, 2019-03-31]\n\n- Remove ``cone.auth_impl`` setting from application config ini file. Use\n  ``ugm.backend`` instead.\n  [rnix, 2019-03-29]\n\n- Move ``cone.app.utils.principal_data`` to ``cone.app.ugm.principal_data``.\n  [rnix, 2019-03-28]\n\n- Remove ``cone.app.cfg.auth``. The corresponding UGM implementation is now\n  at ``cone.app.ugm.ugm_backend.ugm``.\n  [rnix, 2019-03-28]\n\n- Introduce ``cone.app.ugm.UGMFactory`` contract and implement\n  ``cone.app.FileUGMFactory`` and ``BCFileUGMFactory``.\n  [rnix, 2019-03-27]\n\n- Introduce ``cone.app.ugm.ugm_backend`` decorator for registering and\n  accessing ``UGMFactory`` objects.\n  [rnix, 2019-03-27]\n\n- Add ``cone.app.utils.format_traceback``.\n  [rnix, 2019-03-27]\n\n- Python 3 support.\n  [rnix, 2019-03-25]\n\n- Drop support for pyramid < 1.5.\n  [rnix, 2019-03-25]\n\n- Remove ``request`` from ``cone.app.browser.utils.node_icon`` signature.\n  It was never used.\n  [rnix, 2019-03-25]\n\n- Make ``configure.zcml`` file in plugins optional.\n  [rnix, 2019-03-24]\n\n- Introduce ``cone.app.browser.sharing.GROUP_TITLE_ATTR`` and\n  ``cone.app.browser.sharing.USER_TITLE_ATTR``.\n  [rnix, 2019-03-24]\n\n- Add content type header to merged js file.\n  [rnix, 2019-03-24]\n\n- Change signature of referencebrowser yafowil widget callable attributes. Gets\n  passed ``widget`` and ``data`` as common in yafowil.\n  [rnix, 2019-03-24]\n\n- Prevent ``ComponentLookupError`` in\n  ``cone.app.browser.form.Form._process_form`` if ``controller.next`` returns\n  ``HTTPFound`` instance. This never had any effect due to a redirect, we want\n  to avoid the error anyway.\n  [rnix, 2019-03-22]\n\n- Add ``cone.app.main_hook`` decorator. ``cone.app.register_main_hook`` is\n  deprecated and will be removed as of ``cone.app`` version 1.1.\n  [rnix, 2019-03-21]\n\n- Add ``cone.app.workflow.permission_checker`` for use with ``repoze.workflow``\n  to make it wirk with pyramid >= 1.8.\n  [rnix, 2019-03-21]\n\n- Use ``request.has_permission`` instead of deprecated\n  ``pyramid.security.has_permission``.\n  [rnix, 2019-03-21]\n\n- Use ``request.authenticated_userid`` instead of deprecated\n  ``pyramid.security.authenticated_userid``.\n  [rnix, 2019-03-21]\n\n- Add ``cone.app.main_hook`` decorator. ``cone.app.register_main_hook`` is\n  deprecated and will be removed as of ``cone.app`` version 1.1.\n  [rnix, 2019-03-21]\n\n- Convert doctests to unittests.\n  [rnix, 2019-03-21]\n\n- Do not use ``cone.tile.register_tile`` any more. Create dedicated tile\n  classes and use ``cone.tile.tile`` all over the place.\n  [rnix, 2017-02-21]\n\n\n1.0a12 (2018-11-20)\n-------------------\n\n- Introduce ``show_confirm_deleted`` on\n  ``cone.app.browser.authoring.DeleteAction`` which can be used to prevent\n  \"Item has been deleted\" ajax continuation message.\n  [rnix, 2018-11-20]\n\n- Add default favicon.ico.\n  [rnix, 2018-11-19]\n\n\n1.0a11 (2018-11-07)\n-------------------\n\n- Add ``cone.light.browser.exception.not_found_view`` and ``not_found`` tile.\n  [rnix, 2018-09-11]\n\n- Move ``cone.light.browser.login.forbidden_view`` to\n  ``cone.app.browser.exception``.\n  [rnix, 2018-09-11]\n\n- Move registration of ``unauthorized`` tile from ``cone.app.browser.layout``\n  to ``cone.app.browser.exception``.\n  [rnix, 2018-09-11]\n\n- Move ``cone.app.browser.exception.format_traceback`` to\n  ``cone.app.browser.utils``.\n  [rnix, 2018-09-11]\n\n\n1.0a10 (2018-07-17)\n-------------------\n\n- Modify response body of ``request.response`` and return this one instead of\n  creating a new response in ``cone.app.browser.render_ajax_form`` to ensure\n  response header modifications gets delivered properly.\n  [rnix, 2018-07-12]\n\n- Batched items filter input fields may provide a prefilled text which gets\n  emptied on first focus. Use ``empty_filter`` CSS class on input field for\n  this.\n  [rnix, 2017-12-20]\n\n- Introduce ``cone.batcheditems_size_binder`` and\n  ``cone.batcheditems_filter_binder`` helper functions in ``protected.js``.\n  [rnix, 2017-12-20]\n\n\n1.0a9 (2017-11-13)\n------------------\n\n- Add ``quote_params`` keyword argument to ``cone.app.browser.utils.make_query``\n  to control explicitely if some request paramater values should be URL quoted.\n  Needed to make ``cone.app.browser.authoring.CameFromNext`` work properly if\n  ``came_from`` URL contains a query on it's own.\n  [rnix, 2017-11-07]\n\n\n1.0a8 (2017-10-10)\n------------------\n\n- Include related view in ``cone.app.browser.contents.ContentsViewLink.target``\n  if present and node is container, otherwise ``target`` of superclass.\n  [rnix, 2017-10-09]\n\n- Revert use ``urllib2.quote`` in ``cone.app.browser.utils.make_query`` to\n  quote query parameter values.\n  [rnix, 2017-10-09]\n\n- ``safe_decode`` keys to check for current node in ``NavTree.fillchildren``.\n  [rnix, 2017-09-27]\n\n\n1.0a7 (2017-09-17)\n------------------\n\n- Update to ``bdajax`` 1.10 and adopt server side ajax form processing code.\n  [rnix, 2017-09-12]\n\n\n1.0a6 (2017-08-28)\n------------------\n\n- Use ``RelatedViewConsumer`` on ``cone.app.browser.batch.BatchedItems``\n  and ``cone.app.browser.table.Table``.\n  [rnix, 2017-07-23]\n\n- Use ``RelatedViewProvider`` on ``listing`` and ``sharing`` tile.\n  [rnix, 2017-07-23]\n\n- Add related view support. This includes ``set_related_view``,\n  ``get_related_view``, ``RelatedViewProvider`` and ``RelatedViewConsumer``\n  in ``cone.app.browser``.\n  [rnix, 2017-07-23]\n\n- Introduce dedicated ``href`` and ``target`` keys for batch vocab\n  pages. Makes it possible to consider view names. ``url`` key still works\n  as B/C, but will be removed as of ``cone.app`` 1.1.\n  [rnix, 2017-07-23]\n\n- Copy passed ``path`` in ``cone.app.browser.utils.make_url`` to avoid\n  modification of given argument.\n  [rnix, 2017-07-23]\n\n- Use ``urllib2.quote`` in ``cone.app.browser.utils.make_query`` to quote\n  query parameter values.\n  [rnix, 2017-07-19]\n\n- Include query when setting browser path in ``cone.batcheditemsbinder`` JS.\n  [rnix, 2017-07-19]\n\n- Update to ``bdajax`` 1.9 and adopt bdajax binder function registration.\n  [rnix, 2017-07-19]\n\n\n1.0a5 (2017-05-15)\n------------------\n\n- Add ajax overlay additional CSS class support which has been introduced in\n  ``bdajax`` 1.8\n  [rnix, 2017-05-12]\n\n\n1.0a4 (2017-03-28)\n------------------\n\n- Fix children filtering in ``cone.app.browser.contents.ContentsTile`` if\n  title or creator from metadata is ``None``.\n  [rnix, 2017-03-28]\n\n- Fix ``href`` link creation of ``ActionList``, ``ActionSharing`` and\n  ``ActionEdit`` in ``cone.app.browser.actions`` to ensure correct links if\n  ``target`` gets overwritten on subclass.\n  [rnix, 2017-03-28]\n\n- Consolidate ``batcheditemsbinder`` and ``tabletoolbarbinder`` in\n  ``protected.js``.\n  [rnix, 2017-03-28]\n\n- ``cone.app.browser.actions.ActionUp`` sets ``href`` properly.\n  [rnix, 2017-03-28]\n\n- Introduce ``logout`` tile.\n  [rnix, 2017-03-23]\n\n- Move ``login_view``, ``logout_view`` and ``forbidden_view`` from\n  ``cone.app.browser`` to ``cone.app.browser.login``.\n  [rnix, 2017-03-23]\n\n- Catch ``Forbidden`` exception explicitely in ``ajaxaction`` JSON view and\n  set 403 response status in order to ensure bdajax redirects to login view\n  properly.\n  [rnix, 2017-03-23]\n\n- Ajax path is not longer set on server side in layout tile via ajax\n  continuation but explicitely via ``ajax:path`` in markup where appropriate.\n  [rnix, 2017-03-23]\n\n- ``cone.app.browser.actions.LinkAction`` now supports ``path``,\n  ``path_target``, ``path_action``, ``path_event`` and ``path_overlay``.\n  [rnix, 2017-03-23]\n\n- ``cone.app.browser.ajax.AjaxPath`` now supports ``target``, ``action``,\n  ``event`` and ``overlay``.\n  [rnix, 2017-03-23]\n\n- Update to ``bdajax`` 1.7 which supports browser history handling for ajax\n  actions.\n  [rnix, 2017-03-23]\n\n- Rename ``nodepath`` to ``node_path`` in ``cone.app.browser.utils``. B/C\n  ``nodepath`` is suppoerted as of ``cone.app`` 1.1.\n  [rnix, 2017-03-23]\n\n\n1.0a3\n-----\n\n- Add ``BatchedItems`` tile to ``cone.app.browser.batch``.\n  [rnix, 2017-02-21]\n\n- Add ``trigger_event`` and ``trigger_selector`` to ``cone.app.browser.Batch``\n  to make ajax JS event and selector customizble.\n  [rnix, 2017-02-21]\n\n\n1.0a2\n-----\n\n- Provide ``icon`` on ``ReferencableChildrenLink`` to render node icons in\n  ``referencelisting`` tile.\n  [rnix, 2017-02-07]\n\n- Fix referencebrowser navigation root lookup and render\n  ``referencebrowser_pathbar`` and ``referencelisting`` tiles on proper\n  context in ``referencebrowser`` tile.\n  [rnix, 2017-02-07]\n\n- Add ``cone.app.browser.referencebrowser.ReferenceBrowserModelMixin``.\n  [rnix, 2017-02-07]\n\n- Handle unicode properly in ``cone.app.model.ConfigProperties``.\n  [rnix, 2017-02-07]\n\n- Move ``safe_encode`` and ``safe_decode`` utility functions from\n  ``cone.app.browser.utils`` to ``cone.app.utils``.\n  [rnix, 2017-02-07]\n\n- Section name for ``cone.app.model.ConfigProperties`` can be customized.\n  [rnix, 2017-02-06]\n\n- Check whether owner already has been set in\n  ``cone.app.security.OwnerSupport.__init__`` and skip setting it if so.\n  [rnix, 2017-01-29]\n\n\n1.0a1\n-----\n\n- Display ``userid`` in peronal tools if ``fullname`` found but empty.\n  [rnix, 2015-04-11]\n\n- ``sort_key`` not mandatory on column definitions any longer in tables.\n  [rnix, 2015-02-23]\n\n- URL's may contain umlaute.\n  [rnix, 2015-02-18]\n\n- Application nodes can be marked as root for navigation tree by setting\n  ``is_navroot`` property to True.\n  [rnix, 2015-02-17]\n\n- No default values for admin user and password from ini file if not set.\n  [rnix, 2014-12-01]\n\n- Main menu can display first level children in dropdown menu if\n  ``model.properties.mainmenu_display_children`` is set to ``True``.\n  [rnix, 2014-09-08]\n\n- Add login form actions to form compound. Thus login form actions can be\n  extended keeping UI rednering sane.\n  [rnix, 2014-09-04]\n\n- Default model layout lookup considers ``default_child`` property.\n  [rnix, 2014-08-28]\n\n- Remove ``yafowil.yaml`` dependency.\n  [rnix, 2014-08-26]\n\n- Refactor ``cone.app.browser.AddDropdown``. It provides now a ``make_item``\n  for better customizability.\n  [rnix, 2014-08-21]\n\n- Rename ``cone.app.model.registerNodeInfo`` to\n  ``cone.app.model.register_node_info``. B/C import avaiable as of ``cone.app``\n  1.1.\n  [rnix, 2014-08-19]\n\n- Rename ``cone.app.model.getNodeInfo`` to ``cone.app.model.get_node_info``.\n  B/C import avaiable as of ``cone.app`` 1.1.\n  [rnix, 2014-08-19]\n\n- Modify ``class_add`` instead of ``class`` property in\n  ``cone.app.browser.form.Form.prepare_ajax``.\n  [rnix, 2014-08-16]\n\n- Default layout lookup mechanism is done via ZCA adapter. Provide default\n  ``__init__`` function on ``cone.app.model.Layout``.\n  [rnix, 2014-08-13]\n\n- Deprecate ``cone.app.register_plugin``. Use ``cone.app.register_entry``\n  instead.\n  [rnix, 2014-08-13]\n\n- Deprecate ``cone.app.register_plugin_config``. Use\n  ``cone.app.register_config`` instead.\n  [rnix, 2014-08-13]\n\n- Settings link in personaltools gets skipped if there are no settings nodes\n  registered.\n  [rnix, 2014-08-13]\n\n- Add example ``twisted.cfg`` buildout configuration and ``cone.tac`` twisted\n  configuration file for running cone with twisted WSGI.\n  [rnix, 2014-08-02]\n\n- Adopt ``IWorkflowState`` interface. Workflow name is now set directly\n  on node. Optional a trnaslation string factory can be set for workflow\n  state and transision translations.\n  [rnix, 2014-08-01]\n\n- Use ``plumbing`` decorator instead of ``plumber`` metaclass.\n  [rnix, 2014-08-01]\n\n- Introduce ``list`` permission, bind ``listing`` and ``contents`` tile to it\n  and adopt default ACL's.\n  [rnix, 2014-07-26]\n\n- Improve forbidden view, renders unauthorized tile in case user is\n  authenticated, otherwise redirect to login form.\n  [rnix, 2014-07-26]\n\n- All Authoring forms are no longer derived from ``ProtectedContentTile``.\n  [rnix, 2014-07-26]\n\n- ``OverlayForm`` now renders by default to ``#ajax-overlay`` instead of\n  ``#ajax-form``. Latter is supposed to be used if overlay form should be\n  rendered above an already opened overlay.\n  [rnix, 2014-07-25]\n\n- Introduce ``OverlayAddForm`` and ``OverlayEditForm``.\n  [rnix, 2014-07-24]\n\n- ``OverlayForm`` renders ``overlayform`` form tile instead of\n  ``overlayeditform``.\n  [rnix, 2014-07-24]\n\n- Authoring forms cleanup. Rename ``AddBehavior`` to ``ContentAddForm``,\n  ``EditBehavior`` to ``ContentEditForm`` and ``OverlayBehavior`` to\n  ``OverlayForm``.\n  [rnix, 2014-07-24]\n\n- Introduce ``ILiveSearch`` adapter interface and remove\n  ``cone.app.browser.ajax.LIVESEARCH_CALLBACK``.\n  [rnix, 2014-07-15]\n\n- Move over to ``typeahead.js`` for livesearch.\n  [rnix, 2014-07-14]\n\n- ``cone.app.cfg.layout`` not exists any longer. Register ``ILayout`` providing\n  adapter for application nodes in order to customize layout configuration.\n  [rnix, 2014-07-14]\n\n- Add ``node_info`` decorator.\n  [rnix, 2014-07-11]\n\n- Trigger ``contextchanged`` to ``#layout`` rather than ``.contextsensitiv``\n  in ``mainmenu``, ``logo``, ``pathbar``, ``navtree``.\n  [rnix, 2014-07-11]\n\n- Introduce ``layout`` tile.\n  [rnix, 2014-07-11]\n\n- Provide Layout configuration via ``AppNode``.\n  [rnix, 2014-07-11]\n\n- Remove ``cone.app.util.AppUtil``.\n  [rnix, 2014-07-11]\n\n- Workflow state only gets initialized at node creation time if not set at\n  corresponding data yet. Needed for non persisting application nodes.\n  [rnix, 2014-07-09]\n\n- Content forms are now wrapped by a bs3 panel element.\n  [rnix, 2014-07-09]\n\n- Introduce ``skip_mainmenu`` in ``model.properties``. Gets considered in\n  mainmenu.\n  [rnix, 2014-07-09]\n\n- Settings are displayed in personaltools menu rather than navtree and\n  mainmenu.\n  [rnix, 2014-07-09]\n\n- ``personaltools`` tile now renders ``cone.app.browser.actions.LinkAction``\n  based items.\n  [rnix, 2014-07-09]\n\n- Use bootstrap 3 related resources for bdajax integration.\n  [rnix, 2014-07-04]\n\n- Remove custom dropdown from ``cone.app.js``. Boostrap dropdown is used all\n  over the place.\n  [rnix, 2014-07-03]\n\n- Introduce ``cone.app.browser.batch.BATCH_RANGE`` which can be used for\n  default batch range configuration.\n  [rnix, 2014-07-03]\n\n- Remove ``cone.app.utils.node_icon_url``.\n  [rnix, 2014-07-03]\n\n- Include ionicons.\n  [rnix, 2014-07-02]\n\n- Introduce ``cone.app.is_remote_resource``.\n  [rnix, 2014-06-27]\n\n- CSS background image path from site root.\n  [rnix, 2014-06-27]\n\n- Fix yafowil JS resources delivery order.\n  [rnix, 2014-06-19]\n\n- Do not fail in ``cone.app.browser.actions.Action.action_scope`` if no\n  ``ActionContext`` defined. Useful for testing.\n  [rnix, 2014-06-18]\n\n- Update jQuery, jQuery-UI and remove jQuery Tools.\n  [rnix, 2013-08-13]\n\n- ``cone.app.model.Properties`` now supports ``__setitem__`` and setting file\n  ``path`` manually.\n  [rnix, 2013-08-06]\n\n- No more generic tabs binder, refactor settings tabs.\n  [rnix, 2013-08-06]\n\n- Change base styles to twitter bootstrap 3.\n  [rnix, 2013-08-05]\n\n\n0.9.5\n-----\n\n- ``lxml`` is no longer a hard dependency.\n  [rnix, 2014-01-18]\n\n- Factory node can be invalidated now.\n  [rnix, 2014-01-15]\n\n- Update jQuery, jQuery-UI and remove jQuery Tools.\n  [rnix, 2013-08-13]\n\n- ``cone.app.model.Properties`` now supports ``__setitem__`` and setting file\n  ``path`` manually.\n  [rnix, 2013-08-06]\n\n- No more generic tabs binder, refactor settings tabs.\n  [rnix, 2013-08-06]\n\n- Change base styles to twitter bootstrap.\n  [rnix, 2013-08-05]\n\n- Test request can be flagged as XHR request.\n  [rnix, 2013-03-23]\n\n- Improve exception view to handle default error page and bdajax action\n  requests. Move Exception code to ``cone.app.browser.exception``.\n  [rnix, 2013-02-10]\n\n- Introduce ``cone.app.browser.utils.request_property``.\n  [rnix, 2013-02-05]\n\n- Do not load ``cone.app.js`` merged, ensures to be loaded after bdajax.\n  [rnix, 2013-01-20]\n\n- Check if autocomplete plugin is available in ``cone.app.js`` when trying to\n  bind livesearch.\n  [rnix, 2013-01-08]\n\n- Make yafowil resources beeing delivered public as well.\n  [rnix, 2013-01-08]\n\n- Possibility to skip yafowil resource groups, deliver yafowil resources\n  before addon resources.\n  [rnix, 2013-01-08]\n\n- Remove yafowil addon widgets from default setup dependencies.\n  [rnix, 2013-01-04]\n\n\n0.9.4\n-----\n\n- Introduce ``Table.display_table_header`` and ``Table.display_table_footer``\n  properties.\n  [rnix, 2012-10-30]\n\n- Introduce ``cone.app.browser.actions.DropdownAction``.\n  [rnix, 2012-10-28]\n\n- Introduce ``row_data`` on ``ContentsTile`` for customizing column data on\n  ``ContentsTile`` deriving objects.\n  [rnix, 2012-10-28]\n\n- ``model.properties.action_delete_tile`` can be set if\n  ``model.properties.action_delete`` is True. Used to define the content tile\n  which gets rendered on parent of model after deleting.\n  [rnix, 2012-10-26]\n\n- Available child nodes of ``ContentsTile`` can be controlled by\n  ``listable_children``.\n  [rnix, 2012-10-26]\n\n- Introduce ``show_slicesize`` on tables.\n  [rnix, 2012-10-19]\n\n- PEP-8.\n  [rnix, 2012-10-16]\n\n- Python2.7 Support.\n  [rnix, 2012-10-16]\n\n- Rename parts to behaviors.\n  [rnix, 2012-07-29]\n\n- adopt to ``node`` 0.9.8\n  [rnix, 2012-07-29]\n\n- adopt to ``plumber`` 1.2\n  [rnix, 2012-07-29]\n\n- use fresh Chameleon and fix tests to recognize correct output of new Chameleon\n  [jensens, 2012-07-04]\n\n\n0.9.3\n-----\n\n- Add basic print CSS.\n  [rnix, 2012-05-29]\n\n- ``contextmenu`` tile got a ``bdajax`` contract.\n  [rnix, 2012-05-23]\n\n- CSS and JS can be delivered merged if desired.\n  [rnix, 2012-05-22]\n\n- Move resources rendering to seperate module.\n  [rnix, 2012-05-21]\n\n- Add ``form_flavor`` attribute to ``cone.app.browser.form.YAMLForm``.\n  [rnix, 2012-05-18]\n\n- Add ``cone.app.model.UUIDAsName`` part.\n  [rnix, 2012-05-18]\n\n- Use ``zope.interface.implementer`` instead of ``zope.interface.implements``.\n  [rnix, 2012-05-18]\n\n- Remove BBB classes ``come.app.model.BaseNodeInfo`` and\n  ``cone.app.model.BaseMetadata``.\n  [rnix, 2012-05-18]\n\n- Consider ``default_content_tile`` in application ini in order to support\n  configuring root content tile.\n  [rnix, 2012-05-14]\n\n- Support bdajax overlay continuation as introduced in bdajax 1.4.\n  [rnix, 2012-05-04]\n\n- Move AJAX forms related markup and javascript to bdajax.\n  [rnix, 2012-05-04]\n\n- Add property ``head_additional`` to table tile. Supposed to be used for\n  hooking additional markup to table header.\n  [rnix, 2012-05-03]\n\n- Fix bug in navtree when displaying children of node with ``hide_if_default``\n  property set.\n  [rnix, 2012-04-26]\n\n- Consider ``default_child`` property in UP action and action scope.\n  [rnix, 2012-04-24]\n\n- Include ``yafowil.widget.image``.\n  [rnix, 2012-04-21]\n\n- Improve ajax form rendering.\n  [rnix, 2012-04-19]\n\n- Ajaxify settings tabs.\n  [rnix, 2012-04-19]\n\n- Add resizeable plugin to jQuery UI custom built.\n  [rnix, 2012-03-27]\n\n\n0.9.2\n-----\n\n- Resources also can originate at a remote server.\n  [rnix, 2012-03-21]\n\n\n0.9.1\n-----\n\n- Better table and batch templates and styles. Table now supports slice size\n  selection and filtering.\n  [rnix, 2012-03-19]\n\n- Fix default ``sort`` and ``order`` request parameters for table batch.\n  [rnix, 2012-03-16]\n\n- Cleanup self contained buidlout.\n  [rnix, 2012-02-29]\n\n- Remove ``cone.app.APP_PATH``.\n  [rnix, 2012-02-29]\n\n- Adopt YAFOWIL addon registration to YAFOWIL 1.3\n  [rnix, 2012-02-29]\n\n- Use ``node.ext.ugm.interfaces.Users.id_for_login`` contract for remembering\n  User id instead of login name in authentication cookie.\n  [rnix, 2012-01-18]\n\n- Dynamic width CSS\n  [rnix, 2011-12-18]\n\n- Extend UI actions by ``selected`` property.\n  [rnix, 2011-12-16]\n\n- Add ``cone.app.model.UUIDAttributeAware``.\n  [rnix, 2011-12-07]\n\n- Add ``cone.app.security.OwnerSupport``.\n  [rnix, 2011-12-07]\n\n- Add ``cone.app.security.ACLRegistry``.\n  [rnix, 2011-12-07]\n\n- Use ``node.parts.IUUIDAware`` as dependency for node beeing referencable.\n  [rnix, 2011-12-02]\n\n- Add ``browser.actions``.\n  [rnix, 2011-12-01]\n\n- Update jQuery (1.6.4) and jQuery Tools (1.2.6).\n  [rnix, 2011-11-30]\n\n- Add copy support.\n  [rnix, 2011-11-30]\n\n- Single UGM implementation.\n  [rnix, 2011-11-21]\n\n- Add ``PrincipalACL`` part and ``sharing`` tile.\n  [rnix, 2011-11-21]\n\n- Refactor contextmenu, can now be extended.\n  [rnix, 2011-11-19]\n\n- Add margin top for sidebar and content.\n  [rnix, 2011-11-18]\n\n- ``contextmenu`` tile considers ``action_up_tile`` property now.\n  [rnix, 2011-11-17]\n\n- Add ``bda.calendar.base`` as install dependency for timezone aware \n  datetime handling.\n  [rnix, 2011-11-16]\n\n- Show error message at attempt to add reference with missing UID.\n  [rnix, 2011-11-16]\n\n- Add yafowil.widget.array to dependencies.\n  [rnix]\n\n\n0.9\n---\n\n- Initial work\n\n\nLicense\n=======\n\nCopyright (c) 2009-2021, BlueDynamics Alliance, Austria\nCopyright (c) 2021-2022, Cone Contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n  list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice, this\n  list of conditions and the following disclaimer in the documentation and/or\n  other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
    "bugtrack_url": null,
    "license": "Simplified BSD",
    "summary": "Web application stub",
    "version": "1.0.7",
    "project_urls": {
        "Homepage": "http://github.com/conestack/cone.app"
    },
    "split_keywords": [
        "node",
        "pyramid",
        "cone",
        "web"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c2ff0be16081710246ed34b91d1666ef9d780956be90bbc3509f41461c12de9",
                "md5": "5d99760f80be87dc37b125fd5d5485d9",
                "sha256": "2bb4a1aff16ce90e42c30135a2b2510799bd7ec0b36ce071557f26840b42214a"
            },
            "downloads": -1,
            "filename": "cone.app-1.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5d99760f80be87dc37b125fd5d5485d9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 888005,
            "upload_time": "2023-05-15T11:33:02",
            "upload_time_iso_8601": "2023-05-15T11:33:02.555146Z",
            "url": "https://files.pythonhosted.org/packages/0c/2f/f0be16081710246ed34b91d1666ef9d780956be90bbc3509f41461c12de9/cone.app-1.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "541afdbff070731bad656ed6a1d9f593cd055fa0a02edb31d38b0c3b5cdbaca1",
                "md5": "f570618b06ad7d15bef3d7eff7f13d49",
                "sha256": "ddee6b61dea4dd1f996f22d29f1de95e90caba18eb0494065afb32bf25fb78c5"
            },
            "downloads": -1,
            "filename": "cone.app-1.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "f570618b06ad7d15bef3d7eff7f13d49",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 849447,
            "upload_time": "2023-05-15T11:33:06",
            "upload_time_iso_8601": "2023-05-15T11:33:06.861049Z",
            "url": "https://files.pythonhosted.org/packages/54/1a/fdbff070731bad656ed6a1d9f593cd055fa0a02edb31d38b0c3b5cdbaca1/cone.app-1.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-15 11:33:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "conestack",
    "github_project": "cone.app",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "cone.app"
}
        
Elapsed time: 0.19418s