Commit 6ae5b596 authored by Andreas Jung's avatar Andreas Jung

Collector #2335: older products like GadflyDA that did not

use registerClass() were registered but their visibility
flag has not been set  to Global. So these  products did not
appear in the ZMF.
parent a3023439
...@@ -4,6 +4,16 @@ Zope Changes ...@@ -4,6 +4,16 @@ Zope Changes
Change information for previous versions of Zope can be found in the Change information for previous versions of Zope can be found in the
file HISTORY.txt. file HISTORY.txt.
Changes since Zope 2.4 beta 1
Bugs fixed
- Collector #2335: older products like GadflyDA that did not
use registerClass() were registered but their visibility
flag has not been set to Global. So these products did not
appear in the ZMF.
Zope 2.4 beta 1 Zope 2.4 beta 1
Features Added Features Added
......
...@@ -84,8 +84,8 @@ ...@@ -84,8 +84,8 @@
############################################################################## ##############################################################################
__doc__='''Application support __doc__='''Application support
$Id: Application.py,v 1.154 2001/06/19 23:21:18 andreas Exp $''' $Id: Application.py,v 1.155 2001/06/26 13:45:48 andreas Exp $'''
__version__='$Revision: 1.154 $'[11:-2] __version__='$Revision: 1.155 $'[11:-2]
import Globals,Folder,os,sys,App.Product, App.ProductRegistry, misc_ import Globals,Folder,os,sys,App.Product, App.ProductRegistry, misc_
import time, traceback, os, string, Products import time, traceback, os, string, Products
...@@ -678,6 +678,7 @@ def install_product(app, product_dir, product_name, meta_types, ...@@ -678,6 +678,7 @@ def install_product(app, product_dir, product_name, meta_types,
if pname is not None: if pname is not None:
meta_type['permission']=pname meta_type['permission']=pname
meta_type['product']=productObject.id meta_type['product']=productObject.id
meta_type['visibility'] = 'Global'
meta_types.append(meta_type) meta_types.append(meta_type)
for name,method in pgetattr( for name,method in pgetattr(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment