author | sylvain.thenault@logilab.fr |
Tue, 12 May 2009 11:56:12 +0200 | |
branch | tls-sprint |
changeset 1739 | 78b0819162a8 |
parent 1723 | 30c3a713ab61 |
child 1742 | 25a765e756c4 |
permissions | -rw-r--r-- |
1739 | 1 |
# :organization: Logilab |
2 |
# :copyright: 2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
|
3 |
# :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
|
4 |
"""This module regroups a set of structures that may be used to configure |
|
5 |
various places of the generated web interface. |
|
6 |
||
7 |
Primary view configuration |
|
8 |
`````````````````````````` |
|
9 |
:primaryview_section: |
|
10 |
where to display a relation in primary view. Value may be one of: |
|
11 |
* 'attributes', display in the attributes section |
|
12 |
* 'relations', display in the relations section (below attributes) |
|
13 |
* 'sideboxes', display in the side boxes (beside attributes) |
|
14 |
* 'hidden', don't display |
|
15 |
||
16 |
:primaryview_display_ctrl: |
|
17 |
||
18 |
how to display a relation in primary view. Values are dict with some of the |
|
19 |
following keys: |
|
20 |
||
21 |
:vid: |
|
22 |
identifier of a view to use to display the result set. Defaults depends on |
|
23 |
the section: |
|
24 |
* 'attributes' section: 'reledit' view |
|
25 |
* 'relations' section: 'autolimited' view |
|
26 |
* 'sideboxes' section: 'sidebox' view |
|
27 |
||
28 |
:label: |
|
29 |
label for the relations section or side box |
|
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
30 |
|
1739 | 31 |
:limit: |
32 |
boolean telling if the results should be limited according to the |
|
33 |
configuration |
|
34 |
||
35 |
:filter: |
|
36 |
callback taking the related result set as argument and returning it |
|
37 |
filtered |
|
38 |
||
39 |
:order: |
|
40 |
int used to control order within a section. When not specified, |
|
41 |
automatically set according to order in which tags are added. |
|
42 |
||
43 |
Notice those values are only considered if the relation is in a displayed |
|
44 |
section (controlled by :attr:`primaryview_section`) |
|
45 |
||
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
46 |
|
1739 | 47 |
Index view configuration |
48 |
```````````````````````` |
|
49 |
:indexview_etype_section: |
|
50 |
entity type category in the index/manage page. May be one of |
|
51 |
* 'application' |
|
52 |
* 'system' |
|
53 |
* 'schema' |
|
54 |
* 'subobject' (not displayed by default) |
|
55 |
||
56 |
||
57 |
Actions box configuration |
|
58 |
````````````````````````` |
|
59 |
:actionbox_appearsin_addmenu: |
|
60 |
simple boolean relation tags used to control the "add entity" submenu. |
|
61 |
Relations whose rtag is True will appears, other won't. |
|
62 |
||
63 |
Automatic form configuration |
|
64 |
```````````````````````````` |
|
65 |
||
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
66 |
""" |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
67 |
__docformat__ = "restructuredtext en" |
1533 | 68 |
|
1739 | 69 |
from cubicweb.rtags import RelationTags, RelationTagsBool, RelationTagsSet |
70 |
from cubicweb.web import formwidgets |
|
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
71 |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
72 |
# primary view configuration ################################################## |
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
73 |
|
1739 | 74 |
def init_primaryview_section(self, sschema, rschema, oschema, role): |
75 |
if self.get(sschema, rschema, oschema, role) is None: |
|
76 |
if rschema.is_final(): |
|
77 |
if rschema.meta or tschema.type in ('Password', 'Bytes'): |
|
78 |
section = 'hidden' |
|
79 |
else: |
|
80 |
section = 'attributes' |
|
81 |
elif card in '1+': |
|
82 |
section = 'attributes' |
|
83 |
elif composed: |
|
84 |
section = 'relations' |
|
85 |
else: |
|
86 |
section = 'sideboxes' |
|
87 |
self.tag_relation((sschema, rschema, oschema, role), section) |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
88 |
|
1739 | 89 |
primaryview_section = RelationTags(init_primaryview_section, |
90 |
frozenset(('attributes', 'relations', |
|
91 |
'sideboxes', 'hidden'))) |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
92 |
for rtype in ('eid', 'creation_date', 'modification_date', |
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
93 |
'is', 'is_instance_of', 'identity', |
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
94 |
'owned_by', 'created_by', |
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
95 |
'in_state', 'wf_info_for', 'require_permission', |
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
96 |
'from_entity', 'to_entity', |
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
97 |
'see_also'): |
1739 | 98 |
primaryview_section.tag_subject_of(('*', rtype, '*'), 'hidden') |
99 |
primaryview_section.tag_object_of(('*', rtype, '*'), 'hidden') |
|
100 |
||
101 |
for attr in ('name', 'meta', 'final'): |
|
102 |
primaryview_section.tag_attribute(('CWEType', attr), 'hidden') |
|
103 |
for attr in ('name', 'meta', 'final', 'symetric', 'inlined'): |
|
104 |
primaryview_section.tag_attribute(('CWRType', attr), 'hidden') |
|
105 |
||
106 |
||
107 |
class DisplayCtrlRelationTags(RelationTags): |
|
108 |
def __init__(self, *args, **kwargs): |
|
109 |
super(DisplayCtrlRelationTags, self).__init__(*args, **kwargs) |
|
110 |
self._counter = 0 |
|
111 |
||
112 |
def tag_relation(self, key, tag): |
|
113 |
assert isinstance(tag, dict) |
|
114 |
super(RDisplayRelationTags, self).tag_relation(key, tag) |
|
115 |
self._counter += 1 |
|
116 |
tag.setdefault('order', self._counter) |
|
117 |
||
118 |
||
119 |
def init_primaryview_display_ctrl(self, sschema, rschema, oschema, role): |
|
120 |
if role == 'subject': |
|
121 |
oschema = '*' |
|
122 |
label = rschema.type |
|
123 |
else: |
|
124 |
sschema = '*' |
|
125 |
label = '%s_%s' % (rschema, role) |
|
126 |
displayinfo = self.get(sschema, rschema, oschema, role) |
|
127 |
if displayinfo is None: |
|
128 |
displayinfo = {} |
|
129 |
self.tag_relation((sschema, rschema, oschema, role), displayinfo) |
|
130 |
displayinfo.setdefault('label', label) |
|
131 |
||
132 |
primaryview_display_ctrl = DisplayCtrlRelationTags(init_primaryview_display_ctrl) |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
133 |
|
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1533
diff
changeset
|
134 |
|
1631
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
135 |
# index view configuration #################################################### |
1739 | 136 |
# entity type section in the index/manage page. May be one of |
1631
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
137 |
# * 'application' |
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
138 |
# * 'system' |
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
139 |
# * 'schema' |
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
140 |
# * 'subobject' (not displayed by default) |
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
141 |
|
1739 | 142 |
indexview_etype_section = {'EmailAddress': 'subobject'} |
1631
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
143 |
|
8370be19afd7
configurable entity types tables
sylvain.thenault@logilab.fr
parents:
1604
diff
changeset
|
144 |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1468
diff
changeset
|
145 |
# autoform.AutomaticEntityForm configuration ################################## |
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
146 |
|
1739 | 147 |
# relations'section (eg primary/secondary/generic/metadata/generated) |
148 |
||
149 |
def init_autoform_section(self, sschema, rschema, oschema, role): |
|
150 |
if self.get(sschema, rschema, oschema, role) is None: |
|
151 |
if role == 'subject': |
|
152 |
card = rschema.rproperty(sschema, oschema, 'cardinality')[0] |
|
153 |
composed = rschema.rproperty(sschema, oschema, 'composite') == 'object' |
|
154 |
else: |
|
155 |
card = rschema.rproperty(sschema, oschema, 'cardinality')[1] |
|
156 |
composed = rschema.rproperty(sschema, oschema, 'composite') == 'subject' |
|
157 |
if sschema.is_metadata(rschema): |
|
158 |
section = 'generated' |
|
159 |
elif card in '1+': |
|
160 |
if not rschema.is_final() and composed: |
|
161 |
section = 'generated' |
|
162 |
else: |
|
163 |
section = 'primary' |
|
164 |
elif rschema.is_final(): |
|
165 |
section = 'secondary' |
|
166 |
else: |
|
167 |
section = 'generic' |
|
168 |
self.tag_relation((sschema, rschema, oschema, role), section) |
|
1721
694f6a50e138
final rtags api (eventually :$)
sylvain.thenault@logilab.fr
parents:
1631
diff
changeset
|
169 |
|
1739 | 170 |
autoform_section = RelationTags(init_autoform_section, |
171 |
set(('primary', 'secondary', 'generic', |
|
172 |
'metadata', 'generated'))) |
|
173 |
# use primary and not generated for eid since it has to be an hidden |
|
174 |
autoform_section.tag_attribute(('*', 'eid'), 'primary') |
|
175 |
autoform_section.tag_attribute(('*', 'description'), 'secondary') |
|
176 |
autoform_section.tag_attribute(('*', 'creation_date'), 'metadata') |
|
177 |
autoform_section.tag_attribute(('*', 'modification_date'), 'metadata') |
|
178 |
autoform_section.tag_attribute(('*', 'has_text'), 'generated') |
|
179 |
autoform_section.tag_subject_of(('*', 'in_state', '*'), 'primary') |
|
180 |
autoform_section.tag_subject_of(('*', 'owned_by', '*'), 'metadata') |
|
181 |
autoform_section.tag_subject_of(('*', 'created_by', '*'), 'metadata') |
|
182 |
autoform_section.tag_subject_of(('*', 'is', '*'), 'generated') |
|
183 |
autoform_section.tag_object_of(('* ', 'is', '*'), 'generated') |
|
184 |
autoform_section.tag_subject_of(('*', 'is_instance_of', '*'), 'generated') |
|
185 |
autoform_section.tag_object_of(('* ', 'is_instance_of', '*'), 'generated') |
|
186 |
autoform_section.tag_subject_of(('*', 'identity', '*'), 'generated') |
|
187 |
autoform_section.tag_object_of(('* ', 'identity', '*'), 'generated') |
|
188 |
autoform_section.tag_subject_of(('*', 'require_permission', '*'), 'generated') |
|
189 |
autoform_section.tag_subject_of(('*', 'wf_info_for', '*'), 'generated') |
|
190 |
autoform_section.tag_object_of(('* ', 'wf_info_for', '*'), 'generated') |
|
191 |
autoform_section.tag_subject_of(('*', 'for_user', '*'), 'generated') |
|
192 |
autoform_section.tag_object_of(('* ', 'for_user', '*'), 'generated') |
|
193 |
autoform_section.tag_subject_of(('CWPermission', 'require_group', '*'), 'primary') |
|
194 |
autoform_section.tag_attribute(('EEtype', 'final'), 'generated') |
|
195 |
autoform_section.tag_attribute(('ERtype', 'final'), 'generated') |
|
196 |
autoform_section.tag_attribute(('CWUser', 'firstname'), 'secondary') |
|
197 |
autoform_section.tag_attribute(('CWUser', 'surname'), 'secondary') |
|
198 |
autoform_section.tag_attribute(('CWUser', 'last_login_time'), 'metadata') |
|
199 |
autoform_section.tag_subject_of(('CWUser', 'in_group', '*'), 'primary') |
|
200 |
autoform_section.tag_object_of(('*', 'owned_by', 'CWUser'), 'generated') |
|
201 |
autoform_section.tag_object_of(('*', 'created_by', 'CWUser'), 'generated') |
|
202 |
autoform_section.tag_object_of(('*', 'bookmarked_by', 'CWUser'), 'metadata') |
|
203 |
autoform_section.tag_attribute(('Bookmark', 'path'), 'primary') |
|
204 |
||
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
205 |
|
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
206 |
# relations'field class |
1739 | 207 |
autoform_field = RelationTags() |
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
208 |
|
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
209 |
# relations'widget class |
1739 | 210 |
autoform_widget = RelationTags() |
211 |
autoform_widget.tag_attribute(('RQLExpression', 'expression'), |
|
212 |
formwidgets.TextInput) |
|
213 |
autoform_widget.tag_attribute(('Bookmark', 'path'), formwidgets.TextInput) |
|
214 |
||
215 |
||
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
216 |
|
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
217 |
# inlined view flag for non final relations: when True for an entry, the |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
218 |
# entity(ies) at the other end of the relation will be editable from the |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
219 |
# form of the edited entity |
1739 | 220 |
autoform_is_inlined = RelationTagsBool() |
221 |
autoform_is_inlined.tag_subject_of(('*', 'use_email', '*'), True) |
|
222 |
autoform_is_inlined.tag_subject_of(('CWRelation', 'relation_type', '*'), True) |
|
223 |
autoform_is_inlined.tag_subject_of(('CWRelation', 'from_entity', '*'), True) |
|
224 |
autoform_is_inlined.tag_subject_of(('CWRelation', 'to_entity', '*'), True) |
|
1604 | 225 |
|
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
226 |
|
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
227 |
# set of tags of the form <action>_on_new on relations. <action> is a |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
228 |
# schema action (add/update/delete/read), and when such a tag is found |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
229 |
# permissions checking is by-passed and supposed to be ok |
1739 | 230 |
autoform_permissions_overrides = RelationTagsSet() |
1285
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
231 |
|
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
232 |
|
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
233 |
# boxes.EditBox configuration ################################################# |
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
234 |
|
d5ce82d65c2b
for a correct handling of rtags, they should not ever be reloaded and they should be initialized once registration is finished
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
235 |
# 'link' / 'create' relation tags, used to control the "add entity" submenu |
1739 | 236 |
def init_actionbox_appearsin_addmenu(self, sschema, rschema, oschema, role): |
237 |
if self.get(sschema, rschema, oschema, role) is None: |
|
238 |
card = rschema.rproperty(sschema, oschema, 'cardinality')[role == 'object'] |
|
239 |
if not card in '?1' and \ |
|
240 |
rschema.rproperty(sschema, oschema, 'composite') == role: |
|
241 |
self.tag_relation((sschema, rschema, oschema, role), True) |
|
242 |
||
243 |
actionbox_appearsin_addmenu = RelationTagsBool(init_actionbox_appearsin_addmenu) |
|
244 |
actionbox_appearsin_addmenu.tag_subject_of(('*', 'is', '*'), False) |
|
245 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'is', '*'), False) |
|
246 |
actionbox_appearsin_addmenu.tag_subject_of(('*', 'is_instance_of', '*'), False) |
|
247 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'is_instance_of', '*'), False) |
|
248 |
actionbox_appearsin_addmenu.tag_subject_of(('*', 'identity', '*'), False) |
|
249 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'identity', '*'), False) |
|
250 |
actionbox_appearsin_addmenu.tag_subject_of(('*', 'owned_by', '*'), False) |
|
251 |
actionbox_appearsin_addmenu.tag_subject_of(('*', 'created_by', '*'), False) |
|
252 |
actionbox_appearsin_addmenu.tag_subject_of(('*', 'require_permission', '*'), False) |
|
253 |
actionbox_appearsin_addmenu.tag_subject_of(('*', 'wf_info_for', '*'), False) |
|
254 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'wf_info_for', '*'), False) |
|
255 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'state_of', 'CWEType'), True) |
|
256 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'transition_of', 'CWEType'), True) |
|
257 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'relation_type', 'CWRType'), True) |
|
258 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'from_entity', 'CWEType'), False) |
|
259 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'to_entity', 'CWEType'), False) |
|
260 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'in_group', 'CWGroup'), True) |
|
261 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'owned_by', 'CWUser'), False) |
|
262 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'created_by', 'CWUser'), False) |
|
263 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'bookmarked_by', 'CWUser'), True) |
|
264 |
actionbox_appearsin_addmenu.tag_subject_of(('Transition', 'destination_state', '*'), True) |
|
265 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'allowed_transition', 'Transition'), True) |
|
266 |
actionbox_appearsin_addmenu.tag_object_of(('*', 'destination_state', 'State'), True) |
|
267 |
actionbox_appearsin_addmenu.tag_subject_of(('State', 'allowed_transition', '*'), True) |