ENH: 'prepend' and 'replace' actions keep prepended date.
Generalized and simplified the logic that already kept an existing priority to also keep a date added via todo.sh -t / TODOTXT_DATE_ON_ADD (unless the replaced text also starts with a date).
This commit is contained in:
@@ -77,6 +77,7 @@ replaced with
|
|||||||
replaced with
|
replaced with
|
||||||
4: (A) collect the eggs
|
4: (A) collect the eggs
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
test_todo_session 'replace with &' << EOF
|
test_todo_session 'replace with &' << EOF
|
||||||
>>> todo.sh replace 3 "thrash the hay & thresh the wheat"
|
>>> todo.sh replace 3 "thrash the hay & thresh the wheat"
|
||||||
3: jump on hay
|
3: jump on hay
|
||||||
@@ -90,4 +91,44 @@ test_todo_session 'replace error' << EOF
|
|||||||
10: No such task.
|
10: No such task.
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
cat /dev/null > todo.txt
|
||||||
|
test_todo_session 'replace handling prepended date on add' <<EOF
|
||||||
|
>>> todo.sh -t add "new task"
|
||||||
|
1: 2009-02-13 new task
|
||||||
|
TODO: 1 added.
|
||||||
|
|
||||||
|
>>> todo.sh replace 1 this is just a new one
|
||||||
|
1: 2009-02-13 new task
|
||||||
|
replaced with
|
||||||
|
1: 2009-02-13 this is just a new one
|
||||||
|
|
||||||
|
>>> todo.sh replace 1 2010-07-04 this also has a new date
|
||||||
|
1: 2009-02-13 this is just a new one
|
||||||
|
replaced with
|
||||||
|
1: 2010-07-04 this also has a new date
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat /dev/null > todo.txt
|
||||||
|
test_todo_session 'replace handling priority and prepended date on add' <<EOF
|
||||||
|
>>> todo.sh -t add "new task"
|
||||||
|
1: 2009-02-13 new task
|
||||||
|
TODO: 1 added.
|
||||||
|
|
||||||
|
>>> todo.sh pri 1 A
|
||||||
|
1: (A) 2009-02-13 new task
|
||||||
|
TODO: 1 prioritized (A).
|
||||||
|
|
||||||
|
>>> todo.sh replace 1 this is just a new one
|
||||||
|
1: (A) 2009-02-13 new task
|
||||||
|
replaced with
|
||||||
|
1: (A) 2009-02-13 this is just a new one
|
||||||
|
EOF
|
||||||
|
|
||||||
|
test_todo_session 'replace with prepended date replaces existing date' <<EOF
|
||||||
|
>>> todo.sh replace 1 2010-07-04 this also has a new date
|
||||||
|
1: (A) 2009-02-13 this is just a new one
|
||||||
|
replaced with
|
||||||
|
1: (A) 2010-07-04 this also has a new date
|
||||||
|
EOF
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|||||||
@@ -57,4 +57,38 @@ test_todo_session 'prepend with &' <<EOF
|
|||||||
3: no running & jumping now stop
|
3: no running & jumping now stop
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
cat /dev/null > todo.txt
|
||||||
|
test_todo_session 'prepend handling prepended date on add' <<EOF
|
||||||
|
>>> todo.sh -t add "new task"
|
||||||
|
1: 2009-02-13 new task
|
||||||
|
TODO: 1 added.
|
||||||
|
|
||||||
|
>>> todo.sh prepend 1 "this is just a"
|
||||||
|
1: 2009-02-13 this is just a new task
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat /dev/null > todo.txt
|
||||||
|
test_todo_session 'prepend handling priority and prepended date on add' <<EOF
|
||||||
|
>>> todo.sh -t add "new task"
|
||||||
|
1: 2009-02-13 new task
|
||||||
|
TODO: 1 added.
|
||||||
|
|
||||||
|
>>> todo.sh pri 1 A
|
||||||
|
1: (A) 2009-02-13 new task
|
||||||
|
TODO: 1 prioritized (A).
|
||||||
|
|
||||||
|
>>> todo.sh prepend 1 "this is just a"
|
||||||
|
1: (A) 2009-02-13 this is just a new task
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat /dev/null > todo.txt
|
||||||
|
test_todo_session 'prepend with prepended date keeps both' <<EOF
|
||||||
|
>>> todo.sh -t add "new task"
|
||||||
|
1: 2009-02-13 new task
|
||||||
|
TODO: 1 added.
|
||||||
|
|
||||||
|
>>> todo.sh prepend 1 "2010-07-04 this is just a"
|
||||||
|
1: 2009-02-13 2010-07-04 this is just a new task
|
||||||
|
EOF
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|||||||
36
todo.sh
36
todo.sh
@@ -288,8 +288,14 @@ replaceOrPrepend()
|
|||||||
{
|
{
|
||||||
action=$1; shift
|
action=$1; shift
|
||||||
case "$action" in
|
case "$action" in
|
||||||
replace) backref=;;
|
replace)
|
||||||
prepend) backref=' &';;
|
backref=
|
||||||
|
querytext="Replacement: "
|
||||||
|
;;
|
||||||
|
prepend)
|
||||||
|
backref=' &'
|
||||||
|
querytext="Prepend: "
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
shift; item=$1; shift
|
shift; item=$1; shift
|
||||||
|
|
||||||
@@ -300,27 +306,27 @@ replaceOrPrepend()
|
|||||||
[ -z "$todo" ] && die "$item: No such task."
|
[ -z "$todo" ] && die "$item: No such task."
|
||||||
|
|
||||||
if [[ -z "$1" && $TODOTXT_FORCE = 0 ]]; then
|
if [[ -z "$1" && $TODOTXT_FORCE = 0 ]]; then
|
||||||
case "$action" in
|
echo -n "$querytext"
|
||||||
replace) echo -n "Replacement: ";;
|
|
||||||
prepend) echo -n "Prepend: ";;
|
|
||||||
esac
|
|
||||||
read input
|
read input
|
||||||
else
|
else
|
||||||
input=$*
|
input=$*
|
||||||
fi
|
fi
|
||||||
cleaninput $input
|
cleaninput $input
|
||||||
|
|
||||||
# Test for then set priority
|
# Retrieve existing priority and prepended date
|
||||||
if [ `sed "$item!d" "$TODO_FILE"|grep -c "^(\\w)"` -eq 1 ]; then
|
priority=$(sed -e "$item!d" -e $item's/^\(([A-Z]) \)\{0,1\}\([0-9]\{2,4\}-[0-9]\{2\}-[0-9]\{2\} \)\{0,1\}.*/\1/' "$TODO_FILE")
|
||||||
priority=$(sed "$item!d" "$TODO_FILE" | awk -F '\\(|\\)' '{print $2}')
|
prepdate=$(sed -e "$item!d" -e $item's/^\(([A-Z]) \)\{0,1\}\([0-9]\{2,4\}-[0-9]\{2\}-[0-9]\{2\} \)\{0,1\}.*/\2/' "$TODO_FILE")
|
||||||
|
|
||||||
|
if [ "$prepdate" -a "$action" = "replace" ] && [ "$(echo "$input"|sed -e 's/^\([0-9]\{2,4\}-[0-9]\{2\}-[0-9]\{2\}\)\{0,1\}.*/\1/')" ]; then
|
||||||
|
# If the replaced text starts with a date, it will replace the existing
|
||||||
|
# date, too.
|
||||||
|
prepdate=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If priority isn't set change task, if it is remove priority, change then add priority again
|
# Temporarily remove any existing priority and prepended date, perform the
|
||||||
if [ -z $priority ]; then
|
# change (replace/prepend) and re-insert the existing priority and prepended
|
||||||
sed -i.bak $item" s|^.*|${input}${backref}|" "$TODO_FILE"
|
# date again.
|
||||||
else
|
sed -i.bak -e "$item s/^${priority}${prepdate}//" -e "$item s|^.*|${priority}${prepdate}${input}${backref}|" "$TODO_FILE"
|
||||||
sed -i.bak -e "$item s/^(.) //" -e "$item s|^.*|\($priority\) ${input}${backref}|" "$TODO_FILE"
|
|
||||||
fi
|
|
||||||
if [ $TODOTXT_VERBOSE -gt 0 ]; then
|
if [ $TODOTXT_VERBOSE -gt 0 ]; then
|
||||||
newtodo=$(sed "$item!d" "$TODO_FILE")
|
newtodo=$(sed "$item!d" "$TODO_FILE")
|
||||||
case "$action" in
|
case "$action" in
|
||||||
|
|||||||
Reference in New Issue
Block a user