author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 28 Apr 2010 12:15:52 +0200 | |
branch | oldstable |
changeset 5424 | 8ecbcbff9777 |
parent 5421 | 8167de96c523 |
child 6276 | cb4a48b2250e |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4494
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
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:
4494
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
18 |
"""Views, forms, actions... for the CubicWeb web client |
0 | 19 |
|
20 |
""" |
|
21 |
__docformat__ = "restructuredtext en" |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
22 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
23 |
import os |
3122 | 24 |
import sys |
2446
440cb4ea7e5c
[refactor] #342855: replace uses of (deprecated) mktemp
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2230
diff
changeset
|
25 |
import tempfile |
0 | 26 |
from rql import nodes |
27 |
||
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
28 |
|
0 | 29 |
def need_table_view(rset, schema): |
30 |
"""return True if we think that a table view is more appropriate than a |
|
31 |
list or primary view to display the given result set |
|
32 |
""" |
|
33 |
rqlst = rset.syntax_tree() |
|
34 |
if len(rqlst.children) > 1: |
|
35 |
# UNION query, use a table |
|
36 |
return True |
|
37 |
selected = rqlst.children[0].selection |
|
38 |
try: |
|
39 |
mainvar = selected[0] |
|
40 |
except AttributeError: |
|
41 |
# not a variable ref, using table view is probably a good option |
|
42 |
return True |
|
43 |
if not (isinstance(mainvar, nodes.VariableRef) or |
|
44 |
(isinstance(mainvar, nodes.Constant) and mainvar.uid)): |
|
45 |
return True |
|
46 |
for i, etype in enumerate(rset.description[0][1:]): |
|
47 |
# etype may be None on outer join |
|
48 |
if etype is None: |
|
49 |
return True |
|
50 |
# check the selected index node is a VariableRef (else we |
|
51 |
# won't detect aggregate function |
|
52 |
if not isinstance(selected[i+1], nodes.VariableRef): |
|
53 |
return True |
|
54 |
# if this is not a final entity |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3145
diff
changeset
|
55 |
if not schema.eschema(etype).final: |
0 | 56 |
return True |
57 |
# if this is a final entity not linked to the main variable |
|
58 |
var = selected[i+1].variable |
|
59 |
for vref in var.references(): |
|
60 |
rel = vref.relation() |
|
61 |
if rel is None: |
|
62 |
continue |
|
63 |
if mainvar.is_equivalent(rel.children[0]): |
|
64 |
break |
|
65 |
else: |
|
66 |
return True |
|
67 |
return False |
|
68 |
||
2193
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
69 |
# FIXME: VID_BY_MIMETYPE is unfortunately a bit too naive since |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
70 |
# some browsers (e.g. FF2) send a bunch of mimetypes in |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
71 |
# the Accept header, for instance: |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
72 |
# text/xml,application/xml,application/xhtml+xml,text/html;q=0.9, |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
73 |
# text/plain;q=0.8,image/png,*/*;q=0.5 |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
74 |
VID_BY_MIMETYPE = { |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
75 |
#'text/xml': 'xml', |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
76 |
# XXX rss, owl... |
667b6340bfd4
[views] comment the naive content-negotiation algorithm, it breaks FF2 navigation
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
77 |
} |
0 | 78 |
def vid_from_rset(req, rset, schema): |
79 |
"""given a result set, return a view id""" |
|
80 |
if rset is None: |
|
81 |
return 'index' |
|
1716
b12d9e22bac3
basic support for http Accept header (untested)
sylvain.thenault@logilab.fr
parents:
1091
diff
changeset
|
82 |
for mimetype in req.parse_accept_header('Accept'): |
1719
bf26f32c8a72
wrong variable name
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1716
diff
changeset
|
83 |
if mimetype in VID_BY_MIMETYPE: |
bf26f32c8a72
wrong variable name
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1716
diff
changeset
|
84 |
return VID_BY_MIMETYPE[mimetype] |
0 | 85 |
nb_rows = len(rset) |
86 |
# empty resultset |
|
87 |
if nb_rows == 0 : |
|
88 |
return 'noresult' |
|
89 |
# entity result set |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3145
diff
changeset
|
90 |
if not schema.eschema(rset.description[0][0]).final: |
0 | 91 |
if need_table_view(rset, schema): |
92 |
return 'table' |
|
93 |
if nb_rows == 1: |
|
94 |
if req.search_state[0] == 'normal': |
|
95 |
return 'primary' |
|
96 |
return 'outofcontext-search' |
|
2491 | 97 |
if len(rset.column_types(0)) == 1: |
4494
ccb7fce7297b
AdaptedList -> SameETypeList
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
98 |
return 'sameetypelist' |
0 | 99 |
return 'list' |
100 |
return 'table' |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
101 |
|
1716
b12d9e22bac3
basic support for http Accept header (untested)
sylvain.thenault@logilab.fr
parents:
1091
diff
changeset
|
102 |
|
0 | 103 |
def linksearch_select_url(req, rset): |
104 |
"""when searching an entity to create a relation, return an url to select |
|
105 |
entities in the given rset |
|
106 |
""" |
|
107 |
req.add_js( ('cubicweb.ajax.js', 'cubicweb.edition.js') ) |
|
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
108 |
target, eid, r_type, searchedtype = req.search_state[1] |
0 | 109 |
if target == 'subject': |
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
110 |
id_fmt = '%s:%s:%%s' % (eid, r_type) |
0 | 111 |
else: |
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
112 |
id_fmt = '%%s:%s:%s' % (r_type, eid) |
0 | 113 |
triplets = '-'.join(id_fmt % row[0] for row in rset.rows) |
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
114 |
return "javascript: selectForAssociation('%s', '%s');" % (triplets, eid) |
1716
b12d9e22bac3
basic support for http Accept header (untested)
sylvain.thenault@logilab.fr
parents:
1091
diff
changeset
|
115 |
|
b12d9e22bac3
basic support for http Accept header (untested)
sylvain.thenault@logilab.fr
parents:
1091
diff
changeset
|
116 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
117 |
class TmpFileViewMixin(object): |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
118 |
binary = True |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
119 |
content_type = 'application/octet-stream' |
1716
b12d9e22bac3
basic support for http Accept header (untested)
sylvain.thenault@logilab.fr
parents:
1091
diff
changeset
|
120 |
cache_max_age = 60*60*2 # stay in http cache for 2 hours by default |
b12d9e22bac3
basic support for http Accept header (untested)
sylvain.thenault@logilab.fr
parents:
1091
diff
changeset
|
121 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
122 |
def call(self): |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
123 |
self.cell_call() |
1716
b12d9e22bac3
basic support for http Accept header (untested)
sylvain.thenault@logilab.fr
parents:
1091
diff
changeset
|
124 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
631
diff
changeset
|
125 |
def cell_call(self, row=0, col=0): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3145
diff
changeset
|
126 |
self.cw_row, self.cw_col = row, col # in case one needs it |
3145 | 127 |
fd, tmpfile = tempfile.mkstemp('.png') |
128 |
os.close(fd) |
|
129 |
self._generate(tmpfile) |
|
130 |
self.w(open(tmpfile, 'rb').read()) |
|
131 |
os.unlink(tmpfile) |