Barry Warsaw [Tue, 16 Feb 1999 23:36:16 +0000 (23:36 +0000)]
(py-default-interpreter): New variable which selects whether CPython
or JPython is the default interpreter to use when `C-c !' is entered
for the first time.
Fred Drake [Tue, 16 Feb 1999 17:22:32 +0000 (17:22 +0000)]
Make navigation panels more CSS-friendly.
Make sure the contents page always has the "table of child links"
turned off; this wasn't being handled properly by latex2html for
"howto" ("article") documents, so just do it ourselves for all
document types.
Guido van Rossum [Tue, 16 Feb 1999 17:19:39 +0000 (17:19 +0000)]
Clarify how EXAMPLE.py is to be used ("python EXAMPLE.py", not
"python modulator.py EXAMPLE.py") and that it's only there in case
you don't have Tkinter.
Fred Drake [Mon, 15 Feb 1999 19:29:08 +0000 (19:29 +0000)]
HTMLBASE: New variable. Make it easier to check an "installed" copy
of the HTML documents using the webcheck target.
When there's not a usable .aux file, use mkdvi.sh --aux instead of
building the .dvi completely. This makes the most difference for the
library reference.
Fred Drake [Mon, 15 Feb 1999 19:27:07 +0000 (19:27 +0000)]
Add an optional parameter to make the script run latex only once to
generate an .aux file. This can make HTML generation a bit faster
when print formats aren't needed.
Fred Drake [Mon, 15 Feb 1999 16:27:42 +0000 (16:27 +0000)]
Added --l2h-config option to add additional initialization files for
latex2html. Can be useful in setting up things like the upward
external link for the top of the documents.
Fred Drake [Fri, 12 Feb 1999 19:23:17 +0000 (19:23 +0000)]
Make table headers the same color as the navigation bars so they stand
out a little better.
Make sure the boxes for the last column of tables always get drawn;
these are often left empty of content when used as a "Notes" column.
They look a little better this way.
Jack Jansen [Wed, 10 Feb 1999 23:08:24 +0000 (23:08 +0000)]
Updated for the new one-slb-per-extension scheme.
Added a few references to cvs locations for external libraries.
img now builds in its own Extensions folder.
Jack Jansen [Wed, 10 Feb 1999 22:38:44 +0000 (22:38 +0000)]
Added AskPassword() with same interface as AskString. By Steve Majewski with some mods by me (SchedParams call, default value). Selects are still impossible, though, and the cursor doesn't blink.
Jack Jansen [Wed, 10 Feb 1999 09:51:35 +0000 (09:51 +0000)]
Use typeFloat for all floating point values. The previously used
typeExtended was a Think-ism that must have stopped working years and
years ago without anyone noticing.
Barry Warsaw [Tue, 9 Feb 1999 19:31:45 +0000 (19:31 +0000)]
Got rid of the file-global PosixError. This was redundant since it
was just an alias for PyExc_OSError and the way we were doing it was
causing a (small) memory leak anyway. Just use PyExc_OSError
everywhere.
On Windows, -i shouldn't call set[v]buf(stdin, ...) because it screws
up the _tkinter main loop. Not clear why; the _kbhit() call _tkinter
makes probably confuses the stdio library when buffering isn't set to
whatever it is by default.
Fred Drake [Tue, 9 Feb 1999 15:31:52 +0000 (15:31 +0000)]
Back out some of the fine tuning; something in all that interacted
badly in practice and botched the whole thing. Wasn't obvious when
looking at the local effects (which worked), but completely broke
entire pages. ;-(
+ Implements a put_nowait method.
+ Adds a corresponding Queue.Full exception.
+ Simplifies the implementation by adding optional "block" args to get() and
put(), and makes the old get_nowait() and new put_nowait() one-line
redirections to get() and put().
+ Uses (much) simpler logic for the nowait cases.
+ Regularizes the doc strings to something closer to "Guido style" <wink>.
+ Converts two stray tabs into spaces.
+ Removes confusing verbiage about the queue "not being available" from the
docstrings -- never knew what that meant as a user, and after digging into
the implementation still didn't know what it was trying to say.
Jack Jansen [Sun, 7 Feb 1999 14:00:50 +0000 (14:00 +0000)]
Added a define USE_CORE_TOOLBOX, which includes six core toolbox modules
into the config file. This define is also automatically set if USE_TOOLBOX is
defined.