1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#!/usr/bin/env python
#======================================================================
# FILE: Property.py
# CREATOR: eric
#
# (C) COPYRIGHT 2001, Eric Busboom <eric@civicknowledge.com>
# (C) COPYRIGHT 2001, Patrick Lewis <plewis@inetarena.com>
#
# This library is free software; you can redistribute it and/or modify
# it under the terms of either:
#
# The LGPL as published by the Free Software Foundation, version
# 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.txt
#
# Or:
#
# The Mozilla Public License Version 2.0. You may obtain a copy of
# the License at https://www.mozilla.org/MPL/
# This library is free software; you can redistribute it and/or modify
# it under the terms of either:
#
# The LGPL as published by the Free Software Foundation, version
# 2.1, available at: https://www.gnu.org/licenses/lgpl-2.1.html
#
# Or:
#
# The Mozilla Public License Version 2.0. You may obtain a copy of
# the License at https://www.mozilla.org/MPL/
#======================================================================
from LibicalWrap import *
from Property import Property
from types import DictType, StringType, IntType
class Attendee(Property):
"""Class for Attendee properties.
Usage:
Attendee([dict])
Attendee([address])
Where:
dict is an optional dictionary with keys of
'value': CAL-ADDRESS string and any parameter: parameter_value entries.
'name' and 'value_type' entries in dict are ignored and automatically set
with the appropriate values.
address is the CAL-ADDRESS (string) of the Attendee
"""
def __init__(self, arg={}):
assert(isinstance(arg,DictType))
ref = None
if arg!={}:
ref = arg['ref']
Property.__init__(self,type='ATTENDEE',ref=ref)
def _doParam(self, parameter, v):
if v!=None:
self[parameter]=v
return self[parameter]
# Methods for accessing enumerated parameters
def cn(self, v=None): self._doParam('CN', v)
def cutype(self, v=None): self._doParam('CUTYPE', v)
def dir(self, v=None): self._doParam('DIR', v)
def delegated_from(self, v=None): self._doParam('DELEGATED-FROM', v)
def delegated_to(self, v=None): self._doParam('DELEGATED-TO', v)
def language(self, v=None): self._doParam('LANGUAGE', v)
def member(self, v=None): self._doParam('MEMBER', v)
def partstat(self, v=None): self._doParam('PARTSTAT', v)
def role(self, v=None): self._doParam('ROLE', v)
def rsvp(self, v=None): self._doParam('RSVP', v)
def sent_by(self, v=None): self._doParam('SENT-BY', v)
class Organizer(Property):
"""Class for Organizer property.
"""
def __init__(self, arg={}):
assert(isinstance(arg, DictType))
ref = None
if arg != {}:
ref = arg['ref']
Property.__init__(self, type='ORGANIZER', ref=ref)
## param_t = ( 'CN', 'DIR', 'SENT-BY', 'LANGUAGE' )
## for param in param_t:
## self[param] = None
## if value != None:
## self.value(value)
def _doParam(self, parameter, v):
if v!=None:
self[parameter]=v
return self[parameter]
def name(self):
"Returns the name of the property."
return Property.name(self)
def value_type(self):
"Returns the value type of the property."
return self._desc['value_type']
# Methods for accessing enumerated parameters
def cn(self, v=None): self._doParam('CN', v)
def dir(self, v=None): self._doParam('DIR', v)
def language(self, v=None): self._doParam('LANGUAGE', v)
def sent_by(self, v=None): self._doParam('SENT-BY', v)
|