Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
gevent
Commits
e4cc40c0
Commit
e4cc40c0
authored
9 years ago
by
Jason Madden
Browse files
Options
Download
Email Patches
Plain Diff
Make the changelog link to github issues/pull requests. [skip ci]
parent
a2aefc05
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
104 additions
and
94 deletions
+104
-94
changelog.rst
changelog.rst
+96
-92
doc/conf.py
doc/conf.py
+8
-2
No files found.
changelog.rst
View file @
e4cc40c0
This diff is collapsed.
Click to expand it.
doc/conf.py
View file @
e4cc40c0
...
...
@@ -37,10 +37,16 @@ if not os.path.exists('changelog.rst') and os.path.exists('../changelog.rst'):
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions
=
[
'sphinx.ext.autodoc'
,
'sphinx.ext.doctest'
,
'sphinx.ext.coverage'
,
'sphinx.ext.intersphinx'
,
'mysphinxext'
]
extensions
=
[
'sphinx.ext.autodoc'
,
'sphinx.ext.doctest'
,
'sphinx.ext.coverage'
,
'sphinx.ext.intersphinx'
,
'mysphinxext'
,
'sphinx.ext.extlinks'
]
intersphinx_mapping
=
{
'http://docs.python.org/'
:
None
}
extlinks
=
{
'issue'
:
(
'https://github.com/gevent/gevent/issues/%s'
,
'issue #'
),
'pr'
:
(
'https://github.com/gevent/gevent/pull/%s'
,
'pull request #'
)}
# Add any paths that contain templates here, relative to this directory.
templates_path
=
[
'_templates'
]
...
...
@@ -55,7 +61,7 @@ master_doc = 'contents'
# General information about the project.
project
=
u
'gevent'
copyright
=
u
'2009-201
1
, gevent contributors'
copyright
=
u
'2009-201
5
, gevent contributors'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment