Esempio n. 1
0
 def __init__(self):
     '''
     Construct the language service.
     '''
     EntityNQServiceAlchemy.__init__(self, LanguageEntity)
     locales = [(code, Locale.parse(code)) for code in locale_identifiers()]
     locales.sort(key=lambda pack: pack[0])
     self._locales = OrderedDict(locales)
     validateProperty(LanguageEntity.Code, self._validateCode)
Esempio n. 2
0
 def __init__(self):
     '''
     Construct the language service.
     '''
     EntityNQServiceAlchemy.__init__(self, LanguageEntity)
     locales = [(code, Locale.parse(code)) for code in locale_identifiers()]
     locales.sort(key=lambda pack: pack[0])
     self._locales = OrderedDict(locales)
     validateProperty(LanguageEntity.Code, self._validateCode)
Esempio n. 3
0
 def __init__(self):
     EntityNQServiceAlchemy.__init__(self, ArticleCtxMapped)
Esempio n. 4
0
 def __init__(self):
     EntityNQServiceAlchemy.__init__(self, RightTypeMapped)
Esempio n. 5
0
 def __init__(self):
     EntityNQServiceAlchemy.__init__(self, ArticleCtxMapped)