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
f6a1ea6d
Commit
f6a1ea6d
authored
May 24, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added target for help. Also, changed filtered_manage_options to
exclude tabs it can't find. (Does this hurt anything?)
parent
ef5f7ab3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lib/python/App/Management.py
lib/python/App/Management.py
+6
-4
No files found.
lib/python/App/Management.py
View file @
f6a1ea6d
...
...
@@ -85,9 +85,9 @@
"""Standard management interface support
$Id: Management.py,v 1.2
3 1999/05/24 19:14
:27 jim Exp $"""
$Id: Management.py,v 1.2
4 1999/05/24 21:00
:27 jim Exp $"""
__version__
=
'$Revision: 1.2
3
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.2
4
$'
[
11
:
-
2
]
import
sys
,
Globals
,
ExtensionClass
from
Dialogs
import
MessageDialog
...
...
@@ -116,7 +116,7 @@ class Tabs(ExtensionClass.Base):
def
filtered_manage_options
(
self
,
REQUEST
=
None
,
help_option_
=
({
'label'
:
'Help'
,
'action'
:
'manage_help'
,
},),
'target'
:
"z_help_wnd"
},),
):
if
REQUEST
is
None
:
if
hasattr
(
self
,
'REQUEST'
):
...
...
@@ -152,7 +152,9 @@ class Tabs(ExtensionClass.Base):
except
:
o
=
None
if
o
is
None
:
result
.
append
(
d
)
# Waaaa
if
o
is
None
:
continue
result
.
append
(
d
)
# Waaaa
# Get the roles and check for public methods
try
:
roles
=
o
.
__roles__
...
...
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