summaryrefslogtreecommitdiffstats
path: root/Doc/perl/l2hinit.perl
Commit message (Collapse)AuthorAgeFilesLines
* make_index_entry(): Remove. This is overridden in python.perl andFred Drake1999-05-131-12/+0
| | | | | was never called in this incarnation. The other version is simpler as well.
* make_nav_panel(): Remove the spurious NAME="tex2html\d+" attributesFred Drake1999-04-291-16/+18
| | | | | added to the anchors in the navigation bars. These are added somewhere deep with l2h, and are stupid.
* Be more stylesheet friendly.Fred Drake1999-03-251-1/+2
|
* add_module_idx(): If \ignorePlatformAnnotation is used, only ignoreFred Drake1999-03-041-1/+1
| | | | the specified annotation, not any annotation.
* Be a little more friendly for the generation of the text version: forFred Drake1999-03-031-1/+5
| | | | | | | "blank" navigation icons, use ALT="" instead of ALT="blank"; also add ALIGN=CENTER for the table, to get a slightly better affect in the text (the table is full-width, so this doesn't change the appearance when browsing the HTML).
* Improve handling of module index, to deal with platform annotations a littleFred Drake1999-03-021-7/+43
| | | | better.
* do_cmd_arabic(): Override the l2h-provided version to remove thatFred Drake1999-02-191-0/+7
| | | | obnoxious <SPAN CLASS="arabic">...</SPAN> markup.
* Make navigation panels more CSS-friendly.Fred Drake1999-02-161-15/+26
| | | | | | | Make sure the contents page always has the "table of child links" turned off; this wasn't being handled properly by latex2html for "howto" ("article") documents, so just do it ourselves for all document types.
* Adjust cellspacing attribute of the navigation bar tables to get someFred Drake1999-02-161-1/+1
| | | | space between cells on all (major) browsers.
* Moved the navigation-bar background color to a variable.Fred Drake1999-02-121-1/+2
|
* Remove unnecessary <p> from top navigation bar.Fred Drake1999-02-101-1/+1
|
* Change the navigation bar to be a little prettier and more consistentFred Drake1999-02-091-13/+19
| | | | with the python.org style.
* add_module_idx(), add_idx_hook():Fred Drake1999-01-191-2/+2
| | | | | | Change the message printed before running buildindex.py; "Doing the index..." wasn't clear and could be misinterpreted with an inappropriate mindset. ;-)
* 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.
* add_link(): Fix to use $section_info instead of $toc_section_info,Fred Drake1998-10-201-1/+3
| | | | | | | based on email from Ross Moore <ross@mpce.mq.edu.au>. Set $HTML_VERSION to 4.0, since that's what we really generate (well, 4.0 "transitional").
* img_tag(): For \n to be interpreted as a newline, the string must use doubleFred Drake1998-08-141-1/+1
| | | | quote, not single quotes. Ugh.
* Do the magic to use the new buttons (with shorter names!) instead of the oldFred Drake1998-08-131-20/+32
| | | | | ones. Get the <IMG> width & height right. New design for the navigation bars, including the document title as well as the navigation links/buttons.
* Get the <IMG> sizes right for the navigation buttons.Fred Drake1998-08-111-1/+7
|
* Control when/where navigation bars will appear: top & bottom of each page.Fred Drake1998-08-111-3/+14
| | | | | | Include an additional button to the module index in the nav. bars if we generate a module index. Still need a button image, but the ALT text should do for now.
* insert_index(): Take two additional parameters: $columns and $letters. CallFred Drake1998-08-071-5/+13
| | | | | | | | buildindex.py appropriately. add_idx(), add_module_idx(): Add the appropriate parameters to the calls to insert_index().
* By default, use a two-column index.Fred Drake1998-08-071-1/+4
|
* Guido's white background.Fred Drake1998-08-071-0/+1
|
* Update @INC so we can 'require' modules in Doc/perl/.Fred Drake1998-07-241-2/+4
| | | | | Call the localmoduletable handling once the document is complete & synopses have been collected.
* 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
|
* 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
|
* Change the default $ADDRESS.Fred Drake1998-04-231-0/+1
|
* Code cleanup, some syntax modernization.Fred Drake1998-04-171-46/+115
|
* Added a simpler, working {verbatim} support that generates legitimate HTML.Fred Drake1998-04-121-0/+11
| | | | (2 lines, explained by 6 lines of comments....)
* Update the module index support to use the changed field separator for theFred Drake1998-04-111-2/+2
| | | | input file to buildindex.py.
* add_idx(): Restore message to stdout when formatting the general index.Fred Drake1998-04-021-0/+1
|
* 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!
* Some cleanup.Fred Drake1998-03-271-97/+35
| | | | Remove index generation from Perl; use an external script instead.
* Get the index working at least partway again.Fred Drake1998-03-171-193/+126
| | | | Some small cleanups.
* 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.
* Relocated .latex2html-init to l2hinit.perl.Fred Drake1998-03-061-0/+406
howto.perl is new; supports LaTeX2HTML for HOWTO documents.