Metadata-Version: 1.0
Name: pyramid_genshi
Version: 0.1.1
Summary: Genshi template bindings for the Pyramid web framework
Home-page: https://bitbucket.org/victorlin/pyramid_genshi
Author: Victor Lin
Author-email: bornstub@gmail.com
License: MIT
Description: pyramid_genshi
        ==============
        
        Bindings for `Genshi <http://genshi.edgewall.org/>`_ templating support under
        `Pyramid <http://docs.pylonsproject.org/>`_.
        
        To use pyramid_genshi, simply include pyramid_genshi in your Pyramid main 
        function::
        
            config.include('pyramid_genshi')
            
        And you can use it as you use other template::
        
            @view_config(route_name='home',
                         renderer='my_project:templates/home.genshi')
            def home(request):
                return 'Hello world'
                
        Settings
        --------
                
        To adjust output format, you can change `genshi.default_format` ::
        
            genshi.default_format = xhtml
            
        To adjust output encoding, you can change `genshi.default_encoding` ::
        
            genshi.default_encoding = cp950
            
        To adjust output doctype, you can change `genshi.default_doctype` ::
        
            genshi.default_doctype = html5
           
        To adjust the default i18n domain, you can change `genshi.default_domain` ::
        
            genshi.default_domain = my_domain
            
        For available options, you can reference to 
        `<http://genshi.edgewall.org/wiki/Documentation/0.6.x/plugin.html>`_
        
        0.1.1
        -----
        
        - Add genshi.default_encoding setting option
        - Add genshi.default_doctype setting option
        - Add genshi.default_format setting option (same as genshi.method in 0.1.0)
        
        0.1.0
        -----
        
        -  Initial version
        
Keywords: bfg pyramid pylons genshi templates
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
