Enhanced export command

- Now sanitizes output by replacing ' with " in descriptions.
- Added 'recur' attribute to exported output.
- Removed recurring, deleted and complete tasks from the export.
This commit is contained in:
Paul Beckingham
2009-03-14 13:36:32 -04:00
parent 8ac3978222
commit 5383943fa7
3 changed files with 24 additions and 5 deletions

View File

@@ -187,6 +187,7 @@ static char randomHexDigit ()
{
static char digits[] = "0123456789abcdef";
#ifdef HAVE_RANDOM
// random is better than rand.
return digits[random () % 16];
#else
return digits[rand () % 16];