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
237078f0
Commit
237078f0
authored
Jan 09, 2001
by
Evan Simpson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made manage_form_title a DTMLFile with keyword parameters.
parent
dc08f92c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lib/python/App/Management.py
lib/python/App/Management.py
+5
-3
No files found.
lib/python/App/Management.py
View file @
237078f0
...
...
@@ -85,9 +85,9 @@
"""Standard management interface support
$Id: Management.py,v 1.3
7 2001/01/09 21:48:40
evan Exp $"""
$Id: Management.py,v 1.3
8 2001/01/09 23:42:07
evan Exp $"""
__version__
=
'$Revision: 1.3
7
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.3
8
$'
[
11
:
-
2
]
import
sys
,
Globals
,
ExtensionClass
,
urllib
from
Dialogs
import
MessageDialog
...
...
@@ -215,10 +215,12 @@ class Navigation(ExtensionClass.Base):
manage_page_footer
=
HTMLFile
(
'dtml/manage_page_footer'
,
globals
())
manage_form_title__roles__
=
None
manage_form_title
=
H
TMLFile
(
'dtml/manage_form_title'
,
globals
(),
manage_form_title
=
D
TMLFile
(
'dtml/manage_form_title'
,
globals
(),
form_title
=
'Add Form'
,
help_product
=
None
,
help_topic
=
None
)
manage_form_title
.
_setFuncSignature
(
varnames
=
(
'form_title'
,
'help_product'
,
'help_topic'
)
)
manage_copyright__roles__
=
None
manage_copyright
=
HTMLFile
(
'dtml/copyright'
,
globals
())
...
...
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