summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 330ccb8)
raw | patch | inline | side by side (parent: 330ccb8)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 13 Aug 2003 23:51:59 +0000 (23:51 +0000) | ||
committer | richard <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 | patch | blob | history | |
roundup/cgi/client.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index dceadb3b7f6587eccc9aea8ebe92b09e487eb4e1..b3f669dc54bdd97415c27aa83234079b472e3fb6 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
- 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
diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py
index 684d8c595c140110d5991e113724bfdc97b2f2fb..eddd31c9d071d308d5ae4f1a805bdf44a0112377 100644 (file)
--- a/roundup/cgi/client.py
+++ b/roundup/cgi/client.py
-# $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).
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'))