Metadata-Version: 1.1
Name: django-git-brokenlink-track
Version: 1.2.dev
Summary: Django app which automates the issue creation on Git for broken links.
Home-page: https://github.com/tarunbehal/django-git-brokenlink-track
Author: Tarun Behal
Author-email: tarunbehal@hotmail.com
License: MIT
Description: =====
        DJANGO GIT BROKENLINK TRACKING
        =====
        
        DJANGO GIT BROKENLINK TRACKING is a Django app which provides a middleware which can be used to generate Git Issue whenever the application encounters 404 page.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "git_brokenlink_track" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'git_brokenlink_track',
            ]
        
        2. Include "git_brokenlink_track.middleware.GitIssueTrackMiddleware" in the MIDDLEWARE_CLASSES like this::
        
            MIDDLEWARE_CLASSES = [
                ...
                'git_brokenlink_track.middleware.GitIssueTrackMiddleware',
            ]
        
        3. Add DJANGO GIT BROKENLINK TRACKING settings in your settings file:
        	GBT_DEBUG_MODE = True # If set to true issues will be logged in debug mode as well, default False
        	GBT_REPO_OWNER = 'repo_owner'
        	GBT_REPO_NAME = 'repo_name'
        	GBT_ACCESS_TOKEN = 'user_access_token'
        	GBT_ISSUE_LABEL = [] # multiple labels can be specified in an array ['broken-link', '404']
        
        4. Restart your development server
Keywords: git bug tracking django broken link
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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 :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Bug Tracking
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Classifier: Topic :: Software Development :: Quality Assurance
