mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Enhancements - export
- Implemented Task::composeCSV. - Implemented export command, but removed filename support. This needs to be documented.
This commit is contained in:
parent
efe0b86708
commit
f470acadaa
4 changed files with 69 additions and 51 deletions
|
@ -164,7 +164,6 @@ std::string Context::dispatch ()
|
|||
|
||||
// TODO Look at this thing. It just cries out for a dispatch table.
|
||||
/*
|
||||
if (cmd.command == "export") { out = handleExport (); }
|
||||
*/
|
||||
if (cmd.command == "projects") { out = handleProjects (); }
|
||||
else if (cmd.command == "tags") { out = handleTags (); }
|
||||
|
@ -191,6 +190,9 @@ std::string Context::dispatch ()
|
|||
else if (cmd.command == "start") { out = handleStart (); }
|
||||
else if (cmd.command == "stop") { out = handleStop (); }
|
||||
else if (cmd.command == "undo") { out = handleUndo (); }
|
||||
*/
|
||||
else if (cmd.command == "export") { out = handleExport (); }
|
||||
/*
|
||||
else if (cmd.command == "import") { out = handleImport (); }
|
||||
else if (cmd.command == "duplicate") { out = handleDuplicate (); }
|
||||
else if (cmd.command == "edit") { out = handleEdit (); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue