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
251876f7
Commit
251876f7
authored
Jul 10, 2001
by
Evan Simpson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge changes from 2.4 branch
parent
bea2ab41
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
lib/python/Products/PythonScripts/PythonScript.py
lib/python/Products/PythonScripts/PythonScript.py
+6
-6
No files found.
lib/python/Products/PythonScripts/PythonScript.py
View file @
251876f7
...
...
@@ -89,7 +89,7 @@ This product provides support for Script objects containing restricted
Python code.
"""
__version__
=
'$Revision: 1.3
4
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.3
5
$'
[
11
:
-
2
]
import
sys
,
os
,
traceback
,
re
,
marshal
from
Globals
import
DTMLFile
,
MessageDialog
,
package_home
...
...
@@ -129,8 +129,9 @@ def manage_addPythonScript(self, id, REQUEST=None, submit=None):
if
REQUEST
is
not
None
:
file
=
REQUEST
.
form
.
get
(
'file'
,
''
)
if
type
(
file
)
is
not
type
(
''
):
file
=
file
.
read
()
if
file
:
self
.
_getOb
(
id
).
write
(
file
)
if
not
file
:
file
=
open
(
_default_file
).
read
()
self
.
_getOb
(
id
).
write
(
file
)
try
:
u
=
self
.
DestinationURL
()
except
:
u
=
REQUEST
[
'URL1'
]
if
submit
==
" Add and Edit "
:
u
=
"%s/%s"
%
(
u
,
quote
(
id
))
...
...
@@ -170,7 +171,7 @@ class PythonScript(Script, Historical, Cacheable):
def
__init__
(
self
,
id
):
self
.
id
=
id
self
.
ZBindings_edit
(
defaultBindings
)
self
.
_
body
=
open
(
_default_file
).
read
()
self
.
_
makeFunction
()
security
=
AccessControl
.
ClassSecurityInfo
()
...
...
@@ -468,8 +469,7 @@ class PythonScript(Script, Historical, Cacheable):
if
bup
:
self
.
_setupBindings
(
bindmap
)
if
self
.
_p_changed
:
self
.
_makeFunction
()
self
.
_makeFunction
()
except
:
LOG
(
self
.
meta_type
,
ERROR
,
'write failed'
,
error
=
sys
.
exc_info
())
raise
...
...
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