summaryrefslogtreecommitdiffstats
path: root/Tools/faqwiz
Commit message (Collapse)AuthorAgeFilesLines
...
* New PythonPowered logo image.Guido van Rossum1997-07-131-2/+2
|
* Added a variant of the epilogue that has the PythonPowered logo.Guido van Rossum1997-06-031-0/+12
|
* Move the second import of faqcust to the very end.Guido van Rossum1997-06-031-8/+8
|
* Expanded the setup instructions.Guido van Rossum1997-06-021-7/+49
|
* Move the roulette() functionality out of the FaqDir class into theGuido van Rossum1997-06-021-8/+4
| | | | FaqWizard class.
* Version upped.Guido van Rossum1997-06-021-1/+1
|
* Stupid typos -- ImporError.Guido van Rossum1997-06-021-2/+2
|
* Bugfix: last_changed would always print current time.Guido van Rossum1997-06-021-1/+1
|
* Added hint about permissions.Guido van Rossum1997-05-301-1/+5
|
* Protect roulette against empty FAQ.Guido van Rossum1997-05-301-1/+5
|
* Inclide the imports and chdir in the try/except.Guido van Rossum1997-05-301-4/+4
|
* Set version to 0.4; get rid of '(' in column 1 in triple-queted string.Guido van Rossum1997-05-261-3/+2
|
* Initial revisionGuido van Rossum1997-05-261-0/+25
|
* Added marks for very recently (24 hours) and recently (7 days)Guido van Rossum1997-05-261-19/+35
| | | | | modified files. Added and used global now, entry.getmtime(), and entry.emit_marks().
* Added marks for very recently (24 hours) and recently (7 days)Guido van Rossum1997-05-261-15/+41
| | | | modified files. Throw things around a bit.
* Support for more general diffing and retrieving any old revision.Guido van Rossum1997-05-262-16/+64
| | | | Support for index formatting with local refs.
* Added keyword searching.Guido van Rossum1997-05-261-6/+27
|
* Added keyword searching radio buttons.Guido van Rossum1997-05-261-0/+6
|
* Don't need <BR> at end of <LI>.Guido van Rossum1997-05-261-1/+1
|
* Bugfix -- should pass headers=0 when formatting query results.Guido van Rossum1997-05-261-1/+1
|
* Add optional section titles to format_all.Guido van Rossum1997-05-261-4/+21
| | | | Allow for missing section titles in format_all and format_index.
* Oops, checked in the wrong SHORTNAME value.Guido van Rossum1997-05-261-1/+1
|
* Added a local customization feature: load some parameters from faqcust.Guido van Rossum1997-05-261-10/+22
|
* Initial revisionGuido van Rossum1997-05-261-0/+11
|
* Initial revisionGuido van Rossum1997-05-261-0/+19
|
* I'm happy with this.Guido van Rossum1997-05-262-277/+464
|
* Initial revisionGuido van Rossum1997-05-262-0/+1048
|
* Final touch -- bottom link points to FAQ Wizard home.Guido van Rossum1997-05-231-1/+1
|
* Forgot to remove debug stmt.Guido van Rossum1997-05-231-1/+0
|
* The official name of the whole thing is now "Python FAQ Wizard";Guido van Rossum1997-05-231-7/+8
| | | | | | | and it's in beta testing now. Renamed the cookie id to Python-FAQ-Wizard and fixed some bugs related to cookie processing.
* Implemented a simple Password scheme.Guido van Rossum1997-05-231-29/+53
| | | | Added a Help link to the FAQ Edit Wizard.
* Added last mtime on whole faq.Guido van Rossum1997-05-231-23/+66
| | | | | | Added more elaborate explanation of version conflict. Set fake header on commit so show() shows the new mtime. Reorder name/email fields to be after the log message.
* Nits.Guido van Rossum1997-05-231-8/+7
| | | | | | Use TARGET=rlog instead of _blank for rlog output. Add missing mailto: to author's email address in Last changed link. Forget about the domainname in the cookie; the default is just fine.
* Reorg TO DO list.Guido van Rossum1997-05-231-16/+46
| | | | | | | Run rlog commands as pipe so we can cgi.escape(output). Added self.escape(), like cgi.escape() but also escapes " -- for use as double-quoted attribute values inside HTML tags. Fix complains from Mark Lutz: HTTP_HOST is not always set.
* Small nits for Grail; don't forget to cgi.translate & and <.Guido van Rossum1997-05-231-2/+4
|
* - Suppress the visible text in the epilogue when "edit=no" is specified.Guido van Rossum1997-05-231-9/+38
| | | | | | - Add translation of *foobar* into <I>foobar</I> (but not inside <PRE>). - Optimization for the translation: only translate when @ or / or * seen. - Add some layout to front page lay-out.
* Added section titles (for now, hardcoded in the file).Guido van Rossum1997-05-231-5/+22
|
* Added code to recognize http/ftp URLs and email addresses, and add <A>Guido van Rossum1997-05-231-4/+34
| | | | tags for them.
* Minor change: add prologue() calls to do_info and do_rlog; inGuido van Rossum1997-05-231-3/+4
| | | | do_recent, don't display entries without a last-changed-date.
* Added menu entry on deleting FAQ entries.Guido van Rossum1997-05-221-33/+89
| | | | | Added a generic error handler function. Added cookie support to preserve author's name and email.
* HTML formatting nits.Guido van Rossum1997-05-221-3/+5
| | | | Added "Reload this entry" link to edit complete screen.
* Mostly small changes.Guido van Rossum1997-05-221-20/+56
| | | | | | | | | - Fixed broken HTML in edit form that swallowed <BR> tags - Removed "another one" link in roulette, replaced with "use Reload" message - show() now has edit=1 by default; changed all calls - Display last-changed date, author, email when present and edit=1 - Added back pointers at bottom - Added a copy of the bootstrap script at the end of the file
* Separate prologue/epilogue functions.Guido van Rossum1997-05-211-45/+69
| | | | | Get the current version on edit and reject commits based on an old version.
* Oops, left an 'n = n+1' in but n was undefined.Guido van Rossum1997-05-211-1/+0
|
* Add "Log info" to view rcs log.Guido van Rossum1997-05-211-4/+33
| | | | Speed up __getattr__ by storing the value as self.<key>.
* Lots of new features:Guido van Rossum1997-05-211-27/+183
| | | | | | | - got rid of the separate search page - added an index (lists the questions with links to the answers) - add a mechanism to add new entries - add a way to list most recently edited entries first
* Crude but functional, except for adding new entries.Guido van Rossum1997-05-211-46/+172
|
* Initial revisionGuido van Rossum1997-05-211-0/+255