docutils.utils is now a package (providing a place for sub-modules)
[docutils.git] / HISTORY.txt
blob19baff2b9aeaa21fa80fbef2821cf17f8693ffc4
1 .. -*- coding: utf-8 -*-
3 ==================
4  Docutils History
5 ==================
7 :Author: David Goodger; open to all Docutils developers
8 :Contact: goodger@python.org
9 :Date: $Date$
10 :Revision: $Revision$
11 :Web site: http://docutils.sourceforge.net/
12 :Copyright: This document has been placed in the public domain.
14 .. contents::
17 Changes Since 0.8.1
18 ===================
20 * General:
22   - reStructuredText "code" role and directive with syntax highlighting
23     by Pygments_.
24   - "code" option of the "include" directive.
25   - Fix parse_option_marker for option arguments containing ``=``.
27 .. _Pygments: http://pygments.org/
29 * docutils/io.py
31   - Fix [ 3395948 ] (Work around encoding problems in Py3k).
33 * docutils/utils.py -> docutils/utils/__init__.py
35   - docutils.utils is now a package (providing a place for sub-modules)
37   .. important:: docutils/math, docutils/error_reporting.py, and
38      docutils/urischemes.py will move to the utils package in the next
39      release, too. Code importing these modules needs to adapt
40      (``import docutils.math`` -> ``import docutils.utils.math``, etc.).
42   - DependencyList uses io.FileOutput and 'utf8' encoding to prevent
43     errors recording non-ASCII filenames (fixes [ 3434355 ].
45 * docutils/parsers/rst/states.py
47   - Fix [ 3402314 ] allow non-ASCII whitespace, punctuation
48     characters and "international" quotes around inline markup.
50 * docutils/parsers/rst/tableparser.py
52   - Fix [ 2926161 ] for simple tables.
53     (Combining chars in grid tables still contribute to cell width.)
55 * docutils/writers/latex2e/__init__.py
57   - Support the `abbreviation` and `acronym` standard roles.
58   - Record only files required to generate the LaTeX source as dependencies.
60 * docutils/writers/html4css1/__init__.py
62   - change default for `math-output` setting to MathJax
64 Release 0.8.1 (2011-08-30)
65 ==========================
67 * General:
69   - Fix [ 3364658 ] (Change last file with Apache license to BSD-2-Clause)
70     and [ 3395920 ] (correct copyright info for rst.el).
72 * docutils/test/
74   -  Apply [ 3303733 ] and [ 3365041 ] to fix tests under py3k.
76 * docutils/writers/latex2e/__init__.py
78   - Clean up Babel language setting. Restores Sphinx compatibility.
80 Release 0.8 (2011-07-07)
81 ========================
83 * General:
85   - Handle language codes according to `BCP 47`_.
86   - If the specified language is not supported by Docutils,
87     warn and fall back to English.
88   - Math support: reStructuredText "math" role and directive,
89     ``math`` and ``math_block`` doctree elements.
90   - Decode command line arguments with the locale's preferred encoding
91     (to allow, e.g., ``--title=Dornröschen``).
92   - Orphaned "python" reader and "newlatex2e" writer moved to the sandbox.
93   - New sub-module `error_reporting`: handle encoding/decoding errors
94     when reporting exceptions.
95   - Some additions to the Docutils core are released under the 2-Clause BSD
96     license, see COPYING_ for details.
98   .. _BCP 47: http://www.rfc-editor.org/rfc/bcp/bcp47.txt
99   .. _COPYING: COPYING.html
101 * reStructuredText:
103   - Most directives now support a "name" option that attaches a
104     reference name.
106   - Directive content may start on the first line also when the directive
107     type accepts options.
109 * docs/dev/policies.txt:
111   - Recommend the 2-Clause BSD license
112     (http://www.spdx.org/licenses/BSD-2-Clause)
113     for code that is kept under the author's copyright.
115 * tools/buildhtml.py:
117   - Fix ``--local`` switch.
119 * Fix [ 3018371 ] Added Lithuanian mappings by Dalius Dobravolskas.
121 * docutils/writers/html4css1/__init__.py
123   - Set "lang" argument for objects with class argument
124     "language-<language tag>".
125   - New setting "math-output" with support for HTML, MathML, and LaTeX.
127 * docutils/writers/latex2e/__init__.py
129   - Fix [ 3043986 ] AttributeError using :local: with table of content.
130   - Place title data in the document preamble.
131   - Load `babel` package only if required.
132   - Update list of supported languages.
133   - New config setting "hyperref-options".
134     No hard-coded "unicode" hyperref option (clash with xetex).
135   - Set language for custom roles, paragraphs, block-quotes, and
136     line-quotes with class argument "language-<language tag>".
137   - Fix [ 3095603 ] wrong quotes output for russian and other languages.
138   - Convert image URI to a local file path.
139   - Apply [ 3148141 ] fix multicolumn support when a colspanning cell
140     has more than one paragraph (Wolfgang Scherer).
141   - \leavevmode before longtable only when needed (prevents spurious vspace)
142   - do not advance table counter for tables without caption
144 * docutils/writers/xetex/__init__.py
146   - New writer generating LaTeX code for compiling with ``xelatex``.
148     A separate writer (inheriting from latex2e) instead of a ``--xetex``
149     option allows separate config options for XeTeX vs. LaTeX2e.
151 * docutils/writers/manpage.py
153   - Fix: BUG#3219183 - vertical space in definition lists containing markup.
154   - Fix: vertical space cleaning for option group ``.``.
156 * tools/editors/emacs/rst.el:
158   - Fix [ 3001100 ] does not handle spaces in filenames
159     (thanks to Jakub Wilk)
161 * docutils/utils.py:
163   - strip whitespace from stylesheet arguments
164   - exclude combining chars from column_width()
165     (partial fix for [ 2926161 ])
167 * docutils/parsers/rst/directives/misc.py:
169   - Fix [ 1830389 ] Replace not breaking on getting system_messages from
170     nested_parse
172 * docutils/io.py:
174   - Do not close() sys.stdin, sys.stdout, or sys.stderr. Prevents
175     ``Exception ValueError: 'I/O operation on closed file.'`` with Python 3.
177 Release 0.7 (2010-07-07)
178 ========================
180 * General:
182   - Fix [ 2881769 ] setup configuration.
183   - Fix [ 2788716 ] reporting problems in included files.
185 * docutils/io.py
187   - FileInput opens files as text files with universal newline support
188     (mode "rU", configurable with the new optional argument "mode").
190 * docutils/nodes.py
192   - Fix [ 2975987 ] repr(Text) failed with long string (Jeffrey C. Jacobs).
194 * docutils/utils.py
196   - Fix [ 2923723 ] let decode_path() tolerate path == None
198 * docutils/writers/html4css1/__init__.py
200   - Support SVG and SWF images (thanks to Stefan Rank).
201   - Generate valid XHTML for centered images with targets.
202     Use CSS classes instead of "align" tags for image alignment.
204 * docutils/writers/latex2e/__init__.py
206   - Use `transforms.writer_aux.Admonitions` to "normalize" special
207     admonitions.
208   - Use the ``\url`` command for URLs (breaks long URLs instead of
209     writing into the margin).
210   - Preserve runs of spaces in `inline literals`__.
211   - Deprecate ``figure_footnotes`` setting.
212   - Rename ``use_latex_footnotes`` setting to `docutils_footnotes`__.
213   - New ``latex_preamble`` setting.
214   - Use PDF standard fonts (Times/Helvetica/Courier) as default.
215   - Fix hyperlink targets (labels) for images, figures, and tables.
216   - Apply [ 2961988 ] Load babel after inputenc and fontenc.
217   - Apply [ 2961991 ] Call hyperref with unicode option.
218   - Drop the special `output_encoding`__ default ("latin-1").
219     The Docutils wide default (usually "UTF-8") is used instead.
220   - Render inline markup in document title and subtitle.
221   - Fix numbering depth with LaTeX section numbering.
222   - Update Unicode -> LaTeX translations.
223   - Fix bug with topic directive (thanks to Alan G Isaac for reporting).
225 __ docs/ref/restructuredtext.html#inline-literals
226 __ docs/user/config.html#docutils-footnotes
227 __ docs/user/config.html#output_encoding
229 * docutils/writers/manpage.py
231   - Fix: supported attribute (thanks to peter2108).
232   - Remove trailing blanks in code (keep in sync with mercurial version).
233   - Titles level 1, that is ``.SH``, always uppercase.
234   - Apply patch from mg: literal text should be bold in man-pages.
236 * docutils/nodes.py
238   - Fix: encoding ``'ascii'`` must be lowercase to prevent problems for
239     turkish locale.
241 * setup.py:
243   - Python 3 support: copy test/ and tools/ to the build-dir
244     and convert Python sources with 2to3.
247 Release 0.6 (2009-10-11)
248 ========================
250 * General:
252   - Docutils is now compatible with Python versions from 2.3 up to 2.6
253     and convertible to 3.1 code.
255     + Node.__nonzero__ returns True instead of 1.
256     + use os.walk instead os.path.walk.
257     + minimize "types" module where possible.
258     + Backwards-compatible changes to remove python2.6 -3 deprecation warnings
259     + Text nodes now subclass unicode rather than UserString
260       (which is gone in python 3.0).
261     + 3.0 compatibility module docutils._compat
263     + Drop 2.2 compatibility workarounds.
264     + Drop extras/optparse.py and extras/textwrap.py
265       (stdlib modules since 2.3).
267   - OpenOffice export: ODT writer moved from sandbox to Doctutils core.
268   - Unix man page export: manpage writer moved from sandbox to Doctutils
269     core.
271   - Apply [ 1719345 ] Galician translation
272   - Apply [ 1905741 ] Polish translation
273   - Apply [ 1878977 ] make_id(): deaccent characters.
274   - Apply [ 2029251 ] return nonzero when tests fail.
275   - Fix [ 1692788 ] allow UTF-8 in style sheets.
276   - Fix [ 2781629 ] support non-ASCII chars in file names.
277   - Apply [ 2845002 ] let ``--no-raw`` disable raw *roles* too.
278   - Fix [ 2831643 ] by renaming DirectiveError.message to DirectiveError.msg
279   - Fix [ 2821266 ] --strict option works now like --halt=info.
280   - Fix [ 2788716 ] DirectiveError now correctly reports source and line.
281   - Fix [ 1627229 ] hyperlink references in substitutions.
283   - The "newlatex" writer is orphaned.
285 * reStructuredText:
287   - Documented Unicode characters allowed as inline markup openers,
288     closers, and delimiters.
289   - Allow units for all length specifications.
290   - Allow percent sign in "scale" argument of "figure" and "image" directives.
291   - Bugfix: The "figalign" argument of a figure now works as intended
292     (aligning the figure, not its contents).
293   - Align images with class "align-[right|center|left]"
294     (allows setting the alignment of an image in a figure).
296 * docutils/nodes.py:
298   - Added ``Element.__contains__`` method, for the in-operator.
300 * docutils/parsers/rst/states.py:
302   - Apply [ 1994493 ] Patch to support all kinds of quotes in inline markup.
303   - Added support for Unicode inline markup delimiters "‐ ‑ ‒ – —" and
304     " " (non-breaking space), and "¡ ¿" openers.
306 * docutils/parsers/directives/misc.py:
308   - Added ``start-line`` and ``end-line`` options to "include"
309     directive to select a range of lines.
310   - Hard tabs in literal inclusions are replaced by spaces. This is
311     configurable via the new ``tab-width`` option of the "include" directive
312     (a negative tab-width prevents tab expansion).
314 * docutils/utils.py:
316   - Add ``get_stylesheet_list`` function.
317   - Apply [ 2834836 ] print info at halt
319 * docutils/transforms/universal.py:
321   - Raise default priority of StripClasses to exclude stripped classes from
322     the ToC.
324 * docutils/writers/html4css1/__init__.py:
326   - ``--stylesheet`` and ``--stylesheet-path`` options support a comma
327     separated list of stylesheets.
328   - Address [ 1938891 ] Inline literal text creates "pre" span only when
329     needed to prevent inter-word line wraps.
330   - Use `translate` method instead of repeated `replace` calls.
331   - Fix [ 1757105 ] New ``table-style`` option. Added to standard table
332     classes to allow CSS styling that does not interfere with other
333     table-using constructs (field lists, citations, ...).
335 * docutils/writers/newlatex2e/__init__.py:
337   - Apply [ 1612821 ] Double quotes in literal text in Italian/German
339 * docutils/writers/latex2e/__init__.py (see also
340   `<docs/user/docutils-05-compat.sty.html>`__) :
342   - Add ``--embed-stylesheet`` option.
343   - Apply [ 1474017 ] image vertical alignment is reversed.
344   - Apply [ 2051599 ] multi-page tables in latex writer (from pabigot).
345   - Change: has_key for dictionaries (not Nodes) to in-operator.
346   - Merge adjacent citations into one latex cite command.
347   - Failsave implementation of custom roles. LaTeX compilation now ignores
348     unknown classes instead of aborting with an error.
349   - Support custom roles based on standard roles.
350   - LaTeX packages can be used as ``--stylesheet`` arguments without
351     restriction. (A style sheet is now referenced with the ``\usepackage``
352     command, if it ends with ``.sty`` or has no extension.)
353   - Add ``bp`` to lenghts without unit (prevents LaTex errors).
354   - Correctly write length unit ``pt`` as ``bp`` in LaTeX.
355   - Do not convert ``px`` to ``pt`` (``px`` is supported by pdfTeX since
356     2005-02-04 as a configurable length unit).
357   - Do not use fontenc, nor the obsolete 'ae' and 'aeguill' packages
358     if font-encoding is set to ''. LaTeX defaults to OT1 then.
359   - Set sub- and superscript role argument in text mode not as math.
360     Use a custom role based on sub-/superscript if you want italic shape.
361   - Shorter preamble and less dependencies: Load packages and define macros
362     only if required in the document.
363   - Use the name prefix ``DU`` for all Docutils specific LaTeX macros.
364   - New custom environments and commands with optional "classes" argument.
365   - Simpler LaTeX encoding, e.g. "\%" instead of "{\%}".
366   - Better conformance to Docutils specifications with ``--use-latex-toc``.
367     Support for LaTeX generated ToC also with unnumbered sections.
368   - If 'sectnum_xform' is False, the 'sectnum' directive triggers
369     section numbering by LaTeX.
370   - Use default font in admonitions and sidebar.
371   - Align of image in a figure defaults to 'center'.
372   - Bugfix: Newlines around targets and references prevent run-together
373     paragraphs.
374   - Fix internal hyperlinks.
375   - Use class defaults for page margins ('typearea' now optional).
376   - Float placement made configurable, default changed to "here definitely".
377   - Typeset generic topic as "quote block with title".
378   - Use template (file and configuration option).
379   - In the default template, load cmap.sty (fix text extraction in PDF) and
380     fixltx2e.sty (LaTeX patches, \textsubscript).
381   - Render doctest blocks as literal blocks (fixes [ 1586058 ]).
382   - Use `translate` instead of repeated `replace` calls for text encoding.
383   - Hyperlinked footnotes and support for symbol footnotes and
384     ``--footnote-references=brackets`` with ``--use-latex-footnotes``.
385   - Complete pairs of binary options
386     (``--figure-footnotes, --figure-citations, --link-stylesheet``,
387     ``--use-docutils-toc, --use-docutils-docinfo, --topic-abstract``)
388   - New defaults:
389     - font-encoding: "T1" (formerly implicitely set by 'ae').
390     - use-latex-toc: true (ToC with page numbers).
391     - use-latex-footnotes: true (no mixup with figures).
393 * docutils/writers/manpage.py
395   - Do not print version at document end, this is done by the viewer.
396   - Do not print date at document end, this is done by the viewer.
397   - Fix storage of docinfo fields for none standard fields.
399 * docutils/tools/rst2man.py
401 Release 0.5 (2008-06-25)
402 ========================
404 * docutils/languages/he.py: Added to project: Hebrew mappings by
405   Meir Kriheli.
407 * docutils/parsers/rst/languages/he.py: Added to project: Hebrew
408   mappings by Meir Kriheli.
410 * docutils/frontend.py:
412   - Configuration files are now assumed and required to be
413     UTF-8-encoded.
414   - Paths of applied configuration files are now recorded in the
415     runtime setting ``_config_files`` (accessible via
416     ``--dump-settings``).
417   - Added ``--strip-elements-with-class`` and ``--strip-class``
418     options (``strip_elements_with_classes`` and ``strip_classes``
419     settings).
421 * docutils/io.py:
423   - Added code to determine the input encoding from data: encoding
424     declarations or the presence of byte order marks (UTF-8 & UTF-16).
425   - Added support for IronPython 1.0.
427 * docutils/nodes.py:
429   - Added ``document.__getstate__`` method, for pickling.
431 * docutils/parsers/rst/states.py:
433   - Allow ``+`` and ``:`` in reference names.
434   - Unquoted targets beginning with an underscore (``.. __target:
435     URI``) are no longer accepted.
436   - Added support for multiple attributions in a physical block quote
437     (indented text block), dividing it into multiple logical block
438     quotes.
439   - Added support for unicode bullets in bullet lists: "•", "‣", and
440     "⁃".
441   - Added support for new object-oriented directive interface,
442     retaining compatibility to the old functional interface.
443   - Added support for throwing ``DirectiveError``'s from within
444     directive code.
446 * docutils/parsers/rst/__init__.py:
448   - Added ``Directive`` base class.
449   - Added ``DirectiveError`` base class.
450   - Fixed ``file_insertion_enabled`` & ``raw_enabled`` setting
451     definitions.
453 * docutils/parsers/directives/:
455   - Refactored all reStructuredText directives to use the new
456     object-oriented directive interface.  Errors are now (mostly)
457     thrown using the new ``DirectiveError`` class.
459 * docutils/parsers/directives/misc.py:
461   - Added ``start-after`` and ``end-before`` options to ``include``
462     directive; thanks to Stefan Rank.
464 * docutils/transforms/universal.py:
466   - Added ``StripClassesAndElements`` transform to remove from the
467     document tree all elements with classes in
468     ``settings.strip_elements_with_classes`` and all "classes"
469     attribute values in ``self.document.settings.strip_classes``.
471 * docutils/transforms/writer_aux.py:
473   - Added ``Admonitions`` transform to transform specific admonitions
474     (like ``note``, ``warning``, etc.) into generic admonitions with a
475     localized title.
477 * docutils/writers/html4css1/__init__.py:
479   - Moved template functionality from the PEP/HTML writer here.
480   - Expanded the fragments available in the ``parts`` attribute.
481   - Moved ``id`` attributes from titles to surrounding ``div``
482     elements.
483   - Dropped all ``name`` attributes of ``a`` elements (``id`` is
484     universally supported now).
485   - ``template.txt`` is now opened in text mode instead of binary mode
486     (to ensure Windows compatibility).
487   - ``a`` elements now have an "internal" or "external" class,
488     depending on reference type.
490 * docutils/writers/html4css1/template.txt: Added to project.
492 * docutils/writers/pep_html/:
494   - Moved template functionality to the HTML writer.
496 * docutils/writers/s5_html/__init__.py:
498   - Added ``view_mode`` & ``hidden_controls`` settings
499     (``--view-mode`` & ``--hidden-controls/--visible-controls``
500     options).
502 * docutils/writers/latex2e/__init__.py:
504   - Add ``--literal-block-env``
505   - Fix: escaping ``%`` in href urls.
506   - Move usepackage hyperref after stylesheet inclusion.
507   - Fix: scrartcl does not have chapter but scrreprt.
508   - Add newline after ``\end{verbatim}``.
509   - Merge smaller differences from latex2e_adaptive_preamble.
510   - Add ``use-part-section``.
511   - Put leavevmode before longtable to avoid having it moved before sub/pargraph.
512   - Using leavemode option_list no longer needs to check if parent
513     is a definition list.
514   - Append ``\leavemode`` to definition list terms.
515   - No longer write visit\_/depart_definition_list_item comments to
516     output.
517   - Table column width with 3 decimal places.
518   - Add table stubs support (boldfont).
519   - Add assemble_parts to writer.
520   - Add simply support for nested tables.
521   - Fix verbatim in tables if use-verbatim-when-possible.
522   - Use section commands down to subparagraph.
523   - Put ensuremath around some latin1 chars.
524   - Set ``usepackage[utf8x]{inputenc}`` for utf-8.
525   - New option ``--use-bibtex=style,db1,db2``.
526   - New option ``--reference-label`` to allow usage of LaTeX ref for
527     labels in section references.
528   - Add a label after every section to support sectionnumbers as reference
529     labels.
530   - Fix: bug# 1605376 rst2latex: bad options group list
531   - Remove inactive code for use_optionlist_for_option_list.
532   - Remove latex comments from option_list output.
533   - Fix: bug# 1612270 double qoutes in italian literal.
534   - Fix: output ``hypertarget{ node.get(refid) }{}`` from visit_target.
535   - Add option --use-latex-abstract.
536   - Image width unit ``px`` is translated to ``pt``.
537   - Add image height support.
538   - Fix: image width ``70%`` is converted ``0.700\linewidth``.
539     bug #1457388
540   - Fix: Do not escape underscores in citation reference labels if
541     use-latex-citations is set.
542   - Use centering instead of center for figure contents, to avoid vertical
543     space.
544   - Recognize table class: borderless, nolines, booktabs, standard.
545   - Fix: Renaming contents section does not work with latex writer; SF
546     bug #1487405.
547   - Applied patch for custom roles with classes from Edward Loper.
548   - Fixed bug that caused crashes with more than 256 lists.
550 * docutils/writers/pep_html/__init__.py:
552   - Changed to support new python.org website structure and
553     pep2pyramid.py.
555 * docs/howto/security.txt: "Deploying Docutils Securely", added to
556   project.
558 * tools/buildhtml.py:
560   -- Added ``ignore`` setting to exclude a list of shell patterns
561      (default: ``.svn:CVS``).
563 * tools/editors/emacs/rst.el:
565   - Changed license to "GPL".
566   - Added ``rst-straighten-decorations`` function.
567   - The ``compile`` module is now always loaded.
568   - Added ``rst-toggle-line-block`` function.
569   - Headings consisting only of non-ASCII characters are now
570     recognized by ``rst-toc`` and ``rst-adjust``.
571   - Added font-lock support for multi-line comments where the first
572     comment line is empty.
573   - Added ``(require 'font-lock)``.
575 * setup.py:
577   - Provide descriptive error message if distutils is missing.
580 Release 0.4 (2006-01-09)
581 ========================
583 * General:
585   - Updated the project policies for trunk/branch development &
586     version numbering.
588 * docutils/__init__.py:
590   - Added ``__version_details__`` attribute to describe code source
591     (repository/snapshot/release).
592   - Replaced ``default_transforms`` attribute of TransformSpec with
593     ``get_transforms()`` method.
595 * docutils/core.py:
597   - Added ``publish_doctree`` and ``publish_from_doctree`` convenience
598     functions, for document tree extraction and reprocessing.
600 * docutils/io.py:
602   - Added ``DocTreeInput`` class, for reprocessing existing documents.
603   - Added support for non-Unicode (e.g. binary) writer output.
605 * docutils/nodes.py:
607   - Re-introduced ``Targetable.indirect_reference_name``, for
608     MoinMoin/reST compatibility (removed in r3124/r3129).
609   - Added ``serial_escape`` function; escapes string values that are
610     elements of a list, for serialization.  Modified Docutils-XML
611     writing (``Element._dom_node``) and pseudo-XML writing
612     (``Element.starttag``) to use ``serial_escape``.
613   - Added ``Node.deepcopy()`` method.
614   - Removed the internal lists ``document.substitution_refs``,
615     ``document.anonymous_refs``, and ``document.anonymous_targets``.
616   - Added a "container" element.
617   - Fixed bug where values of list-valued attributes of elements
618     originating from custom interpreted text roles (i.e., with custom
619     classes) were being shared between element instances.  Reported by
620     Shmuel Zeigerman.
622 * docutils/statemachine.py:
624   - Added trailing whitespace stripping to ``string2lines()``.
625   - Added ``StringList.pad_double_width()`` & ``.replace()`` for East
626     Asian double-width character support.
628 * docutils/utils.py:
630   - Added ``east_asian_column_width()`` for double-width character
631     support.
633 * docutils/languages/ja.py: Added to project: Japanese mappings by
634   Hisashi Morita.
636 * docutils/languages/zh_cn.py: Added to project: Simplified Chinese
637   mappings by Panjunyong.
639 * docutils/parsers/null.py: Added to project; a do-nothing parser.
641 * docutils/parsers/rst/__init__.py:
643   - Added validator to tab_width setting, with test.  Closes SF bug
644     #1212515, report from Wu Wei.
646 * docutils/parsers/rst/states.py:
648   - Fixed bug with escaped colons indicating a literal block.
649   - Fixed bug with enumerated lists (SF#1254145).
650   - Backslash-escaped colons inside of field names are now allowed.
651   - Targets (implicit and explicit), anonymous hyperlink references
652     and auto-numbered footnote references inside of substitution
653     definitions are now disallowed.
654   - Fixed bug: list items with blank first lines.
655   - Fixed bug: block quote attributions with indented second lines.
656   - Added East Asian double-width character support (Python 2.4 only).
658 * docutils/parsers/rst/tableparser.py:
660   - Added East Asian double-width character support (Python 2.4 only).
662 * docutils/parsers/rst/directives/body.py:
664   - Added the "container" directive.
666 * docutils/parsers/rst/directives/misc.py:
668   - Added the "default-role", "title", and "date" directives.
669   - Added standard data file syntax to the "include" directive.
670   - Added support for "class" directive content.
672 * docutils/parsers/rst/directives/images.py:
674   - Added ``indirect_reference_name`` support for images with a target
675     option.
676   - Added support for image width and height units.
677   - Fixed bug with image "target" options.
679 * docutils/parsers/rst/directives/references.py:
681   - Added "class" attribute to "target-notes" directive, for
682     footnote_reference classes.
684 * docutils/parsers/rst/include/: Directory added to project; contains
685   standard data files for the "include" directive.  Initial contents:
686   character entity substitution definition sets, and a set of
687   definitions for S5/HTML presentations.
689 * docutils/parsers/rst/languages/ja.py: Added to project: Japanese
690   mappings by David Goodger.
692 * docutils/parsers/rst/languages/zh_cn.py: Added to project:
693   Simplified Chinese mappings by Panjunyong.
695 * docutils/readers/__init__.py:
697   - Added universal.Decorations and universal.ExposeInternals
698     transforms as default transforms for all readers.
699   - Added ``ReReader`` base class for readers that reread an existing
700     document tree.
702 * docutils/readers/doctree.py: Added to project; a reader for existing
703   document trees.
705 * docutils/transforms/frontmatter.py:
707   - Fixed the DocInfo transform to handle SVN-style expansion of the
708     "Date" keyword.
709   - In ``DocInfo.extract_authors``, treat the contents of "authors"
710     fields uniformly.
712 * docutils/transforms/misc.py:
714   - Added misc.Transitions transform, extracted from
715     universal.FinalChecks.
717 * docutils/transforms/references.py:
719   - Added references.DanglingReferences transform, extracted from
720     universal.FinalChecks.
721   - Fixed bug with doubly-indirect substitutions.
722   - Added footnote_reference classes attribute to "TargetNotes".
723   - Fixed bug with circular substitution definitions that put Docutils
724     into an infinite loop.
726 * docutils/transforms/universal.py:
728   - Added universal.ExposeInternals transform, extracted from
729     universal.FinalChecks.
730   - Removed universal.FinalChecks transform (logic has been moved to
731     several new transforms).
732   - Fixed bug with the "expose_internals" setting and Text nodes
733     (exposed by the "rawsource" internal attribute).
734   - Added the universal.StripComments transform, implementation of the
735     "strip_comments" setting.
737 * docutils/transforms/writer_aux.py: Added to project; auxiliary
738   transforms for writers.
740   - Added ``Compound`` transform, which flattens compound paragraphs.
742 * docutils/writers/: Several writer modules (html4css1.py) were
743   converted into packages.  Support modules and data files have been
744   moved into the packages.  The stylesheets for the HTML writers are
745   now installed along with the code, the code knows where to find
746   them, and the default is to use them (actually, to embed them).
747   Some adjustments to configuration files may be necessary.  The
748   easiest way to obtain the new default behavior is to remove all
749   settings whose name includes "stylesheet".
751 * docutils/writers/__init__.py:
753   - Added universal.Messages and universal.FilterMessages transforms
754     as default transforms for all writers.
755   - Added ``UnfilteredWriter`` base class for writers that pass the
756     document tree on unchanged.
758 * docutils/writers/docutils_xml.py:
760   - Made ``xmlcharrefreplace`` the default output encoding error
761     handler.
763 * docutils/writers/html4css1/:
765   - Added support for image width and height units.
766   - Made ``xmlcharrefreplace`` the default output encoding error
767     handler.
768   - Made ``--embed-stylesheet`` the default rather than
769     ``--link-stylesheet``.
770   - Moved "id" attribute from container (section etc.) to title's <a>
771     tag, to be on the same tag as "name".
772     (!!! To be reverted in Docutils 0.5.)
773   - Added vertical space between fields of field lists.
774   - Added ``--compact-field-lists`` option to remove vertical space in
775     simple field lists.
776   - Made cloaking of email addresses with ``--cloak-email-addresses``
777     less obtrusive.
778   - Fixed support for centered images.
779   - Added support for class="compact" & class="open" lists.
781 * docutils/writers/latex2e/:
783   - Underscores in citekeys are no longer escaped.
785 * docutils/writers/newlatex2e/unicode_map.py: Added to project;
786   mapping of Unicode characters to LaTeX equivalents.
788 * docutils/writers/s5_html/: Package added to project; writer for
789   S5/HTML slide shows.
791 * docs/dev/distributing.txt: Added to project; guide for distributors
792   (package maintainers).
794 * docs/dev/hacking.txt: Added to project; guide for developers.
796 * docs/ref/doctree.txt:
798   - Updated for plural attributes "classes", "ids", "names",
799     "dupnames".
800   - Added the "container" element.
802 * docs/ref/docutils.dtd:
804   - Updated for plural attributes "classes", "ids", "names",
805     "dupnames".
807 * docs/user/emacs.txt: Added to project; a document about Emacs
808   support for reStructuredText and Docutils.
810 * docs/user/links.txt: Added to project; lists of Docutils-related
811   links.
813 * docs/user/mailing-lists.txt: Added to project; information about
814   Docutils-related mailing lists and how to access them.
816 * docs/user/slide-shows.txt: Added to project; example of and docs for
817   the S5/HTML writer (``rst2s5.py`` front end).
819 * docs/ref/rst/definitions.txt: "reStructuredText Standard Definition
820   Files", added to project.
822 * test/coverage.sh: Added to project; test coverage script.
824 * test/DocutilsTestSupport.py:
826   - Added support for specifying runtime settings at the suite level.
828 * test/test_functional.py:
830   - Added the ``clear_output_directory`` function.
831   - Added support for ``_test_more`` functions in functional test
832     config files.
834 * tools/rst2s5.py: Added to project; front end for the S5/HTML writer.
836 * tools/rstpep2html.py: Renamed from pep.py.
838 * tools/dev/create_unimap.py: Added to project; script to create the
839   docutils/writers/unimap_latex.py mapping file.
841 * tools/dev/profile_docutils.py: Added to project; profiler script.
843 * tools/dev/unicode2rstsubs.py: Moved from tools/unicode2rstsubs.py.
845 * tools/editors/emacs/restructuredtext.el,
846   tools/editors/emacs/rst-html.el, tools/editors/emacs/rst-mode.el:
847   Removed from project; the functionality is now contained in rst.el.
849 * tools/editors/emacs/rst.el: Added to project.  Added many features
850   and fixed many bugs.  See docs/user/emacs.txt for details.
852 * tools/stylesheets: Removed from project.  Stylesheets have been
853   renamed and moved into writer packages.
856 Release 0.3.9 (2005-05-26)
857 ==========================
859 * General:
861   - Eliminated and replaced all uses of the old string attributes
862     ``id``, ``name``, ``dupname`` and ``class`` with references to the
863     new list attributes ``ids``, ``names``, ``dupnames`` and
864     ``classes`` throughout the whole source tree.
866 * docutils/core.py:
868   - Enabled ``--dump-*`` options when ``--traceback`` specified,
869     allowing for easier debugging.
870   - In ``Publisher.publish()``, expanded the generic top-level
871     exception catching.
873 * docutils/examples.py:
875   - Added ``internals`` function for exploration.
877 * docutils/io.py:
879   - Fixed ``Input.decode`` method to apply heuristics only if no
880     encoding is explicitly given, and to provide better reporting of
881     decoding errors.
882   - The ``Input.decode`` method now removes byte order marks (BOMs)
883     from input streams.
885 * docutils/nodes.py:
887   - ``image`` element class changed to subclass of Element, not
888     TextElement (it's an empty element, and cannot contain text).
889   - Added ``attr_defaults`` dictionary for default attribute values.
890   - Added empty list as default value for the following attributes:
891     ``ids``, ``names``, ``dupnames``, ``classes``, and ``backrefs``.
892   - Added ``document.decoration`` attribute,
893     ``document.get_decoration`` method, and ``decoration.get_header``
894     & ``.get_footer`` methods.
895   - Added ``Element.update_basic_atts()`` and ``Element.substitute()``
896     methods.
898 * docutils/utils.py:
900   - Removed ``docutils.utils.Reporter.categories``,
901     ``docutils.utils.ConditionSet``, and all references to them, to
902     simplify error reporting.
904 * docutils/languages/nl.py: Added to project; Dutch mappings by
905   Martijn Pieters.
907 * docutils/parsers/rst/__init__.py:
909   - Added settings: ``file_insertion_enabled`` & ``raw_enabled``.
911 * docutils/parsers/rst/states.py:
913   - Added check for escaped at-mark to prevent email address recognition.
914   - Fixed option lists to allow spaces inside ``<angle-bracketed option
915     arguments>``.
916   - Allowed whitespace in paths and URLs.
917   - Added auto-enumerated list items.
918   - Fixed bug that assumed ``.. _`` and ``.. |`` were invariably
919     followed by text.
920   - Added support for table stub columns.
922 * docutils/parsers/rst/directives/__init__.py:
924   - Allowed whitespace in paths (``path`` function).
925   - Added ``uri`` directive option conversion function.
927 * docutils/parsers/rst/directives/body.py:
929   - Fixed illegal context bug with "topic" directive (allowed within
930     sidebars; not within body elements).
932 * docutils/parsers/rst/directives/images.py:
934   - Allowed whitespace (stripped) in "image" & "figure" directive URLs.
935   - Added support for the ``file_insertion_enabled`` setting in the
936     "figure" directive (disables "figwidth" option).
937   - "image" directive: added checks for valid values of "align" option,
938     depending on context.  "figure" directive: added specialized
939     "align" option and attribute on "figure" element.
940   - Made ":figwidth: image" option of "figure" directive work again.
941   - Fixed bug with reference names containing uppercase letters
942     (e.g. ``Name_``) in "target" option of "image" directive.
944 * docutils/parsers/rst/directives/misc.py:
946   - Fixed "include" and "raw" directives to catch text decoding
947     errors.
948   - Allowed whitespace in "include" & "raw" directive paths.
949   - Added support for ``file_insertion_enabled`` & ``raw_enabled``
950     settings in "include" & "raw" directives.
952 * docutils/parsers/rst/directives/parts.py:
954   - Added "header" & "footer" directives.
955   - Fixed illegal context bug with "contents" directive (topics
956     allowed within sidebars; not within body elements).
958 * docutils/parsers/rst/directives/tables.py:
960   - Added "list-table" directive.
961   - Caught empty CSV table bug.
962   - Added support for the ``file_insertion_enabled`` setting in the
963     "csv-table" directive.
964   - Added ``stub-columns`` option to "csv-table" and "list-table"
965     directives.
967 * docutils/parsers/rst/languages/nl.py: Added to project; Dutch
968   mappings by Martijn Pieters.
970 * docutils/readers/standalone.py:
972   - Added ``--section-subtitles`` and ``--no-section-subtitles``
973     options to activate or deactivate the SectSubTitle transform.
975 * docutils/transforms/frontmatter.py:
977   - Added SectSubTitle transform to promote titles of lone
978     subsections to subtitles.
980 * docutils/transforms/references.py:
982   - Fixed mislocated internal targets bug, by propagating internal
983     targets to the next node, making use of the newly added support
984     for multiple names and IDs.
985   - Fixed duplicate footnote label bug.
986   - Replaced ``ChainedTargets`` with more generic ``PropagateTargets``
987     transform.
989 * docutils/writers/html4css1.py:
991   - Fixed unencoded stylesheet reference bug (characters like "&" in
992     stylesheet references).
993   - ``target`` nodes now appear as ``span`` tags (instead of ``a``
994     tags).
995   - Added support for multiple IDs per node by creating empty ``span``
996     tags.
997   - Added the ``field_name_limit`` & ``option_limit`` settings &
998     support.
999   - Added support for table stub columns.
1000   - Added support for the ``align`` attribute on ``figure`` elements.
1001   - Added the ``cloak_email_addresses`` setting & support.
1002   - Added ``html_prolog``, ``html_head``, ``html_body``,
1003     ``html_title``, & ``html_subtitle`` to parts dictionary exposed by
1004     ``docutils.core.publish_parts``.
1005   - Added support for section subtitles.
1007 * docutils/writers/latex2e.py:
1009   - Fixed tables starting with more than one multirow cell.
1010   - Improved --use-latex-docinfo so that organization/contact/address
1011     fields are lumped with the last author field and appear on the
1012     titlepage.
1013   - Made sure the titlepage is always shown with --use-latex-docinfo,
1014     even if the document has no title.
1015   - Made sure that latex doesn't fill in today's date if no date field
1016     was given.
1017   - Added support for section subtitles.
1019 * docutils/writers/newlatex2e.py: Added to project; a new LaTeX writer
1020   (under development).
1022 * docutils/writers/null.py: Added to project; a do-nothing Writer.
1024 * docs/api/publisher.txt:
1026   - Added "``publish_parts`` Details" section.
1028 * docutils/dev/repository.txt: Added to project; information about the
1029   Docutils Subversion repository.
1031 * docs/ref/docutils.dtd:
1033   - Added a ``stub`` attribute to the ``colspec`` element via the
1034     ``tbl.colspec.att`` parameter entity.
1035   - Allowed topic elements within sidebars
1036   - Added an ``align`` attribute to the ``figure`` element.
1038 * tools/rst2newlatex.py: Added to project; front end for the new LaTeX
1039   writer.
1042 Release 0.3.7 (2004-12-24)
1043 ==========================
1045 * docutils/frontend.py:
1047   - Added options: --input-encoding-error-handler,
1048     --record-dependencies, --leave-footnote-reference-space,
1049     --strict-visitor.
1050   - Added command-line and config file support for "overrides" setting
1051     parameter.
1053 * docutils/io.py:
1055   - Added support for input encoding error handler.
1057 * docutils/nodes.py:
1059   - Added dispatch_visit and dispatch_departure methods to
1060     NodeVisitor; useful as a hook for Visitors.
1061   - Changed structure of ``line_block``; added ``line``.
1062   - Added ``compound`` node class.
1063   - Added a mechanism for Visitors to transitionally ignore new node
1064     classes.
1066 * docutils/utils.py:
1068   - Moved ``escape2null`` and ``unescape`` functions from
1069     docutils/parsers/rst/states.py.
1071 * docutils/parsers/rst/roles.py:
1073   - Added "raw" role.
1074   - Changed role function API: the "text" parameter now takes
1075     null-escaped interpreted text content.
1077 * docutils/parsers/rst/states.py:
1079   - Fixed bug where a "role" directive in a nested parse would crash
1080     the parser; the state machine's "language" attribute was not being
1081     copied over.
1082   - Added support for line block syntax.
1083   - Fixed directive parsing bug: argument-less directives didn't
1084     notice that arguments were present.
1085   - Removed error checking for transitions.
1086   - Added support for multiple classifiers in definition list items.
1087   - Moved ``escape2null`` and ``unescape`` functions to docutils/utils.py.
1088   - Changed role function API: the "text" parameter now takes
1089     null-escaped interpreted text content.
1090   - Empty sections and documents are allowed now.
1092 * docutils/parsers/rst/directives/__init__.py:
1094   - Added ``encoding`` directive option conversion function.
1095   - Allow multiple class names in class_option conversion function.
1097 * docutils/parsers/rst/directives/body.py:
1099   - Converted the line-block directive to use the new structure.
1100   - Extracted the old line-block functionality to the ``block``
1101     function (still used).
1102   - Added ``compound`` directive (thanks to Lea Wiemann).
1104 * docutils/parsers/rst/directives/misc.py:
1106   - Added "encoding" option to "include" and "raw" directives.
1107   - Added "trim", "ltrim", and "rtrim" options to "unicode" directive.
1108   - Allow multiple class names in the "class" directive.
1110 * docutils/parsers/rst/directives/parts.py:
1112   - Directive "sectnum" now accepts "prefix", "suffix", and "start"
1113     options.  Thanks to Lele Gaifax.
1115 * docutils/parsers/rst/directives/tables.py:
1117   - Added "encoding" directive to "csv-table" directive.
1118   - Added workaround for lack of Unicode support in csv.py, for
1119     non-ASCII CSV input.
1121 * docutils/transforms/misc.py:
1123   - Fixed bug when multiple "class" directives are applied to a single
1124     element.
1125   - Enabled multiple format names for "raw" directive.
1127 * docutils/transforms/references.py:
1129   - Added support for trimming whitespace from beside substitution
1130     references.
1132 * docutils/transforms/universal.py:
1134   - FinalChecks now checks for illegal transitions and moves
1135     transitions between sections.
1137 * docutils/writers/html4css1.py:
1139   - HTMLTranslator.encode now converts U+00A0 to "&nbsp;".
1140   - "stylesheet" and "stylesheet_path" settings are now mutually
1141     exclusive.
1142   - Added support for the new line_block/line structure.
1143   - --footnote-references now overrides
1144     --trim-footnote-reference-space, if applicable.
1145   - Added support for ``compound`` elements.
1146   - Enabled multiple format names for "raw" directive.
1147   - ``<p>`` tags of a paragraph which is the only visible child of the
1148     document node are no longer stripped.
1149   - Moved paragraph-compacting logic (for stripping ``<p>`` tags) to
1150     new method ``should_be_compact_paragraph()``.
1151   - Added class="docutils" to ``dl``, ``hr``, ``table`` and ``tt``
1152     elements.
1153   - "raw" elements are now surrounded by ``span`` or ``div`` tags in
1154     the output if they have their ``class`` attribute set.
1155   - The whole document is now surrounded by a ``<div
1156     class="document">`` element.
1157   - Body-level images are now wrapped by their own ``<div>`` elements,
1158     with image classes copied to the wrapper, and for images which
1159     have the ``:align:`` option set, the surrounding ``<div>`` now
1160     receives a class attribute (like ``class="align-left"``).
1162 * docutils/writers/latex2e.py:
1164   - no newline after depart_term.
1165   - Added translations for some Unicode quotes.
1166   - Added option "font-encoding", made package AE the default.
1167   - "stylesheet" and "stylesheet_path" settings are now mutually
1168     exclusive.
1169   - --footnote-references now overrides
1170     --trim-footnote-reference-space, if applicable.
1171   - The footnote label style now matches the footnote reference style
1172     ("brackets" or "superscript").
1173   - Added support for ``compound`` elements.
1174   - Enabled multiple format names for "raw" directive.
1176 * docs/ref/docutils.dtd:
1178   - Changed structure of the ``line_block`` element; added ``line``.
1179   - Added ``compound`` element.
1180   - Added "ltrim" and "rtrim" attributes to
1181     ``substitution_definition`` element.
1182   - Enabled multiple format names for ``raw`` element.
1183   - Enabled multiple classifiers in ``definition_list_item`` elements.
1185 * docs/ref/rst/directives.txt
1187   - Marked "line-block" as deprecated.
1188   - "Class" directive now allows multiple class names.
1189   - Added "Rationale for Class Attribute Value Conversion".
1190   - Added warning about "raw" overuse/abuse.
1192 * docs/ref/rst/restructuredtext.txt:
1194   - Added syntax for line blocks.
1195   - Definition list items may have multiple classifiers.
1197 * docs/ref/rst/roles.txt:
1199   - Added "raw" role.
1201 * tools/stylesheets/default.css:
1203   - Added support for the new line_block structure.
1204   - Added "docutils" class to ``dl``, ``hr``, ``table`` and ``tt``.
1207 Release 0.3.5 (2004-07-29)
1208 ==========================
1210 General:
1212 * _`Documentation cleanup/reorganization`.
1214   - Created new subdirectories of docs/:
1216     * ``docs/user/``: introductory/tutorial material for end-users
1217     * ``docs/dev/``: for core-developers (development notes, plans, etc.)
1218     * ``docs/api/``: API reference material for client-developers
1219     * ``docs/ref/``: reference material for all groups
1220     * ``docs/howto/``: for component-developers and core-developers
1221     * ``docs/peps/``: Python Enhancement Proposals
1223   - Moved ``docs/*`` to ``docs/user/``.
1224   - Moved ``pysource.dtd``, ``pysource.txt``, ``semantics.txt`` from
1225     ``spec/`` to ``docs/dev``.
1226   - Moved ``doctree.txt``, ``docutils.dtd``, ``soextblx.dtd``,
1227     ``transforms.txt`` from ``spec/`` to ``docs/ref/``.
1228   - Moved ``alternatives.txt``, and ``problems.txt`` from
1229     ``spec/rst/`` to ``docs/dev/rst/``.
1230   - Moved ``reStructuredText.txt``, ``directives.txt``,
1231     ``interpreted.txt``, and ``introduction.txt`` from ``spec/rst/``
1232     to ``docs/ref/rst/``.  Renamed ``interpreted.txt`` to
1233     ``roles.txt``, ``reStructuredText.txt`` to
1234     ``restructuredtext.txt``.
1235   - Moved ``spec/howto/`` to ``docs/howto``.
1237   In order to keep the CVS history of moved files, we supplied
1238   SourceForge with a `script for modifying the Docutils CVS
1239   repository`__.
1241   __ http://cvs.sourceforge.net/viewcvs.py/*checkout*/docutils/sandbox/davidg/infrastructure/cvs-reorg.sh?content-type=text/plain&rev=1.5
1243   After running the cleanup script:
1245   - Added ``docs/index.txt``.
1246   - Added a ``.htaccess`` file to the ``web`` module, containing
1247     redirects for all old paths to new paths.  They'll preserve
1248     fragments (the "#name" part of a URL), and won't clutter up the
1249     file system, and will correct the URL in the user's browser.
1250   - Added ``BUGS.txt``, ``docs/dev/policies.txt``,
1251     ``docs/dev/website.txt``, ``docs/dev/release.txt`` from all but
1252     the "To Do" list itself in ``docs/dev/todo.txt``.
1253   - Moved "Future Plans" from ``HISTORY.txt`` to new "Priorities"
1254     section of ``docs/dev/todo.txt``.
1255   - Added ``THANKS.txt`` from "Acknowledgements" in ``HISTORY.txt``.
1256   - Added "How To Report Bugs" to ``BUGS.txt``.
1257   - Went through all the sources and docs (including under web/) and
1258     updated links.  Mostly done by Lea Wiemann; thanks Lea!
1259     (Still need to update links in the sandboxes.)
1261 Specific:
1263 * BUGS.txt: Added to project.
1265 * THANKS.txt: Added to project.
1267 * docutils/__init__.py:
1269   - 0.3.4: Post-release.
1271 * docutils/core.py:
1273   - Added special error handling & advice for UnicodeEncodeError.
1274   - Refactored Publisher.publish (simplified exception handling &
1275     extracted debug dumps).
1276   - Renamed "enable_exit" parameter of convenience functions to
1277     "enable_exit_status".
1278   - Enabled traceback (exception propagation) by default in
1279     programmatic convenience functions.
1280   - Now publish_file and publish_cmdline convenience functions return
1281     the encoded string results in addition to their regular I/O.
1282   - Extracted common code from publish_file, publish_string, and
1283     publish_parts, into new publish_programmatically.  Extracted
1284     settings code to ``Publisher.process_programmatic_settings``.
1285   - In Publisher.publish, disabled ``settings_overrides`` when
1286     ``settings`` is supplied; redundant.
1288 * docutils/frontend.py:
1290   - Added help text for "--output-encoding-error-handler" and
1291     "--error-encoding-error-handler".
1292   - Renamed "--exit" to "--exit-status".
1293   - Simplified default-setting code.
1295 * docutils/parsers/rst/__init__.py:
1297   - Added "--pep-base-url" and "--rfc-base-url" options.
1299 * docutils/parsers/rst/states.py:
1301   - Made URI recognition more aggressive and intelligent.
1303 * docutils/parsers/rst/directives/__init__.py:
1305   - Added several directive option conversion functions.
1307 * docutils/parsers/rst/directives/body.py:
1309   - Moved "table" directive to tables.py.
1311 * docutils/parsers/rst/directives/tables.py: Table-related directives,
1312   added to project.
1314 * docutils/writers/latex2e.py:
1316   - Added "--table-style=(standard|booktabs|nolines)"
1317   - figures get "here" option (LaTeX per default puts them at bottom),
1318     and figure content is centered.
1319   - Rowspan support for tables.
1320   - Fix: admonition titles before first section.
1321   - Replace ``--`` in literal by ``-{}-`` because fontencoding T1 has endash.
1322   - Replave ``_`` in literal by an underlined blank, because it has the correct
1323     width.
1324   - Fix: encode pdfbookmark titles, ``#`` broke pdflatex.
1325   - A few unicode replacements, if output_encoding != utf
1326   - Add "--graphicx-option".
1327   - Indent literal-blocks.
1328   - Fix: omit ``\maketitle`` when there is no document title.
1330 * docs/index.txt: "Docutils Project Documentation Overview", added to
1331   project.
1333 * docs/api/cmdline-tool.txt: "Inside A Docutils Command-Line Front-End
1334   Tool", added to project.
1336 * docs/api/publisher.txt: "The Docutils Publisher", added to project.
1338 * docs/api/runtime-settings.txt: "Docutils Runtime Settings", added to project.
1340 * docs/dev/policies.txt: Added to project (extracted from
1341   ``docs/dev/todo.txt``, formerly ``spec/notes.txt``).
1343 * docs/dev/release.txt: Added to project (extracted from
1344   ``docs/dev/todo.txt``, formerly ``spec/notes.txt``).
1346 * docs/dev/testing.txt: Added to project.
1348 * docs/dev/website.txt: Added to project (extracted from
1349   ``docs/dev/todo.txt``, formerly ``spec/notes.txt``).
1351 * docs/ref/rst/directives.txt:
1353   - Added directives: "table", "csv-table".
1355 * docs/user/rst/cheatsheet.txt: "The reStructuredText Cheat Sheet"
1356   added to project.  1 page for syntax, and a 1 page reference for
1357   directives and roles.  Source text to be used as-is; not meant to be
1358   converted to HTML.
1360 * docs/user/rst/demo.txt: Added to project; moved from tools/test.txt
1361   with a change of title.
1363 * test/functional/, contents, and test/test_functional.py: Added to
1364   project.
1366 * tools/buildhtml.py: Fixed bug with config file handling.
1368 * tools/html.py: Removed from project (duplicate of rst2html.py).
1370 * tools/pep2html.py: Removed from project (duplicate of Python's
1371   nondist/peps/pep2html.py; Docutils' tools/pep.py can be used for
1372   Docutils-related PEPs in docs/peps/).
1374 * tools/rst2pseudoxml.py: Renamed from publish.py.
1376 * tools/rst2xml.py: Renamed from docutils-xml.py.
1378 * tools/test.txt: Removed from project; moved to
1379   docs/user/rst/demo.txt.
1381 * setup.py: Now also installs ``rst2latex.py``.
1384 Release 0.3.3 (2004-05-09)
1385 ==========================
1387 * docutils/__init__.py:
1389   - 0.3.1: Reorganized config file format (multiple sections); see
1390     docs/config.txt.
1391   - Added unknown_reference_resolvers attribute to TransformSpec.
1392   - 0.3.2: Interpreted text reorganization.
1393   - 0.3.3: Released.
1395 * docutils/core.py:
1397   - Catch system messages to stop tracebacks from parsing errors.
1398   - Catch exceptions during processing report & exit without
1399     tracebacks, except when "--traceback" used.
1400   - Reordered components for OptionParser; application comes last.
1401   - Added "config_section" parameter to several methods and functions,
1402     allowing front ends to easily specify their config file sections.
1403   - Added publish_parts convenience function to allow access to individual
1404     parts of a document.
1406 * docutils/examples.py: Added to project; practical examples of
1407   Docutils client code, to be used as-is or as models for variations.
1409 * docutils/frontend.py:
1411   - Added "--traceback" & "--no-traceback" options ("traceback"
1412     setting).
1413   - Implemented support for config file reorganization:
1414     ``standard_config_files`` moved from ``ConfigParser`` to
1415     ``OptionParser``; added
1416     ``OptionParser.get_config_file_settings()`` and
1417     ``.get_standard_config_settings()``; support for old "[options]"
1418     section (with deprecation warning) and mapping from old to new
1419     settings.
1420   - Reimplemented setting validation.
1421   - Enabled flexible boolean values: yes/no, true/false, on/off.
1422   - Added ``Values``, a subclass of ``optparse.Values``, with support
1423     for list setting attributes.
1424   - Added support for new ``DOCUTILSCONFIG`` environment variable;
1425     thanks to Beni Cherniavsky.
1426   - Added "--no-section-numbering" option.
1428 * docutils/io.py:
1430   - Catch IOErrors when opening source & destination files, report &
1431     exit without tracebacks.  Added ``handle_io_errors`` parameter to
1432     ``FileInput`` & ``FileOutput`` to enable caller error handling.
1434 * docutils/nodes.py:
1436   - Changed ``SparseNodeVisitor`` and ``GenericNodeVisitor`` dynamic
1437     method definitions (via ``exec``) to dynamic assignments (via
1438     ``setattr``); thanks to Roman Suzi.
1439   - Encapsulated visitor dynamic assignments in a function; thanks to
1440     Ian Bicking.
1441   - Added indirect_reference_name attribute to the Targetable
1442     class. This attribute holds the whitespace_normalized_name
1443     (contains mixed case) of a target.
1445 * docutils/statemachine.py:
1447   - Renamed ``StringList.strip_indent`` to ``.trim_left``.
1448   - Added ``StringList.get_2D_block``.
1450 * docutils/utils.py:
1452   - Added "level" attribute to SystemMessage exceptions.
1454 * docutils/languages/af.py: Added to project; Afrikaans mappings by
1455   Jannie Hofmeyr.
1457 * docutils/languages/cs.py: Added to project; Czech mappings by Marek
1458   Blaha.
1460 * docutils/languages/eo.py: Added to project; Esperanto mappings by
1461   Marcelo Huerta San Martin.
1463 * docutils/languages/pt_br.py: Added to project; Brazilian Portuguese
1464   mappings by Lalo Martins.
1466 * docutils/languages/ru.py: Added to project; Russian mappings by
1467   Roman Suzi.
1469 * docutils/parsers/rst/roles.py: Added to project.  Contains
1470   interpreted text role functions, a registry for interpreted text
1471   roles, and an API for adding to and retrieving from the registry.
1472   Contributed by Edward Loper.
1474 * docutils/parsers/rst/states.py:
1476   - Updated ``RSTState.nested_parse`` for "include" in table cells.
1477   - Allowed true em-dash character and "---" as block quote
1478     attribution marker.
1479   - Added support for <angle-bracketed> complex option arguments
1480     (option lists).
1481   - Fixed handling of backslashes in substitution definitions.
1482   - Fixed off-by-1 error with extra whitespace after substitution
1483     definition directive.
1484   - Added inline markup parsing to field lists' field names.
1485   - Added support for quoted (and unindented) literal blocks.
1486     Driven in part by a bribe from Frank Siebenlist (thanks!).
1487   - Parser now handles escapes in URIs correctly.
1488   - Made embedded-URIs' reference text omittable.  Idea from Beni
1489     Cherniavsky.
1490   - Refactored explicit target processing code.
1491   - Added name attribute to references containing the reference name only
1492     through whitespace_normalize_name (no case changes).
1493   - parse_target no longer returns the refname after going through
1494     normalize_name. This is now handled in make_target.
1495   - Fixed bug relating to role-less interpreted text in non-English
1496     contexts.
1497   - Reorganized interpreted text processing; moved code into the new
1498     roles.py module.  Contributed by Edward Loper.
1499   - Refactored ``Body.parse_directive`` into ``run_directive`` and
1500     ``parse_directive_block``.
1502 * docutils/parsers/rst/tableparser.py:
1504   - Reworked for ``StringList``, to support "include" directives in
1505     table cells.
1507 * docutils/parsers/rst/directives/__init__.py:
1509   - Renamed ``unchanged()`` directive option conversion function to
1510     ``unchanged_required``, and added a new ``unchanged``.
1511   - Catch unicode value too high error; fixes bug 781766.
1512   - Beefed up directive error reporting.
1514 * docutils/parsers/rst/directives/body.py:
1516   - Added basic "table" directive.
1518 * docutils/parsers/rst/directives/images.py:
1520   - Added "target" option to "image" directive.
1521   - Added name attribute to references containing the reference name only
1522     through whitespace_normalize_name (no case changes).
1524 * docutils/parsers/rst/directives/misc.py:
1526   - Isolated the import of the ``urllib2`` module; was causing
1527     problems on SourceForge (``libssl.so.2`` unavailable?).
1528   - Added the "role" directive for declaring custom interpreted text
1529     roles.
1531 * docutils/parsers/rst/directives/parts.py:
1533   - The "contents" directive does more work up-front, creating the
1534     "topic" and "title", and leaving the "pending" node for the
1535     transform.  Allows earlier reference resolution; fixes subtle bug.
1537 * docutils/parsers/rst/languages/af.py: Added to project; Afrikaans
1538   mappings by Jannie Hofmeyr.
1540 * docutils/parsers/rst/languages/cs.py: Added to project; Czech
1541   mappings by Marek Blaha.
1543 * docutils/parsers/rst/languages/eo.py: Added to project; Esperanto
1544   mappings by Marcelo Huerta San Martin.
1546 * docutils/parsers/rst/languages/pt_br.py: Added to project; Brazilian
1547   Portuguese mappings by Lalo Martins.
1549 * docutils/parsers/rst/languages/ru.py: Added to project; Russian
1550   mappings by Roman Suzi.
1552 * docutils/transforms/parts.py:
1554   - The "contents" directive does more work up-front, creating the
1555     "topic" and "title", and leaving the "pending" node for the
1556     transform.  Allows earlier reference resolution; fixes subtle bug.
1557   - Added support for disabling of section numbering.
1559 * docutils/transforms/references.py:
1561   - Verifying that external targets are truly targets and not indirect
1562     references. This is because we are now adding a "name" attribute to
1563     references in addition to targets. Note sure if this is correct!
1564   - Added code to hook into the unknown_reference_resolvers list for a
1565     transformer in resolve_indirect_target. This allows the
1566     unknown_reference_resolvers to keep around indirect targets which
1567     docutils doesn't know about.
1568   - Added specific error message for duplicate targets.
1570 * docutils/transforms/universal.py:
1572   - Added FilterMessages transform (removes system messages below the
1573     verbosity threshold).
1574   - Added hook (via docutils.TransformSpec.unknown_reference_resolvers)
1575     to FinalCheckVisitor for application-specific handling of
1576     unresolvable references.
1577   - Added specific error message for duplicate targets.
1579 * docutils/writers/__init__.py:
1581   - Added assemble_parts method to the Writer class to allow for
1582     access to a documents individual parts.
1583   - Documented & set default for ``Writer.output`` attribute.
1585 * docutils/writers/html4css1.py:
1587   - Fixed unicode handling of attribute values (bug 760673).
1588   - Prevent duplication of "class" attribute values (bug report from
1589     Kirill Lapshin).
1590   - Improved table grid/border handling (prompted by report from Bob
1591     Marshall).
1592   - Added support for table titles.
1593   - Added "<title />" for untitled docs, for XHTML conformance; thanks
1594     to Darek Suchojad.
1595   - Added functionality to keep track of individual parts of a document
1596     and store them in a dictionary as the "parts" attribute of the writer.
1597     Contributed by Reggie Dugard at the Docutils sprint at PyCon DC 2004.
1598   - Added proper support for the "scale" attribute of the "image"
1599     element.  Contributed by Brent Cook.
1600   - Added ``--initial-header-level`` option.
1601   - Fixed bug: the body_pre_docinfo segment depended on there being a
1602     docinfo; if no docinfo, the document title was incorporated into
1603     the body segment.  Adversely affected the publish_parts interface.
1605 * docutils/writers/latex2e.py:
1607   - Changed default stylesheet to "no stylesheet" to avoid latex complaining
1608     about a missing file.
1609   - Added options and support: ``--compound-enumerators``,
1610     ``--section-prefix-for-enumerators``, and
1611     ``--section-enumerator-separator``.  By John F Meinel Jr (SF patch
1612     934322).
1613   - Added option ``--use-verbatim-when-possible``, to avoid
1614     problematic characters (eg, '~' in italian) in literal blocks.
1615   - It's now possible to use four section levels in the `book` and
1616     `report` LaTeX classes.  The default `article` class still has
1617     three levels limit.
1619 * docs/config.txt: "Docutils Configuration Files", added to project.
1620   Moved config file entry descriptions from tools.txt.
1622 * docs/tools.txt:
1624   - Moved config file entry descriptions to config.txt.
1626 * spec/notes.txt: Continual updates.  Added "Setting Up For Docutils
1627   Development".
1629 * spec/howto/rst-roles.txt: "Creating reStructuredText Interpreted
1630   Text Roles", added to project.
1632 * spec/rst/reStructuredText.txt:
1634   - Added description of support for <angle-bracketed> complex option
1635     arguments to option lists.
1636   - Added subsections for indented and quoted literal blocks.
1638 * test: Continually adding & updating tests.
1640   - Added test/test_settings.py & test/data/config_*.txt support
1641     files.
1642   - Added test/test_writers/test_htmlfragment.py.
1644 * test/DocutilsTestSupport.py:
1646   - Refactored LaTeX publisher test suite/case class names to make
1647     testing other writers easier.
1648   - Added HtmlWriterPublishTestCase and HtmlFragmentTestSuite classes
1649     to test the processing of HTML fragments which use the new
1650     publish_parts convenience function.
1652 * tools/buildhtml.py:
1654   - Added support for the "--prune" option.
1655   - Removed dependency on pep2html.py; plaintext PEPs no longer
1656     supported.
1658 * tools/docutils.conf:
1660   - Updated for configuration file reorganization.
1662 * tools/rst2html.py:
1664   - copied from tools/html.py
1666 * setup.py:
1668   - added a 'scripts' section to configuration
1669   - added 'tools/rst2html.py' to the scripts section
1672 Release 0.3 (2003-06-24)
1673 ========================
1675 General:
1677 * Renamed "attribute" to "option" for directives/extensions.
1679 * Renamed transform method "transform" to "apply".
1681 * Renamed "options" to "settings" for runtime settings (as set by
1682   command-line options).  Sometimes "option" (singular) became
1683   "settings" (plural).  Some variations below:
1685   - document.options -> document.settings (stored in other objects as
1686     well)
1687   - option_spec -> settings_spec (not directives though)
1688   - OptionSpec -> SettingsSpec
1689   - cmdline_options -> settings_spec
1690   - relative_path_options -> relative_path_settings
1691   - option_default_overrides -> settings_default_overrides
1692   - Publisher.set_options -> Publisher.get_settings
1694 Specific:
1696 * COPYING.txt: Added "Public Domain Dedication".
1698 * FAQ.txt: Frequently asked questions, added to project.
1700 * setup.py:
1702   - Updated with PyPI Trove classifiers.
1703   - Conditional installation of third-party modules.
1705 * docutils/__init__.py:
1707   - Bumped version to 0.2.1 to reflect changes to I/O classes.
1708   - Bumped version to 0.2.2 to reflect changes to stylesheet options.
1709   - Factored ``SettingsSpec`` out of ``Component``; separately useful.
1710   - Bumped version to 0.2.3 because of the new "--embed-stylesheet"
1711     option and its effect on the PEP template & writer.
1712   - Bumped version to 0.2.4 due to changes to the PEP template &
1713     stylesheet.
1714   - Bumped version to 0.2.5 to reflect changes to Reporter output.
1715   - Added ``TransformSpec`` class for new transform system.
1716   - Bumped version to 0.2.6 for API changes (renaming).
1717   - Bumped version to 0.2.7 for new ``docutils.core.publish_*``
1718     convenience functions.
1719   - Added ``Component.component_type`` attribute.
1720   - Bumped version to 0.2.8 because of the internal parser switch from
1721     plain lists to the docutils.statemachine.StringList objects.
1722   - Bumped version to 0.2.9 because of the frontend.py API changes.
1723   - Bumped version to 0.2.10 due to changes to the project layout
1724     (third-party modules removed from the "docutils" package), and
1725     signature changes in ``io.Input``/``io.Output``.
1726   - Changed version to 0.3.0 for release.
1728 * docutils/core.py:
1730   - Made ``publish()`` a bit more convenient.
1731   - Generalized ``Publisher.set_io``.
1732   - Renamed ``publish()`` to ``publish_cmdline()``; rearranged its
1733     parameters; improved its docstring.
1734   - Added ``publish_file()`` and ``publish_string()``.
1735   - Factored ``Publisher.set_source()`` and ``.set_destination()``
1736     out of ``.set_io``.
1737   - Added support for "--dump-pseudo-xml", "--dump-settings", and
1738     "--dump-transforms" hidden options.
1739   - Added ``Publisher.apply_transforms()`` method.
1740   - Added ``Publisher.set_components()`` method; support for
1741     ``publish_*()`` conveninece functions.
1742   - Moved config file processing to docutils/frontend.py.
1743   - Added support for exit status ("exit_level" setting &
1744     ``enable_exit`` parameter for Publisher.publish() and convenience
1745     functions).
1747 * docutils/frontend.py:
1749   - Check for & exit on identical source & destination paths.
1750   - Fixed bug with absolute paths & "--config".
1751   - Set non-command-line defaults in ``OptionParser.__init__()``:
1752     ``_source`` & ``_destination``.
1753   - Distributed ``relative_path_settings`` to components; updated
1754     ``OptionParser.populate_from_components()`` to combine it all.
1755   - Require list of keys in ``make_paths_absolute`` (was implicit in
1756     global ``relative_path_settings``).
1757   - Added "--expose-internal-attribute", "--dump-pseudo-xml",
1758     "--dump-settings", and "--dump-transforms" hidden options.
1759   - Removed nasty internals-fiddling ``ConfigParser.get_section``
1760     code, replaced with correct code.
1761   - Added validation functionality for config files.
1762   - Added "--error-encoding" option/setting, "_disable_config"
1763     internal setting.
1764   - Added encoding validation; updated "--input-encoding" and
1765     "--output-encoding"; added "--error-encoding-error-handler" and
1766     "--output-encoding-error-handler".
1767   - Moved config file processing from docutils/core.py.
1768   - Updated ``OptionParser.populate_from_components`` to handle new
1769     ``SettingsSpec.settings_defaults`` dict.
1770   - Added support for "-" => stdin/stdout.
1771   - Added "exit_level" setting ("--exit" option).
1773 * docutils/io.py:
1775   - Split ``IO`` classes into subclasses of ``Input`` and ``Output``.
1776   - Added automatic closing to ``FileInput`` and ``FileOutput``.
1777   - Delayed opening of ``FileOutput`` file until ``write()`` called.
1778   - ``FileOutput.write()`` now returns the encoded output string.
1779   - Try to get path/stream name automatically in ``FileInput`` &
1780     ``FileOutput``.
1781   - Added defaults for source & destination paths.
1782   - Allow for Unicode I/O with an explicit "unicode" encoding.
1783   - Added ``Output.encode()``.
1784   - Removed dependency on runtime settings; pass encoding directly.
1785   - Recognize Unicode strings in ``Input.decode()``.
1786   - Added support for output encoding error handlers.
1788 * docutils/nodes.py:
1790   - Added "Invisible" element category class.
1791   - Changed ``Node.walk()`` & ``.walkabout()`` to permit more tree
1792     modification during a traversal.
1793   - Added element classes: ``line_block``, ``generated``, ``address``,
1794     ``sidebar``, ``rubric``, ``attribution``, ``admonition``,
1795     ``superscript``, ``subscript``, ``inline``
1796   - Added support for lists of nodes to ``Element.insert()``.
1797   - Fixed parent linking in ``Element.replace()``.
1798   - Added new abstract superclass ``FixedTextElement``; adds
1799     "xml:space" attribute.
1800   - Added support for "line" attribute of ``system_message`` nodes.
1801   - Added support for the observer pattern from ``utils.Reporter``.
1802     Added ``parse_messages`` and ``transform_messages`` attributes to
1803     ``document``, removed ``messages``.  Added ``note_parse_message``
1804     and ``note_transform_message`` methods.
1805   - Added support for improved diagnostics:
1807     - Added "document", "source", and "line" internal attributes to
1808       ``Node``, set by ``Node.setup_child()``.
1809     - Converted variations on ``node.parent = self`` to
1810       ``self.setup_child(node)``.
1811     - Added ``document.current_source`` & ``.current_line``
1812       attributes, and ``.note_source`` observer method.
1813     - Changed "system_message" output to GNU-Tools format.
1815   - Added a "rawsource" attribute to the ``Text`` class, for text
1816     before backslash-escape resolution.
1817   - Support for new transform system.
1818   - Reworked ``pending`` element.
1819   - Fixed XML DOM bug (SF #660611).
1820   - Removed the ``interpeted`` element class and added
1821     ``title_reference``, ``abbreviation``, ``acronym``.
1822   - Made substitutions case-sensitive-but-forgiving; moved some code
1823     from the parser.
1824   - Fixed Unicode bug on element attributes (report: William Dode).
1826 * docutils/optik.py: Removed from project; replaced with
1827   extras/optparse.py and extras/textwrap.py.  These will be installed
1828   only if they're not already present in the Python installation.
1830 * docutils/roman.py: Moved to extras/roman.py; this will be installed
1831   only if it's not already present in the Python installation.
1833 * docutils/statemachine.py:
1835   - Factored out ``State.add_initial_transitions()`` so it can be
1836     extended.
1837   - Converted whitespace-specific "blank" and "indent" transitions
1838     from special-case code to ordinary transitions: removed
1839     ``StateMachineWS.check_line()`` & ``.check_whitespace()``, added
1840     ``StateWS.add_initial_transitions()`` method, ``ws_patterns`` &
1841     ``ws_initial_transitions`` attributes.
1842   - Removed ``State.match_transition()`` after merging it into
1843     ``.check_line()``.
1844   - Added ``StateCorrection`` exception.
1845   - Added support for ``StateCorrection`` in ``StateMachine.run()``
1846     (moved ``TransitionCorrection`` support there too.)
1847   - Changed ``StateMachine.next_line()`` and ``.goto_line()`` to raise
1848     ``EOFError`` instead of ``IndexError``.
1849   - Added ``State.no_match`` method.
1850   - Added support for the Observer pattern, triggered by input line
1851     changes.
1852   - Added ``strip_top`` parameter to
1853     ``StateMachineWS.get_first_known_indented``.
1854   - Made ``context`` a parameter to ``StateMachine.run()``.
1855   - Added ``ViewList`` & ``StringList`` classes;
1856     ``extract_indented()`` becomes ``StringList.get_indented()``.
1857   - Added ``StateMachine.insert_input()``.
1858   - Fixed ViewList slice handling for Python 2.3.  Patch from (and
1859     thanks to) Fred Drake.
1861 * docutils/utils.py:
1863   - Added a ``source`` attribute to Reporter instances and
1864     ``system_message`` elements.
1865   - Added an observer pattern to ``utils.Reporter`` to keep track of
1866     system messages.
1867   - Fixed bugs in ``relative_path()``.
1868   - Added support for improved diagnostics.
1869   - Moved ``normalize_name()`` to nodes.py (``fully_normalize_name``).
1870   - Added support for encoding Reporter stderr output, and encoding
1871     error handlers.
1872   - Reporter keeps track of the highest level system message yet
1873     generated.
1875 * docutils/languages: Fixed bibliographic field language lookups.
1877 * docutils/languages/es.py: Added to project; Spanish mappings by
1878   Marcelo Huerta San Martin.
1880 * docutils/languages/fr.py: Added to project; French mappings by
1881   Stefane Fermigier.
1883 * docutils/languages/it.py: Added to project; Italian mappings by
1884   Nicola Larosa.
1886 * docutils/languages/sk.py: Added to project; Slovak mappings by
1887   Miroslav Vasko.
1889 * docutils/parser/__init__.py:
1891   - Added ``Parser.finish_parse()`` method.
1893 * docutils/parser/rst/__init__.py:
1895   - Added options: "--pep-references", "--rfc-references",
1896     "--tab-width", "--trim-footnote-reference-space".
1898 * docutils/parsers/rst/states.py:
1900   - Changed "title under/overline too short" system messages from INFO
1901     to WARNING, and fixed its insertion location.
1902   - Fixed enumerated list item parsing to allow paragraphs & section
1903     titles to begin with enumerators.
1904   - Converted system messages to use the new "line" attribute.
1905   - Fixed a substitution reference edge case.
1906   - Added support for "--pep-references" and "--rfc-references"
1907     options; reworked ``Inliner`` code to make customization easier.
1908   - Removed field argument parsing.
1909   - Added support for short section title over/underlines.
1910   - Fixed "simple reference name" regexp to ignore text like
1911     "object.__method__"; not an anonymous reference.
1912   - Added support for improved diagnostics.
1913   - Reworked directive API, based on Dethe Elza's contribution.  Added
1914     ``Body.parse_directive()``, ``.parse_directive_options()``,
1915     ``.parse_directive_arguments()`` methods.
1916   - Added ``ExtensionOptions`` class, to parse directive options
1917     without parsing field bodies.  Factored
1918     ``Body.parse_field_body()`` out of ``Body.field()``, overridden in
1919     ``ExtensionOptions``.
1920   - Improved definition list term/classifier parsing.
1921   - Added warnings for unknown directives.
1922   - Renamed ``Stuff`` to ``Struct``.
1923   - Now flagged as errors: transitions at the beginning or end of
1924     sections, empty sections (except title), and empty documents.
1925   - Updated for ``statemachine.StringList``.
1926   - Enabled recognition of schemeless email addresses in targets.
1927   - Added support for embedded URIs in hyperlink references.
1928   - Added backslash-escapes to inline markup end-string suffix.
1929   - Added support for correct interpreted text processing.
1930   - Fixed nested title parsing (topic, sidebar directives).
1931   - Added special processing of backslash-escaped whitespace (idea
1932     from David Abrahams).
1933   - Made substitutions case-sensitive-but-forgiving; moved some code
1934     to ``docutils.nodes``.
1935   - Added support for block quote attributions.
1936   - Added a kludge to work-around a conflict between the bubble-up
1937     parser strategy and short titles (<= 3 char-long over- &
1938     underlines).  Fixes SF bug #738803 "infinite loop with multiple
1939     titles" submitted by Jason Diamond.
1940   - Added explicit interpreted text roles for standard inline markup:
1941     "emphasis", "strong", "literal".
1942   - Implemented "superscript" and "subscript" interpreted text roles.
1943   - Added initial support for "abbreviation" and "acronym" roles;
1944     incomplete.
1945   - Added support for "--trim-footnote-reference-space" option.
1946   - Optional space before colons in directives & hyperlink targets.
1948 * docutils/parsers/rst/tableparser.py:
1950   - Fixed a bug that was producing unwanted empty rows in "simple"
1951     tables.
1952   - Detect bad column spans in "simple" tables.
1954 * docutils/parsers/rst/directives: Updated all directive functions to
1955   new API.
1957 * docutils/parsers/rst/directives/__init__.py:
1959   - Added ``flag()``, ``unchanged()``, ``path()``,
1960     ``nonnegative_int()``, ``choice()``, and ``class_option()``
1961     directive option helper functions.
1962   - Added warnings for unknown directives.
1963   - Return ``None`` for missing directives.
1964   - Added ``register_directive()``, thanks to William Dode and Paul
1965     Moore.
1967 * docutils/parsers/rst/directives/admonitions.py:
1969   - Added "admonition" directive.
1971 * docutils/parsers/rst/directives/body.py: Added to project.  Contains
1972   the "topic", "sidebar" (from Patrick O'Brien), "line-block",
1973   "parsed-literal", "rubric", "epigraph", "highlights" and
1974   "pull-quote" directives.
1976 * docutils/parsers/rst/directives/images.py:
1978   - Added an "align" attribute to the "image" & "figure" directives
1979     (by Adam Chodorowski).
1980   - Added "class" option to "image", and "figclass" to "figure".
1982 * docutils/parsers/rst/directives/misc.py:
1984   - Added "include", "raw", and "replace" directives, courtesy of
1985     Dethe Elza.
1986   - Added "unicode" and "class" directives.
1988 * docutils/parsers/rst/directives/parts.py:
1990   - Added the "sectnum" directive; by Dmitry Jemerov.
1991   - Added "class" option to "contents" directive.
1993 * docutils/parsers/rst/directives/references.py: Added to project.
1994   Contains the "target-notes" directive.
1996 * docutils/parsers/rst/languages/__init__.py:
1998   - Return ``None`` from get_language() for missing language modules.
2000 * docutils/parsers/rst/languages/de.py: Added to project; German
2001   mappings by Engelbert Gruber.
2003 * docutils/parsers/rst/languages/en.py:
2005   - Added interpreted text roles mapping.
2007 * docutils/parsers/rst/languages/es.py: Added to project; Spanish
2008   mappings by Marcelo Huerta San Martin.
2010 * docutils/parsers/rst/languages/fr.py: Added to project; French
2011   mappings by William Dode.
2013 * docutils/parsers/rst/languages/it.py: Added to project; Italian
2014   mappings by Nicola Larosa.
2016 * docutils/parsers/rst/languages/sk.py: Added to project; Slovak
2017   mappings by Miroslav Vasko.
2019 * docutils/readers/__init__.py:
2021   - Added support for the observer pattern from ``utils.Reporter``, in
2022     ``Reader.parse`` and ``Reader.transform``.
2023   - Removed ``Reader.transform()`` method.
2024   - Added default parameter values to ``Reader.__init__()`` to make
2025     instantiation easier.
2026   - Removed bogus aliases: "restructuredtext" is *not* a Reader.
2028 * docutils/readers/pep.py:
2030   - Added the ``peps.TargetNotes`` transform to the Reader.
2031   - Removed PEP & RFC reference detection code; moved to
2032     parsers/rst/states.py as options (enabled here by default).
2033   - Added support for pre-acceptance PEPs (no PEP number yet).
2034   - Moved ``Inliner`` & made it a class attribute of ``Reader`` for
2035     easy subclassing.
2037 * docutils/readers/python: Python Source Reader subpackage added to
2038   project, including preliminary versions of:
2040   - __init__.py
2041   - moduleparser.py: Parser for Python modules.
2043 * docutils/transforms/__init__.py:
2045   - Added ``Transformer`` class and completed transform reform.
2046   - Added unknown_reference_resolvers list for each transformer. This list holds
2047     the list of functions provided by each component of the transformer that
2048     help resolve references.
2050 * docutils/transforms/frontmatter.py:
2052   - Improved support for generic fields.
2053   - Fixed bibliographic field language lookups.
2055 * docutils/transforms/misc.py: Added to project.  Miscellaneous
2056   transforms.
2058 * docutils/transforms/parts.py:
2060   - Moved the "id" attribute from TOC list items to the references
2061     (``Contents.build_contents()``).
2062   - Added the ``SectNum`` transform; by Dmitry Jemerov.
2063   - Added "class" attribute support to ``Contents``.
2065 * docutils/transforms/peps.py:
2067   - Added ``mask_email()`` function, updating to pep2html.py's
2068     functionality.
2069   - Linked "Content-Type: text/x-rst" to PEP 12.
2070   - Added the ``TargetNotes`` PEP-specific transform.
2071   - Added ``TargetNotes.cleanup_callback``.
2072   - Added title check to ``Headers``.
2074 * docutils/transforms/references.py:
2076   - Added the ``TargetNotes`` generic transform.
2077   - Split ``Hyperlinks`` into multiple transforms.
2078   - Fixed bug with multiply-indirect references (report: Bruce Smith).
2079   - Added check for circular indirect references.
2080   - Made substitutions case-sensitive-but-forgiving.
2082 * docutils/transforms/universal.py:
2084   - Added support for the "--expose-internal-attributes" option.
2085   - Removed ``Pending`` transform classes & data.
2087 * docutils/writers/__init__.py:
2089   - Removed ``Writer.transform()`` method.
2091 * docutils/writers/docutils-xml.py:
2093   - Added XML and doctype declarations.
2094   - Added "--no-doctype" and "--no-xml-declaration" options.
2096 * docutils/writers/html4css1.py:
2098   - "name" attributes only on these tags: a, applet, form, frame,
2099     iframe, img, map.
2100   - Added "name" attribute to <a> in section titles for Netscape 4
2101     support (bug report: Pearu Peterson).
2102   - Fixed targets (names) on footnote, citation, topic title,
2103     problematic, and system_message nodes (for Netscape 4).
2104   - Changed field names from "<td>" to "<th>".
2105   - Added "@" to "&#64;" encoding to thwart address harvesters.
2106   - Improved the vertical whitespace optimization; ignore "invisible"
2107     nodes (targets, comments, etc.).
2108   - Improved inline literals with ``<span class="pre">`` around chunks
2109     of text and ``&nbsp;`` for runs of spaces.
2110   - Improved modularity of output; added ``self.body_pre_docinfo`` and
2111     ``self.docinfo`` segments.
2112   - Added support for "line_block", "address" elements.
2113   - Improved backlinks (footnotes & system_messages).
2114   - Improved system_message output.
2115   - Redefined "--stylesheet" as containing an invariant URL, used
2116     verbatim.  Added "--stylesheet-path", interpreted w.r.t. the
2117     working directory.
2118   - Added "--footnote-references" option (superscript or brackets).
2119   - Added "--compact-lists" and "--no-compact-lists" options.
2120   - Added "--embed-stylesheet" and "--link-stylesheet" options;
2121     factored out ``HTMLTranslator.get_stylesheet_reference()``.
2122   - Improved field list rendering.
2123   - Added Docutils version to "generator" meta tag.
2124   - Fixed a bug with images; they must be inline, so wrapped in <p>.
2125   - Improved layout of <pre> HTML source.
2126   - Fixed attribute typo on <colspec>.
2127   - Refined XML prologue.
2128   - Support for no stylesheet.
2129   - Removed "interpreted" element support.
2130   - Added support for "title_reference", "sidebar", "attribution",
2131     "rubric", and generic "admonition" elements.
2132   - Added "--attribution" option.
2133   - Added support for "inline", "subscript", "superscript" elements.
2134   - Added initial support for "abbreviation" and "acronym";
2135     incomplete.
2137 * docutils/writers/latex2e.py: LaTeX Writer, added by Engelbert Gruber
2138   (from the sandbox).
2140   - Added french.
2141   - Double quotes in literal blocks (special treatment for de/ngerman).
2142   - Added '--hyperlink-color' option ('0' turns off coloring of links).
2143   - Added  "--attribution" option.
2144   - Right align attributions.
2146 * docutils/writers/pep_html.py:
2148   - Parameterized output encoding in PEP template.
2149   - Reworked substitutions from ``locals()`` into ``subs`` dict.
2150   - Redefined "--pep-stylesheet" as containing an invariant URL, used
2151     verbatim.  Added "--pep-stylesheet-path", interpreted w.r.t. the
2152     working directory.
2153   - Added an override on the "--footnote-references" option.
2154   - Factored out ``HTMLTranslator.get_stylesheet_reference()``.
2155   - Added Docutils version to "generator" meta tag.
2156   - Added a "DO NOT EDIT THIS FILE" comment to generated HTML.
2158 * docs/tools.txt:
2160   - Added a "silent" setting for ``buildhtml.py``.
2161   - Added a "Getting Help" section.
2162   - Rearranged the structure.
2163   - Kept up to date, with new settings, command-line options etc.
2164   - Added section for ``rst2latex.py`` (Engelbert Gruber).
2165   - Converted settings table into a definition list.
2167 * docs/rst/quickstart.txt:
2169   - Added a table of contents.
2170   - Added feedback information.
2171   - Added mention of minimum section title underline lengths.
2172   - Removed the 4-character minimum for section title underlines.
2174 * docs/rst/quickref.html:
2176   - Added a "Getting Help" section.
2177   - Added a style to make section title backlinks more subtle.
2178   - Added mention of minimum section title underline lengths.
2179   - Removed the 4-character minimum for section title underlines.
2181 * extras: Directory added to project; contains third-party modules
2182   that Docutils depends on (optparse, textwrap, roman).  These are
2183   only installed if they're not already present.
2185 * licenses: Directory added to project; contains copies of license
2186   files for non-public-domain files.
2188 * spec/doctree.txt:
2190   - Changed the focus.  It's about DTD elements:  structural
2191     relationships, semantics, and external (public) attributes.  Not
2192     about the element class library.
2193   - Moved some implementation-specific stuff into ``docutils.nodes``
2194     docstrings.
2195   - Wrote descriptions of all common attributes and parameter
2196     entities.  Filled in introductory material.
2197   - Working through the element descriptions: 55 down, 37 to go.
2198   - Removed "Representation of Horizontal Rules" to
2199     spec/rst/alternatives.txt.
2201 * spec/docutils.dtd:
2203   - Added "generated" inline element.
2204   - Added "line_block" body element.
2205   - Added "auto" attribute to "title".
2206   - Changed content models of "literal_block" and "doctest_block" to
2207     ``%text.model``.
2208   - Added ``%number;`` attribute type parameter entity.
2209   - Changed ``%structural.elements;`` to ``%section.elements``.
2210   - Updated attribute types; made more specific.
2211   - Added "address" bibliographic element.
2212   - Added "line" attribute to ``system_message`` element.
2213   - Removed "field_argument" element; "field_name" may contain
2214     multiple words and whitespace.
2215   - Changed public identifier to docutils.sf.net.
2216   - Removed "interpreted" element; added "title_reference",
2217     "abbreviation", "acronym".
2218   - Removed "refuri" attribute from "footnote_reference" and
2219     "citation_reference".
2220   - Added "sidebar", "rubric", "attribution", "admonition",
2221     "superscript", "subscript", and "inline" elements.
2223 * spec/pep-0256.txt: Converted to reStructuredText & updated.
2225 * spec/pep-0257.txt: Converted to reStructuredText & updated.
2227 * spec/pep-0258.txt: Converted to reStructuredText & updated.
2229 * spec/semantics.txt: Updated with text from a Doc-SIG response to
2230   Dallas Mahrt.
2232 * spec/transforms.txt: Added to project.
2234 * spec/howto: Added subdirectory, for developer how-to docs.
2236 * spec/howto/rst-directives.txt: Added to project.  Original by Dethe
2237   Elza, edited & extended by David Goodger.
2239 * spec/howto/i18n.txt: Docutils Internationalization.  Added to
2240   project.
2242 * spec/rst/alternatives.txt:
2244   - Added "Doctree Representation of Transitions" from
2245     spec/doctree.txt.
2246   - Updated "Inline External Targets" & closed the debate.
2247   - Added ideas for interpreted text syntax extensions.
2248   - Added "Nested Inline Markup" section.
2250 * spec/rst/directives.txt:
2252   - Added directives: "topic", "sectnum", "target-notes",
2253     "line-block", "parsed-literal", "include", "replace", "sidebar",
2254     "admonition", "rubric", "epigraph", "highlights", "unicode" and
2255     "class".
2256   - Formalized descriptions of directive details.
2257   - Added an "align" attribute to the "image" & "figure" directives
2258     (by Adam Chodorowski).
2259   - Added "class" options to "topic", "sidebar", "line-block",
2260     "parsed-literal", "contents", and "image"; and "figclass" to
2261     "figure".
2263 * spec/rst/interpreted.txt: Added to project.  Descriptions of
2264   interpreted text roles.
2266 * spec/rst/introduction.txt:
2268   - Added pointers to material for new users.
2270 * spec/rst/reStructuredText.txt:
2272   - Disambiguated comments (just add a newline after the "::").
2273   - Updated enumerated list description; added a discussion of the
2274     second-line validity checking.
2275   - Updated directive description.
2276   - Added a note redirecting newbies to the user docs.
2277   - Expanded description of inline markup start-strings in non-markup
2278     contexts.
2279   - Removed field arguments and made field lists a generic construct.
2280   - Removed the 4-character minimum for section title underlines.
2281   - Clarified term/classifier delimiter & inline markup ambiguity
2282     (definition lists).
2283   - Added "Embedded URIs".
2284   - Updated "Interpreted Text" section.
2285   - Added "Character-Level Inline Markup" section.
2287 * test: Continually adding & updating tests.
2289   - Moved test/test_rst/ to test/test_parsers/test_rst/.
2290   - Moved test/test_pep/ to test/test_readers/test_pep/.
2291   - Added test/test_readers/test_python/.
2292   - Added test/test_writers/ (Engelbert Gruber).
2294 * tools:
2296   - Made the ``locale.setlocale()`` calls in front ends
2297     fault-tolerant.
2299 * tools/buildhtml.py:
2301   - Added "--silent" option.
2302   - Fixed bug with absolute paths & "--config".
2303   - Updated for new I/O classes.
2304   - Added some exception handling.
2305   - Separated publishers' setting defaults; prevents interference.
2306   - Updated for new ``publish_file()`` convenience function.
2308 * tools/pep-html-template:
2310   - Allow for "--embed-stylesheet".
2311   - Added Docutils version to "generator" meta tag.
2312   - Added a "DO NOT EDIT THIS FILE" comment to generated HTML.
2313   - Conform to XHTML spec.
2315 * tools/pep2html.py:
2317   - Made ``argv`` a parameter to ``main()``.
2318   - Added support for "Content-Type:" header & arbitrary PEP formats.
2319   - Linked "Content-Type: text/plain" to PEP 9.
2320   - Files skipped (due to an error) are not pushed onto the server.
2321   - Updated for new I/O classes.
2322   - Added ``check_requirements()`` & ``pep_type_error()``.
2323   - Added some exception handling.
2324   - Updated for new ``publish_string()`` convenience function.
2325   - Added a "DO NOT EDIT THIS FILE" comment to generated HTML.
2327 * tools/quicktest.py:
2329   - Added "-V"/"--version" option.
2331 * tools/rst2latex.py: LaTeX front end, added by Engelbert Gruber.
2333 * tools/unicode2rstsubs.py: Added to project.  Produces character
2334   entity files (reSructuredText substitutions) from the MathML master
2335   unicode.xml file.
2337 * tools/editors: Support code for editors, added to project.  Contains
2338   ``emacs/restructuredtext.el``.
2340 * tools/stylesheets/default.css: Moved into the stylesheets directory.
2342   - Added style for chunks of inline literals.
2343   - Removed margin for first child of table cells.
2344   - Right-aligned field list names.
2345   - Support for auto-numbered section titles in TOCs.
2346   - Increased the size of inline literals (<tt>) in titles.
2347   - Restored the light gray background for inline literals.
2348   - Added support for "line_block" elements.
2349   - Added style for "address" elements.
2350   - Removed "a.footnote-reference" style; doing it with ``<sup>`` now.
2351   - Improved field list rendering.
2352   - Vertical whitespace improvements.
2353   - Removed "a.target" style.
2355 * tools/stylesheets/pep.css:
2357   - Fixed nested section margins.
2358   - Other changes parallel those of ``../default.css``.
2361 Release 0.2 (2002-07-31)
2362 ========================
2364 General:
2366 - The word "component" was being used ambiguously.  From now on,
2367   "component" will be used to mean "Docutils component", as in Reader,
2368   Writer, Parser, or Transform.  Portions of documents (Table of
2369   Contents, sections, etc.)  will be called "document parts".
2370 - Did a grand renaming: a lot of ``verylongnames`` became
2371   ``very_long_names``.
2372 - Cleaned up imports: no more relative package imports or
2373   comma-separated lists of top-level modules.
2374 - Added support for an option values object which carries default
2375   settings and overrides (from command-line options and library use).
2376 - Added internal Unicode support, and support for both input and
2377   output encodings.
2378 - Added support for the ``docutils.io.IO`` class & subclasses.
2380 Specific:
2382 * docutils/__init__.py:
2384   - Added ``ApplicationError`` and ``DataError``, for use throughout
2385     the package.
2386   - Added ``Component`` base class for Docutils components; implements
2387     the ``supports`` method.
2388   - Added ``__version__`` (thus, ``docutils.__version__``).
2390 * docutils/core.py:
2392   - Removed many keyword parameters to ``Publisher.__init__()`` and
2393     ``publish()``; bundled into an option values object.  Added
2394     "argv", "usage", "description", and "option_spec" parameters for
2395     command-line support.
2396   - Added ``Publisher.process_command_line()`` and ``.set_options()``
2397     methods.
2398   - Reworked I/O model for ``docutils.io`` wrappers.
2399   - Updated ``Publisher.set_options()``; now returns option values
2400     object.
2401   - Added support for configuration files (/etc/docutils.conf,
2402     ./docutils.conf, ~/.docutils).
2403   - Added ``Publisher.setup_option_parser()``.
2404   - Added default usage message and description.
2406 * docutils/frontend.py: Added to project; support for front-end
2407   (command-line) scripts.  Option specifications may be augmented by
2408   components.  Requires Optik (http://optik.sf.net/) for option
2409   processing (installed locally as docutils/optik.py).
2411 * docutils/io.py: Added to project; uniform API for a variety of input
2412   output mechanisms.
2414 * docutils/nodes.py:
2416   - Added ``TreeCopyVisitor`` class.
2417   - Added a ``copy`` method to ``Node`` and subclasses.
2418   - Added a ``SkipDeparture`` exception for visitors.
2419   - Renamed ``TreePruningException`` from ``VisitorException``.
2420   - Added docstrings to ``TreePruningException``, subclasses, and
2421     ``Nodes.walk()``.
2422   - Improved docstrings.
2423   - Added ``SparseNodeVisitor``, refined ``NodeVisitor``.
2424   - Moved ``utils.id()`` to ``nodes.make_id()`` to avoid circular
2425     imports.
2426   - Added ``decoration``, ``header``, and ``footer`` node classes, and
2427     ``PreDecorative`` mixin.
2428   - Reworked the name/id bookkeeping; to ``document``, removed
2429     ``explicit_targets`` and ``implicit_targets`` attributes, added
2430     ``nametypes`` attribute and ``set_name_id_map`` method.
2431   - Added ``NodeFound`` exception, for use with ``NodeVisitor``
2432     traversals.
2433   - Added ``document.has_name()`` method.
2434   - Fixed DOM generation for list-attributes.
2435   - Added category class ``Labeled`` (used by footnotes & citations).
2436   - Added ``Element.set_class()`` method (sets "class" attribute).
2438 * docutils/optik.py: Added to project.  Combined from the Optik
2439   package, with added option groups and other modifications.  The use
2440   of this module is probably only temporary.
2442 * docutils/statemachine.py:
2444   - Added ``runtime_init`` method to ``StateMachine`` and ``State``.
2445   - Added underscores to improve many awkward names.
2446   - In ``string2lines()``, changed whitespace normalizing translation
2447     table to regexp; restores Python 2.0 compatibility with Unicode.
2449 * docutils/urischemes.py:
2451   - Filled in some descriptions.
2452   - Added "shttp" scheme.
2454 * docutils/utils.py:
2456   - Added ``clean_rcs_keywords`` function (moved from
2457     docutils/transforms/frontmatter.py
2458     ``DocInfo.filter_rcs_keywords``).
2459   - Added underscores to improve many awkward names.
2460   - Changed names of Reporter's thresholds:
2461     warning_level -> report_level; error_level -> halt_level.
2462   - Moved ``utils.id()`` to ``nodes.make_id()``.
2463   - Added ``relative_path(source, target)``.
2465 * docutils/languages/de.py: German mappings; added to project.  Thanks
2466   to Gunnar Schwant for the translations.
2468 * docutils/languages/en.py: Added "Dedication" bibliographic field
2469   mappings.
2471 * docutils/languages/sv.py: Swedish mappings; added to project by Adam
2472   Chodorowski.
2474 * docutils/parsers/rst/states.py:
2476   - Added underscores to improve many awkward names.
2477   - Added RFC-2822 header support.
2478   - Extracted the inline parsing code from ``RSTState`` to a separate
2479     class, ``Inliner``, which will allow easy subclassing.
2480   - Made local bindings for ``memo`` container & often-used contents
2481     (reduces code complexity a lot).  See ``RSTState.runtime_init()``.
2482   - ``RSTState.parent`` replaces ``RSTState.statemachine.node``.
2483   - Added ``MarkupMismatch`` exception; for late corrections.
2484   - Added ``-/:`` characters to inline markup's start string prefix,
2485     ``/`` to end string suffix.
2486   - Fixed a footnote bug.
2487   - Fixed a bug with literal blocks.
2488   - Applied patch from Simon Budig: simplified regexps with symbolic
2489     names, removed ``Inliner.groups`` and ``Body.explicit.groups``.
2490   - Converted regexps from ``'%s' % var`` to ``'%(var)s' % locals()``.
2491   - Fixed a bug in ``Inliner.interpreted_or_phrase_ref()``.
2492   - Allowed non-ASCII in "simple names" (directive names, field names,
2493     references, etc.).
2494   - Converted ``Inliner.patterns.initial`` to be dynamically built
2495     from parts with ``build_regexp()`` function.
2496   - Changed ``Inliner.inline_target`` to ``.inline_internal_target``.
2497   - Updated docstrings.
2498   - Changed "table" to "grid_table"; added "simple_table" support.
2500 * docutils/parsers/rst/tableparser.py:
2502   - Changed ``TableParser`` to ``GridTableParser``.
2503   - Added ``SimpleTableParser``.
2504   - Refactored naming.
2506 * docutils/parsers/rst/directives/__init__.py: Added "en" (English) as
2507   a fallback language for directive names.
2509 * docutils/parsers/rst/directives/html.py: Changed the ``meta``
2510   directive to use a ``pending`` element, used only by HTML writers.
2512 * docutils/parsers/rst/directives/parts.py: Renamed from
2513   components.py.
2515   - Added "backlinks" attribute to "contents" directive.
2517 * docutils/parsers/rst/languages/sv.py: Swedish mappings; added to
2518   project by Adam Chodorowski.
2520 * docutils/readers/__init__.py: Gave Readers more control over
2521   choosing and instantiating Parsers.
2523 * docutils/readers/pep.py: Added to project; for PEP processing.
2525 * docutils/transforms/__init__.py: ``Transform.__init__()`` now
2526   requires a ``component`` parameter.
2528 * docutils/transforms/components.py: Added to project; transforms
2529   related to Docutils components.
2531 * docutils/transforms/frontmatter.py:
2533   - In ``DocInfo.extract_authors``, check for a single "author" in an
2534     "authors" group, and convert it to a single "author" element.
2535   - Added support for "Dedication" and generic bibliographic fields.
2537 * docutils/transforms/peps.py: Added to project; PEP-specific.
2539 * docutils/transforms/parts.py: Renamed from old components.py.
2541   - Added filter for `Contents`, to use alt-text for inline images,
2542     and to remove inline markup that doesn't make sense in the ToC.
2543   - Added "name" attribute to TOC topic depending on its title.
2544   - Added support for optional TOC backlinks.
2546 * docutils/transforms/references.py: Fixed indirect target resolution
2547   in ``Hyperlinks`` transform.
2549 * docutils/transforms/universal.py:
2551   - Changed ``Messages`` transform to properly filter out system
2552     messages below the warning threshold.
2553   - Added ``Decorations`` transform (support for ``--generator``,
2554     ``--date``, ``--time``, ``--source-link`` options).
2556 * docutils/writers/__init__.py: Added "pdf" alias in anticipation of
2557   Engelbert Gruber's PDF writer.
2559 * docutils/writers/html4css1.py:
2561   - Made XHTML-compatible (switched to lowercase element & attribute
2562     names; empty tag format).
2563   - Escape double-dashes in comment text.
2564   - Improved boilerplate & modularity of output.
2565   - Exposed modular output in Writer class.
2566   - Added a "generator" meta tag to <head>.
2567   - Added support for the ``--stylesheet`` option.
2568   - Added support for ``decoration``, ``header``, and ``footer``
2569     elements.
2570   - In ``HTMLTranslator.attval()``, changed whitespace normalizing
2571     translation table to regexp; restores Python 2.0 compatibility
2572     with Unicode.
2573   - Added the translator class as instance variable to the Writer, to
2574     make it easily subclassable.
2575   - Improved option list spacing (thanks to Richard Jones).
2576   - Modified field list output.
2577   - Added backlinks to footnotes & citations.
2578   - Added percentage widths to "<col>" tags (from colspec).
2579   - Option lists: "<code>" changed to "<kbd>", ``option_argument``
2580     "<span>" changed to "<var>".
2581   - Inline literals: "<code>" changed to "<tt>".
2582   - Many changes to optimize vertical space: compact simple lists etc.
2583   - Add a command-line options & directive attributes to control TOC
2584     and footnote/citation backlinks.
2585   - Added support for optional footnote/citation backlinks.
2586   - Added support for generic bibliographic fields.
2587   - Identify backrefs.
2588   - Relative URLs for stylesheet links.
2590 * docutils/writers/pep_html.py: Added to project; HTML Writer for
2591   PEPs (subclass of ``html4css1.Writer``).
2593 * docutils/writers/pseudoxml.py: Renamed from pprint.py.
2595 * docutils/writers/docutils_xml.py: Added to project; trivial writer
2596   of the Docutils internal doctree in XML.
2598 * docs/tools.txt: "Docutils Front-End Tools", added to project.
2600 * spec/doctree.txt:
2602   - Changed the title to "The Docutils Document Tree".
2603   - Added "Hyperlink Bookkeeping" section.
2605 * spec/docutils.dtd:
2607   - Added ``decoration``, ``header``, and ``footer`` elements.
2608   - Brought ``interpreted`` element in line with the parser: changed
2609     attribute "type" to "role", added "position".
2610   - Added support for generic bibliographic fields.
2612 * spec/notes.txt: Continual updates.  Added "Project Policies".
2614 * spec/pep-0256.txt:  Updated.  Added "Roadmap to the Doctring PEPs"
2615   section.
2617 * spec/pep-0257.txt: Clarified prohibition of signature repetition.
2619 * spec/pep-0258.txt: Updated.  Added text from pysource.txt and
2620   mailing list discussions.
2622 * spec/pep-0287.txt:
2624   - Renamed to "reStructuredText Docstring Format".
2625   - Minor edits.
2626   - Reworked Q&A as an enumerated list.
2627   - Converted to reStructuredText format.
2629 * spec/pysource.dtd:
2631   - Reworked structural elements, incorporating ideas from Tony Ibbs.
2633 * spec/pysource.txt: Removed from project.  Moved much of its contents
2634   to pep-0258.txt.
2636 * spec/rst/alternatives.txt:
2638   - Expanded auto-enumerated list idea; thanks to Fred Bremmer.
2639   - Added "Inline External Targets" section.
2641 * spec/rst/directives.txt:
2643   - Added "backlinks" attribute to "contents" directive.
2645 * spec/rst/problems.txt:
2647   - Updated the Enumerated List Markup discussion.
2648   - Added new alternative table markup syntaxes.
2650 * spec/rst/reStructuredText.txt:
2652   - Clarified field list usage.
2653   - Updated enumerated list description.
2654   - Clarified purpose of directives.
2655   - Added ``-/:`` characters to inline markup's start string prefix,
2656     ``/`` to end string suffix.
2657   - Updated "Authors" bibliographic field behavior.
2658   - Changed "inline hyperlink targets" to "inline internal targets".
2659   - Added "simple table" syntax to supplement the existing but
2660     newly-renamed "grid tables".
2661   - Added cautions for anonymous hyperlink use.
2662   - Added "Dedication" and generic bibliographic fields.
2664 * test: Made test modules standalone (subdirectories became packages).
2666 * test/DocutilsTestSupport.py:
2668   - Added support for PEP extensions to reStructuredText.
2669   - Added support for simple tables.
2670   - Refactored naming.
2672 * test/package_unittest.py: Renamed from UnitTestFolder.py.
2674   - Now supports true packages containing test modules
2675     (``__init__.py`` files required); fixes duplicate module name bug.
2677 * test/test_pep/: Subpackage added to project; PEP testing.
2679 * test/test_rst/test_SimpleTableParser.py: Added to project.
2681 * tools:
2683   - Updated html.py and publish.py front-end tools to use the new
2684     command-line processing facilities of ``docutils.frontend``
2685     (exposed in ``docutils.core.Publisher``), reducing each to just a
2686     few lines of code.
2687   - Added ``locale.setlocale()`` calls to front-end tools.
2689 * tools/buildhtml.py: Added to project; batch-generates .html from all
2690   the .txt files in directories and subdirectories.
2692 * tools/default.css:
2694   - Added support for ``header`` and ``footer`` elements.
2695   - Added styles for "Dedication" topics (biblio fields).
2697 * tools/docutils.conf: A configuration file; added to project.
2699 * tools/docutils-xml.py: Added to project.
2701 * tools/pep.py: Added to project; PEP to HTML front-end tool.
2703 * tools/pep-html-template: Added to project.
2705 * tools/pep2html.py: Added to project from Python (nondist/peps).
2706   Added support for Docutils (reStructuredText PEPs).
2708 * tools/quicktest.py:
2710   - Added the ``--attributes`` option, hacked a bit.
2711   - Added a second command-line argument (output file); cleaned up.
2713 * tools/stylesheets/: Subdirectory added to project.
2715 * tools/stylesheets/pep.css: Added to project; stylesheet for PEPs.
2718 Release 0.1 (2002-04-20)
2719 ========================
2721 This is the first release of Docutils, merged from the now inactive
2722 reStructuredText__ and `Docstring Processing System`__ projects.  For
2723 the pre-Docutils history, see the `reStructuredText HISTORY`__ and the
2724 `DPS HISTORY`__ files.
2726 __ http://structuredtext.sourceforge.net/
2727 __ http://docstring.sourceforge.net/
2728 __ http://structuredtext.sourceforge.net/HISTORY.html
2729 __ http://docstring.sourceforge.net/HISTORY.html
2731 General changes: renamed 'dps' package to 'docutils'; renamed
2732 'restructuredtext' subpackage to 'rst'; merged the codebases; merged
2733 the test suites (reStructuredText's test/test_states renamed to
2734 test/test_rst); and all modifications required to make it all work.
2736 * docutils/parsers/rst/states.py:
2738   - Improved diagnostic system messages for missing blank lines.
2739   - Fixed substitution_reference bug.
2743    Local Variables:
2744    mode: indented-text
2745    indent-tabs-mode: nil
2746    sentence-end-double-space: t
2747    fill-column: 70
2748    End: