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
29cb9e3a
Commit
29cb9e3a
authored
Nov 20, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added logic to make sure that the top-level user folder gets
initialized correctly.
parent
e15fe7bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
lib/python/OFS/Application.py
lib/python/OFS/Application.py
+8
-4
No files found.
lib/python/OFS/Application.py
View file @
29cb9e3a
...
...
@@ -11,8 +11,8 @@
__doc__
=
'''Application support
$Id: Application.py,v 1.2
0 1997/11/07 17:33:09
jim Exp $'''
__version__
=
'$Revision: 1.2
0
$'
[
11
:
-
2
]
$Id: Application.py,v 1.2
1 1997/11/20 13:40:28
jim Exp $'''
__version__
=
'$Revision: 1.2
1
$'
[
11
:
-
2
]
import
Globals
,
Folder
,
regex
...
...
@@ -48,8 +48,6 @@ class Application(Folder.Folder):
'standard_html_footer'
,
'acl_users'
)
__allow_groups__
=
UserFolder
()
def
_init
(
self
):
self
.
manage_addDocument
(
'standard_html_header'
,
'Standard Html Header'
,
...
...
@@ -58,6 +56,8 @@ class Application(Folder.Folder):
self
.
manage_addDocument
(
'standard_html_footer'
,
'Standard Html Footer'
,
'</BODY></HTML>'
)
self
.
__allow_groups__
=
UserFolder
()
self
.
__allow_groups__
.
_init
()
self
.
_setObject
(
'acl_users'
,
self
.
__allow_groups__
)
def
folderClass
(
self
):
return
Folder
.
Folder
...
...
@@ -235,6 +235,10 @@ if __name__ == "__main__": main()
##############################################################################
#
# $Log: Application.py,v $
# Revision 1.21 1997/11/20 13:40:28 jim
# Added logic to make sure that the top-level user folder gets
# initialized correctly.
#
# Revision 1.20 1997/11/07 17:33:09 jim
# Added code to add Application key to Bobobase if necessary.
#
...
...
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