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
749228b3
Commit
749228b3
authored
Dec 18, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added check for CVS directory.
parent
ebc06e59
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lib/python/OFS/Application.py
lib/python/OFS/Application.py
+6
-2
No files found.
lib/python/OFS/Application.py
View file @
749228b3
...
...
@@ -11,8 +11,8 @@
__doc__
=
'''Application support
$Id: Application.py,v 1.2
7 1997/12/18 16:45:38 jeffrey
Exp $'''
__version__
=
'$Revision: 1.2
7
$'
[
11
:
-
2
]
$Id: Application.py,v 1.2
8 1997/12/18 17:10:40 jim
Exp $'''
__version__
=
'$Revision: 1.2
8
$'
[
11
:
-
2
]
import
Globals
,
Folder
,
os
,
regex
,
sys
...
...
@@ -174,6 +174,7 @@ def install_products():
for
product_name
in
os
.
listdir
(
product_dir
):
if
not
isdir
(
path_join
(
product_dir
,
product_name
)):
continue
if
product_name
==
'CVS'
:
continue
product
=
__import__
(
product_name
)
for
meta_type
in
product
.
meta_types
:
if
product_name
==
'OFS'
:
meta_types
.
insert
(
0
,
meta_type
)
...
...
@@ -235,6 +236,9 @@ def install_products():
##############################################################################
#
# $Log: Application.py,v $
# Revision 1.28 1997/12/18 17:10:40 jim
# Added check for CVS directory.
#
# Revision 1.27 1997/12/18 16:45:38 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