aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Tools/scripts/texi2html.py
Commit message (Collapse)AuthorAge
* bpo-22831: Use "with" to avoid possible fd leaks in tools (part 1). (GH-10926)Serhiy Storchaka2019-03-30
|
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ↵Serhiy Storchaka2018-11-05
| | | | | | | | | | (GH-10284) Two kind of mistakes: 1. Missed space. After concatenating there is no space between words. 2. Missed comma. Causes unintentional concatenating in a list of strings.
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-08
| | | | | | | And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter.
* compare singletons by identity not equality (closes #16712)Benjamin Peterson2012-10-09
| | | | Patch from Serhiy Storchaka.
* convert shebang lines: python -> python3Benjamin Peterson2010-03-11
|
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-21
| | | | | | | | | | 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-16
|
* Convert raise statements in Tools/.Collin Winter2007-08-22
|
* Remove string.{letters,lowercase,uppercase}.Martin v. Löwis2007-08-14
|
* Convert print statements to function calls in Tools/.Collin Winter2007-08-03
|
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-10
| | | | | | (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-18
| | | | indentation -- it could never have been run, under any version of Python.
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12
| | | | From SF patch #852334.
* Mechanically translated string method calls to string methods.Fred Drake2002-06-18
| | | | | 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-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-20
|
* Whitespace normalization.Tim Peters2001-01-17
|
* Fix multi-arg list.append() calls.Guido van Rossum1998-10-08
|
* nannifiedGuido van Rossum1998-09-14
|
* Use the (new) standard script #! lineBarry Warsaw1998-04-23
| | | | | | 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-25
|
* (texi2html.py): Added CLASS=Navigation attribute to DIV around top/bottomFred Drake1996-10-11
| | | | | | | 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-09
| | | | | | | | | | | | | | | | 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-13
| | | | | | | | | 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-09
|
* many fixes by anonymous contributorGuido van Rossum1995-08-28
|
* mods by Gregor Schmid -- very nice!Guido van Rossum1995-05-03
|
* new, from ../Demo/wwwGuido van Rossum1995-03-15