Metadata-Version: 2.1
Name: sphinx-autoissues
Version: 0.0.1a0
Summary: Sphinx integration with different issuetrackers
Home-page: https://sphinx-autoissues.git-pull.com
License: MIT
Keywords: sphinx,docutils,issues,pull requests
Author: Tony Narlock
Author-email: tony@git-pull.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Software Development :: Localization
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Provides-Extra: coverage
Provides-Extra: docs
Provides-Extra: format
Provides-Extra: lint
Provides-Extra: test
Project-URL: Bug Tracker, https://github.com/tony/sphinx-autoissues/issues
Project-URL: Changes, https://github.com/tony/sphinx-autoissues/blob/master/CHANGES
Project-URL: Documentation, https://sphinx-autoissues.git-pull.com
Project-URL: Repository, https://github.com/tony/sphinx-autoissues
Description-Content-Type: text/x-rst

#################
sphinx_autoissues
#################

.. image:: https://secure.travis-ci.org/tony/sphinx_autoissues.png
   :target: http://travis-ci.org/tony/sphinx_autoissues

http://sphinx_autoissues.git-pull.com/

This is a fork of Sebastian Wiesner <lunaryorn@gmail.com>'s excellent
sphinxcontrib-issuetracker_ plugin.

.. _sphinxcontrib-issuetracker: https://github.com/lunaryorn/sphinxcontrib-issuetracker

A Sphinx_ extension to reference issues in issue trackers, either explicitly
with an "issue" role or optionally implicitly by issue ids like ``#10`` in
plaintext.

Currently the following issue trackers are supported:

- `GitHub <http://github.com>`_
- `BitBucket <http://bitbucket.org>`_
- `Launchpad <https://launchpad.net>`_
- `Google Code <http://code.google.com>`_
- `Debian BTS <http://bugs.debian.org>`_
- `Jira <http://www.atlassian.com/software/jira/>`_

A simple API is provided to add support for other issue trackers.  If you added
support for a new tracker, please consider sending a patch to make your work
available to other users of this extension.


Installation
------------

This extension can be installed from the `Python Package Index`_::

   pip install sphinx_autoissues

This extension requires Sphinx 1.1 and Python 2.6 or Python 3.1.


Usage
-----

Just add this extension to ``extensions`` and configure your issue tracker::

   extensions = ['sphinx_autoissues']

   issuetracker = 'github'
   issuetracker_project = 'tony/sphinx_autoissues'

Now issue references like ``#10`` are replaced with links to the issue tracker
of this extension, unless the reference occurs in literal text like inline
literals or code blocks.

You can disable this magic behaviour by setting issuetracker_plaintext_issues
to ``False``::

   issuetracker_plaintext_issues = False

Now textual references are no longer replaced. However, you can still explicitly
reference issues with the ``issue`` role.

For more details refer to the documentation_.


Support
-------

Please report issues to the `issue tracker`_ if you have trouble, found a bug in
this extension or lack support for a specific issue tracker, but respect the
following rules:

- Check that the issue has not already been reported.
- Check that the issue is not already fixed in the ``master`` branch.
- Open issues with clear title and a detailed description in grammatically
  correct, complete sentences.


Development
-----------

The source code is hosted on Github_:

   git clone https://github.com/tony/sphinx_autoissues

Please fork the repository and send pull requests with your fixes or cool new
features, but respect the following rules:

- Read `how to properly contribute to open source projects on GitHub
  <http://gun.io/blog/how-to-github-fork-branch-and-pull-request/>`_.
- Use a topic branch to easily amend a pull request later, if necessary.
- Write `good commit messages
  <http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html>`_.
- Squash commits on the topic branch before opening a pull request.
- Respect :pep:`8` (use `pep8`_ to check your coding style compliance)
- Add unit tests
- Open a `pull request <https://help.github.com/articles/using-pull-requests>`_
  that relates to but one subject with a clear title and description in
  grammatically correct, complete sentences.


.. _Sphinx: http://sphinx.pocoo.org/latest
.. _documentation: http://sphinx_autoissues.readthedocs.org
.. _Python package index: http://pypi.python.org/pypi/sphinx_autoissues
.. _issue tracker: https://github.com/tony/sphinx_autoissues/issues/
.. _pep8: http://pypi.python.org/pypi/pep8/

