Changeset 2171
- Timestamp:
- 06/16/07 09:52:53 (1 year ago)
- Files:
-
- plugins/moto-sync/motosync.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/moto-sync/motosync.py
r2169 r2171 60 60 61 61 # repeat types in the calendar 62 # XXX FIXME: check order of DATE/DAY for monthly and yearly , my values disagree62 # XXX FIXME: check order of DATE/DAY for monthly and yearly on extended-format phones 63 63 MOTO_REPEAT_NONE = 0 64 64 MOTO_REPEAT_DAILY = 1 65 65 MOTO_REPEAT_WEEKLY = 2 66 MOTO_REPEAT_MONTHLY_DA Y= 367 MOTO_REPEAT_MONTHLY_DA TE= 468 MOTO_REPEAT_YEARLY_DA Y= 569 MOTO_REPEAT_YEARLY_DA TE= 6 # extended calendar format only66 MOTO_REPEAT_MONTHLY_DATE = 3 67 MOTO_REPEAT_MONTHLY_DAY = 4 68 MOTO_REPEAT_YEARLY_DATE = 5 69 MOTO_REPEAT_YEARLY_DAY = 6 # extended calendar format only 70 70 71 71 # features we require; these refer to the bits returned by the AT+MAID? command … … 86 86 4: 'Fax', 87 87 5: 'Pager', 88 # 6: email 89 # 7: mailing list 88 90 8: 'Cellular', # shows up as "Mobile 2", seen on a V3c 91 # 9: ? 92 # 10: ? 89 93 11: 'Voice' # shows up as "other", seen on a RAZR V3x 90 94 }
