author | Julien Cristau <julien.cristau@logilab.fr> |
Mon, 18 May 2015 16:44:49 +0200 | |
changeset 10439 | 45e18b4a7466 |
parent 10411 | 4ee15441f2eb |
child 10612 | 84468b90e9c1 |
child 10839 | 166c6f7b1be4 |
permissions | -rw-r--r-- |
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
1 |
# copyright 2003-2013 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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
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:
4252
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
18 |
"""base application's entities class implementation: `AnyEntity`""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
21 |
||
22 |
||
8930
6a02be304486
remove unused import
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8899
diff
changeset
|
23 |
from logilab.common.decorators import classproperty |
0 | 24 |
|
8748
f5027f8d2478
drop typed_eid() in favour of int() (closes #2742462)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8450
diff
changeset
|
25 |
from cubicweb import Unauthorized |
713
5adb6d8e5fa7
update imports of "cubicweb.common.entity" and use the new module path "cubicweb.entity"
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
26 |
from cubicweb.entity import Entity |
0 | 27 |
|
28 |
||
29 |
class AnyEntity(Entity): |
|
30 |
"""an entity instance has e_schema automagically set on the class and |
|
31 |
instances have access to their issuing cursor |
|
32 |
""" |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
33 |
__regid__ = 'Any' |
0 | 34 |
|
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
35 |
@classproperty |
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
36 |
def cw_etype(cls): |
10095
200bd6a601dc
[warnings] put an end to warnings in the sqlite driver over `str` being sent instead of unicode strings
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
10019
diff
changeset
|
37 |
"""entity type as a unicode string""" |
200bd6a601dc
[warnings] put an end to warnings in the sqlite driver over `str` being sent instead of unicode strings
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
10019
diff
changeset
|
38 |
return unicode(cls.__regid__) |
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
39 |
|
6039
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
40 |
@classmethod |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
41 |
def cw_create_url(cls, req, **kwargs): |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
42 |
""" return the url of the entity creation form for this entity type""" |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
43 |
return req.build_url('add/%s' % cls.__regid__, **kwargs) |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
44 |
|
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
45 |
@classmethod |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
46 |
def cw_fti_index_rql_queries(cls, req): |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
47 |
"""return the list of rql queries to fetch entities to FT-index |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
48 |
|
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
49 |
The default is to fetch all entities at once and to prefetch |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
50 |
indexable attributes but one could imagine iterating over |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
51 |
"smaller" resultsets if the table is very big or returning |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
52 |
a subset of entities that match some business-logic condition. |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
53 |
""" |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
54 |
restrictions = ['X is %s' % cls.__regid__] |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
55 |
selected = ['X'] |
10251
2daa5c6dea4d
[entities] make cw_fti_index_rql_queries predictable
Julien Cristau <julien.cristau@logilab.fr>
parents:
10095
diff
changeset
|
56 |
for attrschema in sorted(cls.e_schema.indexable_attributes()): |
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
57 |
varname = attrschema.type.upper() |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
58 |
restrictions.append('X %s %s' % (attrschema, varname)) |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
59 |
selected.append(varname) |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
60 |
return ['Any %s WHERE %s' % (', '.join(selected), |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
61 |
', '.join(restrictions))] |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
62 |
|
0 | 63 |
# meta data api ########################################################### |
64 |
||
65 |
def dc_title(self): |
|
66 |
"""return a suitable *unicode* title for this entity""" |
|
67 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
68 |
if rschema.meta: |
|
69 |
continue |
|
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
70 |
value = self.cw_attr_value(rschema.type) |
10396
33e44293b0eb
[entities] fix dc_title output for bool(value) == False
Aurelien Campeas <aurelien.campeas@pythonian.fr>
parents:
10095
diff
changeset
|
71 |
if value is not None: |
0 | 72 |
# make the value printable (dates, floats, bytes, etc.) |
73 |
return self.printable_value(rschema.type, value, attrschema.type, |
|
74 |
format='text/plain') |
|
75 |
return u'%s #%s' % (self.dc_type(), self.eid) |
|
76 |
||
77 |
def dc_long_title(self): |
|
78 |
"""return a more detailled title for this entity""" |
|
79 |
return self.dc_title() |
|
1493 | 80 |
|
0 | 81 |
def dc_description(self, format='text/plain'): |
82 |
"""return a suitable description for this entity""" |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3578
diff
changeset
|
83 |
if 'description' in self.e_schema.subjrels: |
0 | 84 |
return self.printable_value('description', format=format) |
85 |
return u'' |
|
86 |
||
87 |
def dc_authors(self): |
|
88 |
"""return a suitable description for the author(s) of the entity""" |
|
89 |
try: |
|
90 |
return ', '.join(u.name() for u in self.owned_by) |
|
91 |
except Unauthorized: |
|
92 |
return u'' |
|
93 |
||
94 |
def dc_creator(self): |
|
95 |
"""return a suitable description for the creator of the entity""" |
|
96 |
if self.creator: |
|
97 |
return self.creator.name() |
|
98 |
return u'' |
|
99 |
||
100 |
def dc_date(self, date_format=None):# XXX default to ISO 8601 ? |
|
101 |
"""return latest modification date of this entity""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3418
diff
changeset
|
102 |
return self._cw.format_date(self.modification_date, date_format=date_format) |
0 | 103 |
|
104 |
def dc_type(self, form=''): |
|
105 |
"""return the display name for the type of this entity (translated)""" |
|
3418
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
106 |
return self.e_schema.display_name(self._cw, form) |
0 | 107 |
|
108 |
def dc_language(self): |
|
109 |
"""return language used by this entity (translated)""" |
|
110 |
# check if entities has internationalizable attributes |
|
111 |
# XXX one is enough or check if all String attributes are internationalizable? |
|
112 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
4147
52fe79a98b21
3.6 remove deprecation warning
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
3720
diff
changeset
|
113 |
if rschema.rdef(self.e_schema, attrschema).internationalizable: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3418
diff
changeset
|
114 |
return self._cw._(self._cw.user.property_value('ui.language')) |
3418
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
115 |
return self._cw._(self._cw.vreg.property_value('ui.language')) |
1493 | 116 |
|
0 | 117 |
@property |
118 |
def creator(self): |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1360
diff
changeset
|
119 |
"""return the CWUser entity which has created this entity, or None if |
0 | 120 |
unknown or if the curent user doesn't has access to this euser |
121 |
""" |
|
122 |
try: |
|
123 |
return self.created_by[0] |
|
124 |
except (Unauthorized, IndexError): |
|
125 |
return None |
|
126 |
||
127 |
# abstractions making the whole things (well, some at least) working ###### |
|
1493 | 128 |
|
0 | 129 |
def sortvalue(self, rtype=None): |
130 |
"""return a value which can be used to sort this entity or given |
|
131 |
entity's attribute |
|
132 |
""" |
|
133 |
if rtype is None: |
|
134 |
return self.dc_title().lower() |
|
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
135 |
value = self.cw_attr_value(rtype) |
0 | 136 |
# do not restrict to `unicode` because Bytes will return a `str` value |
137 |
if isinstance(value, basestring): |
|
138 |
return self.printable_value(rtype, format='text/plain').lower() |
|
139 |
return value |
|
140 |
||
1493 | 141 |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
142 |
def fetch_config(fetchattrs, mainattr=None, pclass=AnyEntity, order='ASC'): |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
143 |
"""function to ease basic configuration of an entity class ORM. Basic usage |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
144 |
is: |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
145 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
146 |
.. sourcecode:: python |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
147 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
148 |
class MyEntity(AnyEntity): |
0 | 149 |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
150 |
fetch_attrs, cw_fetch_order = fetch_config(['attr1', 'attr2']) |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
151 |
# uncomment line below if you want the same sorting for 'unrelated' entities |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
152 |
# cw_fetch_unrelated_order = cw_fetch_order |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
153 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
154 |
Using this, when using ORM methods retrieving this type of entity, 'attr1' |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
155 |
and 'attr2' will be automatically prefetched and results will be sorted on |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
156 |
'attr1' ascending (ie the first attribute in the list). |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
157 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
158 |
This function will automatically add to fetched attributes those defined in |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
159 |
parent class given using the `pclass` argument. |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
160 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
161 |
Also, You can use `mainattr` and `order` argument to have a different |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
162 |
sorting. |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
163 |
""" |
0 | 164 |
if pclass is not None: |
165 |
fetchattrs += pclass.fetch_attrs |
|
166 |
if mainattr is None: |
|
167 |
mainattr = fetchattrs[0] |
|
168 |
@classmethod |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
169 |
def fetch_order(cls, select, attr, var): |
0 | 170 |
if attr == mainattr: |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
171 |
select.add_sort_var(var, order=='ASC') |
0 | 172 |
return fetchattrs, fetch_order |