Security:
authentication
access rules:
- by model
- by record
Protocols (optionally over SSL):
Best open source RDBMS:
1 2 3 4 5 6 7 8 9 | class Category(OSV):
"Party category"
_name = 'party.category'
_description = __doc__
name = fields.Char('Name')
parties = fields.One2Many(
'party.party', 'category', 'Parties')
code = fields.Integer('Code Length')
Category()
|
Any questions?