summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Nits to support conversions.Fred Drake1998-11-301-7/+4
|
* Remove $(CUTCRUFT) garbage; now in fixgenents.sh.Fred Drake1998-11-301-6/+8
| | | | | Separate ESIS generation from XML generation. This will evolve a bit more in a couple of days.
* Move nasty cruft from make.rules' $(CUTCRUFT) here, mostly to clean upFred Drake1998-11-301-1/+4
| | | | make.rules.
* Fix minor nit with respect to conversion.Fred Drake1998-11-301-39/+43
| | | | Update some logical markup.
* Remove {\rm ...} constructs.Fred Drake1998-11-301-1/+1
|
* Remove some remaining {\rm ...} constructs.Fred Drake1998-11-301-37/+38
| | | | Update logical markup in a few spots.
* Change "for" explanation slightly based on comment passed along byFred Drake1998-11-301-7/+10
| | | | Blake Winton <BlakeW@pcdocs.com>.
* l2hoption: Do the "right thing" to quote the right-hand-side of PerlFred Drake1998-11-301-1/+2
| | | | | assignments. This allows '"', '$', and '@' to be included in the values passed to parameters like --address.
* Add a --address parameter to the mkhowto command line to directFred Drake1998-11-301-2/+2
| | | | | | | documentation comments appropriately. In response to comment from Martijn Faassen <faassen@vet.uu.nl>. Add dependency to about.dat.
* Add a -address parameter to the LaTeX2HTML command line to directFred Drake1998-11-301-0/+1
| | | | | documentation comments appropriately. In response to comment from Martijn Faassen <faassen@vet.uu.nl>.
* Oops, remove LaTeX2HTML version number. Could become wrong and isn'tFred Drake1998-11-301-2/+1
| | | | | needed, since it's always added to the comments in the page header anyway.
* do_cmd_textohtmlinfopage(): Rip out most of the boilerplate and moveFred Drake1998-11-301-12/+13
| | | | | | it to the about.dat file. Only what really needs to be generated is, and the remainder is easier to maintain than Perl code.
* New file. Contains boilerplate text for the "About this document..."Fred Drake1998-11-301-0/+27
| | | | | | section of LaTeX2HTML-generated documents. Includes credit to Christopher Petrilli for the navigation icons.
* Markup nit to ease conversions.Fred Drake1998-11-301-1/+1
|
* Markup improvements to help with conversions.Fred Drake1998-11-301-27/+33
|
* Remove cruft from the old Texinfo conversion. This simplifies some ofFred Drake1998-11-301-10/+0
| | | | the newer processing.
* Remove bogus \@.Fred Drake1998-11-301-1/+1
|
* Minor markup nit to ease conversion processing.Fred Drake1998-11-301-2/+2
|
* Do all the right imports. Problem reported by Martijn FaassenFred Drake1998-11-301-1/+2
| | | | <faassen@vet.uu.nl>.
* Patch by Jeff Bauer: a minor change to declare two newGuido van Rossum1998-11-301-12/+11
| | | | | | | | threaded versions of Unix Server classes, using the ThreadingMixIn class: ThreadingUnixStreamServer ThreadingUnixDatagramServer
* Several small adjustments.Fred Drake1998-11-301-60/+88
|
* Make \var work correctly in math mode.Fred Drake1998-11-301-2/+8
|
* Handle output of \geq and \leq.Fred Drake1998-11-301-0/+2
|
* TypoGuido van Rossum1998-11-271-1/+1
|
* Support underlining of menu labelsGuido van Rossum1998-11-272-5/+6
|
* New approach, separate tables for menus (platform-independent) and keyGuido van Rossum1998-11-271-168/+192
| | | | | definitions (platform-specific), and generating accelerator strings automatically from the key definitions.
* Logical markup.Fred Drake1998-11-251-341/+240
| | | | | | | Fix a few things for the conversion to structured markup. Removed texinfo special cases, since there's likely a new info process.
* Fix remaining {\rm ...} construct.Fred Drake1998-11-251-1/+1
|
* Remove some optional parameters that are unnecessary in context.Fred Drake1998-11-251-4/+4
|
* Remove bogus \@.Fred Drake1998-11-251-3/+3
|
* Remove bogus \@.Fred Drake1998-11-251-1/+1
|
* Do the right stuff to convert what was originally \e, \ldots, and ---Fred Drake1998-11-251-0/+3
| | | | in the LaTeX sources.
* Remove two remaining {\tt ...} constructs.Fred Drake1998-11-251-1/+1
|
* Remove two remaining {\tt ...} constructs.Fred Drake1998-11-251-2/+2
|
* Clarify that min and max also take multiple arguments.Guido van Rossum1998-11-251-6/+8
|
* Massive change to just about every construct that impacts the index.Fred Drake1998-11-251-225/+210
| | | | Blame it on Just. ;-)
* Markup nits.Fred Drake1998-11-251-10/+15
| | | | Fixed an index entry, added three more.
* Minor fixups to some index entries.Fred Drake1998-11-251-3/+4
|
* Minor adjustments to a few index entries.Fred Drake1998-11-251-3/+3
|
* Minor nit that fixes a bunch of indexing: the way the classdescFred Drake1998-11-251-1/+2
| | | | | | | | environment saves the name of the last class described, method and member descriptions were not picking it up correctly. Thus, many index entries were described as "( method)" instead of "(FooClass method)". Multiple entries were collapsed in the index when methods/members from multiple classes share the same name.
* Fix indexing of func_code attribute; this is on a function, not a codeFred Drake1998-11-251-20/+18
| | | | | | object. Add "()" to method names indexed using \ttindex{}.
* New version from Jim Fulton:Guido van Rossum1998-11-251-1172/+1110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - New copyright. (Open source) - Added new protocol for binary string pickles that takes out unneeded puts: p=Pickler() p.dump(x) p.dump(y) thePickle=p.getvalue() This has little or no impact on pickling time, but often reduces unpickling time and pickle size, sometimes significantly. - Changed unpickler to use internal data structure instead of list to reduce unpickling times by about a third. - Many cleanups to get rid of obfuscated error handling involving 'goto finally' and status variables. - Extensive reGuidofication. (formatting :) - Fixed binary floating-point pickling bug. 0.0 was not pickled correctly. - Now use binary floating point format when saving floats in binary mode. - Fixed some error message spelling error.
* New version from Jim Fulton:Guido van Rossum1998-11-251-71/+69
| | | | | | | - New copyright. (Open source) - Fixed problem in seek method. The seek method should (and now does) fill with nulls when seeking past the end of the "file".
* Wrong pathname in docstring detected by Fredrik Nehr.Guido van Rossum1998-11-251-1/+1
|
* Supplemental rules to convert a .tex file to a .xml file. Both XML andFred Drake1998-11-241-0/+29
| | | | | SGML will be supported soon, probably using an ESIS representation saved in a temp file.
* Script to convert things like <C/> and <Cpp/> to &C; and &Cpp;. This isFred Drake1998-11-241-0/+25
| | | | something that con't be done with the DOM as far as I can tell.
* Rationalize a word-space markup to not break in the LaTeX->*MLFred Drake1998-11-241-2/+173
| | | | | | | | | conversion tools currently being constructed. Add a chapter from Jim Fulton on using Misc/Makefile.pre.in. Still preliminary. The "Dynamic Loading" chapter needs to be updated (and possibly removed, since it's no longer an issue for most (any?) users.
* The & character is also escaped using \.Fred Drake1998-11-231-1/+1
|
* Add some additional cleanup transformations.Fred Drake1998-11-231-0/+67
|
* Fix cosmetic bug in delattr docstring discovered by JvR.Guido van Rossum1998-11-231-1/+1
|