Module todo :: Class TodoEntry
[hide private]
[frames] | no frames]

Class TodoEntry

source code

object --+
         |
        TodoEntry

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
get(self) source code
 
set(self, d) source code
 
get_db_dict(self) source code
 
set_db_dict(self, d) source code
 
complete(self) source code
 
check_completion(self) source code
 
_set_or_del(self, key, v, v_list=[]) source code
 
_create_id(self)
Create a BitPim serial for this entry
source code
 
_get_id(self) source code
 
_get_summary(self) source code
 
_set_summary(self, v) source code
 
_get_note(self) source code
 
_set_note(self, v) source code
 
_get_due_date(self) source code
 
_set_due_date(self, v) source code
 
_get_status(self) source code
 
_set_status(self, v) source code
 
is_active(self) source code
 
_get_percent_complete(self) source code
 
_set_percent_complete(self, v) source code
 
_get_completion_date(self) source code
 
_set_completion_date(self, v) source code
 
_get_priority(self) source code
 
_set_priority(self, v) source code
 
_get_categories(self) source code
 
_set_categories(self, s) source code
 
_get_secret(self) source code
 
_set_secret(self, v) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]
  ST_NotStarted = 1
  ST_InProgress = 2
  ST_NeedActions = 3
  ST_Completed = 4
  ST_Cancelled = 5
  ST_Last = 6
  ST_Range = xrange(1, 6)
  ST_Names = ('<None>', 'Not Started', 'In Progess', 'Need Actio...
  PC_Range = xrange(101)
  PR_Range = xrange(1, 11)
  _id_index = 0
  _max_id_index = 999
Properties [hide private]
  id
  summary
  note
  due_date
  status
  percent_complete
  completion_date
  priority
  categories
  private

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

Class Variable Details [hide private]

ST_Names

Value:
('<None>',
 'Not Started',
 'In Progess',
 'Need Actions',
 'Completed',
 'Cancelled',
 'LAST')

Property Details [hide private]

id

Get Method:
_get_id(self)

summary

Get Method:
_get_summary(self)
Set Method:
_set_summary(self, v)

note

Get Method:
_get_note(self)
Set Method:
_set_note(self, v)

due_date

Get Method:
_get_due_date(self)
Set Method:
_set_due_date(self, v)

status

Get Method:
_get_status(self)
Set Method:
_set_status(self, v)

percent_complete

Get Method:
_get_percent_complete(self)
Set Method:
_set_percent_complete(self, v)

completion_date

Get Method:
_get_completion_date(self)
Set Method:
_set_completion_date(self, v)

priority

Get Method:
_get_priority(self)
Set Method:
_set_priority(self, v)

categories

Get Method:
_get_categories(self)
Set Method:
_set_categories(self, s)

private

Get Method:
_get_secret(self)
Set Method:
_set_secret(self, v)