summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2005-03-26 18:10:12 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2005-03-26 18:10:12 +0000
commit3f6f4f5fc196c8dbea8c25d9f7e185b3005d3988 (patch)
treef38c86084cc90f95c763b4622cc2350ecc01bf99
parent288f455a585cd18ceb80a66325d5bb3de6c11c9f (diff)
downloaddocutils-3f6f4f5fc196c8dbea8c25d9f7e185b3005d3988.tar.gz
updated history file to reflect recent merge-in of multiple-ids branch
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@3133 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
-rw-r--r--HISTORY.txt20
1 files changed, 18 insertions, 2 deletions
diff --git a/HISTORY.txt b/HISTORY.txt
index 77b65251d..a89dac67c 100644
--- a/HISTORY.txt
+++ b/HISTORY.txt
@@ -14,6 +14,13 @@
Changes Since 0.3.7
===================
+* General:
+
+ - Eliminated and replaced all uses of the old string attributes
+ ``id``, ``name``, ``dupname`` and ``class`` with references to the
+ new list attributes ``ids``, ``names``, ``dupnames`` and
+ ``classes`` throughout the whole source tree.
+
* docutils/core.py:
- Enabled ``--dump-*`` options when ``--traceback`` specified,
@@ -29,6 +36,10 @@ Changes Since 0.3.7
- ``image`` element class changed to subclass of Element, not
TextElement (it's an empty element, and cannot contain text).
+ - Added ``attr_defaults`` dictionary for default attribute values.
+ - Added empty list as default value for the following attributes:
+ ``ids``, ``names``, ``dupnames``, ``classes`` for Element nodes,
+ and additionally ``backrefs`` for BackLinkable nodes.
* docutils/languages/nl.py: Added to project; Dutch mappings by
Martijn Pieters.
@@ -76,9 +87,12 @@ Changes Since 0.3.7
* docutils/transforms/references.py:
- - Fixed mislocated internal targets bug, by relocating targets
- followed by a section into the title of that section.
+ - Fixed mislocated internal targets bug, by propagating internal
+ targets to the next node, making use of the newly added support
+ for multiple names and IDs.
- Fixed duplicate footnote label bug.
+ - Replaced ``ChainedTargets`` with more generic ``PropagateTargets``
+ transform.
* docutils/writers/html4css1.py:
@@ -86,6 +100,8 @@ Changes Since 0.3.7
stylesheet references).
- ``target`` nodes now appear as ``span`` tags (instead of ``a``
tags).
+ - Added support for multiple IDs per node by creating empty ``span``
+ tags.
* docutils/writers/latex2e.py: