Package: python-docutils / 0.12+dfsg-1
Metadata
Package | Version | Patches format |
---|---|---|
python-docutils | 0.12+dfsg-1 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
python3 pil no bytestrings.diff | (download) |
docutils/parsers/rst/directives/images.py |
7 5 + 2 - 0 ! |
python 3: don't pass byte strings to pil.image.open() With Python 3.X, pass Unicode strings (rather than byte strings) to PIL.Image.open(). . This is to work around a PIL bug: http://bugs.debian.org/708449 |
iepngfix license.diff | (download) |
docutils/writers/s5_html/themes/default/iepngfix.htc |
2 1 + 1 - 0 ! |
update license information for ie png alpha fix. Upstream author of IE PNG Alpha Fix agreed that every version of his script can be distributed under the terms of the LGPL 2.1 or later version. |
doc debian paths.diff | (download) |
README.txt |
21 19 + 2 - 0 ! |
change paths in documentation to match debian's Change paths in documentation to match Debian's. Debian policy recommends not having extensions like .py on script names, and buildhtml seems too generic a name. |
emacs sensible browser.diff | (download) |
tools/editors/emacs/rst.el |
2 1 + 1 - 0 ! |
use sensible-browser to preview s5 slides. Use sensible-browser (rather than firefox, which does not exist in Debian) as a program to preview S5 slides. |
testall no stdout stderr redirect.diff | (download) |
test/alltests.py |
3 0 + 3 - 0 ! |
don't copy test suite output to a log. When running the test suite, don't copy stdout and stderr output to a log file, as this would break under LC_ALL=C, PYTHONWARNINGS=d and python3.X. |
no test skipping.diff | (download) |
test/test_writers/test_odt.py |
1 1 + 0 - 0 ! |
do not skip tests. If Build-Depends are satisfied, importing ElementTree should not fail. If it does, it's better to fail than to skip the test silently. |
parallel 2to3.diff | (download) |
setup.py |
12 12 + 0 - 0 ! |
run 2to3 in parallel |
test sys path.diff | (download) |
test/DocutilsTestSupport.py |
7 2 + 5 - 0 ! |
fix sys.path for tests Fix sys.path in the test support module so that is matches paths that are in the Debian package. |
move data to usr share.diff | (download) |
docutils/__init__.py |
15 15 + 0 - 0 ! |
allow all data files to be moved to /usr/share/docutils/. |
no local roman.diff | (download) |
docutils/parsers/rst/states.py |
3 2 + 1 - 0 ! |
use the "roman" module from python-roman instead of the local copy. |
rst2odt_prepstyles elementtree.diff | (download) |
tools/rst2odt_prepstyles.py |
34 26 + 8 - 0 ! |
port rst2odt_prepstyles to elementtree rst2odt_prepstyles uses lxml to parse, modify and write XML. Use ElementTree, which is shipped with Python >= 2.5, in place of lxml. Bug-Debian: http://bugs.debian.org/714319 |
odt writer ascii filenames.diff | (download) |
docutils/writers/odf_odt/__init__.py |
6 3 + 3 - 0 ! |
use only ascii filenames in the odf packages generated by the odt writer The odf_odt writer embeds images in its output files and uses the original filenames as part of the embedded filenames. Since the OpenDocument standard does not specify the filename charset, recode to ASCII (dropping non-representable characters) to be on the safe side. This patch also removes an invalid assumption about the encoding used internally by the interpreter, which has caused Debian bug #714317, and fixes #714313. |