From: richard Date: Mon, 29 Mar 2004 21:56:56 +0000 (+0000) Subject: CSV export was busted X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=97b498a069fccf17dce8ceeca77c2ec7d8046dfb;p=roundup.git CSV export was busted git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2230 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 998f5a0..fed41ae 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/roundup/cgi/actions.py b/roundup/cgi/actions.py index dc0ce9f..d506110 100755 --- a/roundup/cgi/actions.py +++ b/roundup/cgi/actions.py @@ -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