| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
that there's a Global Module Index; there can be only one!
|
|
|
|
| |
navigation bars in the HTML output.
|
|
|
|
| |
description.
|
|
|
|
|
| |
Use memberdesc instead of datadesc to document object attributes.
This gets the index right.
|
|
|
|
|
|
|
| |
items -> item
The returned list will then have one more items than the number of
non-overlapping occurrences of the separator in the string.
|
|
|
|
|
|
| |
empty comments trigger a bug in LaTeX2HTML.
Problem reported by Gerry Wiener <gerry@ucar.edu>.
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
there is "su" top level domain still maintained in ex-USSR. at
least "*.msk.su" zone (Moscow, USSR) is still in use.
|
|
|
|
| |
Added some index entries.
|
|
|
|
|
|
| |
casing when py-honor-comment-indentation is nil, but this could be a
religious issue with some. Seems to me we should still be dedenting
such comment lines one level.
|
|
|
|
|
|
| |
buffer-syntactic-context -- just short circuit the TQS test by jumping
to point-min and doing the test from there. For long files, this will
be faster than looping with a re-search-backwards.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
indentation when the return value is a multiline sexp:
def bug():
try:
if 2>1:
return (11+
12)
else: #XXX
return 12
except:
return 13
|
|
|
|
|
|
|
| |
"""Despite the best intentions of Anarchie and Internet Explorer, I often end
up with Python source files (and other text files that I'd like to edit with
PythonIDE) that use '\n' instead of '\r' as a line separator (and therefore
sh
|
|
|
|
| |
to the libs variable. Reported by Albert Chin-A-Young.
|
|
|
|
|
|
|
|
|
| |
I noticed while watching (with lsof) my forking SocketServer app running
that I would get multiple processes listening to the socket. For the most
part, this doesn't hurt things, but if you terminate the server, this can
prevent it from restarting because it cannot bind to the port due to any
running children which also have the socket open. The following one-liner
fixes this.
|
|
|
|
| |
Add isatty() to pseudo files.
|
| |
|
| |
|
|
|
|
| |
by Tim Peters.
|
| |
|
|
|
|
|
|
| |
_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.
|
|
|
|
|
| |
verbatim-like environments. The list of verbatim-like environments is
a defined by a variable in main().
|
|
|
|
| |
environments. Move the conversion to esis2sgml.py.
|
|
|
|
| |
Reported by Corran Webster <cwebster@math.tamu.edu>.
|
|
|
|
| |
Updated comments on the documentation.
|
|
|
|
| |
to make it easier for people to find what they're looking for.
|
|
|
|
|
|
| |
Add a few more comments about mkhowto.
Based on comments from Albert <hat@se-46.wpa.wtb.tue.nl>.
|
|
|
|
| |
documents probably aren't written by Guido. ;-)
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
This reflects the changes made in
../texinputs/python.sty.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
since they shouldn't be here. Only ignore the output tarballs in this
directory.
|
|
|
|
| |
<piers@cs.su.oz.au>.
|
|
|
|
| |
<piers@cs.su.oz.au>.
|
|
|
|
| |
called on destruction is non-NULL.
|
|
|
|
|
| |
When refering to chapters, use \ref, don't hardcode the chapter
number.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
was never called in this incarnation. The
other version is simpler as well.
|
| |
|
| |
|
|
|
|
| |
page of the section.
|
|
|
|
| |
All suggested by Eric Raymond.
|
| |
|
|
|
|
| |
in a fragment rather than the main document object.
|
|
|
|
| |
Add controls for some of the esoteric indexing macros.
|
|
|
|
|
|
| |
In the __coerce__ description, None should be returned if the
conversion is *impossible*, not *possible*. Reported by Robert Kern
<kernr@ncifcrf.gov>.
|
|
|
|
|
|
| |
want to push nodes into the document, but into a document
fragment, since we're not necesarily working with something
that's well-formed.
|
| |
|
|
|
|
| |
least there's a token object in here now! ;-)
|