summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Separate Mac user interface modules into separate files, to better supportFred Drake1998-02-1810-702/+1048
| | | | bookmarkable module sections in the HTML.
* rrggbb_to_triplet(), triplet_to_rrggbb(): Improvements given by GvRBarry Warsaw1998-02-181-8/+3
|
* Very modest improvementsBarry Warsaw1998-02-181-27/+31
|
* Get rid of commented out, slower versionsBarry Warsaw1998-02-181-14/+0
|
* Implementation using TCLPROC loaded into the Tcl interpreterBarry Warsaw1998-02-181-10/+32
|
* Small patches to the DJGPP version of check_case().Guido van Rossum1998-02-181-1/+3
|
* assure a consistent assignment for nodes with multiple labelsJeremy Hylton1998-02-182-2/+4
|
* Added a number of items....Fred Drake1998-02-181-1/+14
|
* Added libsymbol.tex, libtoken.tex to dependencies for the libref.Fred Drake1998-02-181-1/+10
| | | | | | | | | New targets: ???-all, for each document. This creates all formats of the named document (DVI, HTML, PDF, PS). l2hlib: Added commands to translate node*.html to use the \label{} stuff, as supported by Jeremy's node2html.pl. This gives us mostly bookmarkable nodes.
* Separate the parse, symbol, and token documentation into separate files.Fred Drake1998-02-188-138/+134
|
* Added \label{} for logical addressing.Fred Drake1998-02-186-16/+24
|
* Added \label{} for logical addressing.Fred Drake1998-02-1814-0/+14
|
* Added \label{} for logical addressing.Fred Drake1998-02-184-10/+14
| | | | Logical markup.
* Added \label{} for logical addressing.Fred Drake1998-02-188-6/+14
|
* Added \label{} for logical addressing.Fred Drake1998-02-186-112/+120
| | | | Logical markup.
* Added \label{} for logical addressing.Fred Drake1998-02-1812-2/+18
|
* Added \label{} for logical addressing.Fred Drake1998-02-184-24/+30
| | | | Logical markup.
* Don't make backups.Fred Drake1998-02-182-6/+6
| | | | Use "mv" instead of "ln -s" to install the new names.
* \url{}: For pdflatex, make the link active & make it blue. If anyone figuresFred Drake1998-02-181-7/+11
| | | | out how to make the border go away completely, please let me know!
* Add normpath(). Clarify normcase(). (Note -- this doc sectionGuido van Rossum1998-02-182-6/+24
| | | | | probably needs more work, describing new functions and the differences between unix/mac/win.
* Patch HREFs in html files, replacing nodeXXX.html with label.html.Jeremy Hylton1998-02-182-0/+76
|
* (1) Change normpath() to *not* also call normcase().Guido van Rossum1998-02-181-7/+7
| | | | | | | (2) Fix normcase() to use string.lower() and string.replace() -- it turns out that the table constructed for translate() didn't work in locales that have a different number of lowercase and uppercase letters.
* Add mktime_tz(). Add () to a function reference in parsedate_tz().Guido van Rossum1998-02-182-2/+18
|
* Fix sign reversal in mktime_tz discovered by Bill van Melle.Guido van Rossum1998-02-181-1/+1
|
* __modified(): Make sure `rgbs' is a tupleBarry Warsaw1998-02-181-1/+1
|
* Several optimizations:Barry Warsaw1998-02-181-51/+81
| | | | | | | | | | | | | self.__chips now contains the list of rgbtuple values for the chips named i - 1 (Tkinter counts from 1, we count from zero). The chip number was just the index + 1. This means color lookup need not do an itemcget(), it can just index into __chips. instead of calling __canvas.itemconfigure(), we glom up a huge Tcl script and call tk.eval() directly. Actually we do many appends to a Python list, then string.join() them together into one huge string. This reduces the overhead of Tkinter but making one fast call to Tcl.
* Cache conversions from triplets to rrggbb's and vice versa. WastefulBarry Warsaw1998-02-181-13/+22
| | | | | on space, but improves performance. Also use map to calculate triplet_to_pmwrgb().
* main(): Include a \label{modindex} in the output so latex won't let us re-useFred Drake1998-02-172-2/+4
| | | | | the name elsewhere. This is useful for the logical filenames project, since the "modindex" label is hardcoded into .latex2html-init.
* &do_cmd_textohtmlmoduleindex: Get the modindex key added to the label->nodeFred Drake1998-02-171-2/+2
| | | | association.
* Added \label{} for logical addressing.Fred Drake1998-02-174-0/+4
|
* Added about dialogBarry Warsaw1998-02-171-4/+60
|
* Use \manpage{} markup for referencing a UNIX man page.Fred Drake1998-02-172-10/+10
| | | | Added index entry for DES cipher.
* Added comment explaining the only warning produced by makeindex, since thereFred Drake1998-02-172-0/+28
| | | | doesn't appear to be a way to fix that's reasonable.
* Remove Macintosh ligatures item. Solution: Update your Times fonts.Fred Drake1998-02-171-2/+2
| | | | Added native package semantics note.
* Started a TODO list with the latest bug reports.Fred Drake1998-02-171-0/+9
| | | | In part prompted by questions from AMK.
* Clarified comment about the PS generation when using the all-pdf target.Fred Drake1998-02-171-3/+3
|
* Add magic to make PDF generation use maximal compression.Fred Drake1998-02-171-0/+3
|
* Added all-formats target: use this to get both PDF and PS files; using theFred Drake1998-02-171-5/+11
| | | | | | | | | | "alternate" rules for PDF generation doesn't ensure the PS files get generated since distiller isn't used. Switch to the "alternate" rules for PDF generation; this is starting to make more sense than the distiller-based rule, and requires only free software. I'm also confident it's working well (meaning I paged through all four pdflatex-generated PDF files).
* Updated date for interim documentation release.Fred Drake1998-02-172-2/+2
|
* If generating PDF, include the author and title information in acroread'sFred Drake1998-02-171-1/+12
| | | | "File->General Info" dialog.
* Massive changes. Fewer warnings from the Python Library Reference. StillFred Drake1998-02-172-186/+262
| | | | | | | | messy, but the thing seems to be working without bombing completely today. Formatting lib.texi with TeX doesn't seem to do too badly, either! Info formatting isn't quite there; that might just have to disappear this time.
* Added chip selection stuff, strip labelBarry Warsaw1998-02-171-8/+40
|
* Added method to set selected color to nearest.Barry Warsaw1998-02-171-8/+16
| | | | | | Collapsed `Options' group into `Current Color' group Set delegate of reds, greens, blues
* Update indexsubitem for file attributes correctly.Fred Drake1998-02-172-2/+6
|
* \nodename{} must appear immediately after \section{} for the info conversion.Fred Drake1998-02-172-2/+2
|
* Indent {verbatim} environments like in the printed version.Fred Drake1998-02-161-0/+7
|
* Move optional package inclusions to the top, to make them easier to find.Fred Drake1998-02-161-5/+51
| | | | | | | | | | | | | Code elsewhere in this file tests for the inclusion of the package and does not need to be uncommented. Comments explain what they do and how to disable them. Added support for the optional "fancyhdr" package. If used, page footers include chapter information on the left and section information on the right. Both optional packages, "fancyhdr" and "times", are enabled by default. We may want to disable them before shipping, but I'm not completely convinced. (How many installations format their own documentation?)
* Oh, well, various miscellaneous changes.Guido van Rossum1998-02-161-10/+21
|
* Swap two statements in the dedent check loop. This makes absolutelyGuido van Rossum1998-02-161-1/+1
| | | | | no difference, but avoids triggering an optimizer bug in the AIX compiler where the loop unrolling does the wrong thing...
* NNTP.xgtitle() description: Add a missing ")" from the response valueFred Drake1998-02-162-4/+8
| | | | | | description. NNTP.xover() description: Adjust some markup for consistency.