mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-27 19:19:54 +00:00
Clarify ElementBase documentation.
This commit is contained in:
parent
e16b37d2be
commit
5c59f5baca
1 changed files with 6 additions and 1 deletions
|
@ -54,6 +54,11 @@ class ElementBase(object):
|
|||
|
||||
>>> message['to'] = "user@example.com"
|
||||
>>> message['body'] = "Hi!"
|
||||
>>> message['body']
|
||||
"Hi!"
|
||||
>>> del message['body']
|
||||
>>> message['body']
|
||||
""
|
||||
|
||||
The interface values map to either custom access methods, stanza
|
||||
XML attributes, or (if the interface is also in sub_interfaces) the
|
||||
|
@ -61,7 +66,7 @@ class ElementBase(object):
|
|||
|
||||
Custom access methods may be created by adding methods of the
|
||||
form "getInterface", "setInterface", or "delInterface", where
|
||||
"Interface" is the titlecase version of the interface name.
|
||||
"Interface" is the titlecase version of the interface name.
|
||||
|
||||
Stanzas may be extended through the use of plugins. A plugin
|
||||
is simply a stanza that has a plugin_attrib value. For example:
|
||||
|
|
Loading…
Reference in a new issue