Metadata-Version: 1.0
Name: pyramid-viewgroup
Version: 0.3
Summary: An anlologue of Zope 3 "content providers" for Pyramid
Home-page: http://docs.pylonshq.com
Author: Chris McDonough, Agendaless Consulting
Author-email: pylons-discuss@googlegroups.com
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: pyramid_viewgroup
        ====================
        
        ``pyramid_viewgroup`` is an extension for the ``pyramid`` web framework. The
        extensio makes it possible to make a ``viewgroup`` declaration which acts
        much like ``view`` inasmuch as it results in a Pyramid view registration.
        Unlike a "normal" ``view`` registration, however, a ``viewgroup``
        registration refers to one or more other Pyramid views (matching them by
        name, ``for`` interface, and request type).  When a ``viewgroup`` is invoked
        (either via traversal or via programmatic view execution), a viewgroup will
        return a response which appends all the referenced view renderings together
        in a single body.
        
        For more information see http://docs.pylonshq.com/pyramid_viewgroup/dev/
        
        
        
        0.3 (2011-02-10)
        ----------------
        
        - Basically didn't actually work, due to too much deferring of calling
          ``add_view``.
        
        - Add an includeme and a way to do imperative configuration of a viewgroup;
          internal reshuffling.
        
        0.2 (2011-01-18)
        ----------------
        
        - Make compatible with Pyramid 1.0a10+.
        
        0.1 (2010-11-08)
        ----------------
        
        - Forked from repoze.bfg.viewgroup 0.3.
        
Keywords: web wsgi pyramid pylons zope3 content provider
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Framework :: Pylons
