~ztk-steering-group/zope.pagetemplate/trunk

« back to all changes in this revision

Viewing changes to src/zope/pagetemplate/tests/input/globalsshadowlocals.html

  • Committer: srichter
  • Date: 2013-02-22 16:57:41 UTC
  • Revision ID: svn-v4:62d5b8a3-27da-0310-9561-8e5933582275:zope.pagetemplate/trunk:129671
Moved to GitHub.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html tal:define="global x python:1">
2
 
<head></head>
3
 
<body>
4
 
  <div tal:define="x python:2">
5
 
    <span tal:content="x">Should be 2 here!</span>
6
 
  </div>
7
 
  <div>
8
 
    <span tal:content="x">Should be 1 here!</span>
9
 
  </div>
10
 
  <div tal:define="global x python:3">
11
 
    <span tal:content="x">Should be 3 here!</span>
12
 
  </div>
13
 
</body>
14
 
</html>