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
a35042e0
Commit
a35042e0
authored
Nov 07, 1997
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added role mgmt to Application object
parent
ba21d442
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
2 deletions
+33
-2
lib/python/OFS/Application.py
lib/python/OFS/Application.py
+33
-2
No files found.
lib/python/OFS/Application.py
View file @
a35042e0
...
...
@@ -11,8 +11,8 @@
__doc__
=
'''Application support
$Id: Application.py,v 1.1
8 1997/11/07 16:09:59 jim
Exp $'''
__version__
=
'$Revision: 1.1
8
$'
[
11
:
-
2
]
$Id: Application.py,v 1.1
9 1997/11/07 17:11:48 brian
Exp $'''
__version__
=
'$Revision: 1.1
9
$'
[
11
:
-
2
]
import
Globals
,
Folder
,
regex
...
...
@@ -90,6 +90,34 @@ class Application(Folder.Folder):
"""Utility function to return current date/time"""
return
DateTime
()
def
manage_addRole
(
self
,
REQUEST
,
role
):
""" """
roles
=
list
(
self
.
__defined_roles__
)
if
role
not
in
roles
:
roles
.
append
(
role
)
roles
.
sort
()
self
.
__defined_roles__
=
tuple
(
roles
)
try
:
roles
=
self
.
__roles__
except
:
roles
=
[]
if
roles
is
None
:
roles
=
[]
roles
.
append
(
role
)
self
.
__roles__
=
roles
return
self
.
manage_rolesForm
(
self
,
REQUEST
)
def
manage_deleteRole
(
self
,
REQUEST
,
role
):
""" """
roles
=
list
(
self
.
__defined_roles__
)
if
role
in
roles
:
del
roles
[
roles
.
index
(
role
)]
self
.
__defined_roles__
=
tuple
(
roles
)
def
validRoles
(
self
):
return
self
.
__defined_roles__
def
open_bobobase
():
# Open the application database
Bobobase
=
Globals
.
Bobobase
=
Globals
.
PickleDictionary
(
Globals
.
BobobaseName
)
...
...
@@ -196,6 +224,9 @@ if __name__ == "__main__": main()
##############################################################################
#
# $Log: Application.py,v $
# Revision 1.19 1997/11/07 17:11:48 brian
# Added role mgmt to Application object
#
# Revision 1.18 1997/11/07 16:09:59 jim
# Added __bobo_traverse__ machinery in support of sessions.
# Updated product installation logic to give OFS special treatment.
...
...
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