diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/conf.py | 8 | ||||
-rw-r--r-- | doc/index.rst | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/conf.py b/doc/conf.py index 61c85a2..e9dc2bc 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -228,12 +228,12 @@ autodoc_default_flags = ['members', 'show-inheritance', 'inherited-members'] # + autosummary_generate = False rst_epilog = """ -.. |homepage| replace:: http://snakeoil.googlecode.com/ -.. |release_url| replace:: http://code.google.com/p/snakeoil/downloads/ +.. |homepage| replace:: https://github.com/pkgcore/snakeoil +.. |release_url| replace:: https://github.com/pkgcore/snakeoil/releases """ % {"release":release} extlinks = { - 'git_tag':('http://code.google.com/p/snakeoil/source/list?name=%s', 'git log '), - 'git_release':('http://code.google.com/p/snakeoil/downloads/detail?name=snakeoil-%s.tar.bz2', + 'git_tag':('https://github.com/pkgcore/snakeoil/releases/tag/%s', 'git log '), + 'git_release':('https://github.com/pkgcore/snakeoil/archive/%s.tar.gz', 'release download ') } diff --git a/doc/index.rst b/doc/index.rst index 368c3e7..4686983 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -17,7 +17,7 @@ Snakeoil's naming was chosen partially as a python analog of `liboil <http://lib on the common meaning of `Snake Oil <http://en.wikipedia.org/wiki/Snake_oil>`_; specifically a supposed miracle cure that has no effect. To be clear, this package `does` have some very powerful functionality and optimizations available, and its usage is well known to speed -things up: the `pkgcore <http://pkgcore.googlecode.com>`_ package manager from which this +things up: the `pkgcore <https://github.com/pkgcore/pkgcore>`_ package manager from which this library was derived, makes heavy usage of these optimizations- further in a simple test usage of :py:class:`snakeoil.caching.WeakInstMeta` to `portage <http://www.gentoo.org/proj/en/portage/>`_'s Atom class, ``emerge -ep system`` was sped up by 7% with a 20% memory reduction- specifically via just adding @@ -51,7 +51,7 @@ For IRC, the core developers are generally accessible for bugs/questions via `th Getting the source (downloading releases or trunk) -------------------------------------------------- -Snakeoil vcs of choice is `git <http://git.scm.org/>`_, and our source can be checked out at https://code.google.com/p/snakeoil +Snakeoil vcs of choice is `git <http://git.scm.org/>`_, and our source can be checked out at https://github.com/pkgcore/snakeoil All releases are available at |release_url|\., with release news available at :ref:`releases`\. |