summaryrefslogtreecommitdiffstats
path: root/Doc/tools
Commit message (Collapse)AuthorAgeFilesLines
* Make this do the right thing with entries which start with the percent sign,Fred Drake2001-12-261-30/+54
| | | | | | | | | in response to Skip's comments in SF bug #487165. Make use of string methods instead of string module functions in most places. Add (and make the default) a way to collapse symbol entries into a single "Symbols" section in the generated index. This is similar to what makeindex does, but does not include entries beginning with an underscore.
* Update to reflect recently added markup.Fred Drake2001-12-151-0/+9
|
* Script to generate the table of distribution packages, plugging in the sizeFred Drake2001-12-081-0/+97
| | | | information automatically.
* Remove meaningless comment.Fred Drake2001-12-041-3/+0
|
* Drop xmllib in favor of SAX.Fred Drake2001-11-301-21/+30
|
* Add a couple of entries to the whitespace-cleanups table.Fred Drake2001-11-301-0/+2
|
* Added two new conversion specifications.Fred Drake2001-11-301-0/+7
|
* A few small changes:Fred Drake2001-11-291-8/+17
| | | | | | | | | | | | | | - Change PREFIX to PREFIXES, which contains a sequence of prefix strings. This is useful since we want to look for both Py and PY. - Wrap a long line. - Collect struct tags as well as typedef names. Since we generally only use one of the other, that improves coverage. - Make the script executable on Unix. This could use a better approach to determine if a symbol is documented, and could easily avoid keeping the massive string in memory. That would take time to actually write more code, though, so we'll bail on that for now.
* Avoid trailing blank lines in the output.Fred Drake2001-11-191-0/+4
|
* Adjust input pre-processing so that a comment on the last line does notFred Drake2001-11-191-1/+3
| | | | break the processor; this will do the right thing.
* No need to preprocess the header files - use ctags -I flag instead toThomas Heller2001-11-121-27/+15
| | | | remove DL_IMPORT.
* Remove my name, probably bad style.Thomas Heller2001-11-091-2/+0
|
* Script to print undocumented symbols found in Python header files.Thomas Heller2001-11-091-0/+99
|
* Add a new option, --dvips-safe, which sets the $DVIPS_SAFE option inFred Drake2001-10-301-1/+30
| | | | | | | | LaTeX2HTML. This is not safe to do in general (for the reasons LaTeX2HTML protects against dvips to begin with), but is safe if we do not actually need to run dvips. Note that we also assume it is safe if the user specifically requests PostScript generation. See the comments for further explanation.
* One more LaTeX-ism that we'd rather ignore.Fred Drake2001-10-251-0/+1
|
* No need to run make twice here.Fred Drake2001-10-251-1/+0
|
* Do a little bit more to try and add <link> elements to the header, not thatFred Drake2001-10-221-1/+10
| | | | | | | Mozilla 0.9.5 can make intelligent use of them. Specifically, this causes the "Acknowledgements" and "Global Module Index" pages to acquire "up" links in the Mozilla "Site Navigation Bar". This partially responds to SF bug #469772.
* New markup: \note{...} and \warning{...}Fred Drake2001-10-091-0/+6
|
* Handle PEP references the same way RFC references.Fred Drake2001-09-291-6/+5
|
* Fix up whitespace in <args> elements; reduce sequences of consecutiveFred Drake2001-09-291-17/+15
| | | | | whitespace characters to a single space. Small changes elsewhere, mostly to clean up the code a little.
* Convert to string methods.Fred Drake2001-09-281-36/+59
| | | | | | | | | | | For the real document element, make sure the prolog is migrated into the document element so it isn't left stranded. Make fixup_trailing_whitespace() whitespace do what was really intended. Add the *desc environments used in the C API manual to the list of things that can exist at the paragraph level so they don't get wrapped in <para>...</para>.
* Convert most uses of the string module to string methods.Fred Drake2001-09-283-16/+15
| | | | (string.join() lives!)
* Do not distinguish \refmodule from \module in the generated output;Fred Drake2001-09-271-1/+4
| | | | | | whether or not a link will be generated will depend on the link database. Add a couple of explanatory comments for one of the stranger constructs (giving input an empty name).
* Re-write <ulink> elements as described in the conversion spec.Fred Drake2001-09-271-0/+19
|
* Turn \input, \include, and \verbatiminput into XInclude elements insteadFred Drake2001-09-272-10/+14
| | | | of something ad-hoc.
* Add support for some more markup that had slipped in.Fred Drake2001-09-271-2/+15
| | | | Fixed a typo in a comment.
* Update to support \mailheader and 5-column tables.Fred Drake2001-09-251-0/+52
|
* Simplify a helper by returning fewer values.Fred Drake2001-09-251-5/+4
|
* Do more to be compatible with Windows/CygWin. Make error messages moreFred Drake2001-08-101-2/+14
| | | | | | informative when a child process dies with an error. This is a variation of parts of SF patch #429611.
* Add option to push the development docs to SF without announcing, forFred Drake2001-08-081-2/+9
| | | | when the changes are just too small.
* Change the command lines to use a similar "phrasing" to that used in theFred Drake2001-07-181-15/+15
| | | | | other documentation makefiles. This is probably not sufficient to run the conversion on Windows, but goes at least part way.
* Script to re-write @FOO@-style marks with values, initializing theFred Drake2001-07-171-0/+55
| | | | | | | | | | | | replacement for @DATE@ from a TeX file containing a \date{...} mark (such as texinputs/boilerplate.tex). This will be used to re-write the html/index.html.in file instead of a combination of grep, date, and sed -- this is more portable to non-Unix platforms. This solves part of the problem reported in SF patch #429611, but does not use the suggested patch.
* Job.__init__(): Only create the builddir directory if it will be used (byFred Drake2001-07-171-6/+7
| | | | | | | | building the HTML or text documentation). There is no need to create it for other formats. Job.build_html(): The builddir parameter is always passed in, so it need not be optional.
* Change the target name for \kbd.Fred Drake2001-07-141-1/+1
|
* Generate a more meaningful message regarding the type of the documentationFred Drake2001-07-121-1/+1
| | | | release being discussed.
* Add conversion information for the grammar production support (preliminary).Fred Drake2001-07-091-0/+16
|
* Move & update a comment.Fred Drake2001-07-071-4/+12
| | | | Add support for the \ulink macro.
* Change the way notification mails are sent so people who respond to theFred Drake2001-07-061-1/+5
| | | | | update announcements do not get bounces from trying to send mail to my laptop, which has an identity crisis due to constant relocation.
* Add entries for recently defined markup.Fred Drake2001-07-061-0/+23
|
* Simplification to mirror a better conversion specification and moreFred Drake2001-07-061-6/+1
| | | | powerful latex2esis.py.
* Allow optional arguments to LaTeX macros to span lines. This is legal inFred Drake2001-07-061-1/+1
| | | | | LaTeX and we have at least one occurance of that in the content, so this script needs to support it as well.
* Give the pattern used to pick out a source anchor a more specific pattern.Fred Drake2001-06-231-1/+1
|
* Miscellaneous code cleanups.Fred Drake2001-06-231-4/+10
| | | | | Make sure we do not lose track of the build directory -- convert a user- supplied directory to an absolute path.
* Adjust to understand use of either single- or double-quotes to quoteFred Drake2001-06-221-20/+23
| | | | | | attribute values, and make the logic surrounding the platform annotations just a little easier to read. Also make the platform notes appear in the generated page; they were supposed to, but did not.
* Make the option processing more robust.Fred Drake2001-06-121-7/+31
| | | | | | | Add a -F option similar to "cvs commit -F <file>". Add a -t option to allow specifying the prefix to the directory into which the docs should be unpacked (useful when I start trying out new styles for the presentation).
* New solution to the "Someone stuck a colon in that filename!" problem:Fred Drake2001-05-291-3/+10
| | | | | Allow colons in the labels used for internal references, but do not expose them when generating filename.
* Hack to make this play nicer with *old* versions of Python: os.path.abspath()Fred Drake2001-05-291-0/+10
| | | | | was not available in Python 1.5.1. (Yes, a user actually tried to use this with that version of Python!)
* If the input line does not contain enough fields, raise a meaningfulFred Drake2001-05-291-0/+2
| | | | error.
* Update the directory names to match changes at SourceForge.Fred Drake2001-05-092-2/+2
|
* Job.build_html(): Be more robust in ensuring about.html exists; copyingFred Drake2001-05-091-17/+16
| | | | | | | | | the right HTML file to the name about.html is needed even if the --numeric option was not given -- some other name may have been assigned due to some non-determinism in the algorithm use to perform name allocation. ;-( This closes the "About..." portion of SF bug #420216.