summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Fix the URL for the regex-to-re HOWTO.Fred Drake1998-03-064-4/+4
|
* Oops, I *thoughT* I had seen a better address for Andrew....Fred Drake1998-03-052-2/+2
|
* Updated URL & email addresses related to the PCT.Fred Drake1998-03-052-4/+4
| | | | | Andrew, plase check to make sure these are the ones you want used and get back to me; this stuff will be "published" in the near future.
* Corrected citation markup in first paragraph.Fred Drake1998-03-052-6/+6
|
* Update documentation release date.Fred Drake1998-03-052-2/+2
|
* For verbatim text, don't bounce down a size.Fred Drake1998-03-052-8/+4
|
* Move the change to ending the abstract from python.sty to manual.cls; itFred Drake1998-03-054-30/+28
| | | | is not appropriate for the howto document class.
* latex-$(VERSION).tar.gz, tarlatex: Create the source distribution.Fred Drake1998-03-051-3/+9
| | | | clean: Remove all the generatable tarballs.
* Build a tarball that extracts to Python-$VERSION/Doc/ instead of Doc/,Fred Drake1998-03-052-8/+10
| | | | at Guido's suggestion.
* Create the module index only if a conditional is true.Fred Drake1998-03-042-6/+14
|
* Define a new conditional, use this to control creation of module indexFred Drake1998-03-042-0/+2
| | | | data file.
* Improve separation of document class and python semantic constructs. ThisFred Drake1998-03-044-134/+144
| | | | will allow us to have a class of smaller documents as well.
* Remove item on migration to LaTeX2e document classes. Done.Fred Drake1998-03-041-3/+0
|
* tarballs: Ok, we do support info for the moment, so add that to the tarballsFred Drake1998-03-041-1/+1
| | | | target.
* pdf-$(VERSION).tar.gz: If ref/ref.pdf exists, include it in the tarballFred Drake1998-03-041-1/+4
| | | | | | | along with the others. html-$(VERSION).tar.gz: Change the wildcard for picking up GIFs a little to avoid changes in what LaTeX2HTML generates.
* Update URL to get Perl. (Anyone want to re-write LaTeX2HTML in Python? ;)Fred Drake1998-03-041-12/+31
| | | | Add comments about what to do about bugs.
* Oops, remove some debugging prints.Fred Drake1998-03-042-4/+0
|
* changeit(): Added support for \deprecated{}.Fred Drake1998-03-042-2/+56
| | | | | | Chunk.__repr__(), main(): Allow Chunk objects to get the buffer, to make the representation contain text instead of a pair of indexes. This makes debugging a little easier.
* Preliminary LaTeX2HTML 98.1p1 support. Includes patch from Ross Moore toFred Drake1998-03-041-213/+247
| | | | | | | | | | get some funky quoting of ']' in \item[...] to work right without having to do really ugly things to the documents themselves. There are a lot of things relating to indexing that are commented out; parts need to be examined and dealt with with respect to changes in LaTeX2HTML internals. I'll work with Ross to see what it takes to make this sort of stuff reasonable.
* Comment out the attempt to get index-related stuff processed in the rightFred Drake1998-03-042-48/+48
| | | | | | | | | | order. LaTeX2HTML just doesn't do things the same way as LaTeX, and this wasn't the fix. Simplify the generated HTML for \file{}. For \samp{}, use "..." instead of `...'; many fonts make that look pretty bad. ;-(
* Simplify some of the escaping around ']' in \item[...] markup in light ofFred Drake1998-03-042-8/+8
| | | | a fix to LaTeX2HTML from Ross Moore. Yeah!
* For each of the l2h??? targets, remove the sed hack that rips out a comma;Fred Drake1998-03-031-16/+0
| | | | it no longer appears to be needed.
* Perish Evil Revelry and Lamentation.Fred Drake1998-03-032-0/+8
|
* Obsolete.Fred Drake1998-03-032-1338/+0
|
* Convert LaTeX support to create a new class of documents. HTML generationFred Drake1998-03-0317-23/+2785
| | | | | | | | now requires LaTeX2HTML 98.1p1 or newer (& and is still in progress). This means that doing things to change the formatting of the manuals (at the "normal user" level, like A4 paper), can happen in just one place, rather than in each document file.
* Logical markup.Fred Drake1998-03-032-174/+174
|
* Overhaul.Fred Drake1998-03-031-26/+70
|
* Fix typo.Fred Drake1998-03-032-2/+2
|
* Nit for \refexmodindex{} (reference to extension module).Fred Drake1998-03-031-1/+2
|
* Simplify the parameters passed to node2label.pl.Fred Drake1998-03-031-5/+4
|
* Marked reference to the Python Library Reference with \emph{}.Fred Drake1998-03-032-452/+476
| | | | | | Changed sample module creation of an exception to use PyErr_NewException(). Logical markup.
* Script to create a source distribution. See comments at top.Fred Drake1998-03-032-0/+72
|
* Ignore tarballs.Fred Drake1998-03-031-0/+1
|
* Added msvcrt.Guido van Rossum1998-03-032-0/+12
|
* &replace_verbatim,Fred Drake1998-03-021-5/+7
| | | | &replace_verbatim_hook: Clean up a little, avoid long lines.
* Make the title page include all the interesting information.Fred Drake1998-02-271-4/+49
|
* &do_cmd_deprecated: New function.Fred Drake1998-02-271-0/+14
| | | | | Attempt to get \setindexsubitem{} handled at the right time under LaTeX2HTML 98.1; should still be fine under 97.1*.
* Update.Fred Drake1998-02-271-2/+3
|
* Deprecate the read() and write() methods.Fred Drake1998-02-272-16/+8
| | | | Don't refer to them from the fromfile() and tofile() methods.
* Added semi-structured support for feature deprecation.Fred Drake1998-02-271-1/+23
|
* Put all the indexsubitem stuff together.Fred Drake1998-02-271-13/+33
| | | | | | Support modified verbatim for both LaTeX2HTML 96.1* and 98.1. Make table column headers bold.
* Make table column headings bold.Fred Drake1998-02-271-3/+2
|
* Updates by AMK.Fred Drake1998-02-272-26/+78
| | | | Markup corrected, logical markup.
* When "declaring" a module using \*modindex{}, and * doesn't start with "ref",Fred Drake1998-02-271-0/+8
| | | | | | | set up the indexsubitem to "(in module #1)" automatically. This reduces the amount of markup needed in the module docs and, more importantly, makes it o.k. to leave out in simple sections. \setindexsubitem{} can still be used to change or reset it.
* Logical markup.Fred Drake1998-02-272-162/+186
|
* Nit to prevent empty node in formatted version.Fred Drake1998-02-272-6/+6
|
* Reformulate how the info stuff is ignored.Fred Drake1998-02-271-4/+2
|
* Use a Python script to create "empty" indexes. This solves Guido'sFred Drake1998-02-273-3/+48
| | | | | | corrupted file problem and avoids the shell escape interpretation portability problem. ;-( See comments at top of newind.py for an explanation.
* Update....Fred Drake1998-02-271-2/+9
|
* Added \label{}s for logical addressing.Fred Drake1998-02-262-0/+88
|