CmdFill: Disabled for beta. It is not ready.

This commit is contained in:
Paul Beckingham 2016-07-24 17:31:43 -04:00
parent 489626de10
commit 4c1568533e
3 changed files with 7 additions and 0 deletions

1
NEWS
View file

@ -6,6 +6,7 @@ New Features in 1.0.0
Features not implemented in 1.0.0
- The 'undo' command.
- The 'fill' command and ':adjust' hint are disabled for beta.
- Rules.
Known Issues

View file

@ -43,7 +43,9 @@ int CmdHelpUsage ()
<< " timew diagnostics\n"
<< " timew export [<interval>] [<tag> ...]\n"
<< " timew extensions\n"
/*
<< " timew fill @<id> [@<id> ...]\n"
*/
<< " timew gaps [<interval>] [<tag> ...]\n"
<< " timew get <DOM> [<DOM> ...]\n"
<< " timew help [<command> | interval | hints | date | duration]\n"
@ -426,6 +428,7 @@ int CmdHelp (const CLI& cli)
// Ruler 1 2 3 4 5 6 7 8
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
/*
else if (words[0] == "fill")
std::cout << '\n'
<< "Syntax: timew fill @<id> [@<id> ...]\n"
@ -447,6 +450,7 @@ int CmdHelp (const CLI& cli)
<< '\n'
<< "See also 'hints'.\n"
<< '\n';
*/
// Ruler 1 2 3 4 5 6 7 8
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890

View file

@ -263,7 +263,9 @@ int dispatchCommand (
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions);
else if (command == "export") status = CmdExport (cli, rules, database );
else if (command == "extensions") status = CmdExtensions ( rules, extensions);
/*
else if (command == "fill") status = CmdFill (cli, rules, database );
*/
else if (command == "gaps") status = CmdGaps (cli, rules, database );
else if (command == "get") status = CmdGet (cli, rules, database );
else if (command == "help") status = CmdHelp (cli );