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
8b34ba90
Commit
8b34ba90
authored
Dec 18, 1997
by
Jeffrey Shell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more ImageFile tweaks
parent
9e77c365
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
lib/python/AccessControl/User.py
lib/python/AccessControl/User.py
+5
-1
lib/python/AccessControl/UserFolder_manage_main.dtml
lib/python/AccessControl/UserFolder_manage_main.dtml
+1
-1
lib/python/OFS/ObjectManager.py
lib/python/OFS/ObjectManager.py
+8
-2
No files found.
lib/python/AccessControl/User.py
View file @
8b34ba90
"""Access control package"""
__version__
=
'$Revision: 1.2
2
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.2
3
$'
[
11
:
-
2
]
import
Globals
from
Persistence
import
Persistent
...
...
@@ -95,6 +95,7 @@ class UserFolder(Persistent, Item, Implicit, Management):
title
=
'User Folder'
icon
=
'UserFolderIcon'
UserFolderIcon
=
ImageFile
(
'www/UserFolder_icon.gif'
,
globals
())
UserIcon
=
ImageFile
(
'www/User_icon.gif'
,
globals
())
isPrincipiaFolderish
=
1
isAUserFolder
=
1
...
...
@@ -266,6 +267,9 @@ class UserFolderHandler:
# $Log: User.py,v $
# Revision 1.23 1997/12/18 21:12:47 jeffrey
# more ImageFile tweaks
#
# Revision 1.22 1997/12/18 16:45:28 jeffrey
# changeover to new ImageFile and HTMLFile handling
#
...
...
lib/python/AccessControl/UserFolder_manage_main.dtml
View file @
8b34ba90
...
...
@@ -18,7 +18,7 @@ that user.
</TD>
<TD ALIGN="LEFT" VALIGN="TOP">
<A HREF="manage_editForm?name=<!--#var sequence-item fmt=url-quote-->">
<IMG SRC="
<!--#var SOFTWARE_URL-->/AccessControl/User_icon.gif
"
<IMG SRC="
UserIcon
"
ALT="Click to edit this user" BORDER="0">
</A>
<A HREF="manage_editForm?name=<!--#var sequence-item fmt=url-quote-->">
...
...
lib/python/OFS/ObjectManager.py
View file @
8b34ba90
__doc__
=
"""Object Manager
$Id: ObjectManager.py,v 1.2
5 1997/12/18 16:45:41
jeffrey Exp $"""
$Id: ObjectManager.py,v 1.2
6 1997/12/18 21:12:49
jeffrey Exp $"""
__version__
=
'$Revision: 1.2
5
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.2
6
$'
[
11
:
-
2
]
from
SingleThreadedTransaction
import
Persistent
...
...
@@ -40,6 +40,9 @@ class ObjectManager(Acquirer,Management,Persistent):
Plus_icon
=
ImageFile
(
'TreeDisplay/www/Plus_icon.gif'
)
Minus_icon
=
ImageFile
(
'TreeDisplay/www/Minus_icon.gif'
)
UpFolderIcon
=
ImageFile
(
'www/UpFolder_icon.gif'
,
globals
())
Help_icon
=
ImageFile
(
'www/Help_icon.gif'
,
globals
())
manage_options
=
(
{
'icon'
:
icon
,
'label'
:
'Objects'
,
'action'
:
'manage_main'
,
'target'
:
'manage_main'
},
...
...
@@ -461,6 +464,9 @@ class ObjectManager(Acquirer,Management,Persistent):
##############################################################################
#
# $Log: ObjectManager.py,v $
# Revision 1.26 1997/12/18 21:12:49 jeffrey
# more ImageFile tweaks
#
# Revision 1.25 1997/12/18 16:45:41 jeffrey
# changeover to new ImageFile and HTMLFile handling
#
...
...
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