Mercurial > p > roundup > code
diff roundup/cgi_client.py @ 391:399340646765
handle the case where there is no file attached
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 15 Nov 2001 10:24:27 +0000 |
| parents | a74ea8489896 |
| children | d4b19c2ee740 |
line wrap: on
line diff
--- a/roundup/cgi_client.py Wed Nov 14 21:35:22 2001 +0000 +++ b/roundup/cgi_client.py Thu Nov 15 10:24:27 2001 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: cgi_client.py,v 1.56 2001-11-14 21:35:21 richard Exp $ +# $Id: cgi_client.py,v 1.57 2001-11-15 10:24:27 richard Exp $ import os, cgi, pprint, StringIO, urlparse, re, traceback, mimetypes import binascii, Cookie, time @@ -428,12 +428,13 @@ files = [] if self.form.has_key('__file'): file = self.form['__file'] - type = mimetypes.guess_type(file.filename)[0] - if not type: - type = "application/octet-stream" - # create the new file entry - files.append(self.db.file.create(type=type, name=file.filename, - content=file.file.read())) + if file.filename: + type = mimetypes.guess_type(file.filename)[0] + if not type: + type = "application/octet-stream" + # create the new file entry + files.append(self.db.file.create(type=type, name=file.filename, + content=file.file.read())) # generate an edit message # don't bother if there's no messages or nosy list @@ -966,6 +967,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.56 2001/11/14 21:35:21 richard +# . users may attach files to issues (and support in ext) through the web now +# # Revision 1.55 2001/11/07 02:34:06 jhermann # Handling of damaged login cookies #
