@@ -188,12 +188,16 @@ class _Pointer(_Type):
188
188
def __init__ (self , classname , do_journal = 'yes' , try_id_parsing = 'yes' ,
189
189
required = False , default_value = None ,
190
190
msg_header_property = None , quiet = False , rev_multilink = None ):
191
- """ Default is to journal link and unlink events.
191
+ """ The base class used by Link and Multilink classes.
192
+
193
+ Default is to journal link and unlink events.
194
+
192
195
When try_id_parsing is false, we don't allow IDs in input
193
196
fields (the key of the Link or Multilink property must be
194
197
given instead). This is useful when the name of a property
195
198
can be numeric. It will only work if the linked item has a
196
199
key property and is a questionable feature for multilinks.
200
+
197
201
The msg_header_property is used in the mail gateway when
198
202
sending out messages: By default roundup creates headers of
199
203
the form: 'X-Roundup-issue-prop: value' for all properties
@@ -205,6 +209,7 @@ def __init__(self, classname, do_journal='yes', try_id_parsing='yes',
205
209
'msg_header_property="username"' for the assigned_to
206
210
property will generated message headers of the form:
207
211
'X-Roundup-issue-assigned_to: joe_user'.
212
+
208
213
The rev_multilink is used to inject a reverse multilink into
209
214
the Class linked by a Link or Multilink property. Note that
210
215
the result is always a Multilink. The name given with
0 commit comments