author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 23 Sep 2009 09:29:39 +0200 | |
changeset 3377 | dd9d292b6a6d |
parent 3369 | 7b88d12b4ee2 |
child 3396 | fb261afd49cd |
permissions | -rw-r--r-- |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
1 |
"""Set of HTML automatic forms to create, delete, copy or edit a single entity |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
2 |
or a list of entities of the same type |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
3 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
4 |
:organization: Logilab |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1965
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1965
diff
changeset
|
7 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
8 |
""" |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
9 |
__docformat__ = "restructuredtext en" |
1965 | 10 |
_ = unicode |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
11 |
|
1147 | 12 |
from copy import copy |
13 |
||
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
14 |
from simplejson import dumps |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
15 |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2247
diff
changeset
|
16 |
from logilab.mtconverter import xml_escape |
1147 | 17 |
|
18 |
from cubicweb.selectors import (match_kwargs, one_line_rset, non_final_entity, |
|
19 |
specified_etype_implements, yes) |
|
2678
0308dc159b96
use yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2675
diff
changeset
|
20 |
from cubicweb.utils import make_uid |
1132 | 21 |
from cubicweb.view import EntityView |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
22 |
from cubicweb.common import tags |
3078
186ccbe0ba3f
missing import
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3077
diff
changeset
|
23 |
from cubicweb.web import INTERNAL_FIELD_VALUE, RequestError, stdmsgs, eid_param |
186ccbe0ba3f
missing import
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3077
diff
changeset
|
24 |
from cubicweb.web import uicfg |
2672
c66f52d44394
[reledit] don't try to use rel-edit on attributes without assicated fields (e.g _format field)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2576
diff
changeset
|
25 |
from cubicweb.web.form import FormViewMixIn, FieldNotFound |
2328
206735882b8e
[reledit] use guess_field, thus fixing select widget lacking a multiple attr. in case of * cardinality
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2327
diff
changeset
|
26 |
from cubicweb.web.formfields import guess_field |
206735882b8e
[reledit] use guess_field, thus fixing select widget lacking a multiple attr. in case of * cardinality
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2327
diff
changeset
|
27 |
from cubicweb.web.formwidgets import Button, SubmitButton, ResetButton |
2005
e8032965f37a
turn every form class into appobject. They should not be instantiated manually anymore.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1995
diff
changeset
|
28 |
from cubicweb.web.views import forms |
1491
742aff97dbf7
move AutomaticEntityForm and PrimaryView into their own module
sylvain.thenault@logilab.fr
parents:
1459
diff
changeset
|
29 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
30 |
|
1147 | 31 |
def relation_id(eid, rtype, role, reid): |
32 |
"""return an identifier for a relation between two entities""" |
|
33 |
if role == 'subject': |
|
34 |
return u'%s:%s:%s' % (eid, rtype, reid) |
|
35 |
return u'%s:%s:%s' % (reid, rtype, eid) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
36 |
|
1528
864ae7c15ef5
other fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1498
diff
changeset
|
37 |
def toggleable_relation_link(eid, nodeid, label='x'): |
1147 | 38 |
"""return javascript snippet to delete/undelete a relation between two |
39 |
entities |
|
40 |
""" |
|
1320 | 41 |
js = u"javascript: togglePendingDelete('%s', %s);" % ( |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2247
diff
changeset
|
42 |
nodeid, xml_escape(dumps(eid))) |
1320 | 43 |
return u'[<a class="handle" href="%s" id="handle%s">%s</a>]' % ( |
44 |
js, nodeid, label) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
45 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
46 |
|
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
47 |
class DeleteConfForm(forms.CompositeForm): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
48 |
__regid__ = 'deleteconf' |
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
49 |
__select__ = non_final_entity() |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
50 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
51 |
domid = 'deleteconf' |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
52 |
copy_nav_params = True |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
53 |
form_buttons = [Button(stdmsgs.YES, cwaction='delete'), |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
54 |
Button(stdmsgs.NO, cwaction='cancel')] |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
55 |
@property |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
56 |
def action(self): |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
57 |
return self.build_url('edit') |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
58 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
59 |
def __init__(self, *args, **kwargs): |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
60 |
super(DeleteConfForm, self).__init__(*args, **kwargs) |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
61 |
done = set() |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
62 |
for entity in self.rset.entities(): |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
63 |
if entity.eid in done: |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
64 |
continue |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
65 |
done.add(entity.eid) |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
66 |
subform = self.vreg['forms'].select('base', self.req, entity=entity, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
67 |
mainform=False) |
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
68 |
self.form_add_subform(subform) |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
69 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
70 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
71 |
class DeleteConfFormView(FormViewMixIn, EntityView): |
1147 | 72 |
"""form used to confirm deletion of some entities""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
73 |
__regid__ = 'deleteconf' |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
74 |
title = _('delete') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
75 |
# don't use navigation, all entities asked to be deleted should be displayed |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
76 |
# else we will only delete the displayed page |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
77 |
need_navigation = False |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
78 |
|
1852
f04da596da6c
give back onsubmit customizability (oops)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1847
diff
changeset
|
79 |
def call(self, onsubmit=None): |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
80 |
"""ask for confirmation before real deletion""" |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
81 |
req, w = self.req, self.w |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
82 |
_ = req._ |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
83 |
w(u'<script type="text/javascript">updateMessage(\'%s\');</script>\n' |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
84 |
% _('this action is not reversible!')) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
85 |
# XXX above message should have style of a warning |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
86 |
w(u'<h4>%s</h4>\n' % _('Do you want to delete the following element(s) ?')) |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
87 |
form = self.vreg['forms'].select(self.id, req, rset=self.rset, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
88 |
onsubmit=onsubmit) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
89 |
w(u'<ul>\n') |
1147 | 90 |
for entity in self.rset.entities(): |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
91 |
# don't use outofcontext view or any other that may contain inline edition form |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
92 |
w(u'<li>%s</li>' % tags.a(entity.view('textoutofcontext'), |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
93 |
href=entity.absolute_url())) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
94 |
w(u'</ul>\n') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
95 |
w(form.form_render()) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
96 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
97 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
98 |
class ClickAndEditFormView(FormViewMixIn, EntityView): |
2686 | 99 |
"""form used to permit ajax edition of a relation or attribute of an entity |
100 |
in a view, if logged user have the permission to edit it. |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
101 |
|
2686 | 102 |
(double-click on the field to see an appropriate edition widget). |
1147 | 103 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
104 |
__regid__ = 'doreledit' |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
105 |
__select__ = non_final_entity() & match_kwargs('rtype') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
106 |
# FIXME editableField class could be toggleable from userprefs |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
107 |
|
2504
f28b1ffc3c91
some reledit fixes: actually needs metadata in form's attrcategories, check autoform_section for attributes (XXX need check for relation), no <not specified> visible when attribute isn't editable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2484
diff
changeset
|
108 |
# add metadata to allow edition of metadata attributes (not considered by |
f28b1ffc3c91
some reledit fixes: actually needs metadata in form's attrcategories, check autoform_section for attributes (XXX need check for relation), no <not specified> visible when attribute isn't editable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2484
diff
changeset
|
109 |
# edition form by default) |
f28b1ffc3c91
some reledit fixes: actually needs metadata in form's attrcategories, check autoform_section for attributes (XXX need check for relation), no <not specified> visible when attribute isn't editable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2484
diff
changeset
|
110 |
attrcategories = ('primary', 'secondary', 'metadata') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
111 |
|
2365
9f5e911eab07
[reledit] allow composite edition if the composite is object
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2361
diff
changeset
|
112 |
_onclick = u"showInlineEditionForm(%(eid)s, '%(rtype)s', '%(divid)s')" |
2484
7e9283731db8
[reledit] a nicer icon
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2483
diff
changeset
|
113 |
_defaultlandingzone = (u'<img title="%(msg)s" ' |
7e9283731db8
[reledit] a nicer icon
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2483
diff
changeset
|
114 |
'src="data/accessories-text-editor.png" ' |
7e9283731db8
[reledit] a nicer icon
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2483
diff
changeset
|
115 |
'alt="%(msg)s"/>') |
2335
b78249be8a4b
[reledit] fix reload type (was a string), use simple clicks instead of doubles
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2334
diff
changeset
|
116 |
_landingzonemsg = _('click to edit this field') |
2332
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
117 |
# default relation vids according to cardinality |
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
118 |
_one_rvid = 'incontext' |
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
119 |
_many_rvid = 'csv' |
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
120 |
|
2678
0308dc159b96
use yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2675
diff
changeset
|
121 |
def _compute_best_vid(self, eschema, rschema, role): |
0308dc159b96
use yams api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2675
diff
changeset
|
122 |
if eschema.cardinality(rschema, role) in '+*': |
2332
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
123 |
return self._many_rvid |
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
124 |
return self._one_rvid |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
125 |
|
2371
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
126 |
def _build_landing_zone(self, lzone): |
2482
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
127 |
return lzone or self._defaultlandingzone % {'msg' : xml_escape(self.req._(self._landingzonemsg))} |
2371
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
128 |
|
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
129 |
def _build_renderer(self, entity, rtype, role): |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
130 |
return self.vreg['formrenderers'].select( |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
131 |
'base', self.req, entity=entity, display_label=False, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
132 |
display_help=False, display_fields=[(rtype, role)], table_class='', |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
133 |
button_bar_class='buttonbar', display_progress_div=False) |
2371
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
134 |
|
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
135 |
def _build_form(self, entity, rtype, role, formid, default, onsubmit, reload, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
136 |
extradata=None, **formargs): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
137 |
divid = 'd%s' % make_uid('%s-%s' % (rtype, entity.eid)) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
138 |
event_data = {'divid' : divid, 'eid' : entity.eid, 'rtype' : rtype, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
139 |
'reload' : dumps(reload), 'default' : default} |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
140 |
if extradata: |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
141 |
event_data.update(extradata) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
142 |
onsubmit %= event_data |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
143 |
cancelclick = "hideInlineEdit(%s,\'%s\',\'%s\')" % (entity.eid, rtype, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
144 |
divid) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
145 |
form = self.vreg['forms'].select( |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
146 |
formid, self.req, entity=entity, domid='%s-form' % divid, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
147 |
cssstyle='display: none', onsubmit=onsubmit, action='#', |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
148 |
form_buttons=[SubmitButton(), Button(stdmsgs.BUTTON_CANCEL, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
149 |
onclick=cancelclick)], |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
150 |
**formargs) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
151 |
form.event_data = event_data |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
152 |
return form |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
153 |
|
2329
8b5a1af6dc35
[reledit] small cleanup and add escape param to control xml_escapability of the value, also rename vid arg which clashes with entity.view(...) args
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2328
diff
changeset
|
154 |
def cell_call(self, row, col, rtype=None, role='subject', |
2336
a15d3f54f0f2
[reledit] left in by accident
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2335
diff
changeset
|
155 |
reload=False, # controls reloading the whole page after change |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
156 |
rvid=None, # vid to be applied to other side of rtype (non final relations only) |
2332
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
157 |
default=None, # default value |
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
158 |
landing_zone=None # prepend value with a separate html element to click onto |
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
159 |
# (esp. needed when values are links) |
2329
8b5a1af6dc35
[reledit] small cleanup and add escape param to control xml_escapability of the value, also rename vid arg which clashes with entity.view(...) args
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2328
diff
changeset
|
160 |
): |
2371
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
161 |
"""display field to edit entity's `rtype` relation on click""" |
2329
8b5a1af6dc35
[reledit] small cleanup and add escape param to control xml_escapability of the value, also rename vid arg which clashes with entity.view(...) args
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2328
diff
changeset
|
162 |
assert rtype |
2371
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
163 |
assert role in ('subject', 'object') |
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
164 |
if default is None: |
76bf522c27be
[reledit] simplify, fixing #344545
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2365
diff
changeset
|
165 |
default = xml_escape(self.req._('<no value>')) |
2789
39712da6f397
R propagate deprecation of AppObject.entity()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2686
diff
changeset
|
166 |
entity = self.rset.get_entity(row, col) |
2332
b04d80f19075
[reledit] try to be smart at getting a good default vid for relations, factor computing cardinality from reledit and formfields
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2331
diff
changeset
|
167 |
rschema = entity.schema.rschema(rtype) |
2482
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
168 |
lzone = self._build_landing_zone(landing_zone) |
2333
1de22d3e985b
[reledit] landing zone useful only for relations; cleanup
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2332
diff
changeset
|
169 |
# compute value, checking perms, build form |
1579 | 170 |
if rschema.is_final(): |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
171 |
onsubmit = ("return inlineValidateAttributeForm('%(rtype)s', '%(eid)s', '%(divid)s', " |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
172 |
"%(reload)s, '%(default)s');") |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
173 |
form = self._build_form( |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
174 |
entity, rtype, role, 'edition', default, onsubmit, reload, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
175 |
attrcategories=self.attrcategories) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
176 |
if not self.should_edit_attribute(entity, rschema, role, form): |
2224
52041b014949
fix #344046 and #344322: check relation permission, set to default when edition allowed and no value (for final *and* non final relations)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2049
diff
changeset
|
177 |
return |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
178 |
value = entity.printable_value(rtype) or default |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
179 |
self.attribute_form(lzone, value, form, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
180 |
self._build_renderer(entity, rtype, role)) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
181 |
else: |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
182 |
if rvid is None: |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
183 |
rvid = self._compute_best_vid(entity.e_schema, rschema, role) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
184 |
if not self.should_edit_relation(entity, rschema, role, rvid): |
2380
5d980ba57632
[reledit] restore primaryview_display_ctrl usage by default in reledit (including bugfix over last implementation)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2376
diff
changeset
|
185 |
return |
1579 | 186 |
rset = entity.related(rtype, role) |
2504
f28b1ffc3c91
some reledit fixes: actually needs metadata in form's attrcategories, check autoform_section for attributes (XXX need check for relation), no <not specified> visible when attribute isn't editable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2484
diff
changeset
|
187 |
if rset: |
f28b1ffc3c91
some reledit fixes: actually needs metadata in form's attrcategories, check autoform_section for attributes (XXX need check for relation), no <not specified> visible when attribute isn't editable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2484
diff
changeset
|
188 |
value = self.view(rvid, rset) |
f28b1ffc3c91
some reledit fixes: actually needs metadata in form's attrcategories, check autoform_section for attributes (XXX need check for relation), no <not specified> visible when attribute isn't editable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2484
diff
changeset
|
189 |
else: |
f28b1ffc3c91
some reledit fixes: actually needs metadata in form's attrcategories, check autoform_section for attributes (XXX need check for relation), no <not specified> visible when attribute isn't editable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2484
diff
changeset
|
190 |
value = default |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
191 |
onsubmit = ("return inlineValidateRelationForm('%(rtype)s', '%(role)s', '%(eid)s', " |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
192 |
"'%(divid)s', %(reload)s, '%(vid)s', '%(default)s', '%(lzone)s');") |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
193 |
form = self._build_form( |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
194 |
entity, rtype, role, 'base', default, onsubmit, reload, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
195 |
dict(vid=rvid, role=role, lzone=lzone)) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
196 |
field = guess_field(entity.e_schema, entity.schema.rschema(rtype), role) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
197 |
form.append_field(field) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
198 |
self.relation_form(lzone, value, form, |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
199 |
self._build_renderer(entity, rtype, role)) |
2365
9f5e911eab07
[reledit] allow composite edition if the composite is object
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2361
diff
changeset
|
200 |
|
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
201 |
def should_edit_attribute(self, entity, rschema, role, form): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
202 |
rtype = str(rschema) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
203 |
ttype = rschema.targets(entity.id, role)[0] |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
204 |
afs = uicfg.autoform_section.etype_get(entity.id, rtype, role, ttype) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
205 |
if not (afs in self.attrcategories and entity.has_perm('update')): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
206 |
self.w(entity.printable_value(rtype)) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
207 |
return False |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
208 |
try: |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
209 |
field = form.field_by_name(rtype, role) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
210 |
except FieldNotFound: |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
211 |
self.w(entity.printable_value(rtype)) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
212 |
return False |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
213 |
return True |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1750
diff
changeset
|
214 |
|
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
215 |
def should_edit_relation(self, entity, rschema, role, rvid): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
216 |
if ((role == 'subject' and not rschema.has_perm(self.req, 'add', |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
217 |
fromeid=entity.eid)) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
218 |
or |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
219 |
(role == 'object' and not rschema.has_perm(self.req, 'add', |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
220 |
toeid=entity.eid))): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
221 |
self.wview(rvid, entity.related(str(rschema), role), 'null') |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
222 |
return False |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
223 |
return True |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
224 |
|
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
225 |
def attribute_form(self, lzone, value, form, renderer): |
2482
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
226 |
"""div (class=field) |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
227 |
+-xxx div |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
228 |
| +-xxx div (class=editableField) |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
229 |
| | +-landing zone |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
230 |
| +-value-xxx div |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
231 |
| +-value |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
232 |
+-form-xxx div |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
233 |
""" |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
234 |
w = self.w |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
235 |
w(u'<div class="field">') |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
236 |
w(u'<div id="%s" style="display: inline">' % form.event_data['divid']) |
2482
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
237 |
w(tags.div(lzone, klass='editableField', |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
238 |
onclick=self._onclick % form.event_data)) |
2482
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
239 |
w(u'<div id="value-%s" style="display: inline">%s</div>' % |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
240 |
(form.event_data['divid'], value)) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
241 |
w(u'</div>') |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
242 |
w(form.form_render(renderer=renderer)) |
2482
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
243 |
w(u'</div>') |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
244 |
|
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
245 |
def relation_form(self, lzone, value, form, renderer): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
246 |
"""xxx-reledit div (class=field) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
247 |
+-xxx div (class="editableField") |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
248 |
| +-landing zone |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
249 |
+-value |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
250 |
+-form-xxx div |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
251 |
""" |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
252 |
w = self.w |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
253 |
w(u'<div id="%s-reledit" class="field">' % form.event_data['divid']) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
254 |
w(tags.div(lzone, klass='editableField', id=form.event_data['divid'], |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
255 |
onclick=self._onclick % form.event_data)) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
256 |
w(value) |
2482
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
257 |
w(form.form_render(renderer=renderer)) |
dead2d56f711
[reledit] attributes : have a laning zone after all (less intrusive), fix likely bug of relation edition
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2392
diff
changeset
|
258 |
w(u'</div>') |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
259 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
260 |
|
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
261 |
class AutoClickAndEditFormView(ClickAndEditFormView): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
262 |
"""same as ClickAndEditFormView but checking if the view *should* be applied |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
263 |
by checking uicfg configuration and composite relation property. |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
264 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
265 |
__regid__ = 'reledit' |
2679
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
266 |
|
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
267 |
def should_edit_relation(self, entity, rschema, role, rvid): |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
268 |
eschema = entity.e_schema |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
269 |
rtype = str(rschema) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
270 |
# XXX check autoform_section. what if 'generic'? |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
271 |
dispctrl = uicfg.primaryview_display_ctrl.etype_get(eschema, rtype, role) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
272 |
vid = dispctrl.get('vid', 'reledit') |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
273 |
if vid != 'reledit': # reledit explicitly disabled |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
274 |
self.wview(vid, entity.related(rtype, role), 'null') |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
275 |
return False |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
276 |
if eschema.role_rproperty(role, rschema, 'composite') == role: |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
277 |
self.wview(rvid, entity.related(rtype, role), 'null') |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
278 |
return False |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
279 |
return super(AutoClickAndEditFormView, self).should_edit_relation( |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
280 |
entity, rschema, role, rvid) |
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
281 |
|
3fa8c0cec760
[reledit] refactor, split into reledit/doreledit where the former try to tell if edition *should* be done, and the later tell if edition *can* be done
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2678
diff
changeset
|
282 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
283 |
class EditionFormView(FormViewMixIn, EntityView): |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
284 |
"""display primary entity edition form""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
285 |
__regid__ = 'edition' |
1147 | 286 |
# add yes() so it takes precedence over deprecated views in baseforms, |
287 |
# though not baseforms based customized view |
|
288 |
__select__ = one_line_rset() & non_final_entity() & yes() |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
289 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
290 |
title = _('edition') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
291 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
292 |
def cell_call(self, row, col, **kwargs): |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
293 |
entity = self.complete_entity(row, col) |
1147 | 294 |
self.render_form(entity) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
295 |
|
1147 | 296 |
def render_form(self, entity): |
297 |
"""fetch and render the form""" |
|
298 |
self.form_title(entity) |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
299 |
form = self.vreg['forms'].select('edition', self.req, rset=entity.rset, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
300 |
row=entity.row, col=entity.col, entity=entity, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
301 |
submitmsg=self.submited_message()) |
1147 | 302 |
self.init_form(form, entity) |
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
303 |
self.w(form.form_render(formvid=u'edition')) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
304 |
|
1147 | 305 |
def init_form(self, form, entity): |
306 |
"""customize your form before rendering here""" |
|
2049
b9baedffeb8b
set __maineid in EntityFieldsForm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2048
diff
changeset
|
307 |
pass |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
308 |
|
1147 | 309 |
def form_title(self, entity): |
310 |
"""the form view title""" |
|
311 |
ptitle = self.req._(self.title) |
|
312 |
self.w(u'<div class="formTitle"><span>%s %s</span></div>' % ( |
|
313 |
entity.dc_type(), ptitle and '(%s)' % ptitle)) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
314 |
|
1147 | 315 |
def submited_message(self): |
316 |
"""return the message that will be displayed on successful edition""" |
|
317 |
return self.req._('entity edited') |
|
318 |
||
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
319 |
|
1147 | 320 |
class CreationFormView(EditionFormView): |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
321 |
"""display primary entity creation form""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
322 |
__regid__ = 'creation' |
1147 | 323 |
__select__ = specified_etype_implements('Any') & yes() |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
324 |
|
1147 | 325 |
title = _('creation') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
326 |
|
1147 | 327 |
def call(self, **kwargs): |
328 |
"""creation view for an entity""" |
|
3346
b1fd9d4ef579
fix case insensitive selector for entity creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3331
diff
changeset
|
329 |
# at this point we know etype is a valid entity type, thanks to our |
b1fd9d4ef579
fix case insensitive selector for entity creation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3331
diff
changeset
|
330 |
# selector |
1147 | 331 |
etype = kwargs.pop('etype', self.req.form.get('etype')) |
3077
6c92323667a6
case insensitive add/XXX url
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3062
diff
changeset
|
332 |
entity = self.vreg['etypes'].etype_class(etype)(self.req) |
6c92323667a6
case insensitive add/XXX url
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3062
diff
changeset
|
333 |
self.initialize_varmaker() |
6c92323667a6
case insensitive add/XXX url
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3062
diff
changeset
|
334 |
entity.eid = self.varmaker.next() |
6c92323667a6
case insensitive add/XXX url
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3062
diff
changeset
|
335 |
self.render_form(entity) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
336 |
|
1147 | 337 |
def form_title(self, entity): |
338 |
"""the form view title""" |
|
339 |
if '__linkto' in self.req.form: |
|
340 |
if isinstance(self.req.form['__linkto'], list): |
|
341 |
# XXX which one should be considered (case: add a ticket to a |
|
342 |
# version in jpl) |
|
343 |
rtype, linkto_eid, role = self.req.form['__linkto'][0].split(':') |
|
344 |
else: |
|
345 |
rtype, linkto_eid, role = self.req.form['__linkto'].split(':') |
|
346 |
linkto_rset = self.req.eid_rset(linkto_eid) |
|
347 |
linkto_type = linkto_rset.description[0][0] |
|
348 |
if role == 'subject': |
|
349 |
title = self.req.__('creating %s (%s %s %s %%(linkto)s)' % ( |
|
350 |
entity.e_schema, entity.e_schema, rtype, linkto_type)) |
|
351 |
else: |
|
352 |
title = self.req.__('creating %s (%s %%(linkto)s %s %s)' % ( |
|
353 |
entity.e_schema, linkto_type, rtype, entity.e_schema)) |
|
354 |
msg = title % {'linkto' : self.view('incontext', linkto_rset)} |
|
355 |
self.w(u'<div class="formTitle notransform"><span>%s</span></div>' % msg) |
|
356 |
else: |
|
357 |
super(CreationFormView, self).form_title(entity) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
358 |
|
1147 | 359 |
def url(self): |
360 |
"""return the url associated with this view""" |
|
361 |
return self.create_url(self.req.form.get('etype')) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
362 |
|
1147 | 363 |
def submited_message(self): |
364 |
"""return the message that will be displayed on successful edition""" |
|
365 |
return self.req._('entity created') |
|
366 |
||
367 |
||
368 |
class CopyFormView(EditionFormView): |
|
369 |
"""display primary entity creation form initialized with values from another |
|
370 |
entity |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
371 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
372 |
__regid__ = 'copy' |
3062
a8e901fc4457
ease overriding of copy warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2686
diff
changeset
|
373 |
warning_message = _('Please note that this is only a shallow copy') |
a8e901fc4457
ease overriding of copy warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2686
diff
changeset
|
374 |
|
1147 | 375 |
def render_form(self, entity): |
376 |
"""fetch and render the form""" |
|
377 |
# make a copy of entity to avoid altering the entity in the |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
378 |
# request's cache. |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
379 |
entity.complete() |
1147 | 380 |
self.newentity = copy(entity) |
1703
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
381 |
self.copying = entity |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
382 |
self.initialize_varmaker() |
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
383 |
self.newentity.eid = self.varmaker.next() |
1147 | 384 |
self.w(u'<script type="text/javascript">updateMessage("%s");</script>\n' |
3062
a8e901fc4457
ease overriding of copy warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2686
diff
changeset
|
385 |
% self.req._(self.warning_message)) |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
386 |
super(CopyFormView, self).render_form(self.newentity) |
1147 | 387 |
del self.newentity |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
388 |
|
1147 | 389 |
def init_form(self, form, entity): |
390 |
"""customize your form before rendering here""" |
|
391 |
super(CopyFormView, self).init_form(form, entity) |
|
392 |
if entity.eid == self.newentity.eid: |
|
1703
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
393 |
form.form_add_hidden(eid_param('__cloned_eid', entity.eid), |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
394 |
self.copying.eid) |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
395 |
for rschema, _, role in form.relations_by_category(form.attrcategories, |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
396 |
'add'): |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
397 |
if not rschema.is_final(): |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
398 |
# ensure relation cache is filed |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
399 |
rset = self.copying.related(rschema, role) |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
400 |
self.newentity.set_related_cache(rschema, role, rset) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
401 |
|
1147 | 402 |
def submited_message(self): |
403 |
"""return the message that will be displayed on successful edition""" |
|
404 |
return self.req._('entity copied') |
|
405 |
||
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
406 |
|
2005
e8032965f37a
turn every form class into appobject. They should not be instantiated manually anymore.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1995
diff
changeset
|
407 |
class TableEditForm(forms.CompositeForm): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
408 |
__regid__ = 'muledit' |
1692 | 409 |
domid = 'entityForm' |
410 |
onsubmit = "return validateForm('%s', null);" % domid |
|
1304 | 411 |
form_buttons = [SubmitButton(_('validate modifications on selected items')), |
412 |
ResetButton(_('revert changes'))] |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
413 |
|
1692 | 414 |
def __init__(self, req, rset, **kwargs): |
415 |
kwargs.setdefault('__redirectrql', rset.printable_rql()) |
|
2890
fdcb8a2bb6eb
fix __init__ parameters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2789
diff
changeset
|
416 |
super(TableEditForm, self).__init__(req, rset=rset, **kwargs) |
1147 | 417 |
for row in xrange(len(self.rset)): |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
418 |
form = self.vreg['forms'].select('edition', self.req, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
419 |
rset=self.rset, row=row, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
420 |
attrcategories=('primary',), |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
421 |
mainform=False) |
1324 | 422 |
# XXX rely on the EntityCompositeFormRenderer to put the eid input |
1147 | 423 |
form.remove_field(form.field_by_name('eid')) |
424 |
self.form_add_subform(form) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
425 |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
426 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
427 |
class TableEditFormView(FormViewMixIn, EntityView): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
428 |
__regid__ = 'muledit' |
1147 | 429 |
__select__ = EntityView.__select__ & yes() |
430 |
title = _('multiple edit') |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
431 |
|
1147 | 432 |
def call(self, **kwargs): |
433 |
"""a view to edit multiple entities of the same type the first column |
|
434 |
should be the eid |
|
435 |
""" |
|
436 |
#self.form_title(entity) |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
437 |
form = self.vreg['forms'].select(self.id, self.req, rset=self.rset) |
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
438 |
self.w(form.form_render()) |
1147 | 439 |
|
440 |
||
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
441 |
class InlineEntityEditionFormView(FormViewMixIn, EntityView): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
442 |
__regid__ = 'inline-edition' |
1147 | 443 |
__select__ = non_final_entity() & match_kwargs('peid', 'rtype') |
444 |
removejs = "removeInlinedEntity('%s', '%s', '%s')" |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
445 |
|
1147 | 446 |
def call(self, **kwargs): |
447 |
"""redefine default call() method to avoid automatic |
|
448 |
insertions of <div class="section"> between each row of |
|
449 |
the resultset |
|
450 |
""" |
|
451 |
rset = self.rset |
|
452 |
for i in xrange(len(rset)): |
|
453 |
self.wview(self.id, rset, row=i, **kwargs) |
|
454 |
||
3327
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
455 |
def cell_call(self, row, col, peid, rtype, role, i18nctx, **kwargs): |
1147 | 456 |
""" |
457 |
:param peid: the parent entity's eid hosting the inline form |
|
458 |
:param rtype: the relation bridging `etype` and `peid` |
|
459 |
:param role: the role played by the `peid` in the relation |
|
460 |
""" |
|
2789
39712da6f397
R propagate deprecation of AppObject.entity()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2686
diff
changeset
|
461 |
entity = self.rset.get_entity(row, col) |
1147 | 462 |
divonclick = "restoreInlinedEntity('%s', '%s', '%s')" % (peid, rtype, |
463 |
entity.eid) |
|
3327
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
464 |
self.render_form(entity, peid, rtype, role, i18nctx, |
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
465 |
divonclick=divonclick) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
466 |
|
3327
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
467 |
def render_form(self, entity, peid, rtype, role, i18nctx, **kwargs): |
1147 | 468 |
"""fetch and render the form""" |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
469 |
form = self.vreg['forms'].select('edition', self.req, entity=entity, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
470 |
form_renderer_id='inline', |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2576
diff
changeset
|
471 |
mainform=False, copy_nav_params=False) |
1396 | 472 |
self.add_hiddens(form, entity, peid, rtype, role) |
473 |
divid = '%s-%s-%s' % (peid, rtype, entity.eid) |
|
3327
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
474 |
title = self.req.pgettext(i18nctx, 'This %s' % entity.e_schema) |
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
475 |
removejs = self.removejs % (peid, rtype, entity.eid) |
2247
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
476 |
countkey = '%s_count' % rtype |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
477 |
try: |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
478 |
self.req.data[countkey] += 1 |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
479 |
except: |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
480 |
self.req.data[countkey] = 1 |
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
481 |
self.w(form.form_render(divid=divid, title=title, removejs=removejs, |
3327
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
482 |
i18nctx=i18nctx, |
2247
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
483 |
counter=self.req.data[countkey], **kwargs)) |
1396 | 484 |
|
485 |
def add_hiddens(self, form, entity, peid, rtype, role): |
|
486 |
# to ease overriding (see cubes.vcsfile.views.forms for instance) |
|
1710
8c717cc0b353
refactor error handling: get validation error information from a form attribute instead of req.data to avoid pb when multiple forms are displayed
sylvain.thenault@logilab.fr
parents:
1703
diff
changeset
|
487 |
if self.keep_entity(form, entity, peid, rtype): |
1147 | 488 |
if entity.has_eid(): |
489 |
rval = entity.eid |
|
490 |
else: |
|
491 |
rval = INTERNAL_FIELD_VALUE |
|
492 |
form.form_add_hidden('edit%s-%s:%s' % (role[0], rtype, peid), rval) |
|
493 |
form.form_add_hidden(name='%s:%s' % (rtype, peid), value=entity.eid, |
|
494 |
id='rel-%s-%s-%s' % (peid, rtype, entity.eid)) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
495 |
|
1710
8c717cc0b353
refactor error handling: get validation error information from a form attribute instead of req.data to avoid pb when multiple forms are displayed
sylvain.thenault@logilab.fr
parents:
1703
diff
changeset
|
496 |
def keep_entity(self, form, entity, peid, rtype): |
1147 | 497 |
if not entity.has_eid(): |
498 |
return True |
|
499 |
# are we regenerating form because of a validation error ? |
|
1750 | 500 |
if form.form_previous_values: |
1710
8c717cc0b353
refactor error handling: get validation error information from a form attribute instead of req.data to avoid pb when multiple forms are displayed
sylvain.thenault@logilab.fr
parents:
1703
diff
changeset
|
501 |
cdvalues = self.req.list_form_param(eid_param(rtype, peid), |
8c717cc0b353
refactor error handling: get validation error information from a form attribute instead of req.data to avoid pb when multiple forms are displayed
sylvain.thenault@logilab.fr
parents:
1703
diff
changeset
|
502 |
form.form_previous_values) |
1147 | 503 |
if unicode(entity.eid) not in cdvalues: |
504 |
return False |
|
505 |
return True |
|
506 |
||
507 |
||
508 |
class InlineEntityCreationFormView(InlineEntityEditionFormView): |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
509 |
__regid__ = 'inline-creation' |
1147 | 510 |
__select__ = (match_kwargs('peid', 'rtype') |
511 |
& specified_etype_implements('Any')) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
512 |
removejs = "removeInlineForm('%s', '%s', '%s')" |
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
513 |
|
3327
44efba78afac
fix/enhance i18n context usage for inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3078
diff
changeset
|
514 |
def call(self, etype, peid, rtype, role, i18nctx, **kwargs): |
1147 | 515 |
""" |
516 |
:param etype: the entity type being created in the inline form |
|
517 |
:param peid: the parent entity's eid hosting the inline form |
|
518 |
:param rtype: the relation bridging `etype` and `peid` |
|
519 |
:param role: the role played by the `peid` in the relation |
|
520 |
""" |
|
521 |
try: |
|
3331
8e63b72287b1
cleaner code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3327
diff
changeset
|
522 |
cls = self.vreg['etypes'].etype_class(etype) |
1147 | 523 |
except: |
524 |
self.w(self.req._('no such entity type %s') % etype) |
|
525 |
return |
|
526 |
self.initialize_varmaker() |
|
3331
8e63b72287b1
cleaner code
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3327
diff
changeset
|
527 |
entity = cls(self.req) |
1147 | 528 |
entity.eid = self.varmaker.next() |
3355
39ea15e4589a
[inline forms] propagate kwargs to render_form
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3346
diff
changeset
|
529 |
self.render_form(entity, peid, rtype, role, i18nctx, **kwargs) |