- Status Planned
- Percent Complete
- Task Type Feature Request
- Category Database Queries
- Assigned To No-one
- Operating System All
- Severity Low
- Priority Defer
- Reported Version 1.0 devel (github master)
- Due in Version 1.1 devel
-
Due Date
Undecided
-
Votes
3
- Plamen (28.03.2015)
- Tomasz Surmacz (31.05.2012)
- Sanjeev Divekar (21.02.2011)
- Private
Attached to Project: Flyspray - The bug killer!
Opened by NicolasGUERIN - 18.12.2010
Last edited by peterdd - 11.03.2015
Opened by NicolasGUERIN - 18.12.2010
Last edited by peterdd - 11.03.2015
FS#1671 - Ability to extract CSV, or Excel
At work, we would need to be able to do extractions from the list of regular Flyspray tasks. Have you the ability to integrate this functionality into the interface later.
ID | Project | Summary | Priority | Severity | Assigned To | Progress | |
---|---|---|---|---|---|---|---|
2054 | Flyspray - The bug killer! | FS#2054 - Fields for csv export choosable like for task list | Defer | Low | |||
2055 | Flyspray - The bug killer! | FS#2055 - Make the csv export table fields respect the user permissions | Very Low | Low | |||
2056 | Flyspray - The bug killer! | Very Low | Low |
If we switched over to datatables using tabletools, this could be easily added. http://datatables.net/ http://datatables.net/extras/tabletools/
There is a rough task export feature as .csv existing in current dev version.
This exported .csv-file can be imported by applications like OpenOffice Calc, LibreOffice Calc, MS Excel.
Thank you for the great tool.
+1 for export-import capabilities to any common format as csv.
Currently Flyspray up to 1.0-rc6 uses fputcsv() of php.
That fputcsv() PHP core function function has several problems with some types of strings resulting in writing invalid csv-files.
https://bugs.php.net/bug.php?id=43225#1442378006
While csv just means comma-separated-file, it is not fully standardized plus that PHP issues. However, RFC4180 exists: https://tools.ietf.org/html/rfc4180
A little playground file: https://3v4l.org/R4V9J
Perls Text::CSV for inspiration:
http://search.cpan.org/~ishigaki/Text-CSV-1.95/
https://bugs.php.net/bug.php?id=43225
https://tools.ietf.org/html/rfc4180
https://github.com/Flyspray/flyspray/pull/646
https://3v4l.org/R4V9J