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
60767845
Commit
60767845
authored
May 24, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed Find frame recursion bug.
parent
a14ffc2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
lib/python/App/manage_tabs.dtml
lib/python/App/manage_tabs.dtml
+4
-2
lib/python/OFS/Folder.py
lib/python/OFS/Folder.py
+3
-3
No files found.
lib/python/App/manage_tabs.dtml
View file @
60767845
...
...
@@ -53,14 +53,16 @@
<td bgcolor="#ffffff" valign="bottom"
align="center"><font face="Verdana, Arial, Helvetica"
size="1"> <a
href="<!--#var action-->"><font
href="<!--#var action-->"<!--#if target--> target="<!--#var
target-->"<!--#endif-->><font
color="#000000"><strong><!--#var
label--></strong></font></a> </font></td>
<!--#else-->
<td bgcolor="#efefef" valign="bottom"
align="center"><font face="Verdana, Arial, Helvetica"
size="1"> <a
href="<!--#var action-->"><font
href="<!--#var action-->"<!--#if target--> target="<!--#var
target-->"<!--#endif-->><font
color="#000000"><strong><!--#var
label--></strong></font></a> </font></td>
<!--#endif-->
...
...
lib/python/OFS/Folder.py
View file @
60767845
...
...
@@ -87,9 +87,9 @@
Folders are the basic container objects and are analogous to directories.
$Id: Folder.py,v 1.7
8 1999/04/06 20:52:03
brian Exp $"""
$Id: Folder.py,v 1.7
9 1999/05/24 17:49:04
brian Exp $"""
__version__
=
'$Revision: 1.7
8
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.7
9
$'
[
11
:
-
2
]
import
Globals
,
SimpleItem
from
ObjectManager
import
ObjectManager
...
...
@@ -135,7 +135,7 @@ class Folder(ObjectManager, PropertyManager, RoleManager, Collection,
{
'label'
:
'Import/Export'
,
'action'
:
'manage_importExportForm'
},
{
'label'
:
'Security'
,
'action'
:
'manage_access'
},
{
'label'
:
'Undo'
,
'action'
:
'manage_UndoForm'
},
{
'label'
:
'Find'
,
'action'
:
'manage_findFrame'
},
{
'label'
:
'Find'
,
'action'
:
'manage_findFrame'
,
'target'
:
'manage_main'
},
)
__ac_permissions__
=
()
...
...
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