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
1c76e154
Commit
1c76e154
authored
May 16, 2001
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test case for nested macro expansion
parent
9f313808
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
0 deletions
+57
-0
lib/python/TAL/tests/input/test15.html
lib/python/TAL/tests/input/test15.html
+26
-0
lib/python/TAL/tests/output/test15.html
lib/python/TAL/tests/output/test15.html
+31
-0
No files found.
lib/python/TAL/tests/input/test15.html
0 → 100644
View file @
1c76e154
<span
metal:define-macro=
"INNER"
>
<span
metal:define-slot=
"INNERSLOT"
>
INNERSLOT
</span>
</span>
<xxx
metal:use-macro=
"INNER"
>
<xxx
metal:fill-slot=
"INNERSLOT"
>
inner-argument
</xxx>
</xxx>
<div
metal:define-macro=
"OUTER"
>
<div
metal:use-macro=
"INNER"
>
<xxx
metal:fill-slot=
"INNERSLOT"
>
<xxx
metal:define-slot=
"OUTERSLOT"
>
OUTERSLOT
</xxx>
</xxx>
</div>
</div>
<div
metal:use-macro=
"OUTER"
>
<span>
<xxx>
<div
metal:fill-slot=
"OUTERSLOT"
>
outer-argument
</div>
</xxx>
</span>
</div>
<div
metal:use-macro=
"OUTER"
>
</div>
lib/python/TAL/tests/output/test15.html
0 → 100644
View file @
1c76e154
<span>
<span>
INNERSLOT
</span>
</span>
<span>
<xxx>
inner-argument
</xxx>
</span>
<div>
<span>
<xxx>
<xxx>
OUTERSLOT
</xxx>
</xxx>
</span>
</div>
<div>
<span>
<xxx>
<div>
outer-argument
</div>
</xxx>
</span>
</div>
<div>
<span>
<xxx>
<xxx>
OUTERSLOT
</xxx>
</xxx>
</span>
</div>
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