Metadata-Version: 1.1
Name: gocept.bbissues
Version: 0.1
Summary: Collect issues from multiple bitbucket repositories and generate a nice html page.
Home-page: https://bitbucket.org/gocept/gocept.bbissues/
Author: gocept <mail@gocept.com>
Author-email: mail@gocept.com
License: ZPL 2.1
Description: ================================
        The gocept.bbissues distribution
        ================================
        
        Collect open issues from multiple bitbucket repositories and generate a nice html page.
        
        This package is compatible with Python version 2.7.
        
        You have to provide a config file with the following content:
        
        ```
        [config]
        template_path = /path/to/template
        log = /path/to/logfile
        projects = your_project1
            your_project2
        ```
        
        
        The template will be rendered using jinja2, and could have the following content:
        
        
        ```
        {% for project in projects %}
        
        <h2>{{project.name}}</h2>
        
        {% for issue in project.issues %}
        
        <h3>{{issue.title}}</h3>
         <pre>
         {{issue.title}}
         {{issue.content}}
         {{issue.status}}
         {{issue.created}}
         {{issue.priority}}
         {{issue.url}}
         {{issue.author}}
         </pre>
        
        {% endfor %}
        
        {% endfor %}
        ```
        
        ==========================
        Developing gocept.bbissues
        ==========================
        
        :Author:
            `gocept <http://gocept.com/>`_ <mail@gocept.com>
        
        :Online documentation:
            https://pythonhosted.org/gocept.bbissues/
        
        :PyPI page:
            https://pypi.python.org/pypi/gocept.bbissues
        
        :Issues:
            `report by e-mail <mail@gocept.com>`_
        
        :Source code:
            https://bitbucket.org/gocept/gocept.bbissues
        
        :Current change log:
            https://bitbucket.org/gocept/gocept.bbissues/raw-file/tip/CHANGES.txt
        
        
        ==============================
        Change log for gocept.bbissues
        ==============================
        
        0.1 (2015-04-08)
        ================
        
        initial release
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2 :: Only
