author | David Douard <david.douard@logilab.fr> |
Thu, 21 Jul 2016 21:03:25 +0200 | |
branch | 3.22 |
changeset 11441 | 2576d295c66d |
parent 10669 | 155c29e0ed1c |
permissions | -rw-r--r-- |
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8174
diff
changeset
|
1 |
# copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5528 | 18 |
"""abstract views and templates classes for CubicWeb web client""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
10666
7f6b5f023884
[py3k] replace '_ = unicode' in global scope (closes #7589459)
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10609
diff
changeset
|
21 |
from cubicweb import _ |
0 | 22 |
|
10211
59a77e8847bc
[view] Use io.BytesIO as stream for binary views
Rémi Cardona <remi.cardona@free.fr>
parents:
10068
diff
changeset
|
23 |
from io import BytesIO |
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
24 |
from warnings import warn |
7938
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
25 |
from functools import partial |
0 | 26 |
|
10609
e2d8e81bfe68
[py3k] import range using six.moves
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10211
diff
changeset
|
27 |
from six.moves import range |
e2d8e81bfe68
[py3k] import range using six.moves
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10211
diff
changeset
|
28 |
|
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2558
diff
changeset
|
29 |
from logilab.common.deprecation import deprecated |
8666
1dd655788ece
make ui configurations selectable (closes #2406609)
Florent Cayré <florent.cayre@logilab.fr>
parents:
8425
diff
changeset
|
30 |
from logilab.common.registry import yes |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2217
diff
changeset
|
31 |
from logilab.mtconverter import xml_escape |
4058
b3578583b57b
properly escape arguments of user callbacks
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3973
diff
changeset
|
32 |
|
2644
100b81ba3a98
F [view] missing import
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
33 |
from rql import nodes |
0 | 34 |
|
1181
620ec8e6ae19
cleanup, various fix to get something working
sylvain.thenault@logilab.fr
parents:
1144
diff
changeset
|
35 |
from cubicweb import NotAnEntity |
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8174
diff
changeset
|
36 |
from cubicweb.predicates import non_final_entity, nonempty_rset, none_rset |
2656
a93ae0f6c0ad
R [base classes] only AppObject remaning, no more AppRsetObject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2644
diff
changeset
|
37 |
from cubicweb.appobject import AppObject |
708
b4728112625f
move utils from cw.common to cw
sylvain.thenault@logilab.fr
parents:
707
diff
changeset
|
38 |
from cubicweb.utils import UStringIO, HTMLStream |
6044
9e48ebd5400c
[view] use the new magic js object to generate javascript func call for auto reload user callbacks
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6038
diff
changeset
|
39 |
from cubicweb.uilib import domid, js |
2217
3a8cee8f8778
explicit display_name import
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2207
diff
changeset
|
40 |
from cubicweb.schema import display_name |
633 | 41 |
|
0 | 42 |
# robots control |
43 |
NOINDEX = u'<meta name="ROBOTS" content="NOINDEX" />' |
|
44 |
NOFOLLOW = u'<meta name="ROBOTS" content="NOFOLLOW" />' |
|
45 |
||
8941
7b26fe71404f
drop xhtml content-type support (closes #2065651)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
8666
diff
changeset
|
46 |
TRANSITIONAL_DOCTYPE_NOEXT = u'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n' |
7b26fe71404f
drop xhtml content-type support (closes #2065651)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
8666
diff
changeset
|
47 |
TRANSITIONAL_DOCTYPE = TRANSITIONAL_DOCTYPE_NOEXT # bw compat |
0 | 48 |
|
6769
d784d64f28d0
Backed out changeset 84b67ae41a0d: with this fix, some
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6761
diff
changeset
|
49 |
STRICT_DOCTYPE_NOEXT = u'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n' |
8941
7b26fe71404f
drop xhtml content-type support (closes #2065651)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
8666
diff
changeset
|
50 |
STRICT_DOCTYPE = STRICT_DOCTYPE_NOEXT # bw compat |
0 | 51 |
|
661
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
52 |
# base view object ############################################################ |
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
53 |
|
2656
a93ae0f6c0ad
R [base classes] only AppObject remaning, no more AppRsetObject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2644
diff
changeset
|
54 |
class View(AppObject): |
8419
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
55 |
"""This class is an abstraction of a view class, used as a base class for |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
56 |
every renderable object such as views, templates and other user interface |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
57 |
components. |
0 | 58 |
|
8419
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
59 |
A `View` is instantiated to render a result set or part of a result |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
60 |
set. `View` subclasses may be parametrized using the following class |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
61 |
attributes: |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
62 |
|
8419
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
63 |
:py:attr:`templatable` indicates if the view may be embedded in a main |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
64 |
template or if it has to be rendered standalone (i.e. pure XML views must |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
65 |
not be embedded in the main template of HTML pages) |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
66 |
:py:attr:`content_type` if the view is not templatable, it should set the |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
67 |
`content_type` class attribute to the correct MIME type (text/xhtml being |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
68 |
the default) |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
69 |
:py:attr:`category` this attribute may be used in the interface to regroup |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
70 |
related objects (view kinds) together |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
71 |
|
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
72 |
:py:attr:`paginable` |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
73 |
|
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
74 |
:py:attr:`binary` |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
75 |
|
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
76 |
|
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
77 |
A view writes to its output stream thanks to its attribute `w` (the |
dd222fcc85d3
[doc] cubicweb.view documentation (closes: #2099962)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8204
diff
changeset
|
78 |
append method of an `UStreamIO`, except for binary views). |
0 | 79 |
|
4702
d9e51820d0c2
fix docstring
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4459
diff
changeset
|
80 |
At instantiation time, the standard `_cw`, and `cw_rset` attributes are |
d9e51820d0c2
fix docstring
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4459
diff
changeset
|
81 |
added and the `w` attribute will be set at rendering time to a write |
d9e51820d0c2
fix docstring
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4459
diff
changeset
|
82 |
function to use. |
0 | 83 |
""" |
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
781
diff
changeset
|
84 |
__registry__ = 'views' |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
85 |
|
0 | 86 |
templatable = True |
87 |
# content_type = 'application/xhtml+xml' # text/xhtml' |
|
88 |
binary = False |
|
89 |
add_to_breadcrumbs = True |
|
90 |
category = 'view' |
|
7990
a673d1d9a738
[diet]Â drop pre 3.6 API compatibility (but attempt to keep data cmopatibility). Closes #2017916
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7959
diff
changeset
|
91 |
paginable = True |
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
92 |
|
1143
8d097defbf2c
change the way selected/__init__ are used for AppRsetObject
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
93 |
def __init__(self, req=None, rset=None, **kwargs): |
2822
f26578339214
deprecate appobject.vreg and rename appobject instance attributes using cw_ prefix
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2819
diff
changeset
|
94 |
super(View, self).__init__(req, rset=rset, **kwargs) |
0 | 95 |
self.w = None |
96 |
||
97 |
@property |
|
98 |
def content_type(self): |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
99 |
return self._cw.html_content_type() |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
100 |
|
0 | 101 |
def set_stream(self, w=None): |
102 |
if self.w is not None: |
|
103 |
return |
|
104 |
if w is None: |
|
105 |
if self.binary: |
|
10211
59a77e8847bc
[view] Use io.BytesIO as stream for binary views
Rémi Cardona <remi.cardona@free.fr>
parents:
10068
diff
changeset
|
106 |
self._stream = stream = BytesIO() |
0 | 107 |
else: |
108 |
self._stream = stream = UStringIO() |
|
109 |
w = stream.write |
|
110 |
else: |
|
111 |
stream = None |
|
112 |
self.w = w |
|
113 |
return stream |
|
114 |
||
115 |
# main view interface ##################################################### |
|
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
116 |
|
1723 | 117 |
def render(self, w=None, **context): |
0 | 118 |
"""called to render a view object for a result set. |
119 |
||
120 |
This method is a dispatched to an actual method selected |
|
121 |
according to optional row and col parameters, which are locating |
|
122 |
a particular row or cell in the result set: |
|
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
123 |
|
1132 | 124 |
* if row is specified, `cell_call` is called |
0 | 125 |
* if none of them is supplied, the view is considered to apply on |
126 |
the whole result set (which may be None in this case), `call` is |
|
127 |
called |
|
128 |
""" |
|
6922
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
129 |
# XXX use .cw_row/.cw_col |
1132 | 130 |
row = context.get('row') |
0 | 131 |
if row is not None: |
132 |
context.setdefault('col', 0) |
|
133 |
view_func = self.cell_call |
|
134 |
else: |
|
135 |
view_func = self.call |
|
136 |
stream = self.set_stream(w) |
|
6563
33343d6eae0a
[view] log error on view_func call
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6458
diff
changeset
|
137 |
try: |
33343d6eae0a
[view] log error on view_func call
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6458
diff
changeset
|
138 |
view_func(**context) |
7815
2a164a9cf81c
[exceptions] stop catching any exception in various places (closes #1942716)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7670
diff
changeset
|
139 |
except Exception: |
6563
33343d6eae0a
[view] log error on view_func call
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6458
diff
changeset
|
140 |
self.debug('view call %s failed (context=%s)', view_func, context) |
33343d6eae0a
[view] log error on view_func call
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6458
diff
changeset
|
141 |
raise |
0 | 142 |
# return stream content if we have created it |
143 |
if stream is not None: |
|
144 |
return self._stream.getvalue() |
|
145 |
||
2795
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
146 |
def tal_render(self, template, variables): |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
147 |
"""render a precompiled page template with variables in the given |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
148 |
dictionary as context |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
149 |
""" |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
150 |
from cubicweb.ext.tal import CubicWebContext |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
151 |
context = CubicWebContext() |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
152 |
context.update({'self': self, 'rset': self.cw_rset, '_' : self._cw._, |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
153 |
'req': self._cw, 'user': self._cw.user}) |
2795
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
154 |
context.update(variables) |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
155 |
output = UStringIO() |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
156 |
template.expand(context, output) |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
157 |
return output.getvalue() |
59965167bef3
move tal_render to View
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2788
diff
changeset
|
158 |
|
0 | 159 |
# should default .call() method add a <div classs="section"> around each |
160 |
# rset item |
|
161 |
add_div_section = True |
|
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
162 |
|
0 | 163 |
def call(self, **kwargs): |
164 |
"""the view is called for an entire result set, by default loop |
|
165 |
other rows of the result set and call the same view on the |
|
166 |
particular row |
|
167 |
||
168 |
Views applicable on None result sets have to override this method |
|
169 |
""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
170 |
rset = self.cw_rset |
0 | 171 |
if rset is None: |
8204
332596be995e
[view] fix error messages of NotImplementedError
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8174
diff
changeset
|
172 |
raise NotImplementedError("%r an rset is required" % self) |
0 | 173 |
wrap = self.templatable and len(rset) > 1 and self.add_div_section |
6922
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
174 |
# avoid re-selection if rset of size 1, we already have the most |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
175 |
# specific view |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
176 |
if rset.rowcount != 1: |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
177 |
kwargs.setdefault('initargs', self.cw_extra_kwargs) |
10609
e2d8e81bfe68
[py3k] import range using six.moves
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10211
diff
changeset
|
178 |
for i in range(len(rset)): |
6922
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
179 |
if wrap: |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
180 |
self.w(u'<div class="section">') |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
181 |
self.wview(self.__regid__, rset, row=i, **kwargs) |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
182 |
if wrap: |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
183 |
self.w(u"</div>") |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
184 |
else: |
0 | 185 |
if wrap: |
186 |
self.w(u'<div class="section">') |
|
6922
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
187 |
kwargs.setdefault('col', 0) |
cb1dd14a768f
[view] fix/enhance view.render
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6909
diff
changeset
|
188 |
self.cell_call(row=0, **kwargs) |
0 | 189 |
if wrap: |
190 |
self.w(u"</div>") |
|
191 |
||
192 |
def cell_call(self, row, col, **kwargs): |
|
193 |
"""the view is called for a particular result set cell""" |
|
8204
332596be995e
[view] fix error messages of NotImplementedError
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8174
diff
changeset
|
194 |
raise NotImplementedError(repr(self)) |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
195 |
|
0 | 196 |
def linkable(self): |
197 |
"""return True if the view may be linked in a menu |
|
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
198 |
|
0 | 199 |
by default views without title are not meant to be displayed |
200 |
""" |
|
201 |
if not getattr(self, 'title', None): |
|
202 |
return False |
|
203 |
return True |
|
204 |
||
205 |
def is_primary(self): |
|
4045
f4a52abb6f4f
cw 3.6 api update
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3998
diff
changeset
|
206 |
return self.cw_extra_kwargs.get('is_primary', self.__regid__ == 'primary') |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
207 |
|
0 | 208 |
def url(self): |
209 |
"""return the url associated with this view. Should not be |
|
210 |
necessary for non linkable views, but a default implementation |
|
211 |
is provided anyway. |
|
212 |
""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
213 |
rset = self.cw_rset |
2468
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
214 |
if rset is None: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
215 |
return self._cw.build_url('view', vid=self.__regid__) |
2468
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
216 |
coltypes = rset.column_types(0) |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
217 |
if len(coltypes) == 1: |
10669
155c29e0ed1c
[py3k] use next builtin instead of next method
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10666
diff
changeset
|
218 |
etype = next(iter(coltypes)) |
4045
f4a52abb6f4f
cw 3.6 api update
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3998
diff
changeset
|
219 |
if not self._cw.vreg.schema.eschema(etype).final: |
2468
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
220 |
if len(rset) == 1: |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
221 |
entity = rset.get_entity(0, 0) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
222 |
return entity.absolute_url(vid=self.__regid__) |
2468
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
223 |
# don't want to generate /<etype> url if there is some restriction |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
224 |
# on something else than the entity type |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
225 |
restr = rset.syntax_tree().children[0].where |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
226 |
# XXX norestriction is not correct here. For instance, in cases like |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
227 |
# "Any P,N WHERE P is Project, P name N" norestriction should equal |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
228 |
# True |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
229 |
norestriction = (isinstance(restr, nodes.Relation) and |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
230 |
restr.is_types_restriction()) |
93853b6f3bad
move all view.url() logic in a single implementation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2418
diff
changeset
|
231 |
if norestriction: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
232 |
return self._cw.build_url(etype.lower(), vid=self.__regid__) |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
233 |
return self._cw.build_url('view', rql=rset.printable_rql(), vid=self.__regid__) |
0 | 234 |
|
235 |
def set_request_content_type(self): |
|
236 |
"""set the content type returned by this view""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
237 |
self._cw.set_content_type(self.content_type) |
0 | 238 |
|
239 |
# view utilities ########################################################## |
|
1433 | 240 |
|
1985
9c1db4e06095
move view method's logic on the registry, so it's easier to call it from outside an appobject. Also make rset argument optional
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
241 |
def wview(self, __vid, rset=None, __fallback_vid=None, **kwargs): |
0 | 242 |
"""shortcut to self.view method automatically passing self.w as argument |
243 |
""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
244 |
self._cw.view(__vid, rset, __fallback_vid, w=self.w, **kwargs) |
1433 | 245 |
|
0 | 246 |
def whead(self, data): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
247 |
self._cw.html_headers.write(data) |
0 | 248 |
|
249 |
def wdata(self, data): |
|
250 |
"""simple helper that escapes `data` and writes into `self.w`""" |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2217
diff
changeset
|
251 |
self.w(xml_escape(data)) |
0 | 252 |
|
253 |
def html_headers(self): |
|
254 |
"""return a list of html headers (eg something to be inserted between |
|
255 |
<head> and </head> of the returned page |
|
256 |
||
257 |
by default return a meta tag to disable robot indexation of the page |
|
258 |
""" |
|
259 |
return [NOINDEX] |
|
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
260 |
|
0 | 261 |
def page_title(self): |
262 |
"""returns a title according to the result set - used for the |
|
263 |
title in the HTML header |
|
264 |
""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
265 |
vtitle = self._cw.form.get('vtitle') |
0 | 266 |
if vtitle: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
267 |
return self._cw._(vtitle) |
0 | 268 |
# class defined title will only be used if the resulting title doesn't |
269 |
# seem clear enough |
|
270 |
vtitle = getattr(self, 'title', None) or u'' |
|
271 |
if vtitle: |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
272 |
vtitle = self._cw._(vtitle) |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
273 |
rset = self.cw_rset |
0 | 274 |
if rset and rset.rowcount: |
275 |
if rset.rowcount == 1: |
|
276 |
try: |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
277 |
entity = rset.complete_entity(0, 0) |
0 | 278 |
# use long_title to get context information if any |
279 |
clabel = entity.dc_long_title() |
|
280 |
except NotAnEntity: |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
281 |
clabel = display_name(self._cw, rset.description[0][0]) |
0 | 282 |
clabel = u'%s (%s)' % (clabel, vtitle) |
283 |
else : |
|
284 |
etypes = rset.column_types(0) |
|
285 |
if len(etypes) == 1: |
|
10669
155c29e0ed1c
[py3k] use next builtin instead of next method
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10666
diff
changeset
|
286 |
etype = next(iter(etypes)) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
287 |
clabel = display_name(self._cw, etype, 'plural') |
0 | 288 |
else : |
289 |
clabel = u'#[*] (%s)' % vtitle |
|
290 |
else: |
|
291 |
clabel = vtitle |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
292 |
return u'%s (%s)' % (clabel, self._cw.property_value('ui.site-title')) |
0 | 293 |
|
6038
5c5d819e8e93
small cleanups
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5725
diff
changeset
|
294 |
def field(self, label, value, row=True, show_label=True, w=None, tr=True, |
5c5d819e8e93
small cleanups
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5725
diff
changeset
|
295 |
table=False): |
3809
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
296 |
"""read-only field""" |
0 | 297 |
if w is None: |
298 |
w = self.w |
|
3809
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
299 |
if table: |
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
300 |
w(u'<tr class="entityfield">') |
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
301 |
else: |
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
302 |
w(u'<div class="entityfield">') |
3326
e3089ceee1ea
don't show label if no label given
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3010
diff
changeset
|
303 |
if show_label and label: |
0 | 304 |
if tr: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
305 |
label = display_name(self._cw, label) |
3809
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
306 |
if table: |
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
307 |
w(u'<th>%s</th>' % label) |
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
308 |
else: |
6909
b8171392de16
[view] missing class on label span
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6864
diff
changeset
|
309 |
w(u'<span class="label">%s</span> ' % label) |
3809
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
310 |
if table: |
3969
970a748684b5
when fields are displayed in a table and label should'nt be displayed, set colspan to 2 on the field value cell
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3839
diff
changeset
|
311 |
if not (show_label and label): |
970a748684b5
when fields are displayed in a table and label should'nt be displayed, set colspan to 2 on the field value cell
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3839
diff
changeset
|
312 |
w(u'<td colspan="2">%s</td></tr>' % value) |
970a748684b5
when fields are displayed in a table and label should'nt be displayed, set colspan to 2 on the field value cell
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3839
diff
changeset
|
313 |
else: |
970a748684b5
when fields are displayed in a table and label should'nt be displayed, set colspan to 2 on the field value cell
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3839
diff
changeset
|
314 |
w(u'<td>%s</td></tr>' % value) |
3809
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
315 |
else: |
1b9b51ee543e
[web ui] PrimaryView.render_attributes now uses a table
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3782
diff
changeset
|
316 |
w(u'<span>%s</span></div>' % value) |
1433 | 317 |
|
0 | 318 |
|
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
319 |
|
640
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
320 |
# concrete views base classes ################################################# |
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
321 |
|
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
322 |
class EntityView(View): |
843 | 323 |
"""base class for views applying on an entity (i.e. uniform result set)""" |
781
323656dd85a9
fix import, use non_final_entity instead of implements('Any')
sylvain.thenault@logilab.fr
parents:
757
diff
changeset
|
324 |
__select__ = non_final_entity() |
7670
6397a9051f65
[boxes] closes #1832844: translate views category in possible views boxes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7346
diff
changeset
|
325 |
category = _('entityview') |
640
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
326 |
|
5715
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
327 |
def call(self, **kwargs): |
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
328 |
if self.cw_rset is None: |
7833
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
329 |
# * cw_extra_kwargs is the place where extra selection arguments are |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
330 |
# stored |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
331 |
# * when calling req.view('somevid', entity=entity), 'entity' ends |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
332 |
# up in cw_extra_kwargs and kwargs |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
333 |
# |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
334 |
# handle that to avoid a TypeError with a sanity check |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
335 |
# |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
336 |
# Notice that could probably be avoided by handling entity_call in |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
337 |
# .render |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
338 |
entity = self.cw_extra_kwargs.pop('entity') |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
339 |
if 'entity' in kwargs: |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
340 |
assert kwargs.pop('entity') is entity |
f19e3203dff6
[view] fix TypeError when calling req.view('vid', entity=entity) (closes #1947474)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7815
diff
changeset
|
341 |
self.entity_call(entity, **kwargs) |
5715
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
342 |
else: |
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
343 |
super(EntityView, self).call(**kwargs) |
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
344 |
|
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
345 |
def cell_call(self, row, col, **kwargs): |
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
346 |
self.entity_call(self.cw_rset.get_entity(row, col), **kwargs) |
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
347 |
|
2c3e83817a8e
[view] add a new entity_call method to entity view protocol, allowing some to work with not yet created entities. Also, start considering 'eid' form parameters where we only consider 'rql', so we can move on bloquing arbitrary rql inputs (more to do on this...)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5679
diff
changeset
|
348 |
def entity_call(self, entity, **kwargs): |
8204
332596be995e
[view] fix error messages of NotImplementedError
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8174
diff
changeset
|
349 |
raise NotImplementedError('%r %r' % (self.__regid__, self.__class__)) |
640
8e64f12be69c
drop EntityAction usage in cw, upgrade rql_condition and friends
sylvain.thenault@logilab.fr
parents:
635
diff
changeset
|
350 |
|
6926 | 351 |
|
0 | 352 |
class StartupView(View): |
843 | 353 |
"""base class for views which doesn't need a particular result set to be |
9492
c7fc56eecd1a
English typography
Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>
parents:
9256
diff
changeset
|
354 |
displayed (so they can always be displayed!) |
0 | 355 |
""" |
707 | 356 |
__select__ = none_rset() |
1433 | 357 |
|
7670
6397a9051f65
[boxes] closes #1832844: translate views category in possible views boxes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7346
diff
changeset
|
358 |
category = _('startupview') |
1433 | 359 |
|
0 | 360 |
def html_headers(self): |
361 |
"""return a list of html headers (eg something to be inserted between |
|
362 |
<head> and </head> of the returned page |
|
363 |
||
364 |
by default startup views are indexed |
|
365 |
""" |
|
366 |
return [] |
|
367 |
||
368 |
||
369 |
class EntityStartupView(EntityView): |
|
370 |
"""base class for entity views which may also be applied to None |
|
371 |
result set (usually a default rql is provided by the view class) |
|
372 |
""" |
|
781
323656dd85a9
fix import, use non_final_entity instead of implements('Any')
sylvain.thenault@logilab.fr
parents:
757
diff
changeset
|
373 |
__select__ = none_rset() | non_final_entity() |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
374 |
|
0 | 375 |
default_rql = None |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
376 |
|
2418
8f06e4f02733
optional rset
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2312
diff
changeset
|
377 |
def __init__(self, req, rset=None, **kwargs): |
2890
fdcb8a2bb6eb
fix __init__ parameters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2822
diff
changeset
|
378 |
super(EntityStartupView, self).__init__(req, rset=rset, **kwargs) |
0 | 379 |
if rset is None: |
380 |
# this instance is not in the "entityview" category |
|
381 |
self.category = 'startupview' |
|
382 |
||
383 |
def startup_rql(self): |
|
873 | 384 |
"""return some rql to be executed if the result set is None""" |
0 | 385 |
return self.default_rql |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
386 |
|
8174
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
387 |
def no_entities(self, **kwargs): |
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
388 |
"""override to display something when no entities were found""" |
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
389 |
pass |
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
390 |
|
0 | 391 |
def call(self, **kwargs): |
873 | 392 |
"""override call to execute rql returned by the .startup_rql method if |
393 |
necessary |
|
0 | 394 |
""" |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
395 |
rset = self.cw_rset |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
396 |
if rset is None: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
397 |
rset = self.cw_rset = self._cw.execute(self.startup_rql()) |
8174
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
398 |
if rset: |
10609
e2d8e81bfe68
[py3k] import range using six.moves
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10211
diff
changeset
|
399 |
for i in range(len(rset)): |
8174
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
400 |
self.wview(self.__regid__, rset, row=i, **kwargs) |
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
401 |
else: |
b3e87e6865ef
[base views] make it easier to override EntityStartupView behaviour when the rset is empty; closes #2126364
Florent Cayré <florent.cayre@gmail.com>
parents:
8013
diff
changeset
|
402 |
self.no_entities(**kwargs) |
0 | 403 |
|
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
404 |
|
0 | 405 |
class AnyRsetView(View): |
406 |
"""base class for views applying on any non empty result sets""" |
|
707 | 407 |
__select__ = nonempty_rset() |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
408 |
|
7670
6397a9051f65
[boxes] closes #1832844: translate views category in possible views boxes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7346
diff
changeset
|
409 |
category = _('anyrsetview') |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
410 |
|
2203
efdd3a9f9028
update to new rql get_description api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1999
diff
changeset
|
411 |
def columns_labels(self, mainindex=0, tr=True): |
7938
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
412 |
"""compute the label of the rset colums |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
413 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
414 |
The logic is based on :meth:`~rql.stmts.Union.get_description`. |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
415 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
416 |
:param mainindex: The index of the main variable. This is an hint to get |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
417 |
more accurate label for various situation |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
418 |
:type mainindex: int |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
419 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
420 |
:param tr: Should the label be translated ? |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
421 |
:type tr: boolean |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
422 |
""" |
370
7e76f651314b
fix rset xml view
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
369
diff
changeset
|
423 |
if tr: |
7938
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
424 |
translate = partial(display_name, self._cw) |
370
7e76f651314b
fix rset xml view
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
369
diff
changeset
|
425 |
else: |
8011
23552e79316f
[column labels] full display_name prototype compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7959
diff
changeset
|
426 |
translate = lambda val, *args,**kwargs: val |
2203
efdd3a9f9028
update to new rql get_description api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1999
diff
changeset
|
427 |
# XXX [0] because of missing Union support |
7938
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
428 |
rql_syntax_tree = self.cw_rset.syntax_tree() |
7959
32349eb5d89d
[table view] fix bug introduced in 7938:80c6e2155c3d leading to not translated table headers
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7938
diff
changeset
|
429 |
rqlstdescr = rql_syntax_tree.get_description(mainindex, translate)[0] |
369
c8a6edc224bb
new rsetxml view, reusing most code from csvexport view
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
361
diff
changeset
|
430 |
labels = [] |
7346
c6d8c3ce4a3e
[view] ability to define a column header through custom label_column_<colindex> method, useful for table view to customize a specific column without specifying others
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6931
diff
changeset
|
431 |
for colidx, label in enumerate(rqlstdescr): |
7938
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
432 |
labels.append(self.column_label(colidx, label, translate)) |
369
c8a6edc224bb
new rsetxml view, reusing most code from csvexport view
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
361
diff
changeset
|
433 |
return labels |
543
c0f2b6378f70
simplification of lazy tabs mechanism
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
522
diff
changeset
|
434 |
|
7938
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
435 |
def column_label(self, colidx, default, translate_func=None): |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
436 |
"""return the label of a specified columns index |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
437 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
438 |
Overwrite me if you need to compute specific label. |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
439 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
440 |
:param colidx: The index of the column the call computes a label for. |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
441 |
:type colidx: int |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
442 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
443 |
:param default: Default value. If ``"Any"`` the default value will be |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
444 |
recomputed as coma separated list for all possible |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
445 |
etypes name. |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
446 |
:type colidx: string |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
447 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
448 |
:param translate_func: A function used to translate name. |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
449 |
:type colidx: function |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
450 |
""" |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
451 |
label = default |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
452 |
if label == 'Any': |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
453 |
etypes = self.cw_rset.column_types(colidx) |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
454 |
if translate_func is not None: |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
455 |
etypes = map(translate_func, etypes) |
7959
32349eb5d89d
[table view] fix bug introduced in 7938:80c6e2155c3d leading to not translated table headers
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7938
diff
changeset
|
456 |
label = u','.join(etypes) |
7938
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
457 |
return label |
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
458 |
|
80c6e2155c3d
AnyRsetView: Refactor the columns_name method and update doc.
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7833
diff
changeset
|
459 |
|
1433 | 460 |
|
0 | 461 |
# concrete template base classes ############################################## |
462 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
781
diff
changeset
|
463 |
class MainTemplate(View): |
0 | 464 |
"""main template are primary access point to render a full HTML page. |
465 |
There is usually at least a regular main template and a simple fallback |
|
466 |
one to display error if the first one failed |
|
467 |
""" |
|
468 |
||
8976
aeb7d400ee92
[view] return HTML5 doctype. Closes #2869426
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
469 |
doctype = '<!DOCTYPE html>' |
0 | 470 |
|
1424 | 471 |
def set_stream(self, w=None): |
472 |
if self.w is not None: |
|
0 | 473 |
return |
474 |
if w is None: |
|
475 |
if self.binary: |
|
10211
59a77e8847bc
[view] Use io.BytesIO as stream for binary views
Rémi Cardona <remi.cardona@free.fr>
parents:
10068
diff
changeset
|
476 |
self._stream = stream = BytesIO() |
0 | 477 |
else: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3369
diff
changeset
|
478 |
self._stream = stream = HTMLStream(self._cw) |
0 | 479 |
w = stream.write |
480 |
else: |
|
481 |
stream = None |
|
482 |
self.w = w |
|
483 |
return stream |
|
484 |
||
485 |
def write_doctype(self, xmldecl=True): |
|
486 |
assert isinstance(self._stream, HTMLStream) |
|
487 |
self._stream.doctype = self.doctype |
|
488 |
if not xmldecl: |
|
489 |
self._stream.xmldecl = u'' |
|
661
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
490 |
|
822 | 491 |
def linkable(self): |
492 |
return False |
|
1433 | 493 |
|
661
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
494 |
# concrete component base classes ############################################# |
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
495 |
|
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
496 |
class ReloadableMixIn(object): |
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
497 |
"""simple mixin for reloadable parts of UI""" |
1433 | 498 |
|
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
499 |
@property |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
500 |
def domid(self): |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
501 |
return domid(self.__regid__) |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
502 |
|
661
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
503 |
|
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
504 |
class Component(ReloadableMixIn, View): |
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
505 |
"""base class for components""" |
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
506 |
__registry__ = 'components' |
707 | 507 |
__select__ = yes() |
661
4f61eb8a96b7
properly kill/depreciate component base class, only keep Component
sylvain.thenault@logilab.fr
parents:
660
diff
changeset
|
508 |
|
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
509 |
# XXX huummm, much probably useless (should be...) |
3010
684a0c546774
[ui props] drop htmlclass as a persistent property, this is definitly useless/unusable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2656
diff
changeset
|
510 |
htmlclass = 'mainRelated' |
6140
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
511 |
@property |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
512 |
def cssclass(self): |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
513 |
return '%s %s' % (self.htmlclass, domid(self.__regid__)) |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
514 |
|
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
515 |
# XXX should rely on ReloadableMixIn.domid |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
516 |
@property |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
517 |
def domid(self): |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
518 |
return '%sComponent' % domid(self.__regid__) |
65a619eb31c4
[boxes] introduce new boxes system
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6047
diff
changeset
|
519 |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5533
diff
changeset
|
520 |
|
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5533
diff
changeset
|
521 |
class Adapter(AppObject): |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5533
diff
changeset
|
522 |
"""base class for adapters""" |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5533
diff
changeset
|
523 |
__registry__ = 'adapters' |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5533
diff
changeset
|
524 |
|
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5533
diff
changeset
|
525 |
|
6864
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
526 |
class EntityAdapter(Adapter): |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
527 |
"""base class for entity adapters (eg adapt an entity to an interface)""" |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
528 |
def __init__(self, _cw, **kwargs): |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
529 |
try: |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
530 |
self.entity = kwargs.pop('entity') |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
531 |
except KeyError: |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
532 |
self.entity = kwargs['rset'].get_entity(kwargs.get('row') or 0, |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
533 |
kwargs.get('col') or 0) |
ea95004494a2
[adapters] fix #1424467 caused by precedence of bw compat method while the adapter is concret for a given class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6769
diff
changeset
|
534 |
Adapter.__init__(self, _cw, **kwargs) |