Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Small nits around some of the index entries. | Fred Drake | 1999-05-13 | 1 | -72/+68 |
| | | | | | When refering to chapters, use \ref, don't hardcode the chapter number. | ||||
* | make_index_entry(): Remove. Not only did this override the | Fred Drake | 1999-05-13 | 1 | -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 and | Fred Drake | 1999-05-13 | 1 | -12/+0 |
| | | | | | was never called in this incarnation. The other version is simpler as well. | ||||
* | Removed old comments. | Fred Drake | 1999-05-13 | 1 | -14/+0 |
| | |||||
* | Change the look of \seemodule output to fit in better. | Fred Drake | 1999-05-11 | 2 | -14/+24 |
| | |||||
* | Move the "See also:" section so it appears are part of the top HTML | Fred Drake | 1999-05-11 | 1 | -10/+8 |
| | | | | page of the section. | ||||
* | Added module references; minor grammatical fixes. | Fred Drake | 1999-05-11 | 3 | -4/+20 |
| | | | | All suggested by Eric Raymond. | ||||
* | Added missing comma, reported by Eric Raymond. | Fred Drake | 1999-05-11 | 1 | -3/+2 |
| | |||||
* | Lots of adjustments to deal with the document content now being stored | Fred Drake | 1999-05-10 | 1 | -91/+94 |
| | | | | in a fragment rather than the main document object. | ||||
* | Some more fixes. | Fred Drake | 1999-05-10 | 1 | -11/+16 |
| | | | | Add controls for some of the esoteric indexing macros. | ||||
* | Fixed some index entries. | Fred Drake | 1999-05-10 | 1 | -36/+36 |
| | | | | | | In the __coerce__ description, None should be returned if the conversion is *impossible*, not *possible*. Reported by Robert Kern <kernr@ncifcrf.gov>. | ||||
* | ExtendedEsisBuilder.push(): Override inherited definition. We don't | Fred Drake | 1999-05-07 | 1 | -3/+17 |
| | | | | | | want to push nodes into the document, but into a document fragment, since we're not necesarily working with something that's well-formed. | ||||
* | Fix some bugs introduced in the previous checkin. | Fred Drake | 1999-05-07 | 1 | -9/+13 |
| | |||||
* | Define & use a Conversion object. It's still really ugly, but at | Fred Drake | 1999-05-07 | 1 | -227/+255 |
| | | | | least there's a token object in here now! ;-) | ||||
* | Updated connect_ex() documentation based on comments in the newgroup | Fred Drake | 1999-05-06 | 1 | -1/+3 |
| | | | | (M.-A. Lemburg and GvR). | ||||
* | Make it work for "manual" documents as well as "howto" documents. | Fred Drake | 1999-05-06 | 1 | -17/+53 |
| | | | | | This still doesn't understand anything about multiple source files or checking time dependencies. | ||||
* | Reflect recent patch for float % and divmod() by Tim Peters. Content | Fred Drake | 1999-05-06 | 2 | -5/+16 |
| | | | | updates by Tim Peters, markup by FLD. | ||||
* | Tim Peters writes: | Guido van Rossum | 1999-05-06 | 1 | -7/+19 |
| | | | | | | | | | | 1. Fixes float divmod so that the quotient it returns is always an integral value. 2. Fixes float % and float divmod so that the remainder always gets the right sign (the current code uses a "are the signs different?" test that doesn't work half the time <wink> when the product of the divisor and the remainder underflows to 0). | ||||
* | Nathan Paul Simons noticed that the grid_remove() method was missing. | Guido van Rossum | 1999-05-05 | 1 | -0/+2 |
| | | | | | (The difference between grid_remove() and grid_forget() is that the former remembers the options for the slave.) | ||||
* | Regression test for date format code, by Mike Meyer. | Guido van Rossum | 1999-05-03 | 1 | -0/+21 |
| | | | | (I tweaked it slightly so examples are allowed to have no date too.) | ||||
* | No need to import find(). (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | No need to import os or string. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | No need to import sys. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 2 | -2/+1 |
| | |||||
* | Typo. (Andrew Dalke, without kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | No need to import string. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+0 |
| | |||||
* | No need to import os in test(). (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+0 |
| | |||||
* | Get rid of confusing 'global' statement in global code. | Guido van Rossum | 1999-05-03 | 1 | -1/+0 |
| | | | | (Andrew Dalke & kjpylint) | ||||
* | No need to import sys or string. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | Clarify why we define disco. Suggested by Andrew Dalke. | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | Clarify why we define error. Suggested by Andrew Dalke. | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | No need to import sys or linecache. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -2/+0 |
| | |||||
* | No need to import gmtime, ctime, asctime. | Guido van Rossum | 1999-05-03 | 1 | -2/+2 |
| | | | | | Make error an alias for ValueError. (Andrew Dalke & kjpylint) | ||||
* | Clarify why there are dynamic imports in AudioDev(). | Guido van Rossum | 1999-05-03 | 1 | -0/+1 |
| | | | | This will enlighten Andrew Dalke; I don't know about kjpylint. :-) | ||||
* | The _comp_data() function never worked, it contained a reference to | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | | | | undefined 'nframes'. Should be self._nframes. (Andrew Dalke & kjpylint) | ||||
* | No need to import sys, time, socket or SocketServer. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -4/+0 |
| | |||||
* | No need to import sys, time, or socket. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -3/+0 |
| | |||||
* | No need to import rfc822. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+0 |
| | |||||
* | Tim Peters writes: | Guido van Rossum | 1999-05-03 | 4 | -38/+123 |
| | | | | | | | | | | | | I'm still unsure, but couldn't stand the virtual event trickery so tried a different sin (adding undo_block_start/stop methods to the Text instance in EditorWindow.py). Like it or not, it's efficient and works <wink>. Better idea? Give the attached a whirl. Even if you hate the implementation, I think you'll like the results. Think I caught all the "block edit" cmds, including Format Paragraph, plus subtler ones involving smart indents and backspacing. | ||||
* | Tim Peters writes: | Guido van Rossum | 1999-05-03 | 1 | -2/+2 |
| | | | | | | | [W]hile trying to dope out how redirection works, stumbled into two possible glitches. In the first, it doesn't appear to make sense to try to rename a command that's already been destroyed; in the second, the name "previous" doesn't really bring to mind "ignore the previous value" <wink>. | ||||
* | The case-insensitive _Environ class was lacking a case-insensitive has_key(). | Guido van Rossum | 1999-05-03 | 1 | -0/+2 |
| | |||||
* | Make sure latex2html doesn't produce a hard link between foo/foo.html | Fred Drake | 1999-05-03 | 1 | -0/+3 |
| | | | | | and foo/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.) | ||||
* | Make sure latex2html doesn't produce a hard link from $part/$part.html | Fred Drake | 1999-05-03 | 1 | -1/+4 |
| | | | | | and $part/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.) | ||||
* | The 'copy_file()' and 'copy_tree()' functions in util.py now have | Greg Ward | 1999-05-02 | 2 | -20/+38 |
| | | | | | | | meaningful return values: respectively, whether the copy was done, and the list of files that were copied. This meant some trivial changes in core.py as well: the Command methods that mirror 'copy_file()' and 'copy_tree()' have to pass on their return values. | ||||
* | Rearranged things so that compilation of .py files is the responsibility | Greg Ward | 1999-05-02 | 5 | -42/+73 |
| | | | | | | | | | of the 'install_py' command rather than 'build_py'. Obviously, this meant that the 'build_py' and 'install_py' modules had to change; less obviously, so did 'install' and 'build', since these higher-level commands must make options available to control the lower-level commands, and some compilation-related options had to migrate with the code. | ||||
* | updates for latest release | Barry Warsaw | 1999-05-01 | 1 | -7/+9 |
| | |||||
* | Support for using idle as a package. | Guido van Rossum | 1999-04-30 | 1 | -0/+1 |
| | |||||
* | Revert constraint on the GIF wildcard; we missed a few! | Fred Drake | 1999-04-30 | 1 | -1/+1 |
| | |||||
* | Avoid listing files more than once (e.g. foomodule.so has two hits: | Guido van Rossum | 1999-04-30 | 1 | -1/+2 |
| | | | | once for foo + module.so, once for foomodule + .so). | ||||
* | Added top navigation bar for consistency and color. There's not a lot | Fred Drake | 1999-04-29 | 1 | -0/+20 |
| | | | | there, but the "modules" icon is active. | ||||
* | make_nav_panel(): Remove the spurious NAME="tex2html\d+" attributes | Fred Drake | 1999-04-29 | 1 | -16/+18 |
| | | | | | added to the anchors in the navigation bars. These are added somewhere deep with l2h, and are stupid. |