summaryrefslogtreecommitdiffstats
path: root/Doc/perl
Commit message (Collapse)AuthorAgeFilesLines
* Fix \seepep handling -- correct URL to the online PEP repository on SF isFred Drake2001-01-221-27/+39
| | | | | | | | | | | | now generated. (SF bug #129692.) Patch from Anthon van der Neut <anthon@mnt.org>: Work around the removal of content-less paired tags used for name anchors in some places. (SF bug #116008.) Move some class attributes from an artificial SPAN element to otherwise "useful" elements that are being generated anyway. Added the class "versionnote", used for \deprecated, \versionadded, \versionchanged.
* Added a --global-module-index option to specify a (possibly relative) URLFred Drake2001-01-091-0/+10
| | | | | | | | | to the Global Module Index for a set of documents. This is used to include a reference to the global index from the per-document module indexes, so that it is just a little easier to find. (Someone suggested this, but I do not remember who. Please let me know if it was you -- thanks!)
* Fix the bugfix for SF bug #127151 -- make sure we map "previous_page" toFred Drake2001-01-041-0/+7
| | | | "previous" and "next_page" to "next". This way the proper icons are found.
* Do not cache <img> tags for navigation icons as agressively; this fixesFred Drake2001-01-021-31/+36
| | | | bug #127151.
* For the title page, insert the package version number before the date.Fred Drake2000-12-141-3/+3
| | | | | This makes the title area more like the title are of the top-level index, and puts the information more people are interested in first.
* A few small refinements to the table building code.Fred Drake2000-11-301-7/+10
|
* define_module(): Change the "index sub-item" for definitions at moduleFred Drake2000-10-301-1/+1
| | | | | | | scope to be " (in module <name>)" instead of " (in <name>)" to be consistent with \withsubitem usage throughout the documentation. This achieves consistency in indexing throughout the documentation.
* Normalize the HTML generated for table headers.Fred Drake2000-10-261-7/+10
|
* Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number forFred Drake2000-10-251-7/+27
| | | | | | | | | | | | whatever is being documented, not necessarily Python. (These tools are also used for the How-To documents, etc.) get_version_text(): New function. Returns HTML fragment describing the software version and documentation date. bot_navigation_panel(): Include the result of get_version_text() at the end, so the information is available on every page.
* Rename $PYTHON_VERSION to $PACKAGE_VERSION; this is the version number forFred Drake2000-10-251-5/+8
| | | | | whatever is being documented, not necessarily Python. (These tools are also used for the How-To documents, etc.)
* $OFF_SITE_LINK_ICON: Don't define here; simply defining it overrides aFred Drake2000-10-031-7/+11
| | | | | | | | | | | | | | | | | | | definition provided by previously loaded configuration code, and testing whether it's defined isn't needed since the default was false anyway. get_link_icon(): Add support for $OFF_SITE_LINK_ICON_HEIGHT and $OFF_SITE_LINK_ICON_WIDTH, giving the dimensions of the icon being used. This can make for faster page display. Both are optional. make_my_titlegraphic(): Fix insertion of the off-site icon link. do_env_funcdesc(): Remove debugging print. handle_rfclike_reference(): Remove trailing colon from first line; it doesn't really make sense and looks bad if we add an icon to mark off-site links.
* make_icon_filename(): Convenience function to turn a partial filenameFred Drake2000-10-021-20/+45
| | | | | | | | | | | into a usable filename using $ICONSERVER and $IMAGE_TYPE as needed. get_link_icon(): Function to examine a URL and return the string to use to insert an icon if the link points off-site, if needed and $OFF_SITE_LINK_ICON is set. Adjusted appropriate places to use these new functions.
* use_sans_serif(),Fred Drake2000-09-221-10/+7
| | | | | | | | | | | | use_italics(): Remove both functions, inlining use_italics() at its only call site. init_myformat(): Uncomment line so that some internal markup does not get generated, since it is not properly removed later. (Fix on aspect of SourceForge bug #114749.) Modified call to process_commands_wrap_deferred(), removing \code from the list since it had a bad interaction with other changes in some contexts.
* Add new environments: longtableii, longtableiii, and longtableiv, toFred Drake2000-09-211-0/+12
| | | | | support long tables which might break across page boundaries. Otherwise identical to tableii, tableiii, and tableiv.
* make_nav_sectref(): Create more minimal HTML, hanging the class attributeFred Drake2000-09-191-2/+7
| | | | | off an existing anchor tag if available (I think it always is, but am not completely sure).
* Push more of the display control into the style sheet.Fred Drake2000-09-161-3/+3
|
* When there is a Module Index, make sure the icon actually links to it.Fred Drake2000-09-141-1/+3
|
* do_cmd_shortversion(),Fred Drake2000-09-141-11/+32
| | | | | | | | | | | | | | | | | | | | | | | do_cmd_setshortversion(): Implementation for new markup. convert_args(): New helper function. do_cmd_optional(): Modified to understand when it is called from within a convert_args() invocation. do_env_funcdesc(), do_env_funcdescni(), do_cmd_funcline(), do_cmd_funclineni(), handle_classlike_descriptor(), do_env_methoddesc(), do_end_methoddescni(), do_cmd_methodline(), do_cmd_methodlineni(): Modified to use helper convert_args(). The convert_args() helper and related changes fix the generation of HTML for the \optional markup, so that bogus </var>...<var> is not generated. This closes SourceForge bug #113800.
* Re-wrapped some wide comments.Fred Drake2000-09-121-28/+43
| | | | Fixed Module Index generation.
* \seetitle: New macro for building reference list content.Fred Drake2000-09-121-0/+19
|
* Add support for new \pep, \seepep, excclassdesc markup.Fred Drake2000-09-091-9/+68
| | | | | | | | | Update processing of module synopsis tables (found at the beginning of most chapters of the library reference) to reflect changes in the processing pattern of recent versions LaTeX2HMTL. Requires most recent change to SynopsisTable.pm. This does not fix the module index problem.
* Add support for a filename to record the name of the node in which theFred Drake2000-09-091-1/+15
| | | | | table will be presented. Accessor methods are used to access the attribute.
* Be a little more careful to avoid including style information in theFred Drake2000-08-311-13/+12
| | | | | | | | generated markup. Don't be careless with the navigation icons! We should use the blank icon where there is not anyplace to go for a particular position in the navigation bar.
* Push some table header formatting to the style sheet; this also helpsFred Drake2000-08-311-15/+97
| | | | | | separate some of the ties between l2hinit.perl and python.perl. Revamp the "title page" construction to allow more flexibility.
* do_env_cfuncdesc(): Push as much of the generated HTML into one placeFred Drake2000-08-111-8/+8
| | | | as possible for better readability. Revise a comment.
* fix_font(): Handle one more case for the magical first column of tables.Fred Drake2000-08-091-0/+3
|
* do_cmd_moreargs(),Fred Drake2000-08-031-4/+8
| | | | | | | | | do_cmd_unspecified(): New functions to reflect previously unused markup. do_cmd_file(): Simplified generated markup to only make use of the existing stylesheet. do_cmd_makevar(): Make the markup more stylesheet-friendly.
* Change as suggested by Peter Funk <pf@artcom-gmbh.de>:Fred Drake2000-07-311-4/+5
| | | | | Move around the navigational links on the left-hand side of the navigation bar to be more like the cursor keys.
* Many changes to work with newer versions of LaTeX2HTML. This has beenFred Drake2000-07-311-208/+129
| | | | tested with version 99.2beta8.
* Support constant as a font name for the first column of a table using theFred Drake2000-06-281-0/+3
| | | | tableii & friends markup family.
* do_cmd_textasciitilde(): New function.Fred Drake2000-06-151-0/+5
|
* do_cmd_seeurl(): New function.Fred Drake2000-05-091-0/+11
|
* do_cmd_versionchanged():Fred Drake2000-05-021-1/+6
| | | | | Added support for optional parameter explaining the change that was made in the specified version.
* Support for the special macros used by the distutils documentation.Fred Drake2000-04-271-0/+21
|
* ref_module_index_helper(): Use "my" instead of "local".Fred Drake2000-04-261-5/+22
| | | | | | | | | | | get_rfc_url(): New function; returns the URL for a numbered IETF RFC. do_cmd_rfc(): Use get_rfc_url() instead of hard-coding in the HTML formatting. do_cmd_seerfc(): New function. do_env_definitions(): Small change to avoid "local".
* do_cmd_longprogramopt(): New function.Fred Drake2000-04-111-0/+3
|
* load_refcounts(),Fred Drake2000-04-101-1/+5
| | | | | do_env_cfuncdesc(): Support the "null" value for the refcounts field in refcounts.dat.
* do_cmd_datalineni(): New function, to implement the non-indexing formFred Drake2000-04-101-0/+6
| | | | of \dataline.
* Merged changes from the 1.5.2p2 release.Fred Drake2000-04-034-152/+299
|
* do_cmd_programopt(): New function, similar to do_cmd_program().Fred Drake1999-11-091-0/+19
| | | | | | | | do_cmd_citetitle(): New function. Extracts one optional and one required parameter. If the optional one is provided, it is used a URL (or relative URL) and the text of the required parameter is turned into a hyperlink.
* Remove some <SPAN> elements that were used only to carry a CLASSFred Drake1999-09-231-6/+14
| | | | | | | attribute; stick the CLASS on an existing element. Use a variable for the name of the file to get "About this document..." text from.
* Remove some <SPAN> elements that were used only to carry a CLASSFred Drake1999-09-231-4/+4
| | | | attribute; stick the CLASS on an existing element.
* img_tag(): Tighten up the generated SRC attribute a bit; if the imageFred Drake1999-09-231-3/+6
| | | | relative URL starts with "./", remove "./".
* do_cmd_rfc(): Simplify the generated markup.Fred Drake1999-09-221-2/+2
|
* Some updates to allow ../tools/mkhowto to add various bits to theFred Drake1999-09-221-46/+86
| | | | | | | | | | | | supplemental l2h initialization file it creates and still get all the right behavior. In particular, it can change the image type and icon location and not get inconsistent results. Some code to help suppress various navigational pages; this might be interesting when generating HTML to create HTML Help documents, since the navigation support creates confusing hits in the full text search. HTML Help also provides a lot of the navigational infrastructure, so duplicating it makes it more tedious to use.
* do_cmd_funclineni(): New function; non-indexing form of \funcline.Fred Drake1999-07-121-0/+9
|
* Use the same names for CLASS attributes as elsewhere.Fred Drake1999-07-121-3/+4
|
* define_module(): Check the module type for validity before using.Fred Drake1999-05-171-0/+6
| | | | | This reflects the changes made in ../texinputs/python.sty.
* make_index_entry(): Remove. Not only did this override theFred Drake1999-05-131-88/+111
| | | | | | | | | | | | | | | | | | | | | | | l2hinit.perl version of the function (which overrode a version in latex2html), but do_cmd_index() was overridden. Since do_cmd_index() was the only caller, we can trash this. define_indexing_macro(): New function used during setup to support more dynamic dispatch for indexing. process_index_macros(): New function; implement dynamic dispatching of indexing support functions, allowing many targets used in indexing to be shared by multiple index entries. I.e., something like \index{foo}\bifuncindex{bar} can now share a single target anchor. These indexing changes reduce the amount of clutter in the generated HTML files. In the reference manual, this cuts the number of targets by 44%. Targets are less affected when generated by environments rather than macros.
* 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.