IssueTrackerProduct

A user friendly bug tracking web application for Zope

Export all issues to CSVExport all issues to CSV

30 Jun 2005

There are two ways to export issues to CSV. This howto explains the basic way.

Version requirement:

Min. version: 0.6.9

There is no link to it so if you want to export all your issues you have to remember this function name: export.csv. Just type that in on your issuetracker instance and it should give you a raw CSV file back sorted by whatever sortorder you have as default (installation default is: creation date). So, all you have to do is to visit http://localhost:8080/issuetracker/export.csv.

There are a few options you can apply to the URL to change the CSV slightly. One is to limit the amount of issues with a positive integer on the batchsize parameter like this: http://localhost:8080/issuetracker/export.csv?batchsize=10

Another option is to download it without the first row (the header). That you do by setting the withheaders to something negative eg. withheaders:int=0 like this: http://localhost:8080/issuetracker/export.csv?withheaders:int=0

Example http://real.issuetrackerproduct.com/export.csv

<<< Return to all how-tos