# HG changeset patch # User Sylvain Thénault # Date 1250152323 -7200 # Node ID 0d01413ec9ae15b22301d99cdfff06597b4c317c # Parent 870fa705dfde8978c654a91c9b74c37aedae4a9f no more needs for vreg_initialization_completed hook diff -r 870fa705dfde -r 0d01413ec9ae appobject.py --- a/appobject.py Thu Aug 13 10:31:31 2009 +0200 +++ b/appobject.py Thu Aug 13 10:32:03 2009 +0200 @@ -285,10 +285,6 @@ registry.vreg.register_property(cls._cwpropkey(propid), **pdef) return cls - @classmethod - def vreg_initialization_completed(cls): - pass - def __init__(self, req=None, rset=None, row=None, col=None, **extra): super(AppObject, self).__init__() self.req = req diff -r 870fa705dfde -r 0d01413ec9ae cwvreg.py --- a/cwvreg.py Thu Aug 13 10:31:31 2009 +0200 +++ b/cwvreg.py Thu Aug 13 10:32:03 2009 +0200 @@ -50,11 +50,7 @@ self.schema = vreg.schema def initialization_completed(self): - # call vreg_initialization_completed on appobjects and print - # registry content - for appobjects in self.itervalues(): - for appobject in appobjects: - appobject.vreg_initialization_completed() + pass def render(self, __oid, req, __fallback_oid=None, rset=None, **kwargs): """select object, or fallback object if specified and the first one