summaryrefslogtreecommitdiff
path: root/Mailman/pythonlib/StringIO.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2000-02-25FormatConfiguration(): Kludge in the encoding typebwarsaw1-11/+31
`multipart/form-data' if the category is autoreply (so far the only admin category with file uploads). GetItemGuiValue(): added support for the FileUpload widget. This sets up both the TextArea and FileUpload widget, with some explanatory text in between. GetItemGuiDescr(): I've been persuaded. Don't pop up help text in a separate window by default. ChangeOptions(): Kludge in support for file upload widgets. If there's a config variable called 'something_upload' then it's value is used in preference to the 'something' config variable yanked off the CGI information.
2000-02-25GetConfigInfo(): autoresponse_postings_text andbwarsaw1-2/+2
autoresponse_admin_text are now FileUpload widgets, which lets the admin either type the text into the text area, or specify a local file containing the text to insert. If both are changed, the uploaded file takes precedence.
2000-02-25FileUpload: New class which outputs an input object for file uploads.bwarsaw1-3/+10
Form.__init__(): take an optional encoding string, which if set, becomes the value for the `enctype' attribute. This is a kludge to support file upload forms. Form.Format(): set the enctype attribute if given.
2000-02-25Added a new GUI type called `FileUpload' which is essentially a tiedbwarsaw1-0/+1
textarea and file upload widgets. It takes some crafty decoding to make these widgets work well together (see admin.py).
2000-02-22main(): fixed name error for MMUnknownListError. Found by Jeffbwarsaw1-1/+1
Berliner.
2000-02-19CanonicalizeUserOptions(): Emergency patch. A user_options key canbwarsaw1-0/+2
apparently be None, which makes no sense, so we skip it.
2000-02-19install: Be a bit more efficient about compiling all .py files; onlybwarsaw1-1/+1
traverse into $prefix/Mailman, which avoids all the time-consuming and unnecessary compilation in the archive directories.
2000-02-19DeliverToList(): Added the Replybot module, just before the Holdbwarsaw1-1/+3
module. DeliverToUser(): Add the Replybot module as the first in the list.