Skip to content

Commit 3043dfc

Browse files
committed
Merge
2 parents 46469c2 + d9dd6db commit 3043dfc

File tree

6 files changed

+14
-27
lines changed

6 files changed

+14
-27
lines changed

.hgignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ locale/*.mo
4242
locale/*.bak
4343
locale/*.poedit
4444
website/www/_tmp/
45+
website/www/COPYING.txt
4546
website/www/docs
4647
website/www/html/

CHANGES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@ Fixed:
6969
also consume xml data and do something different. So require the use
7070
of 'http(s)://.../xmlrpc' uri to trigger the xmlrpc interface.
7171
(John Rouillard)
72+
- issue2550774: Remove generating documentation with rst2html, and update the
73+
README.txt with how to create the html docs using sphinx, thanks Kai Storbeck
74+
(John Kristensen)
75+
- issue2550774: Include doc/conf.py in the release tarball, so people can build
76+
their own documentation in html, thanks Kai Storbeck (John Kristensen)
77+
- issue2550774: Update website/www/Makefile to symlink COPYING.txt so "make"
78+
works again, thanks Kai Storbeck (John Kristensen)
7279

7380
2012-05-15: 1.4.20
7481

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ recursive-include doc *.html *.png *.txt *.css *.1 *.example
88
recursive-include detectors *.py
99
recursive-include templates *.* home* page*
1010
global-exclude .svn .cvsignore *.pyc *.pyo .DS_Store
11-
include run_tests.py *.txt demo.py MANIFEST.in MANIFEST
11+
include run_tests.py *.txt demo.py MANIFEST.in MANIFEST doc/conf.py
1212
exclude BUILD.txt I18N_PROGRESS.txt TODO.txt
1313
exclude doc/security.txt doc/templating.txt
1414
include locale/*.po locale/*.mo locale/roundup.pot

README.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ Usage and Other Information
3737
===========================
3838
See the index.txt file in the "doc" directory.
3939
The *.txt files in the "doc" directory are written in reStructedText. If
40-
you have rst2html installed (part of the docutils suite) you can convert
41-
these to HTML by running "make html" in the "doc" directory.
40+
you have Sphinx installed, you can convert these to HTML by running
41+
$ python setup.py build_doc
42+
from the top of the release directory.
4243

4344

4445
For Developers

doc/Makefile

Lines changed: 0 additions & 23 deletions
This file was deleted.

website/www/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ help:
99
@echo " linkcheck to check all external links for integrity"
1010

1111
clean:
12-
-rm -rf $(TMP)
12+
-rm -rf $(TMP) $(HTML) docs COPYING.txt
1313

1414
docs:
1515
ln -s ../../doc ./docs
16+
ln -s ../../COPYING.txt
1617

1718
html: docs
1819
mkdir -p $(TMP)/doctrees $(HTML)

0 commit comments

Comments
 (0)