summaryrefslogtreecommitdiffstats
path: root/Doc/tools/mkhowto
Commit message (Collapse)AuthorAgeFilesLines
* Fix mkhowto so that the bookmarks for the PDF work for both "howto" andFred Drake2000-09-051-1/+5
| | | | "manual" class documents.
* Add --up-link and --up-title parameters to allow linking the top levelFred Drake2000-08-311-1/+12
| | | | | of the generated document to an external index. These correspond to the -up_url and -up_title parameters of LaTeX2HTML.
* Add --l2h-init option, which can augment the standard LaTeX2HTMLFred Drake2000-08-311-3/+11
| | | | | initialization with additional Perl files. This can be given more than once.
* Add a --style option to allow specifying an alternate CSS style sheet forFred Drake2000-08-291-4/+8
| | | | | | | | HTML generation; the machinery was there but no option to set it was defined. Simplify some of the path-math since we can assume a recent version of Python.
* Small changes to reflect changes in LaTeX2HTML support for newer versionsFred Drake2000-07-311-2/+5
| | | | of LaTeX2HTML.
* Only use one initialization file for LaTeX2HTML; more recent versions onlyFred Drake2000-07-241-4/+5
| | | | | use the last one specified on the command line instead of all of them. Smaller changes to reflect updated support.
* Removed --l2h-config option; it introduced unnecessary complexity andFred Drake2000-06-291-10/+1
| | | | is not needed anywhere.
* Merged changes from the 1.5.2p2 release.Fred Drake2000-04-031-0/+2
|
* Added --numeric option, similar to mkhtml.sh.Fred Drake2000-03-311-2/+7
|
* Added --about option to specify the file to load "About thisFred Drake1999-09-231-1/+8
| | | | document..." text from, defaulting to ../html/about.dat.
* Added --image-type option to allow use of either GIF or PNG images.Fred Drake1999-09-221-11/+38
| | | | | | | | | Job.warning(): New method; use this instead of writing to sys.stderr directly. Ensures warnings are also sent to the log file. Job.log(): New method; write a message to the log file. Use from .message() and .warning().
* Make it work for "manual" documents as well as "howto" documents.Fred Drake1999-05-061-17/+53
| | | | | This still doesn't understand anything about multiple source files or checking time dependencies.
* Make sure latex2html doesn't produce a hard link between foo/foo.htmlFred Drake1999-05-031-0/+3
| | | | | and foo/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.)
* Record the value of $TEXINPUTS in the transcript.Fred Drake1999-03-031-6/+12
| | | | | Job.message(): New method. Takes care of writing a message to the user and adding it to the transcript.
* Re-written mkhowto in Python; this should be at least a little moreFred Drake1999-03-031-0/+444
portable. Several things that had been done by running a python script are now a matter of importing the right module and running a function with a few parameters.