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
92f0c4a0
Commit
92f0c4a0
authored
Sep 08, 1998
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added str to DT_Util import to address pickling lamosities
parent
e28781df
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
31 additions
and
19 deletions
+31
-19
lib/python/DocumentTemplate/DT_HTML.py
lib/python/DocumentTemplate/DT_HTML.py
+2
-2
lib/python/DocumentTemplate/DT_If.py
lib/python/DocumentTemplate/DT_If.py
+6
-3
lib/python/DocumentTemplate/DT_In.py
lib/python/DocumentTemplate/DT_In.py
+6
-3
lib/python/DocumentTemplate/DT_Raise.py
lib/python/DocumentTemplate/DT_Raise.py
+6
-3
lib/python/DocumentTemplate/DT_String.py
lib/python/DocumentTemplate/DT_String.py
+2
-2
lib/python/DocumentTemplate/DT_Var.py
lib/python/DocumentTemplate/DT_Var.py
+6
-3
lib/python/DocumentTemplate/DT_With.py
lib/python/DocumentTemplate/DT_With.py
+3
-3
No files found.
lib/python/DocumentTemplate/DT_HTML.py
View file @
92f0c4a0
...
...
@@ -54,11 +54,11 @@
"""HTML formated DocumentTemplates
$Id: DT_HTML.py,v 1.
9 1998/09/02 21:06:03
jim Exp $"""
$Id: DT_HTML.py,v 1.
10 1998/09/08 15:05:30
jim Exp $"""
from
DT_String
import
String
,
FileMixin
import
DT_String
,
regex
from
DT_Util
import
ParseError
from
DT_Util
import
ParseError
,
str
from
string
import
strip
,
find
,
split
,
join
class
dtml_re_class
:
...
...
lib/python/DocumentTemplate/DT_If.py
View file @
92f0c4a0
...
...
@@ -117,10 +117,10 @@ __doc__='''Conditional insertion
variable is not reevaluated.
'''
__rcs_id__
=
'$Id: DT_If.py,v 1.1
1 1998/09/02 21:06:03
jim Exp $'
__version__
=
'$Revision: 1.1
1
$'
[
11
:
-
2
]
__rcs_id__
=
'$Id: DT_If.py,v 1.1
2 1998/09/08 15:05:31
jim Exp $'
__version__
=
'$Revision: 1.1
2
$'
[
11
:
-
2
]
from
DT_Util
import
ParseError
,
parse_params
,
name_param
from
DT_Util
import
ParseError
,
parse_params
,
name_param
,
str
class
If
:
blockContinuations
=
'else'
,
'elif'
...
...
@@ -184,6 +184,9 @@ class Else(Unless):
##########################################################################
#
# $Log: DT_If.py,v $
# Revision 1.12 1998/09/08 15:05:31 jim
# added str to DT_Util import to address pickling lamosities
#
# Revision 1.11 1998/09/02 21:06:03 jim
# many changes for thread safety, bug fixes, and faster import
#
...
...
lib/python/DocumentTemplate/DT_In.py
View file @
92f0c4a0
...
...
@@ -349,10 +349,10 @@
'''
#'
__rcs_id__
=
'$Id: DT_In.py,v 1.2
7 1998/09/02 21:06:04
jim Exp $'
__version__
=
'$Revision: 1.2
7
$'
[
11
:
-
2
]
__rcs_id__
=
'$Id: DT_In.py,v 1.2
8 1998/09/08 15:05:31
jim Exp $'
__version__
=
'$Revision: 1.2
8
$'
[
11
:
-
2
]
from
DT_Util
import
ParseError
,
parse_params
,
name_param
from
DT_Util
import
ParseError
,
parse_params
,
name_param
,
str
from
DT_Util
import
render_blocks
,
InstanceDict
from
string
import
find
,
atoi
,
join
import
ts_regex
...
...
@@ -690,6 +690,9 @@ def int_param(params,md,name,default=0, st=type('')):
############################################################################
# $Log: DT_In.py,v $
# Revision 1.28 1998/09/08 15:05:31 jim
# added str to DT_Util import to address pickling lamosities
#
# Revision 1.27 1998/09/02 21:06:04 jim
# many changes for thread safety, bug fixes, and faster import
#
...
...
lib/python/DocumentTemplate/DT_Raise.py
View file @
92f0c4a0
...
...
@@ -65,10 +65,10 @@
<!--#/if-->
'''
__rcs_id__
=
'$Id: DT_Raise.py,v 1.
6 1998/09/02 21:06:04
jim Exp $'
__version__
=
'$Revision: 1.
6
$'
[
11
:
-
2
]
__rcs_id__
=
'$Id: DT_Raise.py,v 1.
7 1998/09/08 15:05:31
jim Exp $'
__version__
=
'$Revision: 1.
7
$'
[
11
:
-
2
]
from
DT_Util
import
parse_params
,
name_param
,
render_blocks
from
DT_Util
import
parse_params
,
name_param
,
render_blocks
,
str
class
Raise
:
blockContinuations
=
()
...
...
@@ -103,6 +103,9 @@ class Raise:
##########################################################################
#
# $Log: DT_Raise.py,v $
# Revision 1.7 1998/09/08 15:05:31 jim
# added str to DT_Util import to address pickling lamosities
#
# Revision 1.6 1998/09/02 21:06:04 jim
# many changes for thread safety, bug fixes, and faster import
#
...
...
lib/python/DocumentTemplate/DT_String.py
View file @
92f0c4a0
...
...
@@ -51,12 +51,12 @@
# (540) 371-6909
#
##############################################################################
"$Id: DT_String.py,v 1.1
6 1998/09/02 21:16:45
jim Exp $"
"$Id: DT_String.py,v 1.1
7 1998/09/08 15:05:32
jim Exp $"
from
string
import
split
,
strip
import
regex
,
ts_regex
from
DT_Util
import
ParseError
,
InstanceDict
,
TemplateDict
,
render_blocks
from
DT_Util
import
ParseError
,
InstanceDict
,
TemplateDict
,
render_blocks
,
str
from
DT_Var
import
Var
,
Call
,
Comment
...
...
lib/python/DocumentTemplate/DT_Var.py
View file @
92f0c4a0
...
...
@@ -164,10 +164,10 @@ Evaluating expressions without rendering results
'''
# '
__rcs_id__
=
'$Id: DT_Var.py,v 1.1
7 1998/09/02 21:06:05
jim Exp $'
__version__
=
'$Revision: 1.1
7
$'
[
11
:
-
2
]
__rcs_id__
=
'$Id: DT_Var.py,v 1.1
8 1998/09/08 15:05:32
jim Exp $'
__version__
=
'$Revision: 1.1
8
$'
[
11
:
-
2
]
from
DT_Util
import
parse_params
,
name_param
,
html_quote
from
DT_Util
import
parse_params
,
name_param
,
html_quote
,
str
import
regex
,
string
,
sys
,
regex
from
string
import
find
,
split
,
join
...
...
@@ -390,6 +390,9 @@ class Comment:
############################################################################
# $Log: DT_Var.py,v $
# Revision 1.18 1998/09/08 15:05:32 jim
# added str to DT_Util import to address pickling lamosities
#
# Revision 1.17 1998/09/02 21:06:05 jim
# many changes for thread safety, bug fixes, and faster import
#
...
...
lib/python/DocumentTemplate/DT_With.py
View file @
92f0c4a0
...
...
@@ -75,10 +75,10 @@
'''
__rcs_id__
=
'$Id: DT_With.py,v 1.
3 1998/09/02 21:06:06
jim Exp $'
__version__
=
'$Revision: 1.
3
$'
[
11
:
-
2
]
__rcs_id__
=
'$Id: DT_With.py,v 1.
4 1998/09/08 15:05:32
jim Exp $'
__version__
=
'$Revision: 1.
4
$'
[
11
:
-
2
]
from
DT_Util
import
parse_params
,
name_param
,
InstanceDict
,
render_blocks
from
DT_Util
import
parse_params
,
name_param
,
InstanceDict
,
render_blocks
,
str
class
With
:
blockContinuations
=
()
...
...
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