Browse Source

Bugfix on EM groups handling (now we have to set actives groups in settings)

Yann Weber 8 years ago
parent
commit
ae8d8c05a6

BIN
examples/em_test.pickle View File


+ 1
- 1
install/conf.d/lodel2.ini View File

10
 context = True
10
 context = True
11
 
11
 
12
 [lodel2.editorialmodel]
12
 [lodel2.editorialmodel]
13
-groups = 
13
+groups = base_group, editorial_abstract, editorial_person
14
 emfile = editorial_model.pickle
14
 emfile = editorial_model.pickle
15
 dyncode = leapi_dyncode.py
15
 dyncode = leapi_dyncode.py
16
 
16
 

+ 2
- 0
lodel/editorial_model/components.py View File

96
  fetching arbitrary datas from DB"},
96
  fetching arbitrary datas from DB"},
97
                 data_handler = 'LeobjectSubclassIdentifier',
97
                 data_handler = 'LeobjectSubclassIdentifier',
98
                 internal = True)
98
                 internal = True)
99
+        if group is not None:
100
+            group.add_components([self])
99
     
101
     
100
     ##@brief Property that represent a dict of all fields (the EmField defined in this class and all its parents)
102
     ##@brief Property that represent a dict of all fields (the EmField defined in this class and all its parents)
101
     # @todo use Settings.editorialmodel.groups to determine wich fields should be returned
103
     # @todo use Settings.editorialmodel.groups to determine wich fields should be returned

+ 8
- 1
lodel/editorial_model/model.py View File

5
 import copy
5
 import copy
6
 
6
 
7
 from lodel.utils.mlstring import MlString
7
 from lodel.utils.mlstring import MlString
8
-from lodel.logger import logger
8
+from lodel import logger
9
 from lodel.settings import Settings
9
 from lodel.settings import Settings
10
 from lodel.settings.utils import SettingsError
10
 from lodel.settings.utils import SettingsError
11
 
11
 
128
     #EditorialModel.__active_classes attibutes
128
     #EditorialModel.__active_classes attibutes
129
     def __set_actives(self):
129
     def __set_actives(self):
130
         if Settings.editorialmodel.editormode:
130
         if Settings.editorialmodel.editormode:
131
+            logger.warning("All EM groups active because editormode in ON")
131
             # all groups & classes actives because we are in editor mode
132
             # all groups & classes actives because we are in editor mode
132
             self.__active_groups = self.__groups
133
             self.__active_groups = self.__groups
133
             self.__active_classes = self.__classes
134
             self.__active_classes = self.__classes
134
         else:
135
         else:
135
             #determine groups first
136
             #determine groups first
136
             self.__active_groups = dict()
137
             self.__active_groups = dict()
138
+            self.__active_classes = dict()
137
             for agrp in Settings.editorialmodel.groups:
139
             for agrp in Settings.editorialmodel.groups:
138
                 if agrp not in self.__groups:
140
                 if agrp not in self.__groups:
139
                     raise SettingsError('Invalid group found in settings : %s' % agrp)
141
                     raise SettingsError('Invalid group found in settings : %s' % agrp)
142
+                logger.debug("Set group '%s' as active" % agrp)
140
                 grp = self.__groups[agrp]
143
                 grp = self.__groups[agrp]
141
                 self.__active_groups[grp.uid] = grp
144
                 self.__active_groups[grp.uid] = grp
142
                 for acls in grp.components():
145
                 for acls in grp.components():
143
                     self.__active_classes[acls.uid] = acls
146
                     self.__active_classes[acls.uid] = acls
147
+            if len(self.__active_groups) == 0:
148
+                raise RuntimeError("No groups activated, abording...")
149
+            if len(self.__active_classes) == 0:
150
+                raise RuntimeError("No active class found. Abording")
144
     
151
     
145
     ##@brief EmField getter
152
     ##@brief EmField getter
146
     # @param uid str : An EmField uid represented by "CLASSUID.FIELDUID"
153
     # @param uid str : An EmField uid represented by "CLASSUID.FIELDUID"

+ 2
- 0
lodel/leapi/lefactory.py View File

4
 from lodel.editorial_model.components import *
4
 from lodel.editorial_model.components import *
5
 from lodel.leapi.leobject import LeObject
5
 from lodel.leapi.leobject import LeObject
6
 from lodel.leapi.datahandlers.base_classes import DataHandler
6
 from lodel.leapi.datahandlers.base_classes import DataHandler
7
+from lodel import logger
7
 
8
 
8
 ##@brief Generate python module code from a given model
9
 ##@brief Generate python module code from a given model
9
 # @param model lodel.editorial_model.model.EditorialModel
10
 # @param model lodel.editorial_model.model.EditorialModel
111
     bootstrap = ""
112
     bootstrap = ""
112
     # Generating field list for LeObjects generated from EmClass
113
     # Generating field list for LeObjects generated from EmClass
113
     for em_class in get_classes(model):
114
     for em_class in get_classes(model):
115
+        logger.info("Generating a dynamic class for %s" % em_class.uid)
114
         uid = list()        # List of fieldnames that are part of the EmClass primary key
116
         uid = list()        # List of fieldnames that are part of the EmClass primary key
115
         parents = list()    # List of parents EmClass
117
         parents = list()    # List of parents EmClass
116
         # Determine pk
118
         # Determine pk

BIN
tests/editorial_model.pickle View File


Loading…
Cancel
Save