Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move "everything left one": the TOC now shows each doc directory as a | Tim Peters | 2002-04-20 | 1 | -9/+10 |
| | | | | | | | distinct top-level node. Before they were all nested under an artificial top-level node, uselessly chewing up horizontal space, and ensuring that the only thing the user saw in the TOC upon opening the file was a single collapsed top-level folder. | ||||
* | Stopped all warnings from the HTML Help Compiler, by generating proper | Tim Peters | 2002-04-20 | 1 | -21/+34 |
| | | | | | | | | | | | | | | | HTML (or, at least, proper in its view). The TOC file is now identical to what the HTML compiler itself generates, except for whitespace and a glitch identified below. The pretty-printing done by prechm.py is pretty much destroyed for now; if you need it pretty-printed, just make the Help Compiler save the files (it's got its own idea of pretty- printing anyway). Glitch: The title of Ref Man "2.1.6 Blank lines" shows up as a blank for now. This is because the relevant entry in ref/index.html contains nested anchors, and pychm really has no idea what to do with that. I hacked it for now to avoid any error messages or worse insanity, and filed a bug report against the docs. | ||||
* | Widespread: Used classes in a more natural way. Added convenience | Tim Peters | 2002-04-20 | 1 | -63/+76 |
| | | | | | | | methods to squash code duplication. Simplified several overly complex chunks of logic. Built output strings more with string interpolation instead of infix '+'. Added comments. Exploited recent Python features (chiefly bool and augmented assignment). | ||||
* | Replaced the fiddly 5-tuples with a new Book convenience class, allowing | Tim Peters | 2002-04-20 | 1 | -65/+86 |
| | | | | | | to reference fields via names instead of meaningless little integers. This turned up one case where the wrong little integer was being used, in informative progress output. Fixed that too. | ||||
* | Fixed a comment. | Tim Peters | 2002-04-20 | 1 | -1/+1 |
| | |||||
* | All over: get rid of blanks before colons that open code blocks. | Tim Peters | 2002-04-20 | 1 | -45/+45 |
| | |||||
* | do_project(): Modernized the code. | Tim Peters | 2002-04-20 | 1 | -9/+10 |
| | |||||
* | Added "What's New" to the 2.2 doc set. | Tim Peters | 2002-04-20 | 1 | -0/+1 |
| | |||||
* | Added a stop-list to reduce the size of the full text search index. Fred, | Tim Peters | 2002-04-19 | 1 | -3/+29 |
| | | | | | populate the "stop_list" triple-quoted string with your favorite handful of stop words. | ||||
* | project_template: use dict interpolation instead of giant tuples. | Tim Peters | 2002-04-19 | 1 | -14/+13 |
| | |||||
* | + Changed TOC to folder-tree style. | Tim Peters | 2002-04-19 | 1 | -1/+2 |
| | | | | | | | + Increased size of the window the user sees the first time. + Arranged for the display to remember its last size and position. + Added a Favorites (bookmarks) tab. + Added the "Advanced Search" decorations. | ||||
* | Generates inputs to the Microsoft Help Compiler, which creates compiled | Tim Peters | 2002-04-19 | 1 | -0/+362 |
| | | | | | | | HTML help files (.chm). Obtained from Robin Dunn's packaging of the 2.2 docs at <http://alldunn.com/python/>, obtained in turn from Hernán Martínez Foffani's original work at <http://www.orgmf.com.ar/condor/pytstuff.html>. | ||||
* | Get the right funny characters in Hernan's name. | Tim Peters | 2002-04-19 | 1 | -1/+1 |
| | |||||
* | \idxcode -> \py@idxcode (mimics index stuff in python.sty - problem only | Skip Montanaro | 2002-04-19 | 1 | -3/+3 |
| | | | | revealed itself when i added index generating lines to doc/doc.tex) | ||||
* | fix duplicate label | Skip Montanaro | 2002-04-19 | 1 | -1/+5 |
| | | | | add index turds | ||||
* | Clean up the use of version numbers in filenames; always use an "abstract" | Fred Drake | 2002-04-19 | 1 | -6/+17 |
| | | | | | version number, and explain what it is at the top of the chapter. This closes SF bug #225003. | ||||
* | Long-forgotten change: Update first paragraph with actual release date | Andrew M. Kuchling | 2002-04-18 | 1 | -5/+3 |
| | |||||
* | typo | Skip Montanaro | 2002-04-17 | 1 | -1/+1 |
| | |||||
* | Add text on tp_as_buffer that refers tothe section that covers the topic. | Fred Drake | 2002-04-17 | 1 | -3/+9 |
| | | | | Additional material is still needed in that section. | ||||
* | Add a version annotation for the help() function. | Fred Drake | 2002-04-17 | 1 | -0/+1 |
| | |||||
* | Adjust markup to worm around tool limitations; the "m" in "model" was being | Fred Drake | 2002-04-17 | 1 | -1/+1 |
| | | | | | dropped in the HTML formatted version. Reported by Mike Coleman. | ||||
* | Pass the -r option to getpagecounts to generate an entry for the "What's | Fred Drake | 2002-04-17 | 1 | -1/+1 |
| | | | | New" document. | ||||
* | Remove Emacs turd; not needed with modern Emacs versions. | Fred Drake | 2002-04-17 | 1 | -10/+19 |
| | | | | | | | | Add a -r option; if given with a release number, the "What's New" document is included with the relevant version number. Update the text of the README distributed with the PostScript files to reflect the changes in the user organizations in the Python community. | ||||
* | Changed last remaining use of "./" to "index.html" when referring to the | Fred Drake | 2002-04-17 | 1 | -1/+1 |
| | | | | | | index file for the top-level directory. This makes it easier to use an unpacked version of the documentation via file: URLs. This closes SF bug #541257. | ||||
* | Start of script to locate C symbols and segregate them into lists of | Fred Drake | 2002-04-16 | 1 | -0/+107 |
| | | | | the documented and undocumented symbols. | ||||
* | Update the dependencies. | Fred Drake | 2002-04-16 | 1 | -1/+6 |
| | |||||
* | Minor wording change. | Fred Drake | 2002-04-16 | 1 | -1/+1 |
| | |||||
* | Add more text from Guido on the type structure fields. | Fred Drake | 2002-04-16 | 1 | -23/+442 |
| | | | | Small additional changes. | ||||
* | added small clarification to the descriptions of encode() and decode() | Skip Montanaro | 2002-04-16 | 1 | -2/+6 |
| | |||||
* | Replace the simpleminded string.find with a re.search looking only for | Thomas Heller | 2002-04-16 | 1 | -2/+2 |
| | | | | | | | full words. Before that, something like 'PyObject_Call' was missed because 'PyObject_CallFunction' was found. Passes PyChecker now. | ||||
* | Remove repeated index entry; adds nothing different. | Fred Drake | 2002-04-16 | 1 | -2/+1 |
| | | | | Closes SF bug #518985. | ||||
* | Add documentation for PyObject_Call(). | Fred Drake | 2002-04-15 | 1 | -0/+16 |
| | | | | | Note that PyObject_Size() is a synonym for PyObject_Length(). This closes SF patch #544330 (contributed by Thomas Heller). | ||||
* | Separate out a \cfuncline macro from the cfuncdesc environment. | Fred Drake | 2002-04-15 | 2 | -9/+25 |
| | | | | | This matches many other of the *desc environments, and is useful when multiple functions share a description. | ||||
* | Document the cmemberdesc environment. | Fred Drake | 2002-04-15 | 1 | -0/+11 |
| | |||||
* | Better documentation for GetArgv() and the ProgressBar type. | Fred Drake | 2002-04-15 | 1 | -40/+157 |
| | | | | | Back-porting to release22-maint. This closes SF patch #496705. | ||||
* | Be consistent in presenting the signatures. | Fred Drake | 2002-04-15 | 1 | -1/+1 |
| | |||||
* | Add docs for os.fchdir(). | Fred Drake | 2002-04-15 | 1 | -0/+9 |
| | |||||
* | Generate the right annotations in the index entries. | Fred Drake | 2002-04-15 | 1 | -2/+2 |
| | | | | Thanks to Thomas Heller for the sharp eye. | ||||
* | Integrated more text from Guido. | Fred Drake | 2002-04-15 | 1 | -2/+359 |
| | |||||
* | Move the listing of the type structure, since both the C API reference and | Fred Drake | 2002-04-15 | 1 | -0/+0 |
| | | | | the Extending & Embedding manual use it. | ||||
* | Clean up the application of style to verbatim text. | Fred Drake | 2002-04-15 | 3 | -8/+10 |
| | | | | | | | This moves styling to the stylesheet; the use of <dl> structures to control style sometimes produced improper indentation of subsequent text in many browsers when the text was already part of the <dl> structure (as in a function or class description). | ||||
* | Add support for \cmemberline and the cmemberdesc environment. | Fred Drake | 2002-04-15 | 1 | -0/+24 |
| | |||||
* | Add item | Andrew M. Kuchling | 2002-04-15 | 1 | -0/+2 |
| | |||||
* | Apply the second version of SF patch http://www.python.org/sf/536241 | Walter Dörwald | 2002-04-15 | 1 | -0/+6 |
| | | | | | | | | | | Add a method zfill to str, unicode and UserString and change Lib/string.py accordingly. This activates the zfill version in unicodeobject.c that was commented out and implements the same in stringobject.c. It also adds the test for unicode support in Lib/string.py back in and uses repr() instead() of str() (as it was before Lib/string.py 1.62) | ||||
* | posix.mknod() and {}.pop() were added | Neal Norwitz | 2002-04-15 | 1 | -1/+2 |
| | |||||
* | Add items | Andrew M. Kuchling | 2002-04-15 | 1 | -0/+20 |
| | |||||
* | Patch #543447: Add posix.mknod. | Martin v. Löwis | 2002-04-14 | 1 | -0/+11 |
| | |||||
* | Document the optional argument to the .strip(), .rstrip(), .strip() string | Fred Drake | 2002-04-13 | 1 | -8/+20 |
| | | | | | methods. Part of SF feature #444708. | ||||
* | Additional support for describing C structure members. | Fred Drake | 2002-04-12 | 1 | -0/+11 |
| | |||||
* | Integrate a bunch of new text from Guido. | Fred Drake | 2002-04-12 | 1 | -6/+262 |
| |