[Structuredtext-checkins] CVS: restructuredtext HISTORY.txt,1.48,1.49
Status: Pre-Alpha
Brought to you by:
goodger
|
From: David G. <go...@us...> - 2002-04-18 02:48:51
|
Update of /cvsroot/structuredtext/restructuredtext
In directory usw-pr-cvs1:/tmp/cvs-serv14252/restructuredtext
Modified Files:
HISTORY.txt
Log Message:
fixed whitespace & updated
Index: HISTORY.txt
===================================================================
RCS file: /cvsroot/structuredtext/restructuredtext/HISTORY.txt,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** HISTORY.txt 14 Apr 2002 19:40:19 -0000 1.48
--- HISTORY.txt 18 Apr 2002 02:48:48 -0000 1.49
***************
*** 26,40 ****
Yee, Moshe Zadka
! (I'm still waiting for contributions of yummy treats, computer
! equipment, and cold hard cash. :-) Hopefully I haven't forgotten
! anyone or misspelled any names; apologies (and please let me know!) if
! I have.
! Release 0.4? (pending)
========================
! Updated docstrings for new field list syntax (bibliographic info).
! Changed contact email addresses.
* install.py: Added to project.
--- 26,40 ----
Yee, Moshe Zadka
! (I did get some yummy treats, but I'm still waiting for contributions
! of computer equipment and cold hard cash :-).) Hopefully I haven't
! forgotten anyone or misspelled any names; apologies (and please let me
! know!) if I have.
! Release 0.4 (2002-04-??)
========================
! General: updated docstrings for new field list syntax (bibliographic
! info); changed contact email addresses.
* install.py: Added to project.
***************
*** 127,134 ****
- Added ``Body.parse_extension_attributes()``.
! * restructuredtest/tableparser.py: Added to project. Contains the
TableParser class.
! * restructuredtext/test_states.py: Refactored to test directory. This
file removed.
--- 127,134 ----
- Added ``Body.parse_extension_attributes()``.
! * restructuredtest/tableparser.py: Added to project. Contains the
TableParser class.
! * restructuredtext/test_states.py: Refactored to test directory. This
file removed.
***************
*** 138,192 ****
- Added directive module & function import support.
! * restructuredtext/directives/misc.py: Implementation of a
! test directive, 'restructuredtext-test-directive'. Added to project.
* restructuredtext/directives/admonitions.py: Implementation of
! admonition directives 'note', 'caution', etc. Added to project.
* restructuredtext/directives/components.py: Implementation of
! document components directives 'contents', 'footnotes', etc. Added
to project.
* restructuredtext/directives/images.py: Implementation of
! directives 'image' & 'figure'. Added to project.
* restructuredtext/directives/html.py: Implementation of
! HTML-specific directives 'meta' & 'imagemap'. Added to project.
! * restructuredtext/languages: Subpackage added to project. Contains
modules for language-dependent language-dependent parser features.
Includes en.py for English.
! * test: Subdirectory added. The top-level consists of a modular test
framework begun by Garth Kidd.
* test/test_states: Subdirectory added; contains test modules
! refactored from restructuredtext/test_states.py:
!
! - Added unit tests from Garth Kidd.
! - Changed to match state.RSTStateMachine.run()'s return value.
! - Added explanatory text to several tests (makes them
! self-documenting: "what am I testing?").
! - Added tests for overline-titles, duplicate link targets.
! - Moved some tests around to where they make more sense.
! - Added enumerated list tests.
! - Clarified some edge-case tests.
! - Added tests for field lists, option lists.
! - Added tests for tables.
! - Added tests for table parser.
! - New tests for literal_block edge cases.
! - Added tests for empty list items.
! - New test for comment edge case.
! - Added 'term : classifier' tests.
! - Added auto-numbered footnote tests.
! - Updated 'test directive' tests.
! - Added 'unknown directive' tests.
! - Added tests for admonitions and image/figure directives.
! * tools: Subdirectory added. Contains quicktest.py by Garth Kidd, a
! a front-end to the reStructuredText parser; and publish.py, a
! minimal front-end to the Docutils Publisher.
! * sandbox: Subdirectory added; for playing around. It's OK to make
a mess!
--- 138,173 ----
- Added directive module & function import support.
! * restructuredtext/directives/misc.py: Implementation of a test
! directive, 'restructuredtext-test-directive'. Added to project.
* restructuredtext/directives/admonitions.py: Implementation of
! admonition directives 'note', 'caution', etc. Added to project.
* restructuredtext/directives/components.py: Implementation of
! document components directives 'contents', 'footnotes', etc. Added
to project.
* restructuredtext/directives/images.py: Implementation of
! directives 'image' & 'figure'. Added to project.
* restructuredtext/directives/html.py: Implementation of
! HTML-specific directives 'meta' & 'imagemap'. Added to project.
! * restructuredtext/languages: Subpackage added to project. Contains
modules for language-dependent language-dependent parser features.
Includes en.py for English.
! * test: Subdirectory added. The top-level consists of a modular test
framework begun by Garth Kidd.
* test/test_states: Subdirectory added; contains test modules
! refactored from the old restructuredtext/test_states.py.
! * tools: Subdirectory added. Contains quicktest.py by Garth Kidd, a
! front-end to the reStructuredText parser; publish.py, a minimal
! front-end to the Docutils Publisher producing pretty-printed
! pseudo-XML; and html.py, a simple HTML-producing front-end.
! * sandbox: Subdirectory added; for playing around. It's OK to make
a mess!
***************
*** 197,200 ****
--- 178,183 ----
* sandbox/alanj: Subdirectory added, from files by Alan Jaffray.
+ * sandbox/richardj: Subdirectory added, from files by Richard Jones.
+
* spec/alternatives.txt: Added to project.
***************
*** 215,219 ****
- Removed mention of compound enumerators.
- Updated footnotes.
! - Removed "Parser Implementation Plan". (It's implemented!)
- Revised.
--- 198,202 ----
- Removed mention of compound enumerators.
- Updated footnotes.
! - Removed "Parser Implementation Plan". (It's implemented!)
- Revised.
***************
*** 292,298 ****
* restructuredtext/test_states.py: Added to project.
! * restructuredtext/ndiff.py: Added to project. This is a modified
version of Python's Tools/scripts/ndiff.py, and is used by
! test_states.py. I have committed to adding its functionality to
Python's Lib/difflib.py.
--- 275,281 ----
* restructuredtext/test_states.py: Added to project.
! * restructuredtext/ndiff.py: Added to project. This is a modified
version of Python's Tools/scripts/ndiff.py, and is used by
! test_states.py. I have committed to adding its functionality to
Python's Lib/difflib.py.
***************
*** 300,304 ****
- Introduced implicit hyperlink targets for section titles.
! - Changed 'comment block' to 'explicit markup block'. Rearranged &
edited the text of footnotes, hyperlink targets, directives, &
comments.
--- 283,287 ----
- Introduced implicit hyperlink targets for section titles.
! - Changed 'comment block' to 'explicit markup block'. Rearranged &
edited the text of footnotes, hyperlink targets, directives, &
comments.
***************
*** 318,322 ****
* spec/reStructuredText.txt:
! - Added workable indented section syntax, then removed it. See
spec/indentedsections.txt (included in this release only).
- Added details of whitespace preservation in inline literals.
--- 301,305 ----
* spec/reStructuredText.txt:
! - Added workable indented section syntax, then removed it. See
spec/indentedsections.txt (included in this release only).
- Added details of whitespace preservation in inline literals.
***************
*** 353,357 ****
- Tightened up syntax specifications.
- Changed "descriptive lists" to "definition lists", changed syntax.
! - Added field lists. Syntax not settled yet.
- Added header row separator ('=') to tables.
- Allowed comment blocks (comments, directives, hyperlink targets,
--- 336,340 ----
- Tightened up syntax specifications.
- Changed "descriptive lists" to "definition lists", changed syntax.
! - Added field lists. Syntax not settled yet.
- Added header row separator ('=') to tables.
- Allowed comment blocks (comments, directives, hyperlink targets,
***************
*** 371,375 ****
- Added sections: "Blank Lines in Lists", "Definition List Markup",
"Underlining".
! - General editing & cleanup. Tightened up analyses, added
alternatives.
--- 354,358 ----
- Added sections: "Blank Lines in Lists", "Definition List Markup",
"Underlining".
! - General editing & cleanup. Tightened up analyses, added
alternatives.
***************
*** 393,399 ****
! .. Local Variables:
! .. mode: indented-text
! .. indent-tabs-mode: nil
! .. fill-column: 70
! .. End:
--- 376,384 ----
! ..
! Local Variables:
! mode: indented-text
! indent-tabs-mode: nil
! sentence-end-double-space: t
! fill-column: 70
! End:
|