author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 21 Sep 2009 19:49:02 +0200 | |
branch | stable |
changeset 3355 | 39ea15e4589a |
parent 3184 | 613064b49331 |
child 3185 | bd0126d17e83 |
child 3818 | 9522e51d8644 |
permissions | -rw-r--r-- |
0 | 1 |
"""Bases HTML components: |
2 |
||
3 |
* the rql input form |
|
4 |
* the logged user link |
|
2937
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
5 |
* pdf view link |
0 | 6 |
|
7 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1968
diff
changeset
|
8 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 9 |
: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:
1968
diff
changeset
|
10 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 11 |
""" |
12 |
__docformat__ = "restructuredtext en" |
|
1937 | 13 |
_ = unicode |
0 | 14 |
|
2313 | 15 |
from logilab.mtconverter import xml_escape |
0 | 16 |
from rql import parse |
17 |
||
1132 | 18 |
from cubicweb.selectors import yes, two_etypes_rset, match_form_params |
1699 | 19 |
from cubicweb.schema import display_name |
2313 | 20 |
from cubicweb.common.uilib import toggle_action |
1739 | 21 |
from cubicweb.web import component |
1699 | 22 |
from cubicweb.web.htmlwidgets import (MenuWidget, PopupBoxMenu, BoxSeparator, |
23 |
BoxLink) |
|
0 | 24 |
|
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
25 |
VISIBLE_PROP_DEF = { |
1968
d3de0f44b57b
components should be visible by default, applmessages components should not be hideable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1937
diff
changeset
|
26 |
_('visible'): dict(type='Boolean', default=True, |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
27 |
help=_('display the component or not')), |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
28 |
} |
0 | 29 |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
30 |
class RQLInputForm(component.Component): |
0 | 31 |
"""build the rql input form, usually displayed in the header""" |
32 |
id = 'rqlinput' |
|
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
33 |
property_defs = VISIBLE_PROP_DEF |
2120
ed1cd652b343
rqlinput should have its default visible property to false
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
34 |
visible = False |
2172
cf8f9180e63e
delete-trailing-whitespace
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2120
diff
changeset
|
35 |
|
0 | 36 |
def call(self, view=None): |
37 |
if hasattr(view, 'filter_box_context_info'): |
|
38 |
rset = view.filter_box_context_info()[0] |
|
39 |
else: |
|
40 |
rset = self.rset |
|
41 |
# display multilines query as one line |
|
42 |
rql = rset is not None and rset.printable_rql(encoded=False) or self.req.form.get('rql', '') |
|
43 |
rql = rql.replace(u"\n", u" ") |
|
44 |
req = self.req |
|
45 |
self.w(u'''<div id="rqlinput" class="%s"> |
|
46 |
<form action="%s"> |
|
47 |
<fieldset> |
|
48 |
<input type="text" id="rql" name="rql" value="%s" title="%s" tabindex="%s" accesskey="q" class="searchField" /> |
|
851
33957ff2b790
use rql button
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
533
diff
changeset
|
49 |
<input type="submit" value="" class="rqlsubmit" tabindex="%s" /> |
0 | 50 |
</fieldset> |
2172
cf8f9180e63e
delete-trailing-whitespace
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2120
diff
changeset
|
51 |
''' % (not self.propval('visible') and 'hidden' or '', |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2218
diff
changeset
|
52 |
self.build_url('view'), xml_escape(rql), req._('full text or RQL query'), req.next_tabindex(), |
851
33957ff2b790
use rql button
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
533
diff
changeset
|
53 |
req.next_tabindex())) |
0 | 54 |
if self.req.search_state[0] != 'normal': |
55 |
self.w(u'<input type="hidden" name="__mode" value="%s"/>' |
|
56 |
% ':'.join(req.search_state[1])) |
|
57 |
self.w(u'</form></div>') |
|
58 |
||
59 |
||
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
60 |
class ApplLogo(component.Component): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2381
diff
changeset
|
61 |
"""build the instance logo, usually displayed in the header""" |
0 | 62 |
id = 'logo' |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
63 |
property_defs = VISIBLE_PROP_DEF |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
64 |
# don't want user to hide this component using an cwproperty |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
65 |
site_wide = True |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
66 |
|
0 | 67 |
def call(self): |
68 |
self.w(u'<a href="%s"><img class="logo" src="%s" alt="logo"/></a>' |
|
69 |
% (self.req.base_url(), self.req.external_resource('LOGO'))) |
|
70 |
||
71 |
||
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
72 |
class ApplHelp(component.Component): |
0 | 73 |
"""build the help button, usually displayed in the header""" |
74 |
id = 'help' |
|
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
75 |
property_defs = VISIBLE_PROP_DEF |
0 | 76 |
def call(self): |
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2650
diff
changeset
|
77 |
self.w(u'<a href="%s" class="help" title="%s"> </a>' |
0 | 78 |
% (self.build_url(_restpath='doc/main'), |
79 |
self.req._(u'help'),)) |
|
80 |
||
81 |
||
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
82 |
class UserLink(component.Component): |
0 | 83 |
"""if the user is the anonymous user, build a link to login |
84 |
else a link to the connected user object with a loggout link |
|
85 |
""" |
|
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
86 |
property_defs = VISIBLE_PROP_DEF |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
87 |
# don't want user to hide this component using an cwproperty |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
88 |
site_wide = True |
0 | 89 |
id = 'loggeduserlink' |
90 |
||
91 |
def call(self): |
|
92 |
if not self.req.cnx.anonymous_connection: |
|
93 |
# display useractions and siteactions |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2476
diff
changeset
|
94 |
actions = self.vreg['actions'].possible_actions(self.req, rset=self.rset) |
0 | 95 |
box = MenuWidget('', 'userActionsBox', _class='', islist=False) |
96 |
menu = PopupBoxMenu(self.req.user.login, isitem=False) |
|
97 |
box.append(menu) |
|
98 |
for action in actions.get('useractions', ()): |
|
99 |
menu.append(BoxLink(action.url(), self.req._(action.title), |
|
100 |
action.html_class())) |
|
101 |
if actions.get('useractions') and actions.get('siteactions'): |
|
102 |
menu.append(BoxSeparator()) |
|
103 |
for action in actions.get('siteactions', ()): |
|
104 |
menu.append(BoxLink(action.url(), self.req._(action.title), |
|
105 |
action.html_class())) |
|
106 |
box.render(w=self.w) |
|
107 |
else: |
|
108 |
self.anon_user_link() |
|
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
109 |
|
0 | 110 |
def anon_user_link(self): |
111 |
if self.config['auth-mode'] == 'cookie': |
|
112 |
self.w(self.req._('anonymous')) |
|
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2650
diff
changeset
|
113 |
self.w(u''' [<a class="logout" href="javascript: popupLoginBox();">%s</a>]''' |
0 | 114 |
% (self.req._('i18n_login_popup'))) |
115 |
else: |
|
116 |
self.w(self.req._('anonymous')) |
|
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2650
diff
changeset
|
117 |
self.w(u' [<a class="logout" href="%s">%s</a>]' |
0 | 118 |
% (self.build_url('login'), self.req._('login'))) |
119 |
||
120 |
||
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
121 |
class ApplicationMessage(component.Component): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2381
diff
changeset
|
122 |
"""display messages given using the __message parameter into a special div |
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2381
diff
changeset
|
123 |
section |
0 | 124 |
""" |
742
99115e029dca
replaced most of __selectors__ assignments with __select__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
125 |
__select__ = yes() |
0 | 126 |
id = 'applmessages' |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
127 |
# don't want user to hide this component using an cwproperty |
1968
d3de0f44b57b
components should be visible by default, applmessages components should not be hideable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1937
diff
changeset
|
128 |
property_defs = {} |
0 | 129 |
|
130 |
def call(self): |
|
131 |
msgs = [msg for msg in (self.req.get_shared_data('sources_error', pop=True), |
|
132 |
self.req.message) if msg] |
|
133 |
self.w(u'<div id="appMsg" onclick="%s" class="%s">\n' % |
|
134 |
(toggle_action('appMsg'), (msgs and ' ' or 'hidden'))) |
|
135 |
for msg in msgs: |
|
136 |
self.w(u'<div class="message" id="%s">%s</div>' % ( |
|
137 |
self.div_id(), msg)) |
|
138 |
self.w(u'</div>') |
|
139 |
||
140 |
||
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
141 |
class ApplicationName(component.Component): |
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2381
diff
changeset
|
142 |
"""display the instance name""" |
0 | 143 |
id = 'appliname' |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
144 |
property_defs = VISIBLE_PROP_DEF |
1739 | 145 |
# don't want user to hide this component using an cwproperty |
146 |
site_wide = True |
|
0 | 147 |
|
148 |
def call(self): |
|
2119
dc1eedd06766
deal with empty site-title
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
149 |
title = self.req.property_value('ui.site-title') |
dc1eedd06766
deal with empty site-title
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
150 |
if title: |
dc1eedd06766
deal with empty site-title
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
151 |
self.w(u'<span id="appliName"><a href="%s">%s</a></span>' % ( |
3166
2413e5291e8d
properly escape site-title
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
152 |
self.req.base_url(), xml_escape(title))) |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
153 |
|
0 | 154 |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
155 |
class SeeAlsoVComponent(component.RelatedObjectsVComponent): |
0 | 156 |
"""display any entity's see also""" |
157 |
id = 'seealso' |
|
158 |
context = 'navcontentbottom' |
|
159 |
rtype = 'see_also' |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
160 |
role = 'subject' |
0 | 161 |
order = 40 |
162 |
# register msg not generated since no entity use see_also in cubicweb itself |
|
163 |
title = _('contentnavigation_seealso') |
|
164 |
help = _('contentnavigation_seealso_description') |
|
165 |
||
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
166 |
|
1554
3a3263df6cdd
new primary view using uicfg.rdisplay (major api cleanup)
sylvain.thenault@logilab.fr
parents:
1514
diff
changeset
|
167 |
class EtypeRestrictionComponent(component.Component): |
0 | 168 |
"""displays the list of entity types contained in the resultset |
169 |
to be able to filter accordingly. |
|
170 |
""" |
|
171 |
id = 'etypenavigation' |
|
758
0c0dfd33a76d
instantiate selectors wherever needed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
742
diff
changeset
|
172 |
__select__ = two_etypes_rset() | match_form_params('__restrtype', '__restrtypes', |
0c0dfd33a76d
instantiate selectors wherever needed
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
742
diff
changeset
|
173 |
'__restrrql') |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
174 |
property_defs = VISIBLE_PROP_DEF |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
175 |
# don't want user to hide this component using an cwproperty |
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
176 |
site_wide = True |
0 | 177 |
visible = False # disabled by default |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
178 |
|
0 | 179 |
def call(self): |
180 |
_ = self.req._ |
|
181 |
self.w(u'<div id="etyperestriction">') |
|
182 |
restrtype = self.req.form.get('__restrtype') |
|
183 |
restrtypes = self.req.form.get('__restrtypes', '').split(',') |
|
184 |
restrrql = self.req.form.get('__restrrql') |
|
185 |
if not restrrql: |
|
186 |
rqlst = self.rset.syntax_tree() |
|
187 |
restrrql = rqlst.as_string(self.req.encoding, self.rset.args) |
|
188 |
restrtypes = self.rset.column_types(0) |
|
189 |
else: |
|
190 |
rqlst = parse(restrrql) |
|
191 |
html = [] |
|
192 |
on_etype = False |
|
193 |
etypes = sorted((display_name(self.req, etype).capitalize(), etype) |
|
194 |
for etype in restrtypes) |
|
195 |
for elabel, etype in etypes: |
|
196 |
if etype == restrtype: |
|
197 |
html.append(u'<span class="selected">%s</span>' % elabel) |
|
198 |
on_etype = True |
|
199 |
else: |
|
200 |
rqlst.save_state() |
|
201 |
for select in rqlst.children: |
|
202 |
select.add_type_restriction(select.selection[0], etype) |
|
203 |
newrql = rqlst.as_string(self.req.encoding, self.rset.args) |
|
204 |
url = self.build_url(rql=newrql, __restrrql=restrrql, |
|
205 |
__restrtype=etype, __restrtypes=','.join(restrtypes)) |
|
206 |
html.append(u'<span><a href="%s">%s</a></span>' % ( |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2218
diff
changeset
|
207 |
xml_escape(url), elabel)) |
0 | 208 |
rqlst.recover() |
209 |
if on_etype: |
|
210 |
url = self.build_url(rql=restrrql) |
|
211 |
html.insert(0, u'<span><a href="%s">%s</a></span>' % ( |
|
212 |
url, _('Any'))) |
|
213 |
else: |
|
214 |
html.insert(0, u'<span class="selected">%s</span>' % _('Any')) |
|
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2650
diff
changeset
|
215 |
self.w(u' | '.join(html)) |
0 | 216 |
self.w(u'</div>') |
1511
514e4e53a3c7
do not set visible property by default
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
217 |
|
2937
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
218 |
class PdfViewComponent(component.Component): |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
219 |
id = 'pdfview' |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
220 |
__select__ = yes() |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
221 |
|
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
222 |
context = 'header' |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
223 |
property_defs = { |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
224 |
_('visible'): dict(type='Boolean', default=True, |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
225 |
help=_('display the pdf icon or not')), |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
226 |
} |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
227 |
|
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
228 |
def call(self, vid): |
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
229 |
entity = self.entity(0,0) |
3037
45de36c7d47c
[pdf] remove buggy css, add alt to img for valid xhtml
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3002
diff
changeset
|
230 |
url = entity.absolute_url(vid=vid, __template='pdf-main-template') |
45de36c7d47c
[pdf] remove buggy css, add alt to img for valid xhtml
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3002
diff
changeset
|
231 |
self.w(u'<a href="%s" class="otherView"><img src="data/pdf_icon.gif" alt="%s"/></a>' % |
45de36c7d47c
[pdf] remove buggy css, add alt to img for valid xhtml
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3002
diff
changeset
|
232 |
(xml_escape(url), self.req._('download page as pdf'))) |
2937
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
233 |
|
36b11249014e
[pdf] (ugly) pdf icon, component
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2650
diff
changeset
|
234 |
|
143
c4f11f70b75e
adding two different rss feed component
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
142
diff
changeset
|
235 |
|
796
62253c7fe5ba
require explicit registration control
sylvain.thenault@logilab.fr
parents:
758
diff
changeset
|
236 |
def registration_callback(vreg): |
62253c7fe5ba
require explicit registration control
sylvain.thenault@logilab.fr
parents:
758
diff
changeset
|
237 |
vreg.register_all(globals().values(), __name__, (SeeAlsoVComponent,)) |
62253c7fe5ba
require explicit registration control
sylvain.thenault@logilab.fr
parents:
758
diff
changeset
|
238 |
if 'see_also' in vreg.schema: |
62253c7fe5ba
require explicit registration control
sylvain.thenault@logilab.fr
parents:
758
diff
changeset
|
239 |
vreg.register(SeeAlsoVComponent) |