server/test/datacomputed/schema.py
changeset 9961 cef58bd36f7b
child 9964 f4a3ee05cf9d
equal deleted inserted replaced
9960:6359f3121f3f 9961:cef58bd36f7b
       
     1 # copyright 2014 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
       
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     3 #
       
     4 # This file is part of CubicWeb.
       
     5 #
       
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
       
     7 # terms of the GNU Lesser General Public License as published by the Free
       
     8 # Software Foundation, either version 2.1 of the License, or (at your option)
       
     9 # any later version.
       
    10 #
       
    11 # CubicWeb is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
       
    13 # FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
       
    14 # details.
       
    15 #
       
    16 # You should have received a copy of the GNU Lesser General Public License along
       
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
       
    18 
       
    19 from yams.buildobjs import EntityType, RelationDefinition, ComputedRelation
       
    20 
       
    21 
       
    22 class Employee(EntityType):
       
    23     pass
       
    24 
       
    25 
       
    26 class employees(RelationDefinition):
       
    27     subject = 'Company'
       
    28     object = 'Employee'
       
    29 
       
    30 
       
    31 class associates(RelationDefinition):
       
    32     subject = 'Company'
       
    33     object = 'Employee'
       
    34 
       
    35 
       
    36 class Company(EntityType):
       
    37     pass
       
    38 
       
    39 
       
    40 class Note(EntityType):
       
    41     pass
       
    42 
       
    43 
       
    44 class concerns(RelationDefinition):
       
    45     subject = 'Note'
       
    46     object = 'Employee'
       
    47 
       
    48 
       
    49 class notes(ComputedRelation):
       
    50     rule = 'S employees E, O concerns E'