Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
12045748
Commit
12045748
authored
Aug 01, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix synopsis and help for expression commands.
parent
b1f6a320
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
7 deletions
+44
-7
topydo/commands/DeleteCommand.py
topydo/commands/DeleteCommand.py
+10
-2
topydo/commands/DepriCommand.py
topydo/commands/DepriCommand.py
+10
-2
topydo/commands/DoCommand.py
topydo/commands/DoCommand.py
+8
-1
topydo/commands/PostponeCommand.py
topydo/commands/PostponeCommand.py
+8
-1
topydo/commands/PriorityCommand.py
topydo/commands/PriorityCommand.py
+8
-1
No files found.
topydo/commands/DeleteCommand.py
View file @
12045748
...
...
@@ -38,8 +38,16 @@ class DeleteCommand(DCommand):
self
.
execute_specific_core
(
p_todo
)
def
usage
(
self
):
return
"""Synopsis: del [-f] <NUMBER1> [<NUMBER2> ...]"""
return
"""
\
Synopsis: del [-f] <NUMBER1> [<NUMBER2> ...]
del [-x] -e <EXPRESSION>
"""
def
help
(
self
):
return
"""
\
Deletes the todo item(s) with the given number(s) from the list."""
Deletes the todo item(s) with the given number(s) from the list.
It is also possible to delete items as complete with an expression using
the -e flag. Use -x to also process todo items that are normally invisible
(with the 'ls' subcommand).
"""
topydo/commands/DepriCommand.py
View file @
12045748
...
...
@@ -35,7 +35,15 @@ class DepriCommand(MultiCommand):
self
.
out
(
self
.
printer
.
print_todo
(
todo
))
def
usage
(
self
):
return
"""Synopsis: depri <NUMBER1> [<NUMBER2> ...]"""
return
"""
\
Synopsis: depri <NUMBER1> [<NUMBER2> ...]
depri [-x] -e <EXPRESSION>
"""
def
help
(
self
):
return
"""Removes the priority of the given todo item(s)."""
return
"""Removes the priority of the given todo item(s).
It is also possible to deprioritize items as complete with an expression using
the -e flag. Use -x to also process todo items that are normally invisible
(with the 'ls' subcommand).
"""
topydo/commands/DoCommand.py
View file @
12045748
...
...
@@ -100,11 +100,18 @@ class DoCommand(DCommand):
self
.
todolist
.
set_todo_completed
(
p_todo
,
self
.
completion_date
)
def
usage
(
self
):
return
"""Synopsis: do [--date] [--force] [--strict] <NUMBER1> [<NUMBER2> ...]"""
return
"""
\
Synopsis: do [--date] [--force] [--strict] <NUMBER1> [<NUMBER2> ...]
do [-x] -e <EXPRESSION>
"""
def
help
(
self
):
return
"""Marks the todo(s) with given number(s) as complete.
It is also possible to mark todo items as complete with an expression using the
-e flag. Use -x to also process todo items that are normally invisible (with
the 'ls' subcommand).
In case a todo has subitems, a question is asked whether the subitems should be
marked as completed as well. When --force is given, no interaction is required
and the subitems are not marked completed.
...
...
topydo/commands/PostponeCommand.py
View file @
12045748
...
...
@@ -75,7 +75,10 @@ class PostponeCommand(MultiCommand):
break
def
usage
(
self
):
return
"Synopsis: postpone [-s] <NUMBER> [<NUMBER2> ...] <PATTERN>"
return
"""
\
Synopsis: postpone [-s] <NUMBER> [<NUMBER2> ...] <PATTERN>"
postpone [-x] -e <EXPRESSION>
"""
def
help
(
self
):
return
"""
\
...
...
@@ -84,6 +87,10 @@ Postpone the todo item(s) with the given number(s) and the given pattern.
Postponing is done by adjusting the due date(s) of the todo(s), and if the -s flag is
given, the start date accordingly.
It is also possible to postpone items as complete with an expression using
the -e flag. Use -x to also process todo items that are normally invisible
(with the 'ls' subcommand).
The pattern is a relative date, written in the format <COUNT><PERIOD> where
count is a number and <PERIOD> is either 'd', 'w', 'm' or 'y', which stands for
days, weeks, months and years respectively. Example: 'postpone 1 1w' postpones
...
...
topydo/commands/PriorityCommand.py
View file @
12045748
...
...
@@ -54,9 +54,16 @@ class PriorityCommand(MultiCommand):
self
.
error
(
"Invalid priority given."
)
def
usage
(
self
):
return
"""Synopsis: pri <NUMBER1> [<NUMBER2> ...] <PRIORITY>"""
return
"""
\
Synopsis: pri <NUMBER1> [<NUMBER2> ...] <PRIORITY>
pri [-x] -e <EXPRESSION>
"""
def
help
(
self
):
return
"""
\
Sets the priority of todo(s) the given number(s) to the given priority.
It is also possible to prioritize items as complete with an expression using
the -e flag. Use -x to also process todo items that are normally invisible
(with the 'ls' subcommand).
"""
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment