Nevow XML Templates

 
1Nevow XML Templates
2===================
3
4Stan syntax is cool, but eventually you are going to want to integrate your
5Python code with a template designed by an HTML monkey. Nevow accomplishes this
6by providing an xmlfile loader which uses the built-in Python SAX libraries to
7generate a tree of stan behind the scenes. The general rule is anything that is
8possible in stan should be possible in a pure XML template; of course, the XML
9syntax is generally going to be much more verbose.
10
11* `loaders.xmlfile`_
12* `Nevow's xmlns declaration`_
13* `Nevow's Tag Attribute Language`_
14* `nevow:render`_
15* `Built-in renderers`_
16* `nevow:data`_
17* `nevow:pattern`_
18* `nevow:slot`_
19* `nevow:attr`_
20* `nevow:invisible`_
21* `xmlstr, htmlfile, and htmlstr`_
22
23loaders.xmlfile
24---------------
25
26Wherever you have seen a loaders.stan being created in any of the example code,
27a loaders.xmlfile can be substituted instead. At the most basic, xmlfile merely
28requires the name of an xml template::
29
30  class HelloXML(rend.Page):
31      docFactory = loaders.xmlfile('hello.xml')
32
33Placing the following xml in the hello.xml file will cause HelloXML to display a
34static page when it is rendered::
35
36  <html>Hello, world!</html>
37
38The following additional keyword arguments may be given to xmlfile to configure
39it:
40
41templateDirectory
42  The path to the directory which contains the template file. Defaults to ''.
43
44ignoreDocType   
45  If True, discard any DOCTYPE declaration when building the DOM from this
46  template. When false, preserve the DOCTYPE, causing it to show up in the final
47  output. Useful for when you are inserting an XML fragment into a larger page
48  and do not wish to generate invalid XML as output. Defaults to False.
49
50ignoreComment
51  If True, discard XML comments, causing them to disappear from the output. If
52  False, preserve comments and render them in the final output unchanged.
53  Defaults to False.
54
55pattern
56  If present, the given pattern name will be looked up and used as the root of
57  the template. If not present, the entire document will be used as the
58  template. Useful for embedding fragments of an XML document in a larger page.
59  Defaults to None.
60
61Nevow's xmlns declaration
62-------------------------
63
64In order for Nevow to notice and process any XML directives in the template
65file, you must declare the Nevow xmlns at the top of your XML document. Nevow's
66xmlns is::
67
68  http://nevow.com/ns/nevow/0.1
69
70The syntax for declaring that your xml document uses this namespace is::
71
72  <html xmlns:nevow="http://nevow.com/ns/nevow/0.1"></html>
73
74You may replace the text "nevow" in the above example with any name you choose.
75For example, many people use "n" because it is shorter to type. If you do so, be
76sure to replace all occurrences of the nevow namespace in the examples with the
77namespace name you choose.
78
79Nevow's Tag Attribute Language
80------------------------------
81
82The markup you will add to your XHTML file in order to invoke Nevow code
83consists mostly of namespaced tag attributes. This approach was influenced
84heavily by the Zope Page Templates (ZPT) Tag Attribute Language (TAL). However,
85I felt that TAL did not go far enough in removing control flow and branching
86possibilities from the XML template. Nevow's main philosophy is that it should
87be as easy as possible to move from the XML document into Python code, and that
88the Python code should have ultimate control over manipulating the structure of
89the XML template.
90
91The key is that it is easy to expose Python methods that you write to your XML
92template, and it is easy for the XML templates to mark nodes which it wishes the
93Python method to manipulate. In this way, if either the Python implementation
94changes or the location or content of the marked nodes change in the XML
95template, the other side will be isolated from these changes.
96
97Nevow's XML templating has two attributes which invoke Python code:
98
99* nevow:render -- Invokes a Python method and replaces the template node with the result
100* nevow:data -- Invokes a Python method and sets the data special for the node to the result
101
102It has one attribute which marks nodes as manipulatable by Python code:
103
104* nevow:pattern -- Gives a node a name so that Python code may clone and mutate copies of this node
105
106It also has two namespaced tags:
107
108* nevow:slot -- Works in the same way as the slot attribute
109* nevow:attr -- Indicates that an attribute of the parent tag should be manipulated by Python code in some way
110
111nevow:render
112------------
113
114When the nevow:render attribute is encountered, the xmlfile loader sets the
115render special to a directive constructed with the attribute value. When the
116template is rendered, this means that the appropriate render_* method will be
117looked up on the IRendererFactory (generally the Page instance)::
118
119  <html><div nevow:render="foo" /></html>
120
121With the render_foo method::
122
123  def render_foo(self, ctx, data):
124      return "Hello"
125
126Will result in the document::
127
128  <html>Hello</html>
129
130Note that the return value of the render method replaces the template node in
131the DOM, so if you want the template node to remain, you should use ctx.tag.
132
133Built-in renderers
134------------------
135
136Nevow comes with various built in renderers on the Page class.
137
138data
139  Renders the current data as-is inside the current node.
140
141string
142  Renders the current data as a string inside the current node.
143
144sequence
145  Iterates the current data, copying the "item" pattern for each item. Sets the
146  the data special of the new node to the item, and inserts the result in the
147  current node. See the nevow.rend.sequence docstring for information about
148  other used patterns, including "header", "divider", "footer" and "empty".
149
150mapping
151  Calls .items() on the current data, and calls ctx.fillSlots(key, value) for
152  every key, value pair in the result. Returns the template tag.
153
154xml
155  Inserts the current data into the template after wrapping it in an xml
156  instance. Not very useful in practice.
157
158nevow:data
159----------
160
161When the nevow:data attribute is encountered, the xmlfile loader sets the data
162special of the current node to a directive constructed with the attribute value.
163When the template is rendered, this means that the appropriate data_* method
164will be looked up on the current IContainer (generally the Page instance). The
165data_* method will be called, and the result will be set as the data special of
166the current Tag::
167
168  <html><div nevow:data="name" nevow:render="data" /></html>
169
170With the data_name method::
171
172  def data_name(self, ctx, data):
173      return "Hello!"
174
175Will result in the document::
176
177  <html><div>Hello!</div></html>
178
179Note that with a data attribute on a node but no renderer, the result of the
180data method will be set as the data special for that tag, and child render
181methods will be passed this data.
182
183nevow:pattern
184-------------
185
186When the nevow:pattern attribute is encountered, the xmlfile loader sets the
187pattern special of the current node to the attribute value as a string.
188Renderers which are above this node may then make copies of it using the
189nevow.inevow.IQ of the current context. With the template::
190
191  <html nevow:render="stuff"><div nevow:pattern="somePattern" nevow:render="data" /></html>
192
193And the renderer::
194
195  def render_stuff(self, ctx, data):
196      pat = inevow.IQ(ctx).patternGenerator('somePattern')
197      return [pat(data=1), pat(data=2)]
198
199Will result in the document::
200
201  <html><div>1</div><div>2</div></html>
202
203nevow:slot
204----------
205
206When the nevow:slot tag is encountered, the xmlfile loader constructs a
207nevow.stan.slot instance, passing the name attribute value as the slot name. The
208children of the slot node are added as children of the new slot instance. This
209is useful if you wish to put patterns inside the slot. With the template::
210
211  <html nevow:render="stuff"><nevow:slot name="slotName" /></html>
212
213And the render method::
214
215  def render_stuff(self, ctx, data):
216      ctx.fillSlots('slotName', "Hello.")
217      return ctx.tag
218
219This document will be produced::
220
221  <html>Hello.</html>
222
223nevow:attr
224----------
225
226When the nevow:attr tag is encountered, the contents of the nevow:attr node will
227be assigned to the attribute of the parent tag with the name of the value of the
228name attribute. Perhaps an example will be a little clearer::
229
230  <html><a><nevow:attr name="href">HELLO!</nevow:attr>Goodbye</a></html>
231
232This document will be produced::
233
234  <html><a href="HELLO!">Goodbye</a></html>
235
236While this syntax is somewhat awkward, every other type of nevow tag and
237attribute may be used inside the nevow:attr node. This makes setting attributes
238of tags uniform with every other method of manipulating the XML template.
239
240nevow:invisible
241---------------
242
243Sometimes you need to group some elements, because you need to use a
244renderer for a group of children.
245
246However, it may not be desirable to give these elements a parent/child
247relationship in your XML structure.  For these cases, use nevow:invisible.
248
249As suggested by the name, a nevow:invisible tag is removed in the rendered
250XML. Here is an example::
251 
252  <html><nevow:invisible nevow:data="name" nevow:render="data" /></html>
253
254With the data_name method::
255
256  def data_name(self, ctx, data):
257      return "Hello!"
258
259Will result in the document::
260
261 <html>Hello!</html>
262
263xmlstr, htmlfile, and htmlstr
264-----------------------------
265
266xmlstr is a loader which is identical to xmlfile except it takes a string of XML
267directly.
268
269htmlfile and htmlstr should generally be avoided. They are similar to xmlfile
270and xmlstr, except they use twisted.web.microdom in beExtremelyLenient mode to
271attempt to parse badly-formed HTML (non-XHTML) templates. See the nevow.loaders
272docstrings for more information.
273
274Conclusions
275===========
276
277Nevow's xmlfile tag attribute language allows you to integrate
278externally-designed XHTML templates into the Nevow rendering process.
279
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值