Skip to content

Commit

Permalink
Fix up links in documentation
Browse files Browse the repository at this point in the history
* Update github links to go to livio organization repo
* Add travisci image
  • Loading branch information
jmichalicek committed Dec 13, 2016
1 parent 0942914 commit d9a95d5
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 18 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Types of Contributions
Report Bugs
~~~~~~~~~~~

Report bugs at https://github.com/Mobelux/DocDown-Python/issues.
Report bugs at https://github.com/livio/DocDown-Python/issues.

If you are reporting a bug, please include:

Expand Down Expand Up @@ -45,7 +45,7 @@ articles, and such.
Submit Feedback
~~~~~~~~~~~~~~~

The best way to send feedback is to file an issue at https://github.com/Mobelux/DocDown-Python/issues.
The best way to send feedback is to file an issue at https://github.com/livio/DocDown-Python/issues.

If you are proposing a feature:

Expand Down Expand Up @@ -102,7 +102,7 @@ Before you submit a pull request, check that it meets these guidelines:
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 2.7, 3.2, 3.3, 3.4 and 3.5, and for PyPy. Check
https://travis-ci.org/Mobelux/DocDown-Python/pull_requests
https://travis-ci.org/livio/DocDown-Python/pull_requests
and make sure that the tests pass for all supported Python versions.

Tips
Expand Down
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ Python DocDown

Python DocDown is a suite of extensions for `Python Markdown`_.

.. image:: https://pyup.io/repos/github/Mobelux/DocDown-Python/shield.svg
:target: https://pyup.io/repos/github/Mobelux/DocDown-Python/
:alt: Updates
.. image:: https://travis-ci.org/livio/DocDown-Python.svg?branch=master
:target: https://travis-ci.org/livio/DocDown-Python


Documentation
Expand Down
4 changes: 2 additions & 2 deletions docdown/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-

__author__ = """Justin Michalicek"""
__email__ = 'justin@mobelux.com'
__author__ = """Jason Emerick"""
__email__ = 'jason@mobelux.com'
__version__ = '0.1.0'
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

# General information about the project.
project = u'Python DocDown'
copyright = u"2016, Mobelux"
copyright = u"2016, Livio"

# The version info for the project you're documenting, acts as replacement
# for |version| and |release|, also used in various other places throughout
Expand Down Expand Up @@ -210,7 +210,7 @@
latex_documents = [
('index', 'python_docdowntex',
u'Python DocDown Documentation',
u'Mobelux', 'manual'),
u'Livio', 'manual'),
]

# The name of an image file (relative to this directory) to place at
Expand Down Expand Up @@ -241,7 +241,7 @@
man_pages = [
('index', 'python_docdown',
u'Python DocDown Documentation',
[u'Mobelux'], 1)
[u'Livio'], 1)
]

# If true, show URL addresses after external links.
Expand All @@ -256,7 +256,7 @@
texinfo_documents = [
('index', 'python_docdown',
u'Python DocDown Documentation',
u'Mobelux',
u'Livio',
'python_docdown',
'One line description of project.',
'Miscellaneous'),
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ You can either clone the public repository:

.. code-block:: console
$ git clone git://github.com/Mobelux/DocDown-Python
$ git clone git://github.com/livio/DocDown-Python
Or download the `tarball`_:

.. code-block:: console
$ curl -OL https://github.com/Mobelux/DocDown-Python/tarball/master
$ curl -OL https://github.com/livio/DocDown-Python/tarball/master
Once you have a copy of the source, you can install it with:

Expand All @@ -47,5 +47,5 @@ Once you have a copy of the source, you can install it with:
$ python setup.py install
.. _Github repo: https://github.com/Mobelux/DocDown-Python
.. _tarball: https://github.com/Mobelux/DocDown-Python/tarball/master
.. _Github repo: https://github.com/livio/DocDown-Python
.. _tarball: https://github.com/livio/DocDown-Python/tarball/master
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
long_description=readme + '\n\n' + history,
author="Jason Emerick, Justin Michalicek",
author_email='[email protected], [email protected]',
url='https://github.com/Mobelux/DocDown-Python',
url='https://github.com/livio/DocDown-Python',
packages=[
'docdown',
],
Expand All @@ -42,7 +42,6 @@
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
Expand Down

0 comments on commit d9a95d5

Please sign in to comment.