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
1023b0e1
Commit
1023b0e1
authored
Nov 22, 2014
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed imports based on pyflakes output.
parent
523485a3
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
33 additions
and
41 deletions
+33
-41
topydo/lib/AddCommand.py
topydo/lib/AddCommand.py
+3
-4
topydo/lib/AppendCommand.py
topydo/lib/AppendCommand.py
+4
-4
topydo/lib/DCommand.py
topydo/lib/DCommand.py
+4
-2
topydo/lib/DepCommand.py
topydo/lib/DepCommand.py
+4
-4
topydo/lib/DepriCommand.py
topydo/lib/DepriCommand.py
+4
-4
topydo/lib/DoCommand.py
topydo/lib/DoCommand.py
+0
-1
topydo/lib/Filter.py
topydo/lib/Filter.py
+3
-4
topydo/lib/PostponeCommand.py
topydo/lib/PostponeCommand.py
+5
-5
topydo/lib/PriorityCommand.py
topydo/lib/PriorityCommand.py
+1
-1
topydo/lib/SortCommand.py
topydo/lib/SortCommand.py
+1
-2
topydo/lib/TagCommand.py
topydo/lib/TagCommand.py
+4
-4
topydo/lib/TodoList.py
topydo/lib/TodoList.py
+0
-6
No files found.
topydo/lib/AddCommand.py
View file @
1023b0e1
# Topydo - A todo.txt client written in Python.
# Copyright (C) 2014 Bram Schoenmakers <me@bramschoenmakers.nl>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
...
...
@@ -24,7 +24,6 @@ import Command
from
PrettyPrinter
import
pretty_print
from
RelativeDate
import
relative_date_to_date
from
TodoListBase
import
InvalidTodoException
import
TodoList
class
AddCommand
(
Command
.
Command
):
def
__init__
(
self
,
p_args
,
p_todolist
,
...
...
topydo/lib/AppendCommand.py
View file @
1023b0e1
# Topydo - A todo.txt client written in Python.
# Copyright (C) 2014 Bram Schoenmakers <me@bramschoenmakers.nl>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
Command
import
*
from
Command
import
Command
,
InvalidCommandArgument
from
PrettyPrinter
import
pretty_print
from
TodoListBase
import
InvalidTodoException
...
...
topydo/lib/DCommand.py
View file @
1023b0e1
...
...
@@ -14,8 +14,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
Command
import
*
from
PrettyPrinter
import
*
import
re
from
Command
import
Command
,
InvalidCommandArgument
from
PrettyPrinter
import
pretty_print
,
pretty_print_list
from
TodoListBase
import
InvalidTodoException
class
DCommand
(
Command
):
...
...
topydo/lib/DepCommand.py
View file @
1023b0e1
# Topydo - A todo.txt client written in Python.
# Copyright (C) 2014 Bram Schoenmakers <me@bramschoenmakers.nl>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
Command
import
*
from
Command
import
Command
,
InvalidCommandArgument
from
Config
import
config
import
Filter
import
Sorter
...
...
topydo/lib/DepriCommand.py
View file @
1023b0e1
# Topydo - A todo.txt client written in Python.
# Copyright (C) 2014 Bram Schoenmakers <me@bramschoenmakers.nl>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
Command
import
*
from
Command
import
Command
,
InvalidCommandArgument
from
PrettyPrinter
import
pretty_print
from
TodoListBase
import
InvalidTodoException
...
...
topydo/lib/DoCommand.py
View file @
1023b0e1
...
...
@@ -15,7 +15,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
datetime
import
date
import
re
from
DCommand
import
DCommand
from
PrettyPrinter
import
pretty_print
...
...
topydo/lib/Filter.py
View file @
1023b0e1
# Topydo - A todo.txt client written in Python.
# Copyright (C) 2014 Bram Schoenmakers <me@bramschoenmakers.nl>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
datetime
import
date
import
re
from
Config
import
config
...
...
topydo/lib/PostponeCommand.py
View file @
1023b0e1
# Topydo - A todo.txt client written in Python.
# Copyright (C) 2014 Bram Schoenmakers <me@bramschoenmakers.nl>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
datetime
import
date
,
timedelta
from
Command
import
*
from
Command
import
Command
,
InvalidCommandArgument
from
Config
import
config
from
PrettyPrinter
import
*
from
PrettyPrinter
import
pretty_print
from
RelativeDate
import
relative_date_to_date
from
TodoListBase
import
InvalidTodoException
from
Utils
import
date_string_to_date
...
...
topydo/lib/PriorityCommand.py
View file @
1023b0e1
...
...
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
Command
import
*
from
Command
import
Command
,
InvalidCommandArgument
from
PrettyPrinter
import
pretty_print
from
TodoListBase
import
InvalidTodoException
from
Utils
import
is_valid_priority
...
...
topydo/lib/SortCommand.py
View file @
1023b0e1
...
...
@@ -14,9 +14,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
Command
import
*
from
Command
import
Command
,
InvalidCommandArgument
from
Config
import
config
import
Filter
import
Sorter
class
SortCommand
(
Command
):
...
...
topydo/lib/TagCommand.py
View file @
1023b0e1
# Topydo - A todo.txt client written in Python.
# Copyright (C) 2014 Bram Schoenmakers <me@bramschoenmakers.nl>
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
Command
import
*
from
Command
import
Command
,
InvalidCommandArgument
from
TodoListBase
import
InvalidTodoException
from
PrettyPrinter
import
pretty_print
...
...
topydo/lib/TodoList.py
View file @
1023b0e1
...
...
@@ -18,14 +18,8 @@
A list of todo items.
"""
import
re
import
Filter
import
Graph
from
PrettyPrinter
import
pretty_print_list
import
Todo
import
TodoListBase
import
View
class
TodoList
(
TodoListBase
.
TodoListBase
):
"""
...
...
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