class Tag: (source)
A 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.
Method | __call__ |
Add children and change attributes on this tag. |
Method | __repr__ |
Undocumented |
Method | clear |
Clear any existing children from 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 | fill |
Remember the slots provided at this position in the DOM. |
Instance Variable | attributes |
The attributes of the element. |
Instance Variable | children |
The contents of this Tag. |
Instance Variable | column |
The column number at which this tag was encountered in the XML file from which it was parsed. |
Instance Variable | filename |
The name of the XML file from which this tag was parsed. |
Instance Variable | line |
The line number on which this tag was encountered in the XML file from which it was parsed. |
Instance Variable | render |
The name of the render method to use for this Tag . |
Instance Variable | slot |
The data which can fill slots. |
Instance Variable | tag |
The name of the represented element. |
Method | _clone |
Clone a Flattenable object; used by Tag.clone . |
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.
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.
Remember the slots provided at this position in the DOM.
During the rendering of children of this node, slots with names in slots will be rendered as their corresponding values.
Returns | |
Tag | self. This enables the idiom return tag.fillSlots(...) in renderers. |
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
.
The name of the XML file from which this tag was parsed.
If it was not parsed from an XML file, None
.
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
.
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.
Clone a Flattenable object; used by Tag.clone
.
Note that both lists and tuples are cloned into lists.
Parameters | |
obj:Flattenable | an object with a clone method, a list or tuple, or something which should be immutable. |
deep:bool | whether to continue cloning child objects; i.e. the contents of lists, the sub-tags within a tag. |
Returns | |
Flattenable | a clone of obj. |