Modify ↓
Opened 15 years ago
Closed 15 years ago
#9957 closed defect (duplicate)
exporting report results to csv or tab-delimited Text is truncated
| Reported by: | Owned by: | ||
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | report system | Version: | 0.11.5 |
| Severity: | normal | Keywords: | |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal Changes: | |||
Description
When i use the 'Download in other formats' feature, I only get the first page of the query in the downloaded file.
I have looked at the code quickly and see that in the _render_view function :
page = int(req.args.get('page', '1'))
limit = self.items_per_page
if req.args.get('format', '') == 'rss':
limit = self.items_per_page_rss
offset = (page - 1) * limit
I would say that the csv or tab format should have no limit.
Attachments (0)
Note:
See TracTickets
for help on using tickets.



This has long been fixed, please upgrade.
Duplicate of #8225.