Metadata-Version: 1.1
Name: kotti-navigation
Version: 0.3a1
Summary: Add a configurable navigation to your Kotti site
Home-page: http://pypi.python.org/pypi/kotti_navigation
Author: Marco Scheidhuber
Author-email: j23d@jusid.de
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: ================
        kotti_navigation
        ================
        
        This is an extension to the Kotti CMS that renders a navigation in the
        left or right slot.
        
        `Find out more about Kotti`_
        
        Setting up the navigation widget
        ================================
        
        To set up the navigation widget to display on every page in Kotti on the
        left side add ``kotti_navigation.kotti_configure`` to the
        ``kotti.configurators`` setting in your ini file::
        
            kotti.configurators = kotti_navigation.kotti_configure
        
        To set up the navigation widget on the right side you have to use the
        pyramid.includes option in your ini file::
        
            pyramid.includes = 
                ...
                kotti_navigation.include_navigation_widget_right
        
        To exclude the root of the site from the navigation, set the
        ``kotti_navigation.navigation_widget.include_root`` variable.::
        
            kotti.configurators = kotti_navigation.kotti_configure
            kotti_navigation.navigation_widget.include_root = false
        
        To open the whole navigation all the time, set the
        ``kotti_navigation.navigation_widget.open_all`` variable. This is useful if
        you plan to set up a popup menu via css or javascript::
        
            kotti.configurators = kotti_navigation.kotti_configure
            kotti_navigation.navigation_widget.open_all = false
        
        
        You can exclude specific content types from the whole navigation
        structure. If you not want to show images in the navigation at all,
        set the ``kotti_navigation.navigation_widget.exclude_content_types`` 
        variable to the following.::
        
            kotti_navigation.navigation_widget.exclude_content_types = 
                kotti.resources.Image
        
        
        .. _Find out more about Kotti: http://pypi.python.org/pypi/Kotti
        
        Thanks
        ======
        
        Thanks to the following people for support, code, patches etc:
        
          - Andreas Kaiser (disko)
        
        Changelog
        =========
        
        0.3a1 (2012-12-04)
        ------------------
        * Changes for compatibility with Kotti>=0.8. These changes
          are not backward compatibel. If you want to use kotti_navigation
          with Kotti<=0.7.x then pin kotti_navigation to 0.2.
          * Use new children_with_permission function on context.
        * Use view_config decoration for views.
        
        
        0.2 (2012-08-15)
        ----------------
        
        * Use assign_slot for slots instead of depricated register slot. [j23d]
        
        
        0.2a3 (2012-07-02)
        ------------------
        
        * Move border from bottom to top for submenu. [j23d]
        
        
        0.2a2 (2012-06-18)
        ------------------
        
        * Fix structure of navigation list. [j23d]
        
        
        0.2a1 (2012-06-16)
        ------------------
        
        * Move to fanstatic for static resource inclusion. [disko]
        * Added option to exclude content types from the navigation. [j23d]
        
        
        0.1
        ---
        
        * Initial release [j23d]
        
Keywords: kotti addon navigation
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Framework :: Pylons
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Classifier: License :: Repoze Public License
