Code

CSV export was busted
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 29 Mar 2004 21:56:56 +0000 (21:56 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 29 Mar 2004 21:56:56 +0000 (21:56 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2230 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi/actions.py

index 998f5a045524cde321769bbd92dfe5c40de9c92d..fed41aecb582143acd20b6ae0021be03bf34dd68 100644 (file)
@@ -1,6 +1,11 @@
 This file contains the changes to the Roundup system over time. The entries
 are given with the most recent entry first.
 
+2004-??-?? 0.7.0
+Fixed:
+- CSV export was busted
+
+
 2004-03-27 0.7.0b2
 Feature:
 - added CSV export to index pages
index dc0ce9f01e48cf0bd6778f448cb41ab1c36ffa23..d5061105973687eed4d1a023326060ca37ad4be3 100755 (executable)
@@ -1,4 +1,4 @@
-#$Id: actions.py,v 1.19 2004-03-26 18:18:31 wc2so1 Exp $
+#$Id: actions.py,v 1.20 2004-03-29 21:56:56 richard Exp $
 
 import re, cgi, StringIO, urllib, Cookie, time, random
 
@@ -833,7 +833,7 @@ class ExportCSVAction(Action):
     def handle(self):
         ''' Export the specified search query as CSV. '''
         # figure the request
-        request = HTMLRequest(self)
+        request = templating.HTMLRequest(self)
         filterspec = request.filterspec
         sort = request.sort
         group = request.group