No description
Find a file
helmutm 81d54dab91 work in progress: unit and doc tests (README.txt) set up
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@667 fd906abe-77d9-0310-91a1-e0d9ade77398
2005-11-08 21:49:47 +00:00
browser some minor improvements 2005-10-05 18:27:14 +00:00
__init__.py first steps towards assigning subtasks through the web 2005-05-21 11:33:10 +00:00
configure.zcml some minor improvements 2005-10-05 18:27:14 +00:00
interfaces.py use OOSet and separate Relation objects for subtask relations 2005-08-10 18:58:00 +00:00
README.txt work in progress: unit and doc tests (README.txt) set up 2005-11-08 21:49:47 +00:00
relation.py use OOSet and separate Relation objects for subtask relations 2005-08-10 18:58:00 +00:00
resource.py Resource constraints added to Task 2004-09-23 07:16:31 +00:00
task.py work in progress: unit and doc tests (README.txt) set up 2005-11-08 21:49:47 +00:00
test_resource.py work in progress: reorganize (and simplify) directory layout 2005-11-08 21:35:28 +00:00
test_task.py work in progress: reorganize (and simplify) directory layout 2005-11-08 21:35:28 +00:00
tests.py work in progress: unit and doc tests (README.txt) set up 2005-11-08 21:43:59 +00:00

# $Id$

Task Examples::

    >>> from loops.task import Task
    >>> t1 = Task()
    >>> t1.title
    u''

    >>> t2 = Task(u't2', u'Second Task')
    >>> t2.title
    u'Second Task'