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
cf626173
Commit
cf626173
authored
Mar 04, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added comment and raise tags.
parent
f582026b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
lib/python/DocumentTemplate/DT_String.py
lib/python/DocumentTemplate/DT_String.py
+7
-2
No files found.
lib/python/DocumentTemplate/DT_String.py
View file @
cf626173
from
string
import
*
import
DT_Doc
,
DT_Var
,
DT_In
,
DT_If
,
regex
import
DT_Doc
,
DT_Var
,
DT_In
,
DT_If
,
regex
,
DT_Raise
Var
=
DT_Var
.
Var
from
DT_Util
import
*
from
DT_Comment
import
Comment
class
String
:
__doc__
=
DT_Doc
.
String__doc__
...
...
@@ -29,6 +30,8 @@ class String:
'if'
:
DT_If
.
If
,
'unless'
:
DT_If
.
Unless
,
'else'
:
DT_If
.
Else
,
'comment'
:
Comment
,
'raise'
:
DT_Raise
.
Raise
,
}
def
SubTemplate
(
self
,
name
):
return
String
(
''
,
__name__
=
name
)
...
...
@@ -161,7 +164,9 @@ class String:
sargs=args
sstart=start
else:
try: result.append(scommand(blocks))
try:
if scommand is not Comment:
result.append(scommand(blocks))
except ParseError, m: self.parse_error(m[0],stag,text,l)
return start
...
...
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