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
067d4ac4
Commit
067d4ac4
authored
Dec 01, 2000
by
Michel Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
took out self arguments
parent
e8bcab93
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
lib/python/Products/PythonScripts/help/PythonScript.py
lib/python/Products/PythonScripts/help/PythonScript.py
+5
-5
No files found.
lib/python/Products/PythonScripts/help/PythonScript.py
View file @
067d4ac4
...
...
@@ -152,7 +152,7 @@ class PythonScript:
"""
def
ZPythonScriptHTML_editAction
(
self
,
REQUEST
,
title
,
params
,
body
):
def
ZPythonScriptHTML_editAction
(
REQUEST
,
title
,
params
,
body
):
"""
Change the script's main parameters. This method accepts the
...
...
@@ -174,7 +174,7 @@ class PythonScript:
"""
def
ZPythonScript_setTitle
(
self
,
title
):
def
ZPythonScript_setTitle
(
title
):
"""
Change the script's title. This method accepts one argument,
...
...
@@ -183,7 +183,7 @@ class PythonScript:
"""
def
ZPythonScript_edit
(
self
,
params
,
body
):
def
ZPythonScript_edit
(
params
,
body
):
"""
Change the parameters and body of the script. This method accepts
...
...
@@ -200,7 +200,7 @@ class PythonScript:
"""
def
ZPythonScriptHTML_upload
(
self
,
REQUEST
,
file
=
''
):
def
ZPythonScriptHTML_upload
(
REQUEST
,
file
=
''
):
"""
Replace the body of the script with the text in file.
...
...
@@ -231,7 +231,7 @@ class PythonScript:
"""
def
document_src
(
self
,
REQUEST
=
None
,
RESPONSE
=
None
):
def
document_src
(
REQUEST
=
None
,
RESPONSE
=
None
):
"""
Return unprocessed document source.
...
...
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