Metadata-Version: 1.1
Name: gocept.bbissues
Version: 0.2
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]
            log = issues.log
            # The next line is optional it defaults to index.jj2 in the package
            template_path = template.jj2
        
            [bitbucket]
            projects = owner:project1
                       owner:project2
        
            [github]
            projects = owner:project1
                       owner: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.2 (2016-01-13)
        ================
        
        - Add Github as issue source.
        
        
        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
