summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-02-08 23:11:08 +0100
committermathieui <mathieui@mathieui.net>2021-02-08 23:11:08 +0100
commit1c4e06d51028dc9cb93027b884191e58bd321f8e (patch)
treecc0b9c552e7f8d89f309e7f205a39d4f237f195e /docs/howto
parentb9e479f213fb761c928ce3fa4b6a20481fd49ec3 (diff)
parent80ee551acdb2c0548df4a2e08d501589a73a192a (diff)
downloadslixmpp-1c4e06d51028dc9cb93027b884191e58bd321f8e.tar.gz
slixmpp-1c4e06d51028dc9cb93027b884191e58bd321f8e.tar.bz2
slixmpp-1c4e06d51028dc9cb93027b884191e58bd321f8e.tar.xz
slixmpp-1c4e06d51028dc9cb93027b884191e58bd321f8e.zip
Merge branch 'muc-improvements-reloaded' into 'master'
Muc improvements reloaded See merge request poezio/slixmpp!123
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/stanzas.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/howto/stanzas.rst b/docs/howto/stanzas.rst
index 56dfce79..97178f36 100644
--- a/docs/howto/stanzas.rst
+++ b/docs/howto/stanzas.rst
@@ -327,6 +327,9 @@ Which will produces the following:
We can see that ``bool_interfaces`` allows to quickly create sub-elements with no
content, without the need to create a custom class or getter/setter.
+
+.. _overrides:
+
overrides
~~~~~~~~~
@@ -350,6 +353,8 @@ parent ``interfaces`` with the same name.
parent = Parent()
parent['toto'] = 'test' # equivalent to parent['sub']['toto'] = "test"
+.. _is_extension:
+
is_extension
~~~~~~~~~~~~