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 52 53 54
|
From: Daniel Stender <stender@debian.org>
Date: Wed, 20 Nov 2019 15:29:32 -0500
Subject: fix some things in the docs
sloppy copyright span, version number; fix paths to examples
Last-Update: 2016-02-29
Applied-Upstream: not-needed
---
docs/conf.py | 6 +++---
docs/presentations.rst | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index f8a8e38..e37cd77 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -41,16 +41,16 @@ master_doc = 'index'
# General information about the project.
project = u'Hovercraft!'
-copyright = u'2013, Lennart Regebro'
+copyright = u'2013-2019, 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.7'
# The full version, including alpha/beta/rc tags.
-#release = '1.0'
+release = '2.7b1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/docs/presentations.rst b/docs/presentations.rst
index cac19a6..5e5bf10 100644
--- a/docs/presentations.rst
+++ b/docs/presentations.rst
@@ -642,9 +642,9 @@ included with Hovercraft!
.. _book: http://python3porting.com/
.. _Pygments: http://pygments.org/
.. _languages: http://pygments.org/docs/lexers/
-.. _hovercraft.rst: https://raw.githubusercontent.com/regebro/hovercraft/master/docs/examples/hovercraft.rst
-.. _tutorial.rst: https://raw.githubusercontent.com/regebro/hovercraft/master/docs/examples/tutorial.rst
-.. _positions.rst: https://raw.githubusercontent.com/regebro/hovercraft/master/docs/examples/positions.rst
+.. _hovercraft.rst: ./examples/hovercraft.rst
+.. _tutorial.rst: ./examples/tutorial.rst
+.. _positions.rst: ./examples/positions.rst
.. _Reveal.js: http://lab.hakim.se/reveal-js/
.. _MathJax: http://www.mathjax.org/
.. _custom docutils directive: http://docutils.sourceforge.net/docs/howto/rst-directives.html
|