summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Adjust grouping for the "b(reak)" command syntax description. This isFred Drake1998-02-192-2/+2
| | | | required to get the info generation back in operation, yet again.
* Logical markup.Fred Drake1998-02-192-114/+118
| | | | | Several uses of "\^" could be simplified; this fixes part of the info generation process.
* \nodename{} must immediately follow \chapter{} to be handled correctly;Fred Drake1998-02-192-4/+2
| | | | adding the \label{} broke that.
* {fulllineitems} is now an environment; use it as such.Fred Drake1998-02-192-6/+14
|
* Logical markup.Fred Drake1998-02-192-18/+18
| | | | Changed {funcdesc} to {classdesc}. This is a test case for {classdesc}.
* Mostly LaTeX style cleanup.Fred Drake1998-02-191-111/+159
| | | | | | | | | | | | | | | | Use \newenvironment{envname} instead of \newcommand{\foo} & \newcommand{\endfoo} (or \let\endfoo=...!) wherever reasonable. Where {*desc} environment helper functions are not needed outside a single environment definition, inline them. Ensure that \seemodule{} and \seetext{} are only available within the {seealso} environment. Added "()" to the index entries for {funcdesc} and {cfuncdesc} environments. Added {classdesc} environment which looks like the {funcdesc} environment but doesn't add the parens in the index entry.
* breakable_re: Fix the RE so that module definition entries don't preventFred Drake1998-02-192-2/+4
| | | | combining.
* Feature added by Bill van Melle: when no timezone is present, assumeGuido van Rossum1998-02-193-9/+20
| | | | local time -- that's better than failure.
* &do_cmd_url,Fred Drake1998-02-181-11/+40
| | | | | | | | | | | | | | | | | | &do_cmd_email: Adjust to use a font similar to that used in the printed representation. &my_module_index_helper: Change to be only used for defining markup. Don't prepend an <A NAME=...> to the result; use the containing page as the module target for the index. &ref_module_index_helper: New function. Used only for references to modules described elsewhere. Generate the right target. &init_myformat: Set the anchor_mark to an empty string; this avoids junky "&#160;"'s in the text, which could really screw up vertical spacing when that's all that's in a paragraph. &do_cmd_seemodule: Insert markup to jump right to the referred-to module.
* Consistent spelling: "time zone" -> "timezone".Guido van Rossum1998-02-182-6/+12
| | | | | Clarify that the sign of the timezone offset returned by parsedate_tz() is the opposite of time.timezone.
* Add named destinations for \label{} in the PDF.Fred Drake1998-02-181-3/+11
| | | | Fix \email{} so it doesn't rely on \url{}.
* Add new files from the Mac user interface breakup.Fred Drake1998-02-181-1/+2
|
* 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).