/usr/share/pyshared/z3c/template/README.txt is in python-z3c.template 1.4.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | =============
Z3C Templates
=============
This package allows us to separate the registration of the view code and the
layout.
A template is used for separate the HTML part from a view. This is done in
z3 via a page templates. Such page template are implemented in the view,
registered included in a page directive etc. But they do not use the adapter
pattern which makes it hard to replace existing templates.
Another part of template is, that they normaly separate one part presenting
content from a view and another part offer a layout used by the content
template.
How can this package make it simpler to use templates?
Templates can be registered as adapters adapting context, request where the
context is a view implementation. Such a template get adapted from the view
if the template is needed. This adaption makes it very pluggable and modular.
We offer two base template directive for register content producing templates
and layout producing tempaltes. This is most the time enough but you also
can register different type of templates using a specific interface. This
could be usefull if your view implementation needs to separate HTMl in
more then one template. Now let's take a look how we an use this templates.
Content template
----------------
First let's show how we use a template for produce content from a view:
>>> import os, tempfile
>>> temp_dir = tempfile.mkdtemp()
>>> contentTemplate = os.path.join(temp_dir, 'contentTemplate.pt')
>>> open(contentTemplate, 'w').write('''<div>demo content</div>''')
And register a view class implementing a interface:
>>> import zope.interface
>>> from z3c.template import interfaces
>>> from zope.pagetemplate.interfaces import IPageTemplate
>>> from zope.publisher.browser import BrowserPage
>>> class IMyView(zope.interface.Interface):
... pass
>>> class MyView(BrowserPage):
... zope.interface.implements(IMyView)
... template = None
... def render(self):
... if self.template is None:
... template = zope.component.getMultiAdapter(
... (self, self.request), interfaces.IContentTemplate)
... return template(self)
... return self.template()
Let's call the view and check the output:
>>> from zope.publisher.browser import TestRequest
>>> request = TestRequest()
>>> view = MyView(root, request)
Since the template is not yet registered, rendering the view will fail:
>>> print view.render()
Traceback (most recent call last):
...
ComponentLookupError: ......
Let's now register the template (commonly done using ZCML):
>>> from zope import component
>>> from zope.publisher.interfaces.browser import IDefaultBrowserLayer
>>> from z3c.template.template import TemplateFactory
The template factory allows us to create a ViewPageTeplateFile instance.
>>> factory = TemplateFactory(contentTemplate, 'text/html')
>>> factory
<z3c.template.template.TemplateFactory object at ...>
We register the factory on a view interface and a layer.
>>> component.provideAdapter(
... factory,
... (zope.interface.Interface, IDefaultBrowserLayer),
... interfaces.IContentTemplate)
>>> template = component.getMultiAdapter((view, request),
... interfaces.IPageTemplate)
>>> template
<...ViewPageTemplateFile...>
Now that we have a registered layout template for the default layer we can
call our view again.
>>> print view.render()
<div>demo content</div>
Now we register a new template on the specific interface of our view.
>>> myTemplate = os.path.join(temp_dir, 'myTemplate.pt')
>>> open(myTemplate, 'w').write('''<div>My content</div>''')
>>> factory = TemplateFactory(myTemplate, 'text/html')
>>> component.provideAdapter(
... factory,
... (IMyView, IDefaultBrowserLayer), interfaces.IContentTemplate)
>>> print view.render()
<div>My content</div>
It is possible to provide the template directly.
We create a new template.
>>> viewContent = os.path.join(temp_dir, 'viewContent.pt')
>>> open(viewContent, 'w').write('''<div>view content</div>''')
and a view:
>>> from z3c.template import ViewPageTemplateFile
>>> class MyViewWithTemplate(BrowserPage):
... zope.interface.implements(IMyView)
... template = ViewPageTemplateFile(viewContent)
... def render(self):
... if self.template is None:
... template = zope.component.getMultiAdapter(
... (self, self.request), interfaces.IContentTemplate)
... return template(self)
... return self.template()
>>> contentView = MyViewWithTemplate(root, request)
If we render this view we get the implemented layout template and not the
registered one.
>>> print contentView.render()
<div>view content</div>
Layout template
---------------
First we nee to register a new view class calling a layout template. Note,
that this view uses the __call__ method for invoke a layout template:
>>> class ILayoutView(zope.interface.Interface):
... pass
>>> class LayoutView(BrowserPage):
... zope.interface.implements(ILayoutView)
... layout = None
... def __call__(self):
... if self.layout is None:
... layout = zope.component.getMultiAdapter(
... (self, self.request), interfaces.ILayoutTemplate)
... return layout(self)
... return self.layout()
>>> view2 = LayoutView(root, request)
Define and register a new layout template:
>>> layoutTemplate = os.path.join(temp_dir, 'layoutTemplate.pt')
>>> open(layoutTemplate, 'w').write('''<div>demo layout</div>''')
>>> factory = TemplateFactory(layoutTemplate, 'text/html')
We register the template factory on a view interface and a layer providing the
ILayoutTemplate interface.
>>> component.provideAdapter(factory,
... (zope.interface.Interface, IDefaultBrowserLayer),
... interfaces.ILayoutTemplate)
>>> layout = component.getMultiAdapter(
... (view2, request), interfaces.ILayoutTemplate)
>>> layout
<...ViewPageTemplateFile...>
Now that we have a registered layout template for the default layer we can
call our view again.
>>> print view2()
<div>demo layout</div>
Now we register a new layout template on the specific interface of our view.
>>> myLayout = os.path.join(temp_dir, 'myLayout.pt')
>>> open(myLayout, 'w').write('''<div>My layout</div>''')
>>> factory = TemplateFactory(myLayout, 'text/html')
>>> component.provideAdapter(factory,
... (ILayoutView, IDefaultBrowserLayer),
... interfaces.ILayoutTemplate)
>>> print view2()
<div>My layout</div>
It is possible to provide the layout template directly.
We create a new template.
>>> viewLayout = os.path.join(temp_dir, 'viewLayout.pt')
>>> open(viewLayout, 'w').write('''<div>view layout</div>''')
>>> class LayoutViewWithLayoutTemplate(BrowserPage):
... zope.interface.implements(ILayoutView)
... layout = ViewPageTemplateFile(viewLayout)
... def __call__(self):
... if self.layout is None:
... layout = zope.component.getMultiAdapter((self, self.request),
... interfaces.ILayoutTemplate)
... return layout(self)
... return self.layout()
>>> layoutView = LayoutViewWithLayoutTemplate(root, request)
If we render this view we get the implemented layout template and not the
registered one.
>>> print layoutView()
<div>view layout</div>
Since we return the layout template in the sample views above, how can we get
the content from the used view? This is not directly a part of this package
but let's show some pattern were can be used for render content in a used
layout template. Note, since we offer to register each layout template for
a specific view, you can always very selectiv this layout pattern. This means
you can use the defualt z3 macro based layout registration in combination with
this layout concept if you register a own layout template.
The simplest concept is calling the content from the view in the layout
template is to call it from a method. Let's define a view providing a layout
template and offer a method for call content.
>>> class IFullView(zope.interface.Interface):
... pass
>>> class FullView(BrowserPage):
... zope.interface.implements(IFullView)
... layout = None
... def render(self):
... return u'rendered content'
... def __call__(self):
... if self.layout is None:
... layout = zope.component.getMultiAdapter((self, self.request),
... interfaces.ILayoutTemplate)
... return layout(self)
... return self.layout()
>>> completeView = FullView(root, request)
Now define a layout for the view and register them:
>>> completeLayout = os.path.join(temp_dir, 'completeLayout.pt')
>>> open(completeLayout, 'w').write('''
... <div tal:content="view/render">
... Full layout
... </div>
... ''')
>>> factory = TemplateFactory(completeLayout, 'text/html')
>>> component.provideAdapter(factory,
... (IFullView, IDefaultBrowserLayer), interfaces.ILayoutTemplate)
Now let's see if the layout template can call the content via calling render
on the view:
>>> print completeView.__call__()
<div>rendered content</div>
Content and Layout
------------------
Now let's show how we combine this two templates in a real use case:
>>> class IDocumentView(zope.interface.Interface):
... pass
>>> class DocumentView(BrowserPage):
... zope.interface.implements(IDocumentView)
... template = None
... layout = None
... attr = None
... def update(self):
... self.attr = u'content updated'
... def render(self):
... if self.template is None:
... template = zope.component.getMultiAdapter(
... (self, self.request), IPageTemplate)
... return template(self)
... return self.template()
... def __call__(self):
... self.update()
... if self.layout is None:
... layout = zope.component.getMultiAdapter((self, self.request),
... interfaces.ILayoutTemplate)
... return layout(self)
... return self.layout()
Define and register a content template...
>>> template = os.path.join(temp_dir, 'template.pt')
>>> open(template, 'w').write('''
... <div tal:content="view/attr">
... here comes the value of attr
... </div>
... ''')
>>> factory = TemplateFactory(template, 'text/html')
>>> component.provideAdapter(factory,
... (IDocumentView, IDefaultBrowserLayer), IPageTemplate)
and define and register a layout template:
>>> layout = os.path.join(temp_dir, 'layout.pt')
>>> open(layout, 'w').write('''
... <html>
... <body>
... <div tal:content="structure view/render">
... here comes the rendered content
... </div>
... </body>
... </html>
... ''')
>>> factory = TemplateFactory(layout, 'text/html')
>>> component.provideAdapter(factory,
... (IDocumentView, IDefaultBrowserLayer), interfaces.ILayoutTemplate)
Now call the view and check the result:
>>> documentView = DocumentView(root, request)
>>> print documentView()
<html>
<body>
<div>
<div>content updated</div>
</div>
</body>
</html>
Macros
------
Use of macros.
>>> macroTemplate = os.path.join(temp_dir, 'macroTemplate.pt')
>>> open(macroTemplate, 'w').write('''
... <metal:block define-macro="macro1">
... <div>macro1</div>
... </metal:block>
... <metal:block define-macro="macro2">
... <div>macro2</div>
... <div tal:content="options/div2">the content of div 2</div>
... </metal:block>
... ''')
>>> factory = TemplateFactory(macroTemplate, 'text/html', 'macro1')
>>> print factory(view, request)()
<div>macro1</div>
>>> m2factory = TemplateFactory(macroTemplate, 'text/html', 'macro2')
>>> print m2factory(view, request)(div2="from the options")
<div>macro2</div>
<div>from the options</div>
Why didn't we use named templates from the ``zope.formlib`` package?
While named templates allow us to separate the view code from the template
registration, they are not registrable for a particular layer making it
impossible to implement multiple skins using named templates.
Use case ``simple template``
----------------------------
And for the simplest possible use we provide a hook for call registered
templates. Such page templates can get called with the getPageTemplate method
and return a registered bound ViewTemplate a la ViewPageTemplateFile or
NamedTemplate.
The getViewTemplate allows us to use the new template registration
system with all existing implementations such as `zope.formlib` and
`zope.viewlet`.
>>> from z3c.template.template import getPageTemplate
>>> class IUseOfViewTemplate(zope.interface.Interface):
... pass
>>> class UseOfViewTemplate(object):
... zope.interface.implements(IUseOfViewTemplate)
...
... template = getPageTemplate()
...
... def __init__(self, context, request):
... self.context = context
... self.request = request
By defining the "template" property as a "getPageTemplate" a lookup for
a registered template is done when it is called.
>>> simple = UseOfViewTemplate(root, request)
>>> print simple.template()
<div>demo content</div>
Because the demo template was registered for any ("None") interface we see the
demo template when rendering our new view. We register a new template
especially for the new view. Also note that the "macroTemplate" has been
created earlier in this test.
>>> factory = TemplateFactory(contentTemplate, 'text/html')
>>> component.provideAdapter(factory,
... (IUseOfViewTemplate, IDefaultBrowserLayer), IPageTemplate)
>>> print simple.template()
<div>demo content</div>
Context-specific templates
--------------------------
The ``TemplateFactory`` can be also used for (view, request, context)
lookup. It's useful when you want to override a template for specific
content object or type.
Let's define a sample content type and instantiate a view for it.
>>> class IContent(zope.interface.Interface):
... pass
>>> class Content(object):
... zope.interface.implements(IContent)
>>> content = Content()
>>> view = UseOfViewTemplate(content, request)
Now, let's provide a (view, request, context) adapter using TemplateFactory.
>>> contextTemplate = os.path.join(temp_dir, 'context.pt')
>>> open(contextTemplate, 'w').write('<div>context-specific</div>')
>>> factory = TemplateFactory(contextTemplate, 'text/html')
>>> component.provideAdapter(factory,
... (IUseOfViewTemplate, IDefaultBrowserLayer, IContent),
... interfaces.IContentTemplate)
First. Let's try to simply get it as a multi-adapter.
>>> template = zope.component.getMultiAdapter((view, request, content),
... interfaces.IContentTemplate)
>>> print template(view)
<div>context-specific</div>
The ``getPageTemplate`` and friends will try to lookup a context-specific
template before doing more generic (view, request) lookup, so our view
should already use our context-specific template:
>>> print view.template()
<div>context-specific</div>
Use case ``template by interface``
----------------------------------
Templates can also get registered on different interfaces then IPageTemplate
or ILayoutTemplate.
>>> from z3c.template.template import getViewTemplate
>>> class IMyTemplate(zope.interface.Interface):
... """My custom tempalte marker."""
>>> factory = TemplateFactory(contentTemplate, 'text/html')
>>> component.provideAdapter(factory,
... (zope.interface.Interface, IDefaultBrowserLayer), IMyTemplate)
Now define a view using such a custom template registration:
>>> class IMyTemplateView(zope.interface.Interface):
... pass
>>> class MyTemplateView(object):
... zope.interface.implements(IMyTemplateView)
...
... template = getViewTemplate(IMyTemplate)
...
... def __init__(self, context, request):
... self.context = context
... self.request = request
>>> myTempalteView = MyTemplateView(root, request)
>>> print myTempalteView.template()
<div>demo content</div>
Use case ``named template``
----------------------------------
Templates can also get registered on names. In this expample we use a named
template combined with a custom template marker interface.
>>> class IMyNamedTemplate(zope.interface.Interface):
... """My custom template marker."""
>>> factory = TemplateFactory(contentTemplate, 'text/html')
>>> component.provideAdapter(factory,
... (zope.interface.Interface, IDefaultBrowserLayer), IMyNamedTemplate,
... name='my template')
Now define a view using such a custom named template registration:
>>> class IMyNamedTemplateView(zope.interface.Interface):
... pass
>>> class MyNamedTemplateView(object):
... zope.interface.implements(IMyNamedTemplateView)
...
... template = getViewTemplate(IMyNamedTemplate, 'my template')
...
... def __init__(self, context, request):
... self.context = context
... self.request = request
>>> myNamedTempalteView = MyNamedTemplateView(root, request)
>>> print myNamedTempalteView.template()
<div>demo content</div>
Use case ``named layout template``
----------------------------------
We can also register a new layout template by name and use it in a view:
>>> from z3c.template.template import getLayoutTemplate
>>> editLayout = os.path.join(temp_dir, 'editLayout.pt')
>>> open(editLayout, 'w').write('''
... <div>Edit layout</div>
... <div tal:content="view/render">content</div>
... ''')
>>> factory = TemplateFactory(editLayout, 'text/html')
>>> component.provideAdapter(factory,
... (zope.interface.Interface, IDefaultBrowserLayer),
... interfaces.ILayoutTemplate, name='edit')
Now define a view using such a custom named template registration:
>>> class MyEditView(BrowserPage):
...
... layout = getLayoutTemplate('edit')
...
... def render(self):
... return u'edit content'
...
... def __call__(self):
... if self.layout is None:
... layout = zope.component.getMultiAdapter((self, self.request),
... interfaces.ILayoutTemplate)
... return layout(self)
... return self.layout()
>>> myEditView = MyEditView(root, request)
>>> print myEditView()
<div>Edit layout</div>
<div>edit content</div>
Cleanup
-------
>>> import shutil
>>> shutil.rmtree(temp_dir)
Pagelet
-------
See z3c.pagelet for another template based layout generating implementation.
|