Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix availability clause; mention availability of similar functionality | Fred Drake | 1999-06-01 | 1 | -2/+5 |
| | | | | for Windows using win32pipe. | ||||
* | Oops, forgot to remove the individual module indexes for lib & mac now | Fred Drake | 1999-05-27 | 1 | -3/+1 |
| | | | | that there's a Global Module Index; there can be only one! | ||||
* | Add <hr> after top navigation bar; now looks more like the rest of the | Fred Drake | 1999-05-27 | 1 | -0/+1 |
| | | | | navigation bars in the HTML output. | ||||
* | Hack: make sure LaTeX2HTML doesn't change -- to - in mkhowto | Fred Drake | 1999-05-27 | 1 | -2/+2 |
| | | | | description. | ||||
* | Document the "pid" attribute of the Popen3 class. | Fred Drake | 1999-05-27 | 1 | -9/+12 |
| | | | | | Use memberdesc instead of datadesc to document object attributes. This gets the index right. | ||||
* | Typo reported by Gerry Wiener <wiener@rap.ucar.edu>: | Fred Drake | 1999-05-27 | 1 | -1/+1 |
| | | | | | | | items -> item The returned list will then have one more items than the number of non-overlapping occurrences of the separator in the string. | ||||
* | Move some \index entries around so we can avoid using empty comments; | Fred Drake | 1999-05-26 | 1 | -31/+25 |
| | | | | | | empty comments trigger a bug in LaTeX2HTML. Problem reported by Gerry Wiener <gerry@ucar.edu>. | ||||
* | Change the example of configuring for large file support under Solaris | Fred Drake | 1999-05-26 | 1 | -1/+1 |
| | | | | | to use `getconf LFS_CFLAGS`. Steve Clift (the author of the section and large file support) agrees that this is the right thing to do. | ||||
* | "proces" --> "process"; reported by Gerry Wiener <gerry@ucar.edu>. | Fred Drake | 1999-05-25 | 1 | -2/+5 |
| | | | | Added some index entries. | ||||
* | Enhanced docstring and some comments. | Fred Drake | 1999-05-19 | 1 | -8/+21 |
| | | | | | | _begin_macro_rx: Fixed RE that didn't properly allow a space after the name of the macro. This affects the conversion of the tutorial. | ||||
* | Modify to perform "---" to "—" conversion outside of | Fred Drake | 1999-05-18 | 1 | -7/+16 |
| | | | | | verbatim-like environments. The list of verbatim-like environments is a defined by a variable in main(). | ||||
* | Remove the "---" to "—" conversion; this is wrong in verbatim | Fred Drake | 1999-05-18 | 1 | -1/+0 |
| | | | | environments. Move the conversion to esis2sgml.py. | ||||
* | SET_LINE_NO ==> SET_LINENO | Fred Drake | 1999-05-17 | 1 | -1/+1 |
| | | | | Reported by Corran Webster <cwebster@math.tamu.edu>. | ||||
* | Added paragraph explaininng the text/binary flavors of some methods, | Fred Drake | 1999-05-17 | 1 | -0/+5 |
| | | | | to make it easier for people to find what they're looking for. | ||||
* | Document \e, \url. | Fred Drake | 1999-05-17 | 1 | -2/+25 |
| | | | | | | Add a few more comments about mkhowto. Based on comments from Albert <hat@se-46.wpa.wtb.tue.nl>. | ||||
* | Don't \input boilerplate.tex, fill in the real stuff. 3rd party | Fred Drake | 1999-05-17 | 1 | -1/+18 |
| | | | | documents probably aren't written by Guido. ;-) | ||||
* | Attempted to clarify usage of the \declaremodule macro somewhat; | Fred Drake | 1999-05-17 | 1 | -7/+25 |
| | | | | | | | | Michael Hudson's documentation for bytecodehacks exhibits incorrect usage. Added some comments about how to set up the mkhowto script for use with documents not contained in the documentation source tree. | ||||
* | define_module(): Check the module type for validity before using. | Fred Drake | 1999-05-17 | 1 | -0/+6 |
| | | | | | This reflects the changes made in ../texinputs/python.sty. | ||||
* | \declaremodule: Typo. | Fred Drake | 1999-05-17 | 1 | -1/+1 |
| | |||||
* | \declaremodule: Make this more robust. Only attempt to add an index | Fred Drake | 1999-05-17 | 1 | -1/+6 |
| | | | | | | | | | | | | entry based on the module type if the type is known. Otherwise, spit out a warning the the module type parameter was bad and generate a "plain" index entry. Without this, the bad module type was emitted as text. Problem noticed by processing Michael Hudson's docs for bytecodehacks. | ||||
* | The conversion temporary files should not be ignored here anymore, | Fred Drake | 1999-05-13 | 1 | -13/+0 |
| | | | | | since they shouldn't be here. Only ignore the output tarballs in this directory. | ||||
* | POP3.uidl(): Update description based on comments from Piers Lauder | Fred Drake | 1999-05-13 | 1 | -3/+3 |
| | | | | <piers@cs.su.oz.au>. | ||||
* | PyCObject_FromVoidPtr(): Clarify that the destr function will only be | Fred Drake | 1999-05-13 | 1 | -1/+2 |
| | | | | called on destruction is non-NULL. | ||||
* | 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. | ||||
* | 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.) | ||||
* | Revert constraint on the GIF wildcard; we missed a few! | Fred Drake | 1999-04-30 | 1 | -1/+1 |
| | |||||
* | 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. | ||||
* | Added wcnew target to run the "wcnew" version of webchecker. | Fred Drake | 1999-04-29 | 1 | -0/+11 |
| | |||||
* | Use the new module-key for the FL module when hyperlinking (the old | Fred Drake | 1999-04-29 | 1 | -1/+2 |
| | | | | one caused problems on case-insensitive file systems). | ||||
* | For the tutorial, use numeric node names and split by chapter. | Fred Drake | 1999-04-29 | 1 | -6/+6 |
| | |||||
* | Nasty hack to add a --numeric parameter to skip the use of "logical" | Fred Drake | 1999-04-29 | 1 | -3/+14 |
| | | | | names. | ||||
* | Move index.html rules to the end since it wedges font-lock. | Fred Drake | 1999-04-29 | 1 | -13/+19 |
| | | | | Remember to delete index.html for clobber since it is now generated.. |