Crates.io | jira_to_gantt |
lib.rs | jira_to_gantt |
version | 2.0.1 |
source | src |
created_at | 2023-02-11 02:23:39.132899 |
updated_at | 2023-02-16 19:45:02.675921 |
description | A tool to convert Jira CSV data to Gantt chart JSON5 |
homepage | |
repository | https://github.com/jlyonsmith/jira_to_gantt |
max_upload_size | |
id | 782295 |
size | 52,462 |
This program converts Jira CSV exports to a format that can be ingested by the gantt_chart tool.
Install with cargo install jira_to_gantt
. Run with jira-to-gantt
.
The tool uses the following Jira fields:
Jira CSV export has numerous problems and inconsistencies which the tool handles, including:
You can use iconv -c -t utf-8 bad.csv > stripped.csv
to clean bad UTF-8 characters from export. See iconv. The tool does this automatically.
You can use xsv slice -s 3 -n -o bad.csv jira.csv
to remove the first 3 lines. Again, the tool does this automatically.
The tool uses structures from the gantt_chart crate to ensure compatability of the JSON5 output.