Code

fix file downloading
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 13 Aug 2003 23:51:59 +0000 (23:51 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 13 Aug 2003 23:51:59 +0000 (23:51 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1810 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi/client.py

index dceadb3b7f6587eccc9aea8ebe92b09e487eb4e1..b3f669dc54bdd97415c27aa83234079b472e3fb6 100644 (file)
@@ -10,6 +10,7 @@ are given with the most recent entry first.
 - sort multilinks a little better for grouping (sf bug 772935)
 - batch the (list) listings at 500 entries per page (sf bug 759906)
 - don't have RDBMS backends list retired nodes (sf bug 767319)
+- fix file downloading
 
 
 2003-07-29 0.6.0b4
index 684d8c595c140110d5991e113724bfdc97b2f2fb..eddd31c9d071d308d5ae4f1a805bdf44a0112377 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: client.py,v 1.129 2003-08-12 01:26:08 richard Exp $
+# $Id: client.py,v 1.130 2003-08-13 23:51:59 richard Exp $
 
 __doc__ = """
 WWW request handler (also used in the stand-alone server).
@@ -473,6 +473,7 @@ class Client:
             raise NotFound, designator
 
         # we just want to serve up the file named
+        self.opendb('admin')
         file = self.db.file
         self.additional_headers['Content-Type'] = file.get(nodeid, 'type')
         self.write(file.get(nodeid, 'content'))