1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Description: fix some things in the docs
sloppy copyright span, version number; fix paths to examples
Author: Daniel Stender <stender@debian.org>
Last-Update: 2016-02-29
Applied-Upstream: not-needed
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -41,16 +41,16 @@
# General information about the project.
project = u'Hovercraft!'
-copyright = u'2013, Lennart Regebro'
+copyright = u'2013-2016, Lennart Regebro'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
-version = '1.0'
+version = '2.1'
# The full version, including alpha/beta/rc tags.
-release = '1.0'
+release = '2.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -64,7 +64,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
-exclude_patterns = []
+exclude_patterns = ['examples']
# The reST default role (used for this markup: `text`) to use for all documents.
#default_role = None
--- a/docs/presentations.rst
+++ b/docs/presentations.rst
@@ -422,7 +422,7 @@
.. _book: http://python3porting.com/
.. _Pygments: http://pygments.org/
.. _languages: http://pygments.org/docs/lexers/
-.. _hovercraft.rst: ./_sources/examples/hovercraft.txt
-.. _tutorial.rst: ./_sources/examples/tutorial.txt
-.. _positions.rst: ./_sources/examples/positions.txt
-.. _Reveal.js: http://lab.hakim.se/reveal-js/
\ No newline at end of file
+.. _hovercraft.rst: ../examples/hovercraft.rst
+.. _tutorial.rst: ../examples/tutorial.rst
+.. _positions.rst: ../examples/positions.rst
+.. _Reveal.js: http://lab.hakim.se/reveal-js/
|