author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 06 Jul 2009 10:42:02 +0200 | |
branch | stable |
changeset 2271 | 5483155a1e17 |
parent 2265 | 4c028cb136a4 |
child 2312 | af4d8f75c5db |
permissions | -rw-r--r-- |
0 | 1 |
""" |
2 |
generic boxes for CubicWeb web client: |
|
3 |
||
4 |
* actions box |
|
5 |
* possible views box |
|
6 |
||
7 |
additional (disabled by default) boxes |
|
8 |
* schema box |
|
9 |
* startup views box |
|
10 |
||
11 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1876
diff
changeset
|
12 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 13 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1876
diff
changeset
|
14 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 15 |
""" |
16 |
__docformat__ = "restructuredtext en" |
|
1876 | 17 |
_ = unicode |
0 | 18 |
|
19 |
from logilab.mtconverter import html_escape |
|
20 |
||
1132 | 21 |
from cubicweb.selectors import match_user_groups, non_final_entity |
2265
4c028cb136a4
add import to remove deprecation warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
22 |
from cubicweb.view import EntityView |
4c028cb136a4
add import to remove deprecation warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
23 |
from cubicweb.schema import display_name |
0 | 24 |
from cubicweb.web.htmlwidgets import BoxWidget, BoxMenu, BoxHtml, RawBoxItem |
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:
1263
diff
changeset
|
25 |
from cubicweb.web import uicfg |
663 | 26 |
from cubicweb.web.box import BoxTemplate |
0 | 27 |
|
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
28 |
|
0 | 29 |
class EditBox(BoxTemplate): |
30 |
""" |
|
31 |
box with all actions impacting the entity displayed: edit, copy, delete |
|
32 |
change state, add related entities |
|
33 |
""" |
|
34 |
id = 'edit_box' |
|
809 | 35 |
__select__ = BoxTemplate.__select__ & non_final_entity() |
1150
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
36 |
|
0 | 37 |
title = _('actions') |
38 |
order = 2 |
|
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:
1263
diff
changeset
|
39 |
# class attributes below are actually stored in the uicfg module since we |
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:
1263
diff
changeset
|
40 |
# don't want them to be reloaded |
1739 | 41 |
appearsin_addmenu = uicfg.actionbox_appearsin_addmenu |
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
42 |
|
1247
3332c92d950c
give view when selecting actions
sylvain.thenault@logilab.fr
parents:
1242
diff
changeset
|
43 |
def call(self, view=None, **kwargs): |
0 | 44 |
_ = self.req._ |
45 |
title = _(self.title) |
|
46 |
if self.rset: |
|
47 |
etypes = self.rset.column_types(0) |
|
48 |
if len(etypes) == 1: |
|
49 |
plural = self.rset.rowcount > 1 and 'plural' or '' |
|
50 |
etypelabel = display_name(self.req, iter(etypes).next(), plural) |
|
51 |
title = u'%s - %s' % (title, etypelabel.lower()) |
|
52 |
box = BoxWidget(title, self.id, _class="greyBoxFrame") |
|
53 |
# build list of actions |
|
1247
3332c92d950c
give view when selecting actions
sylvain.thenault@logilab.fr
parents:
1242
diff
changeset
|
54 |
actions = self.vreg.possible_actions(self.req, self.rset, view=view) |
0 | 55 |
add_menu = BoxMenu(_('add')) # 'addrelated' category |
56 |
other_menu = BoxMenu(_('more actions')) # 'moreactions' category |
|
57 |
searchstate = self.req.search_state[0] |
|
58 |
for category, menu in (('mainactions', box), |
|
59 |
('addrelated', add_menu), |
|
60 |
('moreactions', other_menu)): |
|
61 |
for action in actions.get(category, ()): |
|
62 |
menu.append(self.box_action(action)) |
|
63 |
if self.rset and self.rset.rowcount == 1 and \ |
|
64 |
not self.schema[self.rset.description[0][0]].is_final() and \ |
|
65 |
searchstate == 'normal': |
|
66 |
entity = self.rset.get_entity(0, 0) |
|
67 |
#entity.complete() |
|
68 |
if add_menu.items: |
|
69 |
self.info('explicit actions defined, ignoring potential rtags for %s', |
|
70 |
entity.e_schema) |
|
71 |
else: |
|
72 |
# some addrelated actions may be specified but no one is selectable |
|
73 |
# in which case we should not fallback to schema_actions. The proper |
|
74 |
# way to avoid this is to override add_related_schemas() on the |
|
75 |
# entity class to return an empty list |
|
76 |
for action in self.schema_actions(entity): |
|
185
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
77 |
add_menu.append(action) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
78 |
self.workflow_actions(entity, box) |
0 | 79 |
if box.is_empty() and not other_menu.is_empty(): |
80 |
box.items = other_menu.items |
|
81 |
other_menu.items = [] |
|
82 |
self.add_submenu(box, add_menu, _('add')) |
|
83 |
self.add_submenu(box, other_menu) |
|
84 |
if not box.is_empty(): |
|
85 |
box.render(self.w) |
|
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
86 |
|
0 | 87 |
def add_submenu(self, box, submenu, label_prefix=None): |
88 |
if len(submenu.items) == 1: |
|
89 |
boxlink = submenu.items[0] |
|
90 |
if label_prefix: |
|
91 |
boxlink.label = u'%s %s' % (label_prefix, boxlink.label) |
|
92 |
box.append(boxlink) |
|
93 |
elif submenu.items: |
|
94 |
box.append(submenu) |
|
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
95 |
|
0 | 96 |
def schema_actions(self, entity): |
97 |
user = self.req.user |
|
98 |
actions = [] |
|
99 |
_ = self.req._ |
|
100 |
eschema = entity.e_schema |
|
1150
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
101 |
for rschema, teschema, x in self.add_related_schemas(entity): |
0 | 102 |
if x == 'subject': |
1848
981b8dc9e4d0
fix i18n msgstr
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1752
diff
changeset
|
103 |
label = 'add %s %s %s %s' % (eschema, rschema, teschema, x) |
0 | 104 |
url = self.linkto_url(entity, rschema, teschema, 'object') |
105 |
else: |
|
1848
981b8dc9e4d0
fix i18n msgstr
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1752
diff
changeset
|
106 |
label = 'add %s %s %s %s' % (teschema, rschema, eschema, x) |
0 | 107 |
url = self.linkto_url(entity, rschema, teschema, 'subject') |
108 |
actions.append(self.mk_action(_(label), url)) |
|
109 |
return actions |
|
110 |
||
1150
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
111 |
def add_related_schemas(self, entity): |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
112 |
"""this is actually used ui method to generate 'addrelated' actions from |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
113 |
the schema. |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
114 |
|
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
115 |
If you're using explicit 'addrelated' actions for an entity types, you |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
116 |
should probably overrides this method to return an empty list else you |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
117 |
may get some unexpected actions. |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
118 |
""" |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
119 |
req = self.req |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
120 |
eschema = entity.e_schema |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
121 |
for role, rschemas in (('subject', eschema.subject_relations()), |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
122 |
('object', eschema.object_relations())): |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
123 |
for rschema in rschemas: |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
124 |
if rschema.is_final(): |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
125 |
continue |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
126 |
# check the relation can be added as well |
1739 | 127 |
# XXX consider autoform_permissions_overrides? |
128 |
if role == 'subject'and not rschema.has_perm(req, 'add', |
|
129 |
fromeid=entity.eid): |
|
1150
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
130 |
continue |
1739 | 131 |
if role == 'object'and not rschema.has_perm(req, 'add', |
132 |
toeid=entity.eid): |
|
1150
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
133 |
continue |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
134 |
# check the target types can be added as well |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
135 |
for teschema in rschema.targets(eschema, role): |
1739 | 136 |
if not self.appearsin_addmenu.etype_get(eschema, rschema, |
137 |
role, teschema): |
|
1150
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
138 |
continue |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
139 |
if teschema.has_local_role('add') or teschema.has_perm(req, 'add'): |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
140 |
yield rschema, teschema, role |
2d1b721fded9
remove rtags/methods to handle the action box from Entity, move it to the action box...
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
141 |
|
0 | 142 |
|
185
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
143 |
def workflow_actions(self, entity, box): |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
144 |
if 'in_state' in entity.e_schema.subject_relations() and entity.in_state: |
399 | 145 |
_ = self.req._ |
185
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
146 |
state = entity.in_state[0] |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
147 |
transitions = list(state.transitions(entity)) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
148 |
if transitions: |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
149 |
menu_title = u'%s: %s' % (_('state'), state.view('text')) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
150 |
menu_items = [] |
1113
5608c79c789b
[boxes] that looked like a redundant call (needs review)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
859
diff
changeset
|
151 |
for tr in transitions: |
185
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
152 |
url = entity.absolute_url(vid='statuschange', treid=tr.eid) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
153 |
menu_items.append(self.mk_action(_(tr.name), url)) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
154 |
box.append(BoxMenu(menu_title, menu_items)) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
155 |
# when there are no possible transition, put state if the menu if |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
156 |
# there are some other actions |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
157 |
elif not box.is_empty(): |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
158 |
menu_title = u'<a title="%s">%s: <i>%s</i></a>' % ( |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
159 |
_('no possible transition'), _('state'), state.view('text')) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
160 |
box.append(RawBoxItem(menu_title, 'boxMainactions')) |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
161 |
return None |
9fc69c46e5e7
EditBox: extract workflow actions construction in a separate method
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
143
diff
changeset
|
162 |
|
0 | 163 |
def linkto_url(self, entity, rtype, etype, target): |
164 |
return self.build_url(vid='creation', etype=etype, |
|
165 |
__linkto='%s:%s:%s' % (rtype, entity.eid, target), |
|
166 |
__redirectpath=entity.rest_path(), # should not be url quoted! |
|
167 |
__redirectvid=self.req.form.get('vid', '')) |
|
168 |
||
169 |
||
170 |
class SearchBox(BoxTemplate): |
|
171 |
"""display a box with a simple search form""" |
|
172 |
id = 'search_box' |
|
809 | 173 |
|
0 | 174 |
visible = True # enabled by default |
175 |
title = _('search') |
|
176 |
order = 0 |
|
177 |
formdef = u"""<form action="%s"> |
|
178 |
<table id="tsearch"><tr><td> |
|
179 |
<input id="norql" type="text" accesskey="q" tabindex="%s" title="search text" value="%s" name="rql" /> |
|
180 |
<input type="hidden" name="__fromsearchbox" value="1" /> |
|
181 |
<input type="hidden" name="subvid" value="tsearch" /> |
|
182 |
</td><td> |
|
852
105893288777
simplify css style
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
536
diff
changeset
|
183 |
<input tabindex="%s" type="submit" id="rqlboxsubmit" class="rqlsubmit" value="" /> |
0 | 184 |
</td></tr></table> |
185 |
</form>""" |
|
186 |
||
187 |
def call(self, view=None, **kwargs): |
|
188 |
req = self.req |
|
189 |
if req.form.pop('__fromsearchbox', None): |
|
190 |
rql = req.form.get('rql', '') |
|
191 |
else: |
|
192 |
rql = '' |
|
193 |
form = self.formdef % (req.build_url('view'), req.next_tabindex(), |
|
194 |
html_escape(rql), req.next_tabindex()) |
|
195 |
title = u"""<span onclick="javascript: toggleVisibility('rqlinput')">%s</span>""" % req._(self.title) |
|
196 |
box = BoxWidget(title, self.id, _class="searchBoxFrame", islist=False, escape=False) |
|
197 |
box.append(BoxHtml(form)) |
|
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
198 |
box.render(self.w) |
0 | 199 |
|
200 |
||
201 |
# boxes disabled by default ################################################### |
|
202 |
||
203 |
class PossibleViewsBox(BoxTemplate): |
|
204 |
"""display a box containing links to all possible views""" |
|
205 |
id = 'possible_views_box' |
|
809 | 206 |
__select__ = BoxTemplate.__select__ & match_user_groups('users', 'managers') |
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
207 |
|
809 | 208 |
visible = False |
0 | 209 |
title = _('possible views') |
210 |
order = 10 |
|
211 |
||
212 |
def call(self, **kwargs): |
|
213 |
box = BoxWidget(self.req._(self.title), self.id) |
|
613 | 214 |
views = [v for v in self.vreg.possible_views(self.req, self.rset) |
215 |
if v.category != 'startupview'] |
|
216 |
for category, views in self.sort_actions(views): |
|
0 | 217 |
menu = BoxMenu(category) |
613 | 218 |
for view in views: |
219 |
menu.append(self.box_action(view)) |
|
0 | 220 |
box.append(menu) |
221 |
if not box.is_empty(): |
|
222 |
box.render(self.w) |
|
223 |
||
125
979dbe0cade3
views with rss feed
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
107
diff
changeset
|
224 |
|
0 | 225 |
class StartupViewsBox(BoxTemplate): |
226 |
"""display a box containing links to all startup views""" |
|
227 |
id = 'startup_views_box' |
|
228 |
visible = False # disabled by default |
|
229 |
title = _('startup views') |
|
230 |
order = 70 |
|
231 |
||
232 |
def call(self, **kwargs): |
|
233 |
box = BoxWidget(self.req._(self.title), self.id) |
|
234 |
for view in self.vreg.possible_views(self.req, None): |
|
235 |
if view.category == 'startupview': |
|
236 |
box.append(self.box_action(view)) |
|
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
237 |
|
0 | 238 |
if not box.is_empty(): |
239 |
box.render(self.w) |
|
240 |
||
1263 | 241 |
|
824
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
242 |
# helper classes ############################################################## |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
243 |
|
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
244 |
class SideBoxView(EntityView): |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
245 |
"""helper view class to display some entities in a sidebox""" |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
246 |
id = 'sidebox' |
1450
8edb0806dde4
fix relation_mode implementation, remove trailing spaces
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
247 |
|
824
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
248 |
def call(self, boxclass='sideBox', title=u''): |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
249 |
"""display a list of entities by calling their <item_vid> view""" |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
250 |
if title: |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
251 |
self.w(u'<div class="sideBoxTitle"><span>%s</span></div>' % title) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
252 |
self.w(u'<div class="%s"><div class="sideBoxBody">' % boxclass) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
253 |
# if not too much entities, show them all in a list |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
254 |
maxrelated = self.req.property_value('navigation.related-limit') |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
255 |
if self.rset.rowcount <= maxrelated: |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
256 |
if len(self.rset) == 1: |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
257 |
self.wview('incontext', self.rset, row=0) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
258 |
elif 1 < len(self.rset) < 5: |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
259 |
self.wview('csv', self.rset) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
260 |
else: |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
261 |
self.wview('simplelist', self.rset) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
262 |
# else show links to display related entities |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
263 |
else: |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
264 |
self.rset.limit(maxrelated) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
265 |
rql = self.rset.printable_rql(encoded=False) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
266 |
self.wview('simplelist', self.rset) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
267 |
self.w(u'[<a href="%s">%s</a>]' % (self.build_url(rql=rql), |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
268 |
self.req._('see them all'))) |
a5e6acffde30
merge, split baseviews (new csvexport, xmlrss and editviews modules)
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
269 |
self.w(u'</div>\n</div>\n') |