Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
81b81179
Commit
81b81179
authored
Mar 26, 2001
by
Chris McDonough
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
bcf45c64
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
95 additions
and
0 deletions
+95
-0
lib/python/Products/PageTemplates/tests/input/CheckNothing.html
...thon/Products/PageTemplates/tests/input/CheckNothing.html
+7
-0
lib/python/Products/PageTemplates/tests/input/GlobalsShadowLocals.html
...oducts/PageTemplates/tests/input/GlobalsShadowLocals.html
+14
-0
lib/python/Products/PageTemplates/tests/input/Loop1.html
lib/python/Products/PageTemplates/tests/input/Loop1.html
+14
-0
lib/python/Products/PageTemplates/tests/input/StringExpression.html
.../Products/PageTemplates/tests/input/StringExpression.html
+7
-0
lib/python/Products/PageTemplates/tests/output/CheckNothing.html
...hon/Products/PageTemplates/tests/output/CheckNothing.html
+7
-0
lib/python/Products/PageTemplates/tests/output/GlobalsShadowLocals.html
...ducts/PageTemplates/tests/output/GlobalsShadowLocals.html
+14
-0
lib/python/Products/PageTemplates/tests/output/Loop1.html
lib/python/Products/PageTemplates/tests/output/Loop1.html
+25
-0
lib/python/Products/PageTemplates/tests/output/StringExpression.html
...Products/PageTemplates/tests/output/StringExpression.html
+7
-0
No files found.
lib/python/Products/PageTemplates/tests/input/CheckNothing.html
0 → 100644
View file @
81b81179
<html>
<body>
<head>
<title
tal:content=
"nothing"
>
Hello World!
</title>
</head>
</body>
</html>
lib/python/Products/PageTemplates/tests/input/GlobalsShadowLocals.html
0 → 100644
View file @
81b81179
<html
tal:define=
"global x python:1"
>
<head></head>
<body>
<div
tal:define=
"x python:2"
>
<span
tal:content=
"x"
>
Should be 2 here!
</span>
</div>
<div>
<span
tal:content=
"x"
>
Should be 1 here!
</span>
</div>
<div
tal:define=
"global x python:3"
>
<span
tal:content=
"x"
>
Should be 3 here!
</span>
</div>
</body>
</html>
lib/python/Products/PageTemplates/tests/input/Loop1.html
0 → 100644
View file @
81b81179
<html>
<head>
<title>
Loop doc
</title>
</head>
<body>
<p>
Choose your type:
</p>
<ul>
<li
tal:repeat=
"type python:'digital', 'analog', 'organic'"
>
<a
href=
"dummy"
tal:attributes=
"href string:/mach/$type"
tal:content=
"type"
>
selection
</a>
</li>
</ul>
</body>
</html>
lib/python/Products/PageTemplates/tests/input/StringExpression.html
0 → 100644
View file @
81b81179
<html>
<body>
<head>
<title
tal:content=
"string:Hello World!"
>
This is the title
</title>
</head>
</body>
</html>
lib/python/Products/PageTemplates/tests/output/CheckNothing.html
0 → 100644
View file @
81b81179
<html>
<body>
<head>
<title
tal:content=
"nothing"
></title>
</head>
</body>
</html>
lib/python/Products/PageTemplates/tests/output/GlobalsShadowLocals.html
0 → 100644
View file @
81b81179
<html
tal:define=
"global x python:1"
>
<head/>
<body>
<div
tal:define=
"x python:2"
>
<span
tal:content=
"x"
>
2
</span>
</div>
<div>
<span
tal:content=
"x"
>
1
</span>
</div>
<div
tal:define=
"global x python:3"
>
<span
tal:content=
"x"
>
3
</span>
</div>
</body>
</html>
lib/python/Products/PageTemplates/tests/output/Loop1.html
0 → 100644
View file @
81b81179
<html>
<head>
<title>
Loop doc
</title>
</head>
<body>
<p>
Choose your type:
</p>
<ul>
<li
tal:repeat=
"type python:'digital', 'analog', 'organic'"
>
<a
href=
"/mach/digital"
tal:attributes=
"href string:/mach/$type"
tal:content=
"type"
>
digital
</a>
</li>
<li
tal:repeat=
"type python:'digital', 'analog', 'organic'"
>
<a
href=
"/mach/analog"
tal:attributes=
"href string:/mach/$type"
tal:content=
"type"
>
analog
</a>
</li>
<li
tal:repeat=
"type python:'digital', 'analog', 'organic'"
>
<a
href=
"/mach/organic"
tal:attributes=
"href string:/mach/$type"
tal:content=
"type"
>
organic
</a>
</li>
</ul>
</body>
</html>
lib/python/Products/PageTemplates/tests/output/StringExpression.html
0 → 100644
View file @
81b81179
<html>
<body>
<head>
<title
tal:content=
"string:Hello World!"
>
Hello World!
</title>
</head>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment