Changeset 9630 for trunk/src/roster_window.py
- Timestamp:
- 05/13/08 16:03:30 (6 months ago)
- Files:
-
- 1 modified
-
trunk/src/roster_window.py (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/roster_window.py
r9625 r9630 82 82 ''' Return the gtk.TreeIter of the given account or None if not found. 83 83 84 Keyword arguments:85 name -- the account name86 model -- the data model (default TreeFilterModel)84 Keyword arguments: 85 name -- the account name 86 model -- the data model (default TreeFilterModel) 87 87 88 88 ''' … … 105 105 ''' Return the gtk.TreeIter of the given group or None if not found. 106 106 107 Keyword arguments:108 name -- the group name107 Keyword arguments: 108 name -- the group name 109 109 account -- the account name 110 110 account_iter -- the iter of the account the model (default None) 111 model -- the data model (default TreeFilterModel)111 model -- the data model (default TreeFilterModel) 112 112 113 113 ''' … … 129 129 ''' Return the gtk.TreeIter of SelfContact or None if not found. 130 130 131 Keyword arguments:131 Keyword arguments: 132 132 jid -- the jid of SelfContact 133 account -- the account of SelfContact134 model -- the data model (default TreeFilterModel)133 account -- the account of SelfContact 134 model -- the data model (default TreeFilterModel) 135 135 136 136 ''' … … 155 155 ''' Return a list of gtk.TreeIter of the given contact. 156 156 157 Keyword arguments:157 Keyword arguments: 158 158 jid -- the jid without resource 159 account -- the account159 account -- the account 160 160 contact -- the contact (default None) 161 model -- the data model (default TreeFilterModel)161 model -- the data model (default TreeFilterModel) 162 162 163 163 ''' … … 221 221 222 222 Keyword arguments: 223 model -- the data model223 model -- the data model 224 224 iter -- the gtk.TreeIter to test 225 225 ''' … … 233 233 234 234 Keyword arguments: 235 model -- the data model (default TreeFilterModel)235 model -- the data model (default TreeFilterModel) 236 236 ''' 237 237 if not model: … … 329 329 Keyword arguments: 330 330 contact -- the contact to add 331 account -- the contacts account332 groups -- list of groups to add the contact to. (default groups in contact.groups).333 Parameter ignored when big_brother_contact is specified.331 account -- the contacts account 332 groups -- list of groups to add the contact to. (default groups in contact.groups). 333 Parameter ignored when big_brother_contact is specified. 334 334 big_brother_contact -- if specified contact is added as child big_brother_contact. (default None) 335 335 ''' … … 406 406 Keyword arguments: 407 407 contact -- the contact to add 408 account -- the contacts account409 groups -- list of groups to remove the contact from. (default groups in contact.groups).408 account -- the contacts account 409 groups -- list of groups to remove the contact from. (default groups in contact.groups). 410 410 411 411 ''' … … 1466 1466 ################################################################################ 1467 1467 ### FIXME: Methods that don't belong to roster window... 1468 ### ... atleast not in there current form1468 ### ... atleast not in there current form 1469 1469 ################################################################################ 1470 1470
