~ubuntu-branches/ubuntu/raring/python-docutils/raring-201211091312

« back to all changes in this revision

Viewing changes to HISTORY.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jakub Wilk
  • Date: 2010-07-24 09:03:32 UTC
  • mfrom: (11.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100724090332-n30aqcft3axs8xd3
* Upload to unstable.
* Replace patch to fix --local option for tools/buildhtml.py
  (17_revert_buildhtml.diff) with the one that was applied upstream
  (buildhtml-local.diff).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
:Author: David Goodger; open to all Docutils developers
8
8
:Contact: goodger@python.org
9
 
:Date: $Date: 2009-10-11 14:39:33 +0200 (Son, 11 Okt 2009) $
10
 
:Revision: $Revision: 6166 $
 
9
:Date: $Date: 2010-07-07 11:06:31 +0200 (Mit, 07 Jul 2010) $
 
10
:Revision: $Revision: 6355 $
11
11
:Web site: http://docutils.sourceforge.net/
12
12
:Copyright: This document has been placed in the public domain.
13
13
 
14
14
.. contents::
15
15
 
16
16
 
 
17
Changes Since 0.7
 
18
=================
 
19
 
 
20
Release 0.7 (2010-07-07)
 
21
========================
 
22
 
 
23
* General:
 
24
 
 
25
  - Fix [ 2881769 ] setup configuration.
 
26
  - Fix [ 2788716 ] reporting problems in included files.
 
27
 
 
28
* docutils/io.py
 
29
 
 
30
  - FileInput opens files as text files with universal newline support
 
31
    (mode "rU", configurable with the new optional argument "mode").
 
32
 
 
33
* docutils/nodes.py
 
34
 
 
35
  - Fix [ 2975987 ] repr(Text) failed with long string (Jeffrey C. Jacobs).
 
36
 
 
37
* docutils/utils.py
 
38
 
 
39
  - Fix [ 2923723 ] let decode_path() tolerate path == None
 
40
 
 
41
* docutils/writers/html4css1/__init__.py
 
42
 
 
43
  - Support SVG and SWF images (thanks to Stefan Rank).
 
44
  - Generate valid XHTML for centered images with targets.
 
45
    Use CSS classes instead of "align" tags for image alignment.
 
46
 
 
47
* docutils/writers/latex2e/__init__.py
 
48
 
 
49
  - Use `transforms.writer_aux.Admonitions` to "normalize" special
 
50
    admonitions.
 
51
  - Use the ``\url`` command for URLs (breaks long URLs instead of
 
52
    writing into the margin).
 
53
  - Preserve runs of spaces in `inline literals`__.
 
54
  - Deprecate ``figure_footnotes`` setting.
 
55
  - Rename ``use_latex_footnotes`` setting to `docutils_footnotes`__.
 
56
  - New ``latex_preamble`` setting.
 
57
  - Use PDF standard fonts (Times/Helvetica/Courier) as default.
 
58
  - Fix hyperlink targets (labels) for images, figures, and tables.
 
59
  - Apply [ 2961988 ] Load babel after inputenc and fontenc.
 
60
  - Apply [ 2961991 ] Call hyperref with unicode option.
 
61
  - Drop the special `output_encoding`__ default ("latin-1").
 
62
    The Docutils wide default (usually "UTF-8") is used instead.
 
63
  - Render inline markup in document title and subtitle.
 
64
  - Fix numbering depth with LaTeX section numbering.
 
65
  - Update Unicode -> LaTeX translations.
 
66
  - Fix bug with topic directive (thanks to Alan G Isaac for reporting).
 
67
 
 
68
__ docs/ref/restructuredtext.html#inline-literals
 
69
__ docs/user/config.html#docutils-footnotes
 
70
__ docs/user/config.html#output_encoding
 
71
 
 
72
* docutils/writers/manpage.py
 
73
 
 
74
  - Fix: supported attribute (thanks to peter2108).
 
75
  - Remove trailing blanks in code (keep in sync with mercurial version).
 
76
  - Titles level 1, that is ``.SH``, always uppercase.
 
77
  - Apply patch from mg: literal text should be bold in man-pages.
 
78
 
 
79
* docutils/nodes.py
 
80
 
 
81
  - Fix: encoding ``'ascii'`` must be lowercase to prevent problems for
 
82
    turkish locale.
 
83
 
 
84
* setup.py:
 
85
 
 
86
  - Python 3 support: copy test/ and tools/ to the build-dir
 
87
    and convert Python sources with 2to3.
 
88
 
 
89
 
17
90
Release 0.6 (2009-10-11)
18
91
========================
19
92