Commit 494de48b authored by Romain Courteaud's avatar Romain Courteaud

Change indentation.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@13410 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8a11ed75
############################################################################## ##############################################################################
# #
# Copyright (c) 2002-2003 Nexedi SARL and Contributors. All Rights Reserved. # Copyright (c) 2002-2007 Nexedi SARL and Contributors. All Rights Reserved.
# Jean-Paul Smets-Solanes <jp@nexedi.com> # Jean-Paul Smets-Solanes <jp@nexedi.com>
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
...@@ -30,71 +30,72 @@ from Base import func_code, type_definition, list_types, ATTRIBUTE_PREFIX, Metho ...@@ -30,71 +30,72 @@ from Base import func_code, type_definition, list_types, ATTRIBUTE_PREFIX, Metho
from Products.ERP5Type.PsycoWrapper import psyco from Products.ERP5Type.PsycoWrapper import psyco
class DefaultGetter(Method): class DefaultGetter(Method):
""" """
Gets a default reference object Gets a default reference object
""" """
_need__name__=1 _need__name__=1
# Generic Definition of Method Object # Generic Definition of Method Object
# This is required to call the method form the Web # This is required to call the method form the Web
func_code = func_code() func_code = func_code()
func_code.co_varnames = ('self', ) func_code.co_varnames = ('self', )
func_code.co_argcount = 1 func_code.co_argcount = 1
func_defaults = () func_defaults = ()
def __init__(self, id, key, warning=0): def __init__(self, id, key, warning=0):
self._id = id self._id = id
self.__name__ = id self.__name__ = id
self._key = key self._key = key
self._warning = warning self._warning = warning
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getDefaultRelatedProperty(self._key, 'relative_url', return instance._getDefaultRelatedProperty(
spec=kw.get('spec',()), self._key, 'relative_url',
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',())) filter=kw.get('filter', None),
portal_type=kw.get('portal_type',()))
psyco.bind(__call__) psyco.bind(__call__)
Getter = DefaultGetter Getter = DefaultGetter
class ListGetter(Method): class ListGetter(Method):
""" """
Gets a list of reference objects Gets a list of reference objects
""" """
_need__name__=1 _need__name__=1
# Generic Definition of Method Object # Generic Definition of Method Object
# This is required to call the method form the Web # This is required to call the method form the Web
func_code = func_code() func_code = func_code()
func_code.co_varnames = ('self', ) func_code.co_varnames = ('self', )
func_code.co_argcount = 1 func_code.co_argcount = 1
func_defaults = () func_defaults = ()
def __init__(self, id, key, warning=0): def __init__(self, id, key, warning=0):
self._id = id self._id = id
self.__name__ = id self.__name__ = id
self._key = key self._key = key
self._warning = warning self._warning = warning
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getRelatedPropertyList(self._key, 'relative_url', return instance._getRelatedPropertyList(
spec=kw.get('spec',()), self._key, 'relative_url',
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',())) filter=kw.get('filter', None),
portal_type=kw.get('portal_type',()))
psyco.bind(__call__) psyco.bind(__call__)
class SetGetter(ListGetter): class SetGetter(ListGetter):
""" """
Gets a category value set Gets a category value set
""" """
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
result_list = ListGetter.__call__(self, instance, *args, **kw) result_list = ListGetter.__call__(self, instance, *args, **kw)
result_set = dict([(x, 0) for x in result_list]).keys() result_set = dict([(x, 0) for x in result_list]).keys()
return result_set return result_set
############################################################################## ##############################################################################
# #
# Copyright (c) 2002-2003 Nexedi SARL and Contributors. All Rights Reserved. # Copyright (c) 2002-2007 Nexedi SARL and Contributors. All Rights Reserved.
# Jean-Paul Smets-Solanes <jp@nexedi.com> # Jean-Paul Smets-Solanes <jp@nexedi.com>
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
...@@ -30,120 +30,126 @@ from Base import func_code, type_definition, list_types, ATTRIBUTE_PREFIX, Metho ...@@ -30,120 +30,126 @@ from Base import func_code, type_definition, list_types, ATTRIBUTE_PREFIX, Metho
from Products.ERP5Type.PsycoWrapper import psyco from Products.ERP5Type.PsycoWrapper import psyco
class DefaultGetter(Method): class DefaultGetter(Method):
"""
Gets a default reference object
"""
_need__name__=1
# Generic Definition of Method Object
# This is required to call the method form the Web
func_code = func_code()
func_code.co_varnames = ('self', )
func_code.co_argcount = 1
func_defaults = ()
def __init__(self, id, key, warning=0):
"""
'warning' argument means that this category is deprecated in the
property sheet, so the generated method will also be deprecated
""" """
Gets a default reference object self._id = id
""" self.__name__ = id
_need__name__=1 self._key = key
self._warning = warning
# Generic Definition of Method Object
# This is required to call the method form the Web def __call__(self, instance, *args, **kw):
func_code = func_code() if self._warning:
func_code.co_varnames = ('self', ) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
func_code.co_argcount = 1 return instance._getDefaultRelatedValue(
func_defaults = () self._key,
spec=kw.get('spec',()),
def __init__(self, id, key, warning=0): filter=kw.get('filter', None),
""" 'warning' argument means that this category is deprecated in the portal_type=kw.get('portal_type',()),
property sheet, so the generated method will also be deprecated """ strict_membership=kw.get('strict_membership',
self._id = id kw.get('strict', None))) # 'strict' is deprecated
self.__name__ = id
self._key = key psyco.bind(__call__)
self._warning = warning
def __call__(self, instance, *args, **kw):
if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getDefaultRelatedValue(self._key,
spec=kw.get('spec',()),
filter=kw.get('filter', None),
portal_type=kw.get('portal_type',()),
strict_membership=kw.get('strict_membership',
kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__)
Getter = DefaultGetter Getter = DefaultGetter
class ListGetter(Method): class ListGetter(Method):
"""
Gets a list of reference objects
"""
_need__name__=1
# Generic Definition of Method Object
# This is required to call the method form the Web
func_code = func_code()
func_code.co_varnames = ('self', )
func_code.co_argcount = 1
func_defaults = ()
def __init__(self, id, key, warning=0):
""" """
Gets a list of reference objects 'warning' argument means that this category is deprecated in the
property sheet, so the generated method will also be deprecated
""" """
_need__name__=1 self._id = id
self.__name__ = id
# Generic Definition of Method Object self._key = key
# This is required to call the method form the Web self._warning = warning
func_code = func_code()
func_code.co_varnames = ('self', ) def __call__(self, instance, *args, **kw):
func_code.co_argcount = 1 if self._warning:
func_defaults = () LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getRelatedValueList(
def __init__(self, id, key, warning=0): self._key,
""" 'warning' argument means that this category is deprecated in the spec=kw.get('spec',()),
property sheet, so the generated method will also be deprecated """ filter=kw.get('filter', None),
self._id = id portal_type=kw.get('portal_type',()),
self.__name__ = id strict_membership=kw.get('strict_membership',
self._key = key kw.get('strict', None))) # 'strict' is deprecated
self._warning = warning
psyco.bind(__call__)
def __call__(self, instance, *args, **kw):
if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getRelatedValueList(self._key,
spec=kw.get('spec',()),
filter=kw.get('filter', None),
portal_type=kw.get('portal_type',()),
strict_membership=kw.get('strict_membership',
kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__)
class SetGetter(ListGetter): class SetGetter(ListGetter):
""" """
Gets a category value set Gets a category value set
""" """
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
result_list = ListGetter.__call__(self, instance, *args, **kw) result_list = ListGetter.__call__(self, instance, *args, **kw)
result_set = dict([(x, 0) for x in result_list]).keys() result_set = dict([(x, 0) for x in result_list]).keys()
return result_set return result_set
class DefaultIdGetter(Method): class DefaultIdGetter(Method):
""" """
Gets a default reference object Gets a default reference object
""" """
_need__name__=1 _need__name__=1
# Generic Definition of Method Object # Generic Definition of Method Object
# This is required to call the method form the Web # This is required to call the method form the Web
func_code = func_code() func_code = func_code()
func_code.co_varnames = ('self', ) func_code.co_varnames = ('self', )
func_code.co_argcount = 1 func_code.co_argcount = 1
func_defaults = () func_defaults = ()
def __init__(self, id, key, warning=0): def __init__(self, id, key, warning=0):
self._id = id self._id = id
self.__name__ = id self.__name__ = id
self._key = key self._key = key
self._warning = warning self._warning = warning
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getDefaultRelatedProperty(self._key, 'id', return instance._getDefaultRelatedProperty(
spec=kw.get('spec',()), self._key, 'id',
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',()), filter=kw.get('filter', None),
strict_membership=kw.get('strict_membership', portal_type=kw.get('portal_type',()),
kw.get('strict', None))) # 'strict' is deprecated strict_membership=kw.get('strict_membership',
kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__)
psyco.bind(__call__)
IdGetter = DefaultIdGetter IdGetter = DefaultIdGetter
class IdListGetter(Method): class IdListGetter(Method):
""" """
Gets a list of reference objects Gets a list of reference objects
""" """
_need__name__=1 _need__name__=1
...@@ -163,165 +169,169 @@ class IdListGetter(Method): ...@@ -163,165 +169,169 @@ class IdListGetter(Method):
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getRelatedPropertyList(self._key, 'id', return instance._getRelatedPropertyList(
spec=kw.get('spec',()), self._key, 'id',
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',()), filter=kw.get('filter', None),
strict_membership=kw.get('strict_membership', portal_type=kw.get('portal_type',()),
kw.get('strict', None))) # 'strict' is deprecated strict_membership=kw.get('strict_membership',
kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__) psyco.bind(__call__)
class IdSetGetter(IdListGetter): class IdSetGetter(IdListGetter):
""" """
Gets a category value set Gets a category value set
""" """
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
result_list = IdListGetter.__call__(self, instance, *args, **kw) result_list = IdListGetter.__call__(self, instance, *args, **kw)
result_set = dict([(x, 0) for x in result_list]).keys() result_set = dict([(x, 0) for x in result_list]).keys()
return result_set return result_set
class DefaultTitleGetter(Method): class DefaultTitleGetter(Method):
""" """
Gets a default reference object Gets a default reference object
""" """
_need__name__=1 _need__name__=1
# Generic Definition of Method Object # Generic Definition of Method Object
# This is required to call the method form the Web # This is required to call the method form the Web
func_code = func_code() func_code = func_code()
func_code.co_varnames = ('self', ) func_code.co_varnames = ('self', )
func_code.co_argcount = 1 func_code.co_argcount = 1
func_defaults = () func_defaults = ()
def __init__(self, id, key, warning=0): def __init__(self, id, key, warning=0):
self._id = id self._id = id
self.__name__ = id self.__name__ = id
self._key = key self._key = key
self._warning = warning self._warning = warning
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getDefaultRelatedProperty(self._key, 'title', return instance._getDefaultRelatedProperty(
spec=kw.get('spec',()), self._key, 'title',
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',()), filter=kw.get('filter', None),
strict_membership=kw.get('strict_membership', portal_type=kw.get('portal_type',()),
kw.get('strict', None))) # 'strict' is deprecated strict_membership=kw.get('strict_membership',
kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__)
psyco.bind(__call__)
TitleGetter = DefaultTitleGetter TitleGetter = DefaultTitleGetter
class TitleListGetter(Method): class TitleListGetter(Method):
""" """
Gets a list of reference objects Gets a list of reference objects
""" """
_need__name__=1 _need__name__=1
# Generic Definition of Method Object # Generic Definition of Method Object
# This is required to call the method form the Web # This is required to call the method form the Web
func_code = func_code() func_code = func_code()
func_code.co_varnames = ('self', ) func_code.co_varnames = ('self', )
func_code.co_argcount = 1 func_code.co_argcount = 1
func_defaults = () func_defaults = ()
def __init__(self, id, key, warning=0): def __init__(self, id, key, warning=0):
self._id = id self._id = id
self.__name__ = id self.__name__ = id
self._key = key self._key = key
self._warning = warning self._warning = warning
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getRelatedPropertyList(self._key, 'title', return instance._getRelatedPropertyList(
spec=kw.get('spec',()), self._key, 'title',
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',()), filter=kw.get('filter', None),
strict_membership=kw.get('strict_membership', portal_type=kw.get('portal_type',()),
kw.get('strict', None))) # 'strict' is deprecated strict_membership=kw.get('strict_membership',
psyco.bind(__call__) kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__)
class TitleSetGetter(TitleListGetter): class TitleSetGetter(TitleListGetter):
""" """
Gets a category value set Gets a category value set
""" """
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
result_list = TitleListGetter.__call__(self, instance, *args, **kw) result_list = TitleListGetter.__call__(self, instance, *args, **kw)
result_set = dict([(x, 0) for x in result_list]).keys() result_set = dict([(x, 0) for x in result_list]).keys()
return result_set return result_set
class DefaultPropertyGetter(Method): class DefaultPropertyGetter(Method):
""" """
Gets a default reference object Gets a default reference object
""" """
_need__name__=1 _need__name__=1
# Generic Definition of Method Object # Generic Definition of Method Object
# This is required to call the method form the Web # This is required to call the method form the Web
func_code = func_code() func_code = func_code()
func_code.co_varnames = ('self', ) func_code.co_varnames = ('self', )
func_code.co_argcount = 1 func_code.co_argcount = 1
func_defaults = () func_defaults = ()
def __init__(self, id, key, warning=0): def __init__(self, id, key, warning=0):
self._id = id self._id = id
self.__name__ = id self.__name__ = id
self._key = key self._key = key
self._warning = warning self._warning = warning
def __call__(self, instance, key, *args, **kw): def __call__(self, instance, key, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getDefaultRelatedProperty(self._key, key, return instance._getDefaultRelatedProperty(
spec=kw.get('spec',()), self._key, key,
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',()), filter=kw.get('filter', None),
strict_membership=kw.get('strict_membership', portal_type=kw.get('portal_type',()),
kw.get('strict', None))) # 'strict' is deprecated strict_membership=kw.get('strict_membership',
psyco.bind(__call__) kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__)
PropertyGetter = DefaultPropertyGetter PropertyGetter = DefaultPropertyGetter
class PropertyListGetter(Method): class PropertyListGetter(Method):
""" """
Gets a list of reference objects Gets a list of reference objects
""" """
_need__name__=1 _need__name__=1
# Generic Definition of Method Object # Generic Definition of Method Object
# This is required to call the method form the Web # This is required to call the method form the Web
func_code = func_code() func_code = func_code()
func_code.co_varnames = ('self', ) func_code.co_varnames = ('self', )
func_code.co_argcount = 1 func_code.co_argcount = 1
func_defaults = () func_defaults = ()
def __init__(self, id, key, warning=0): def __init__(self, id, key, warning=0):
self._id = id self._id = id
self.__name__ = id self.__name__ = id
self._key = key self._key = key
self._warning = warning self._warning = warning
def __call__(self, instance, key, *args, **kw): def __call__(self, instance, key, *args, **kw):
if self._warning: if self._warning:
LOG("ERP5Type Deprecated Getter Id:",0, self._id) LOG("ERP5Type Deprecated Getter Id:",0, self._id)
return instance._getRelatedPropertyList(self._key, key, return instance._getRelatedPropertyList(
spec=kw.get('spec',()), self._key, key,
filter=kw.get('filter', None), spec=kw.get('spec',()),
portal_type=kw.get('portal_type',()), filter=kw.get('filter', None),
strict_membership=kw.get('strict_membership', portal_type=kw.get('portal_type',()),
kw.get('strict', None))) # 'strict' is deprecated strict_membership=kw.get('strict_membership',
psyco.bind(__call__) kw.get('strict', None))) # 'strict' is deprecated
psyco.bind(__call__)
class PropertySetGetter(PropertyListGetter): class PropertySetGetter(PropertyListGetter):
""" """
Gets a category value set Gets a category value set
""" """
def __call__(self, instance, *args, **kw): def __call__(self, instance, *args, **kw):
result_list = PropertyListGetter.__call__(self, instance, *args, **kw) result_list = PropertyListGetter.__call__(self, instance, *args, **kw)
result_set = dict([(x, 0) for x in result_list]).keys() result_set = dict([(x, 0) for x in result_list]).keys()
return result_set return result_set
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