summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/texi2html.py
Commit message (Collapse)AuthorAgeFilesLines
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
|
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69846 | mark.dickinson | 2009-02-21 20:27:01 +0000 (Sat, 21 Feb 2009) | 2 lines Issue #5341: Fix a variety of spelling errors. ........
* Ran 2to3 over scripts directory.Georg Brandl2008-05-161-34/+31
|
* Convert raise statements in Tools/.Collin Winter2007-08-221-2/+2
|
* Remove string.{letters,lowercase,uppercase}.Martin v. Löwis2007-08-141-1/+1
|
* Convert print statements to function calls in Tools/.Collin Winter2007-08-031-112/+112
|
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-5/+5
| | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
* WTF is with this script? It contained illegal syntax and illegalTim Peters2004-07-181-8/+8
| | | | indentation -- it could never have been run, under any version of Python.
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-10/+10
| | | | From SF patch #852334.
* Mechanically translated string method calls to string methods.Fred Drake2002-06-181-36/+22
| | | | | Instead of splitting a string and looping over it to call s.split(), use list comprehensions for readability.
* SF patch #552837, submitted by Robert Pyron:Fred Drake2002-06-181-29/+508
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. BUGFIX: In function makefile(), strip blanks from the nodename. This is necesary to match the behavior of parser.makeref() and parser.do_node(). 2. BUGFIX fixed KeyError in end_ifset (well, I may have just made it go away, rather than fix it) 3. BUGFIX allow @menu and menu items inside @ifset or @ifclear 4. Support added for: @uref URL reference @image image file reference (see note below) @multitable output an HTML table @vtable 5. Partial support for accents, to match MAKEINFO output 6. I added a new command-line option, '-H basename', to specify HTML Help output. This will cause three files to be created in the current directory: `basename`.hhp HTML Help Workshop project file `basename`.hhc Contents file for the project `basename`.hhk Index file for the project When fed into HTML Help Workshop, the resulting file will be named `basename`.chm. 7. A new class, HTMLHelp, to accomplish item 6. 8. Various calls to HTMLHelp functions. A NOTE ON IMAGES: Just as 'outputdirectory' must exist before running this program, all referenced images must already exist in outputdirectory. FLD: wrapped some long lines.
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-201-3/+3
|
* Whitespace normalization.Tim Peters2001-01-171-3/+3
|
* Fix multi-arg list.append() calls.Guido van Rossum1998-10-081-4/+4
|
* nannifiedGuido van Rossum1998-09-141-885/+885
|
* Use the (new) standard script #! lineBarry Warsaw1998-04-231-28/+51
| | | | | | Convert to re module; remove all references to regexp and regsub Added support for the new texinfo @url{} and @email{} commands
* (texi2html.py): Minor improvement to HTML 3.0 output for code examples.Fred Drake1996-10-251-2/+7
|
* (texi2html.py): Added CLASS=Navigation attribute to DIV around top/bottomFred Drake1996-10-111-2/+2
| | | | | | | navigation links for HTML 3 version. Forced a blank line above the footnotes separator for HTML 2; at least one page did not get this spaced correctly.
* (texi2html.py): Tightened the generated HTML slightly. Added -p option toFred Drake1996-10-091-159/+251
| | | | | | | | | | | | | | | | print section titles even when the debugging output is not enabled. Added -3 option to generate HTML 3.0 constructs where meaningful. Removed repititive garbage generation: the old version added simple descriptive comments after every datadesc/funcdesc/*desc entry: function(args) -- function of module xxxx Description.... These comments are no longer generated: function(args) Description....
* (texi2html.py): Use "if __name__ == '__main__':" test. Adjust indentationFred Drake1996-09-131-1324/+1319
| | | | | | | | | to 4 spaces per level (no longer 8). (Makefile): Use .pyc versions of partparse.py and texi2html.py to generate converted documentation formats. This reduces the startup costs; probably doesn't affect anyone but me in reality, but helps when working on the docs.
* Some improvements by Fred Drake.Guido van Rossum1996-08-091-60/+58
|
* many fixes by anonymous contributorGuido van Rossum1995-08-281-72/+298
|
* mods by Gregor Schmid -- very nice!Guido van Rossum1995-05-031-23/+106
|
* new, from ../Demo/wwwGuido van Rossum1995-03-151-0/+1191