This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: texi2html.py - add support for HTML Help
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: fdrake Nosy List: fdrake, rpyron
Priority: normal Keywords: patch

Created on 2002-05-06 11:26 by rpyron, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
cdiff.txt rpyron, 2002-05-06 11:26 context diff for texi2html.py
Messages (2)
msg39906 - (view) Author: Robert Pyron (rpyron) Date: 2002-05-06 11:26
Patch for Tools\Scripts\text2html.py ...

New command-line option, "-H htmlbase", to specify HTML
Help output. This will cause three files to be created
in the current directory, which can be used as input to
HTML Help Workshop.

Support a few more tags: @uref, @image, @multitable,
@vtable, misc accents.

A few bug fixes:
1. In function makefile(), strip blanks from the
nodename. This is necessary to match behavior of
TexinfoParser.makeref() and TexinfoParser.do_node().
2. Allow @menu and menu items inside @ifset or @ifclear.
3. Catch KeyError in end_ifset() and end_ifclear(). 
msg39907 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2002-06-18 15:22
Logged In: YES 
user_id=3066

The patch as provided is syntactically invalid.  The changes
to end_ifset() add a try/except without indenting the
content of the try clause.  (Easily fixed.)

Commited as Tools/scripts/texi2html.py revision 1.14. 
Included some minor changes to wrap long lines and keep the
style more consistent.
History
Date User Action Args
2022-04-10 16:05:18adminsetgithub: 36563
2002-05-06 11:26:03rpyroncreate