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
069c4d34
Commit
069c4d34
authored
Sep 08, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleaned up some imports
parent
ef7fe698
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
lib/python/DocumentTemplate/DT_HTML.py
lib/python/DocumentTemplate/DT_HTML.py
+2
-2
lib/python/DocumentTemplate/DT_Util.py
lib/python/DocumentTemplate/DT_Util.py
+3
-3
lib/python/DocumentTemplate/DT_Var.py
lib/python/DocumentTemplate/DT_Var.py
+6
-3
No files found.
lib/python/DocumentTemplate/DT_HTML.py
View file @
069c4d34
...
@@ -54,12 +54,12 @@
...
@@ -54,12 +54,12 @@
"""HTML formated DocumentTemplates
"""HTML formated DocumentTemplates
$Id: DT_HTML.py,v 1.1
0 1998/09/08 15:05:30
jim Exp $"""
$Id: DT_HTML.py,v 1.1
1 1998/09/08 16:12:23
jim Exp $"""
from
DT_String
import
String
,
FileMixin
from
DT_String
import
String
,
FileMixin
import
DT_String
,
regex
import
DT_String
,
regex
from
DT_Util
import
ParseError
,
str
from
DT_Util
import
ParseError
,
str
from
string
import
strip
,
find
,
split
,
join
from
string
import
strip
,
find
,
split
,
join
,
rfind
class
dtml_re_class
:
class
dtml_re_class
:
...
...
lib/python/DocumentTemplate/DT_Util.py
View file @
069c4d34
...
@@ -51,11 +51,11 @@
...
@@ -51,11 +51,11 @@
# (540) 371-6909
# (540) 371-6909
#
#
##############################################################################
##############################################################################
'''$Id: DT_Util.py,v 1.4
4 1998/09/08 16:06:5
3 jim Exp $'''
'''$Id: DT_Util.py,v 1.4
5 1998/09/08 16:12:2
3 jim Exp $'''
__version__
=
'$Revision: 1.4
4
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.4
5
$'
[
11
:
-
2
]
import
regex
,
string
,
math
,
os
import
regex
,
string
,
math
,
os
from
string
import
rfind
,
strip
,
join
,
atoi
,
lower
,
capitalize
,
split
,
find
from
string
import
strip
,
join
,
atoi
,
lower
,
split
,
find
import
VSEval
import
VSEval
str
=
__builtins__
[
'str'
]
# Waaaaa, waaaaaaaa needed for pickling waaaaa
str
=
__builtins__
[
'str'
]
# Waaaaa, waaaaaaaa needed for pickling waaaaa
...
...
lib/python/DocumentTemplate/DT_Var.py
View file @
069c4d34
...
@@ -164,12 +164,12 @@ Evaluating expressions without rendering results
...
@@ -164,12 +164,12 @@ Evaluating expressions without rendering results
'''
# '
'''
# '
__rcs_id__
=
'$Id: DT_Var.py,v 1.
19 1998/09/08 15:55:46
jim Exp $'
__rcs_id__
=
'$Id: DT_Var.py,v 1.
20 1998/09/08 16:12:24
jim Exp $'
__version__
=
'$Revision: 1.
19
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
20
$'
[
11
:
-
2
]
from
DT_Util
import
parse_params
,
name_param
,
html_quote
,
str
from
DT_Util
import
parse_params
,
name_param
,
html_quote
,
str
import
regex
,
string
,
sys
,
regex
import
regex
,
string
,
sys
,
regex
from
string
import
find
,
split
,
join
,
atoi
from
string
import
find
,
split
,
join
,
atoi
,
rfind
class
Var
:
class
Var
:
name
=
'var'
name
=
'var'
...
@@ -390,6 +390,9 @@ class Comment:
...
@@ -390,6 +390,9 @@ class Comment:
############################################################################
############################################################################
# $Log: DT_Var.py,v $
# $Log: DT_Var.py,v $
# Revision 1.20 1998/09/08 16:12:24 jim
# cleaned up some imports
#
# Revision 1.19 1998/09/08 15:55:46 jim
# Revision 1.19 1998/09/08 15:55:46 jim
# Added atoi to string import.
# Added atoi to string import.
#
#
...
...
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