summaryrefslogtreecommitdiffstats
path: root/Doc/perl
Commit message (Collapse)AuthorAgeFilesLines
* Added support for AMK's {definitions} environment; thanks for the reminder!Fred Drake1998-05-201-0/+20
|
* Don't use a separate node for footnotes; see if people scream. ;-)Fred Drake1998-05-191-0/+1
|
* Update to use latex2html 98.1p5.Fred Drake1998-05-151-34/+29
|
* Revise comment about \let support a little to more accurately reflect theFred Drake1998-05-151-1/+1
| | | | support that's offered.
* Extend handling for \let a bit, to also allow \let\something=<character>. WeFred Drake1998-05-151-1/+12
| | | | | still don't support things like \let^^M=\something, where ^^M could actually be any active character. Print a decent warning if we find one we can't handle.
* do_cmd_let(): Simple implementation to allow \let to be used to establishFred Drake1998-05-151-3/+21
| | | | | | | | | synonyms for macros. This supports: \let\newname = \oldname \let\newname\oldname This is useful sometimes, and can at least avoid real errors at other times.
* Added support for \developer, \developers, \developersaddress.Fred Drake1998-05-141-4/+8
|
* do_cmd_kwindex(): Re-implement now that \kwindex is used again (ref man).Fred Drake1998-05-111-0/+10
|
* In package Override, use the getcwd() function from the Cwd module instead ofFred Drake1998-05-111-0/+22
| | | | | | | | the one from Override.pm (part of latex2html). Absolutize the TEXINPUTS environment variable, since we can't count on latex2html doing it for us (even though I sent in a patch, and it really should).
* Set $TEXINPUTS='' to make l2h pick up the right thing from the environment.Fred Drake1998-04-291-0/+2
|
* do_cmd_sectcode(): Obsolete; removed.Fred Drake1998-04-281-5/+0
|
* do_cmd_key(): Obsolete; removed.Fred Drake1998-04-281-1/+0
|
* Change the default $ADDRESS.Fred Drake1998-04-231-0/+1
|
* next_optional_argument(): Don't include the square brackets in the returnFred Drake1998-04-171-1/+46
| | | | | | | | value. ArabictoRoman(): Acquired function from Robert Donohue <donahue@cfassp48.harvard.edu>; might be useful someday, and I don't want to figure it out again!
* New helper functions to help deal with parameter parsing.Fred Drake1998-04-171-394/+273
| | | | Use the helpers in do_cmd_*() and do_env_*(); *much* cleaner!
* Code cleanup, some syntax modernization.Fred Drake1998-04-171-46/+115
|
* Fix bug in little-used markup: don't forget to pass the source text along!Fred Drake1998-04-131-2/+2
|
* Fix typo. (What I get for trying to fix bugs at home and running conversionsFred Drake1998-04-121-1/+1
| | | | at work....)
* Don't append () to the name of an object attribute in the index.Fred Drake1998-04-121-2/+2
|
* Added a simpler, working {verbatim} support that generates legitimate HTML.Fred Drake1998-04-121-0/+11
| | | | (2 lines, explained by 6 lines of comments....)
* Removed partially broken {verbatim} support.Fred Drake1998-04-121-25/+0
|
* Lighten up tables.Fred Drake1998-04-111-1/+1
|
* Update the module index support to use the changed field separator for theFred Drake1998-04-111-2/+2
| | | | input file to buildindex.py.
* do_env_memberdesc(): Fix argument parsing for {memberdesc} environments.Fred Drake1998-04-111-4/+4
| | | | (The bug was detected by the Q/A team -- me! Please, help review the docs!)
* do_cmd_lineii(),Fred Drake1998-04-091-6/+6
| | | | | do_cmd_lineiii(): Fix markup style conversion to HTML tags for first column. (The endtag wasn't formed properly.)
* Remove option to strip out <tt>...</tt> from index entry text; this is nowFred Drake1998-04-081-26/+17
| | | | | | | | | | left to the buildindex.py script. Change the field separator used in the index.dat file so utilities like grep are useful on these files; they can't typically handle NUL bytes. Protect index entries for environment variables from being handled as case-insensitive by buildindex.py.
* Set flag to remove <tt>...</tt> markup from the index entries; it just ends upFred Drake1998-04-081-1/+1
| | | | | looking really bad in popular browsers, mostly due to vertical size differences between the roman and monospaced fonts.
* Minor cleanliness.Fred Drake1998-04-041-1/+4
|
* add_idx(): Restore message to stdout when formatting the general index.Fred Drake1998-04-021-0/+1
|
* Match python.sty a little better.Fred Drake1998-04-021-0/+6
|
* Lots of little nits.Fred Drake1998-04-021-26/+35
| | | | | Big fix: the module index for the Python Library Reference is once more in a separate file! Yeah!
* This fixes a (minor) problem discovered by AMK when you don't want anyFred Drake1998-04-021-6/+16
| | | | | | | | | | | | | | special markup for the first column of a table using {tableii} or {tableiii}. In LaTeX, this requires using "textrm" as the formatting function, and this is needed to remove the bogus "<textrm>" that gets generated otherwise. There should probably be a more general mapping of specified markup to useful markup, but that doesn't appear needed at the moment. do_env_tableii(), do_env_tableiii(): If the markup for the first column is \textrm, make it empty. do_cmd_lineii(), do_cmd_lineiii(): If the markup for the first column is empty, don't add markup around the text.
* Implemented one more special markup item.Fred Drake1998-04-011-0/+8
|
* Change $ICONSERVER to conform to the value AMK & I have discussed for this;Fred Drake1998-03-271-0/+2
| | | | doing this here may prove to not be such a good idea, but we'll see.
* Some cleanup.Fred Drake1998-03-271-97/+35
| | | | Remove index generation from Perl; use an external script instead.
* Lots and lots and lots.....Fred Drake1998-03-271-141/+252
| | | | | | | | Implemented some new features of python.sty for methods & members. Fixed some bugs. Cleaned up some perl code and made some basic regular expressions more robust.
* Coding cleanups.Fred Drake1998-03-171-162/+189
| | | | Fix some small but messy buglets.
* Get the index working at least partway again.Fred Drake1998-03-171-193/+126
| | | | Some small cleanups.
* Bring this up to date. Some things still don't work right.Fred Drake1998-03-121-9/+52
|
* Somewhat more direct way of locating the file, using __FILE__.Fred Drake1998-03-111-2/+7
| | | | | Leave find_my_file() around for now, even though we're not using it at the moment.
* Use the location of the initialization file to augment the style-specificFred Drake1998-03-101-5/+23
| | | | | .perl file search path, rather than making assumptions about the current directory.
* Misc. revisions to LaTeX2HTML support.Fred Drake1998-03-062-16/+10
|
* Relocated .latex2html-init to l2hinit.perl.Fred Drake1998-03-062-0/+417
| | | | howto.perl is new; supports LaTeX2HTML for HOWTO documents.
* For verbatim text, don't bounce down a size.Fred Drake1998-03-051-4/+2
|
* Comment out the attempt to get index-related stuff processed in the rightFred Drake1998-03-041-24/+24
| | | | | | | | | | 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. ;-(
* Perish Evil Revelry and Lamentation.Fred Drake1998-03-031-0/+4
|
* Convert LaTeX support to create a new class of documents. HTML generationFred Drake1998-03-032-0/+723
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.