Part of twisted.web.template View Source View In Hierarchy
Tag
represents an XML tags with a tag name, attributes, and children. A Tag
can be
constructed using the special twisted.web.template.tags
object, or it may be constructed directly with a tag name. Tag
s have a special
method, __call__
, which makes representing trees of XML
natural using pure python syntax.
Instance Variables | tagName | The name of the represented element. For a tag like
<div></div> , this would be
"div" .
(type: str
) |
attributes | The attributes of the element.
(type: dict mapping str to renderable objects.
) | |
children | The child Tag s
of this Tag .
(type: list of renderable objects.
) | |
render | The name of the render method to use for this Tag . This name will
be looked up at render time by the twisted.web.template.Element
doing the rendering, via twisted.web.template.Element.lookupRenderMethod ,
to determine which method to call.
(type: str
) | |
filename | The name of the XML file from which this tag was parsed. If it was not
parsed from an XML file, None .
(type: str or NoneType
) | |
lineNumber | The line number on which this tag was encountered in the XML file from
which it was parsed. If it was not parsed from an XML file,
None .
(type: int or NoneType
) | |
columnNumber | The column number at which this tag was encountered in the XML file from
which it was parsed. If it was not parsed from an XML file,
None .
(type: int or NoneType
) | |
slotData | The data which can fill slots. If present, a dictionary mapping slot
names to renderable values. The values in this dict might be anything that
can be present as the child of a Tag ; strings, lists,
Tag s, generators,
etc.
(type: dict or NoneType
) |
Method | __init__ | Undocumented |
Method | fillSlots | Remember the slots provided at this position in the DOM. |
Method | __call__ | Add children and change attributes on this tag. |
Method | clone | Return a clone of this tag. If deep is True, clone all of this tag's children. Otherwise, just shallow copy the children list without copying the children themselves. |
Method | clear | Clear any existing children from this tag. |
Method | __repr__ | Undocumented |
Method | _clone | Clone an arbitrary object; used by Tag.clone .
|
Remember the slots provided at this position in the DOM.
During the rendering of children of this node, slots with names inslots
will be rendered as their corresponding values.
Add children and change attributes on this tag.
This is implemented using __call__ because it then allows the natural syntax:table(tr1, tr2, width="100%", height="50%", border="1")
Children may be other tag instances, strings, functions, or any other object which has a registered flatten.
Attributes may be 'transparent' tag instances (so that
a(href=transparent(data="foo",
render=myhrefrenderer))
works), strings, functions, or any other
object which has a registered flattener.
If the attribute is a python keyword, such as 'class', you can add an underscore to the name, like 'class_'.
There is one special keyword argument, 'render', which will be used as the name of the renderer and saved as the 'render' attribute of this instance, rather than the DOM 'render' attribute in the attributes dictionary.Tag.clone
.
Parameters | obj | an object with a clone method, a list or tuple, or something which should be immutable. |
deep | whether to continue cloning child objects; i.e. the contents of lists, the sub-tags within a tag. | |
Returns | a clone of obj. |