summaryrefslogtreecommitdiff
path: root/docutils
Commit message (Collapse)AuthorAgeFilesLines
* some more subdoc pruningwiemann2007-08-242-7/+6
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5426 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* push system messages up to super-document so they do not get lost (tested);wiemann2007-08-243-59/+47
| | | | | | | | expand ~ in docset-root and subdocs (not tested); prune subdocs for a couple of target/reference transforms which are applied to every document anyway, so they do not need to descend into subdocs (not all tested); removed unnecessary import in latex2e git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5425 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* allow node class tuples as traverse conditionwiemann2007-08-241-7/+6
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5424 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* fixed prune_subdocs... again.wiemann2007-08-241-7/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5423 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* fixed bug with prune_subdocs in Node.traverse (will be tested in later ↵wiemann2007-08-241-3/+3
| | | | | | check-ins) git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5422 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* resolve indirect qualified targetswiemann2007-08-224-46/+131
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5418 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* made namespace qualifiers case-insensitive, and accept backslashes, too;wiemann2007-08-201-4/+6
| | | | | | fixed typo git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5415 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added qualified references syntax;wiemann2007-08-205-9/+102
| | | | | | | added references.QualifiedReferences transform to resolve them; to do: add documentation, find bugs git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5414 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added misc.CheckDoctreeValidity transform to catch invalid doctrees caused ↵wiemann2007-08-202-0/+69
| | | | | | by content after the subdocs directive git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5413 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added prune_subdocs parameter to Node.traversewiemann2007-08-201-9/+22
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5412 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* do not transform sub-document titles into subtitles; slight clean-up in parts.pywiemann2007-08-192-14/+6
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5410 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* strip decoration (header and footer) from sub-documentswiemann2007-08-191-2/+7
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5409 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* docset-root should be relative to current file, not current document (tested ↵wiemann2007-08-191-1/+2
| | | | | | with standard.txt checked in in previous revision) git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5408 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* renamed directive class to Subdocswiemann2007-08-172-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5406 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* avoid creation of duplicate ID's in sub-documentswiemann2007-08-173-10/+24
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5405 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* removed my duplicate implementation of utils.relative_path();wiemann2007-08-172-34/+10
| | | | | | utils.relative_path() now handles backslashes on Windows git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5404 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* removed accidentally checked-in integrity check; was for debugging onlywiemann2007-08-162-9/+0
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5403 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* implemented simple version of multi-file output (no navigational aids though)wiemann2007-08-164-25/+183
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5402 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added tests; use "doc-set root" instead of "docset root" in Englishwiemann2007-08-151-5/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5398 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added docset-root directive;wiemann2007-08-1525-111/+183
| | | | | | | | finished implementation of subdocs directive, including all error handling and tests; changed directive parser so that if option_spec == {} (as opposed to None), space is still reserved for options, i.e. there must be a blank line before the content block git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5397 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* re-enabled support for dump_transforms setting (lost during change in ↵wiemann2007-08-151-0/+8
| | | | | | transform architecture) git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5396 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* first working implementation of sub-document directive; tests to be added ↵wiemann2007-07-082-60/+123
| | | | | | later, probably some bugs left git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5324 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* simplified parse_field_body so it puts everything into one paragraph; this ↵wiemann2007-07-011-8/+1
| | | | | | does not make a difference since role/directive options cannot contain blank lines anyway git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5309 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added subdocs directive (the last commit should have been ru.py only :-/)wiemann2007-06-261-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5279 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* reformatted for easier changingwiemann2007-06-2619-80/+118
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5278 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added first implementation of subdocs directivewiemann2007-06-262-0/+131
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5277 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added reader as Parser.__init__ parameter, as RSTStateMachine.run parameter, ↵wiemann2007-06-245-15/+28
| | | | | | as an attribute of the RST state machines' memos, as Directive.__init__ parameter, and as a Directive.reader attribute git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5268 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* moved responsibility for applying transforms from publisher towiemann2007-06-249-32/+63
| | | | | | Reader.read and Writer.write methods git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5266 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* do not support transforms for source and destination; this is unused, and ↵wiemann2007-06-232-5/+3
| | | | | | should be done by readers and writers git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/subdocs@5265 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Merge smaller differences from latex2e_adaptive_preamble.subdocs@5264grubert2007-06-201-18/+26
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5261 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add ``use-part-section``.grubert2007-06-141-2/+9
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5237 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added some bottom margin for sidebars (adding top margin looks funny since ↵wiemann2007-06-031-1/+1
| | | | | | sidebars usually have paragraph spacing in front of them anyway) git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5196 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Put leavevmode before longtable to avoid having it moved before sub/pargraph.grubert2007-05-311-2/+8
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5178 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* adjusted name and email addresswiemann2007-05-314-4/+4
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5174 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Using leavevmode after terms option_list no longer needs to check parent for ↵grubert2007-05-281-3/+0
| | | | | | being a def.list. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5170 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* - Append ``\leavemode`` to definition list terms.grubert2007-05-281-3/+4
| | | | | | | - No longer write vist_/depart_definition_list_item comments to output. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5169 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Table column width with 3 decimal places.grubert2007-05-281-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5167 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add table stubs support (boldfont).grubert2007-05-251-1/+12
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5141 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add assemble_parts to writer.grubert2007-05-081-0/+9
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5072 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add simply support for nested tables.grubert2007-04-181-4/+10
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5049 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix verbatim in tables if use-verbatim-when-possible.grubert2007-04-181-6/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5048 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Use section commands down to subparagraph.grubert2007-04-141-16/+8
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5047 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added class="internal"/class="external" to a elementswiemann2007-04-101-5/+7
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5045 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* added named constants, removed magic numbersgoodger2007-04-031-7/+14
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5040 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* reverted r5032; breaks Python 2.2 compatibilitywiemann2007-03-212-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5033 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* replaced 'raw_unicode_escape' with 'ascii', 'backslashreplace' so we don't ↵wiemann2007-03-212-2/+2
| | | | | | get latin1 strings git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5032 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* moved Element.__str__ to Node.__str__ so Text has it too;wiemann2007-03-211-5/+12
| | | | | | made all Element and Text node convertible to unicode git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5030 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* do not encode embedded stylesheets, because HTML entities arewiemann2007-03-192-2/+2
| | | | | | not decoded by the browser before the style sheet is passed to the CSS parser git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5029 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* replaced <>@ with ()at because they come out as a mess whenwiemann2007-03-191-1/+1
| | | | | | the stylesheet is embedded git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5027 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* encode <>@ in stylesheetswiemann2007-03-191-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5024 929543f6-e4f2-0310-98a6-ba3bd3dd1d04