- When an ID was not specified, delete gave no feedback (thanks to
  Steve Rader).
- Closer inspection showed this to be true for the urgency, query, delete,
  start, stop, done, modify, append, prepend, duplicate, annotate and denotate
  commands.
This commit is contained in:
Paul Beckingham 2011-01-09 23:15:30 -05:00
parent 9764fe310a
commit 109f22051d
2 changed files with 65 additions and 1 deletions

View file

@ -74,6 +74,8 @@
Fluger). Fluger).
+ Fixed bug #597, which caused a missing project to be counted as a project + Fixed bug #597, which caused a missing project to be counted as a project
in the projects command (thanks to Steve Rader). in the projects command (thanks to Steve Rader).
+ Fixed bug #603, which caused no feedback when task IDs were not specified
(thanks to Steve Rader).
+ Applied patch to fix bug #613, so that the summary report and the projects + Applied patch to fix bug #613, so that the summary report and the projects
command now consistently show a missing project as "(none)" (thanks to command now consistently show a missing project as "(none)" (thanks to
Steve Rader). Steve Rader).

View file

@ -543,6 +543,11 @@ int handleUrgency (std::string& outs)
// Filter sequence. // Filter sequence.
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
// Find the task(s). // Find the task(s).
std::stringstream out; std::stringstream out;
@ -578,6 +583,12 @@ int handleQuery (std::string& outs)
if (context.sequence.size ()) if (context.sequence.size ())
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
// Note: "limit:" feature not supported. // Note: "limit:" feature not supported.
// Compose output. // Compose output.
@ -1545,6 +1556,11 @@ int handleDelete (std::string& outs)
// Filter sequence. // Filter sequence.
std::vector <Task> all = tasks; std::vector <Task> all = tasks;
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
// Determine the end date. // Determine the end date.
char endTime[16]; char endTime[16];
@ -1640,7 +1656,8 @@ int handleDelete (std::string& outs)
context.footnote (onProjectChange (*task)); context.footnote (onProjectChange (*task));
} }
} }
else { else
{
out << "Task not deleted.\n"; out << "Task not deleted.\n";
rc = 1; rc = 1;
} }
@ -1677,6 +1694,11 @@ int handleStart (std::string& outs)
// Filter sequence. // Filter sequence.
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
bool nagged = false; bool nagged = false;
foreach (task, tasks) foreach (task, tasks)
@ -1743,6 +1765,11 @@ int handleStop (std::string& outs)
// Filter sequence. // Filter sequence.
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
foreach (task, tasks) foreach (task, tasks)
{ {
@ -1801,6 +1828,11 @@ int handleDone (std::string& outs)
// Filter sequence. // Filter sequence.
std::vector <Task> all = tasks; std::vector <Task> all = tasks;
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
Permission permission; Permission permission;
if (context.sequence.size () > (size_t) context.config.getInteger ("bulk")) if (context.sequence.size () > (size_t) context.config.getInteger ("bulk"))
@ -1909,6 +1941,11 @@ int handleModify (std::string& outs)
// Filter sequence. // Filter sequence.
std::vector <Task> all = tasks; std::vector <Task> all = tasks;
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
Permission permission; Permission permission;
if (context.sequence.size () > (size_t) context.config.getInteger ("bulk")) if (context.sequence.size () > (size_t) context.config.getInteger ("bulk"))
@ -2067,6 +2104,11 @@ int handleAppend (std::string& outs)
// Filter sequence. // Filter sequence.
std::vector <Task> all = tasks; std::vector <Task> all = tasks;
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
Permission permission; Permission permission;
if (context.sequence.size () > (size_t) context.config.getInteger ("bulk")) if (context.sequence.size () > (size_t) context.config.getInteger ("bulk"))
@ -2149,6 +2191,11 @@ int handlePrepend (std::string& outs)
// Filter sequence. // Filter sequence.
std::vector <Task> all = tasks; std::vector <Task> all = tasks;
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
Permission permission; Permission permission;
if (context.sequence.size () > (size_t) context.config.getInteger ("bulk")) if (context.sequence.size () > (size_t) context.config.getInteger ("bulk"))
@ -2230,6 +2277,11 @@ int handleDuplicate (std::string& outs)
// Filter sequence. // Filter sequence.
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
foreach (task, tasks) foreach (task, tasks)
{ {
@ -2655,6 +2707,11 @@ int handleAnnotate (std::string& outs)
// Filter sequence. // Filter sequence.
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
Permission permission; Permission permission;
if (context.sequence.size () > (size_t) context.config.getInteger ("bulk")) if (context.sequence.size () > (size_t) context.config.getInteger ("bulk"))
@ -2717,6 +2774,11 @@ int handleDenotate (std::string& outs)
context.tdb.loadPending (tasks, filter); context.tdb.loadPending (tasks, filter);
context.filter.applySequence (tasks, context.sequence); context.filter.applySequence (tasks, context.sequence);
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
return 1;
}
Permission permission; Permission permission;
if (context.sequence.size () > (size_t) context.config.getInteger ("bulk")) if (context.sequence.size () > (size_t) context.config.getInteger ("bulk"))