Bug - DOM lookup for 'id' was not supported

- Removed DOM caching, which appears to be a problem.
- Added 'id' and 'uuid' to DOM::get, which were missing, and therefore
  caused all filters with sequences to fail.
- Modified CmdInfo to load all tasks, until TDB2 is here.
This commit is contained in:
Paul Beckingham 2011-06-26 12:45:48 -04:00
parent 41a6ff29c8
commit 58a04b9813
3 changed files with 41 additions and 69 deletions

View file

@ -58,7 +58,7 @@ int CmdInfo::execute (std::string& output)
std::vector <Task> tasks;
context.tdb.lock (context.config.getBoolean ("locking"));
handleRecurrence ();
context.tdb.loadPending (tasks);
context.tdb.load (tasks);
context.tdb.commit ();
context.tdb.unlock ();