Changeset 340
- Timestamp:
- 05/09/06 07:12:41 (2 years ago)
- Files:
-
- todo/trunk/configure.in (modified) (1 diff)
- todo/trunk/src/TodoDB.h (modified) (1 diff)
- todo/trunk/src/Todo.h (modified) (1 diff)
- todo/trunk/.todo.1 (deleted)
- todo/trunk/.todo.2 (deleted)
- todo/trunk/util/XML.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
todo/trunk/configure.in
r292 r340 1 1 AC_INIT(src/main.cc) 2 AM_INIT_AUTOMAKE(devtodo,0.1. 19)2 AM_INIT_AUTOMAKE(devtodo,0.1.20) 3 3 4 4 # We don't want the util source to be made into a shared lib as it's todo/trunk/src/TodoDB.h
r290 r340 109 109 void initColourPost(); 110 110 Todo::Priority getPriority(string current = ""); 111 int TodoDB::markDone(Todo &todo);111 int markDone(Todo &todo); 112 112 113 113 void formatItem(ostream &out, int depth, Todo const &item, string const &format); todo/trunk/src/Todo.h
r290 r340 14 14 01/02/01 Initial creation 15 15 */ 16 17 class TodoDB; 16 18 17 19 class Todo { todo/trunk/util/XML.cc
r290 r340 52 52 xmlScan.addPattern(XmlEnd, "</[a-zA-Z0-9_-]+>"); 53 53 xmlScan.addPattern(XmlDataBegin, "<!DATA[[:space:]]*\\[\\["); 54 xmlScan.addPattern(XmlContent, "([^<]|[\n\r])+"); 54 xmlScan.addPattern(XmlContent, "([\n\r]|[^<])+"); 55 55 56 56 57 commentScan.addPattern(CommentEnd, "-->[[:space:]]*"); … … 167 168 _child.push_back(new XML(Body, this, token)); 168 169 break; 170 default: 171 throw exception("unexpected token '" + token.value() + "'", token.line()); 172 break; 169 173 } 170 174 }
