summaryrefslogtreecommitdiff
path: root/Mailman/Cgi/archives.py
Commit message (Collapse)AuthorAgeFilesLines
* This CGI script is no longer used.bwarsaw1999-11-111-91/+0
|
* Fixed bugs that occur when no list name is given in the URL.bwarsaw1998-12-271-45/+50
| | | | | | | | | | | | | | | | | | | | Also, several stylistic fixes: - ArchiveFilter() need not be nested - Don't use eval(str) to convert a string to an integer; it's slower and less safe than using int(str), but be sure to catch ValueError which might result when a bad string is given. - Note to anyone writing Mailman/Cgi scripts! Nothing but imports should happen as a side effect of importing this module. Run everything from inside a main() function (see scripts/driver for details). - get rid of unnecessary imports - Fix #! line, even though this script isn't typically run from the command line.
* made it use %s/%s instead of os.path.join for url.cotton1998-11-091-1/+1
| | | | scott
* GetArchiveList(): Use new Archive.archive_dir() methodbwarsaw1998-11-031-1/+1
|
* Convert all module names to their new names. Import all modules frombwarsaw1998-06-191-3/+3
| | | | | | | | the Mailman package (using the semi-bogus, but quickly implemented from ... import style). NOTE: did *not* main()-ify, nor test since I don't have pipermail installed. These need to happen.
* These are the files that used to be in ../cgi, except they no longerviega1998-06-141-0/+86
handle logging to an error file, and no longer import paths. Also, any checks for __main__ have been removed.