- 15 May, 2015 5 commits
-
-
Bram Schoenmakers authored
Quite a puzzle to get this right for Python 2 and 3 simultaneously...
-
Bram Schoenmakers authored
Text identifiers were calculated with the hash() builtin. The problem is that hash() returns different values depending on Python's major version or 32 vs 64 bit. With Python >=3.3, the seed for the hash function is always different (for security). Instead of relying on hash(), use the sha1() hash to obtain a text identifier.
-
Bram Schoenmakers authored
Still some test cases are failing, but the basic functionality seems to werk.
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
$HOME is not set on every operating system (can you guess which one?). This resulted in errors because a configuration file path was constructed using an empty string. So use a different approach that should work for most major OS's.
-
- 05 May, 2015 11 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
With the invocation `tag 1` it would print invalid todo number while todo 1 does exist. It should print the usage text in that case.
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Remove priorities from multiple todo items at once
-
Jacek Sowiński authored
-
Jacek Sowiński authored
+ Test new multi-todo functionality. + Change name of tests from set_prio to depri
-
Jacek Sowiński authored
-
Bram Schoenmakers authored
-
- 04 May, 2015 16 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Yes, I'm too tired for this. :/
-
Bram Schoenmakers authored
Guess I'm too tired for this.
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Add tests for EditCommand
-
Jacek Sowiński authored
-
Jacek Sowiński authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Edit the archive file with '-d' option.
-
Jacek Sowiński authored
This implements archive option from #2.
-
- 02 May, 2015 4 commits
-
-
Bram Schoenmakers authored
-
Bram Schoenmakers authored
Implementation of editing todos in $EDITOR
-
Jacek Sowiński authored
-
Jacek Sowiński authored
implements #2 - `topydo edit` will still open todofile in $EDITOR - `topydo edit 1 2 3` will open tmpfile with corresponding todos - `topydo edit -e @Home due:today` will open tmpfile with todos matching the expression
-
- 27 Apr, 2015 1 commit
-
-
Bram Schoenmakers authored
This is done by applying the colors as the last step, so the preceding filters don't have to worry about it.
-
- 16 Apr, 2015 3 commits
-
-
Bram Schoenmakers authored
Introduce MultiCommand class for cmds operating on multiple todos.
-
Jacek Sowiński authored
Commands operating on multiple todos will inherit common execute() method from MultiCommand class, and part specific for each command will be covered in execute_multi_specific()
-
Jacek Sowiński authored
-