Commands: Better 'unimplemented' command descriptions

This commit is contained in:
Paul Beckingham 2016-03-19 13:28:37 -04:00
parent 4c4684d6f5
commit 25042cbe71
15 changed files with 15 additions and 15 deletions

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdClear ()
{
std::cout << "# clear\n";
std::cout << "[clear: allows removal of tags form intervals]\n";
// TODO Parse interval.
// TODO Parser tags.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdConfig ()
{
std::cout << "# config\n";
std::cout << "[config: allows set/reset/removal and enumeration of configuration settings]\n";
// TODO Determine form:
// timew config name value Set name=value

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdContinue ()
{
std::cout << "# continue\n";
std::cout << "[continue: allows resuming a stopped interval]\n";
// TODO Extract most recent interval.
// TODO Verify the most recent interval is closed.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdDefault ()
{
std::cout << "# default command, or current interval summary\n";
std::cout << "[default command or current interval summary]\n";
// TODO If there is a default command.
// TODO Run it.

View file

@ -31,7 +31,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdDefine (Rules& rules)
{
std::cout << "# define\n";
std::cout << "[define: rule tweaking]\n";
return 0;
}

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdExport ()
{
std::cout << "# export\n";
std::cout << "[export: JSON data export]\n";
// TODO Load all data.
// TODO Apply filter.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdExtension ()
{
std::cout << "# extension\n";
std::cout << "[extension: enumerate all extensions]\n";
// TODO Enumerate all extensions.
// TODO Display list.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdGaps ()
{
std::cout << "# gaps\n";
std::cout << "[gaps: shows untracked gaps in the current day/week/month]\n";
// TODO Load all data.
// TODO Apply filter.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdImport ()
{
std::cout << "# import\n";
std::cout << "[import: import and merge JSON data]\n";
// TODO Load all data.
// TODO For each file.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdReport ()
{
std::cout << "# report\n";
std::cout << "[report: run a specific report/extension]\n";
// TODO Load all data.
// TODO Apply filter.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdStart ()
{
std::cout << "# start\n";
std::cout << "[start: begin a new tracking interval]\n";
// TODO Load the most recent interval.
// TODO If the interval is open, close it.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdStop ()
{
std::cout << "# stop\n";
std::cout << "[stop: end an open tracking interval]\n";
// TODO Load the most recent interval.
// TODO Verify the interval is open.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdTags ()
{
std::cout << "# tags\n";
std::cout << "[tags: enumerate tags in use]\n";
// TODO Enumerate all data files.
// TODO For each data file.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdTrack ()
{
std::cout << "# track\n";
std::cout << "[track: record an old interval]\n";
// TODO Parse interval.
// TODO Parse tags.

View file

@ -30,7 +30,7 @@
////////////////////////////////////////////////////////////////////////////////
int CmdUndo ()
{
std::cout << "# undo\n";
std::cout << "[undo: revert last change]\n";
// TODO Extract most recent transaction.
// TODO Apply inverse.