author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Wed, 08 Jul 2009 19:02:29 +0200 | |
branch | stable |
changeset 2330 | 8c70ca715fe9 |
parent 2329 | 8b5a1af6dc35 |
child 2331 | 4c02a761d879 |
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) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
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 |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
23 |
from cubicweb.web import INTERNAL_FIELD_VALUE, stdmsgs, eid_param |
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
|
24 |
from cubicweb.web.form import FormViewMixIn |
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
|
25 |
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
|
26 |
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
|
27 |
from cubicweb.web.views import forms |
1491
742aff97dbf7
move AutomaticEntityForm and PrimaryView into their own module
sylvain.thenault@logilab.fr
parents:
1459
diff
changeset
|
28 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
29 |
|
1147 | 30 |
def relation_id(eid, rtype, role, reid): |
31 |
"""return an identifier for a relation between two entities""" |
|
32 |
if role == 'subject': |
|
33 |
return u'%s:%s:%s' % (eid, rtype, reid) |
|
34 |
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
|
35 |
|
1528
864ae7c15ef5
other fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1498
diff
changeset
|
36 |
def toggleable_relation_link(eid, nodeid, label='x'): |
1147 | 37 |
"""return javascript snippet to delete/undelete a relation between two |
38 |
entities |
|
39 |
""" |
|
1320 | 40 |
js = u"javascript: togglePendingDelete('%s', %s);" % ( |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2247
diff
changeset
|
41 |
nodeid, xml_escape(dumps(eid))) |
1320 | 42 |
return u'[<a class="handle" href="%s" id="handle%s">%s</a>]' % ( |
43 |
js, nodeid, label) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
44 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
45 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
46 |
class DeleteConfForm(FormViewMixIn, EntityView): |
1147 | 47 |
"""form used to confirm deletion of some entities""" |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
48 |
id = 'deleteconf' |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
49 |
title = _('delete') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
50 |
# 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
|
51 |
# else we will only delete the displayed page |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
52 |
need_navigation = False |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
53 |
|
1852
f04da596da6c
give back onsubmit customizability (oops)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1847
diff
changeset
|
54 |
def call(self, onsubmit=None): |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
55 |
"""ask for confirmation before real deletion""" |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
56 |
req, w = self.req, self.w |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
57 |
_ = req._ |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
58 |
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
|
59 |
% _('this action is not reversible!')) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
60 |
# XXX above message should have style of a warning |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
61 |
w(u'<h4>%s</h4>\n' % _('Do you want to delete the following element(s) ?')) |
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
|
62 |
form = self.vreg.select_object('forms', 'composite', req, domid='deleteconf', |
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
|
63 |
copy_nav_params=True, |
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
|
64 |
action=self.build_url('edit'), onsubmit=onsubmit, |
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
|
65 |
form_buttons=[Button(stdmsgs.YES, cwaction='delete'), |
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
|
66 |
Button(stdmsgs.NO, cwaction='cancel')]) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
67 |
done = set() |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
68 |
w(u'<ul>\n') |
1147 | 69 |
for entity in self.rset.entities(): |
70 |
if entity.eid in done: |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
71 |
continue |
1147 | 72 |
done.add(entity.eid) |
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
|
73 |
subform = self.vreg.select_object('forms', 'base', req, entity=entity, |
2048
5e4d1433b90b
replace set_error_url/set_dom_id by a single mainform argument
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2046
diff
changeset
|
74 |
mainform=False) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
75 |
form.form_add_subform(subform) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
76 |
# 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
|
77 |
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
|
78 |
href=entity.absolute_url())) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
79 |
w(u'</ul>\n') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
80 |
w(form.form_render()) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
81 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
82 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
83 |
class ClickAndEditFormView(FormViewMixIn, EntityView): |
1147 | 84 |
"""form used to permit ajax edition of an attribute of an entity in a view |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
85 |
|
1147 | 86 |
(double-click on the field to see an appropriate edition widget) |
87 |
""" |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
88 |
id = 'reledit' |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
89 |
__select__ = non_final_entity() & match_kwargs('rtype') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
90 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
91 |
# 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
|
92 |
|
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
|
93 |
_ondblclick = "showInlineEditionForm(%(eid)s, '%(rtype)s', '%(divid)s')" |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
94 |
_defaultlandingzone = u'<img title="%s" class="needsvalidation" src="data/file.gif"/>' |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
95 |
_landingzonemsg = _('double click to edit this field') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
96 |
|
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
|
97 |
def cell_call(self, row, col, rtype=None, role='subject', |
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
|
98 |
reload=False, # controls reloading the whole page after change |
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
|
99 |
rvid='textoutofcontext', # vid to be applied to other side of rtype |
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
|
100 |
escape=True, # depending on the vid, will xml_escape or not |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
101 |
default=None, # default value |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
102 |
landing_zone=None # prepend value with a separate html element to click onto |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
103 |
# (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
|
104 |
): |
1147 | 105 |
"""display field to edit entity's `rtype` relation on double-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
|
106 |
assert rtype |
1579 | 107 |
rschema = self.schema.rschema(rtype) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
108 |
entity = self.entity(row, col) |
1798
cc86fe8efaaa
pass default values along the whole call chain, fix hidden field update bug
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1781
diff
changeset
|
109 |
if not default: |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
110 |
default = xml_escape(self.req._('<no value>')) |
1579 | 111 |
if rschema.is_final(): |
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
|
112 |
value = entity.printable_value(rtype) |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
113 |
value = value.strip() or default |
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
|
114 |
if not entity.has_perm('update'): |
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
|
115 |
self.w(value) |
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
|
116 |
return |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
117 |
else: |
1579 | 118 |
rset = entity.related(rtype, role) |
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
|
119 |
candidate = self.view(rvid, rset, 'null').strip() |
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
|
120 |
if candidate and escape: |
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
|
121 |
value = xml_escape(candidate) |
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
|
122 |
value = candidate or default |
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
|
123 |
# check perms. |
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
|
124 |
if role == 'subject'and not rschema.has_perm(self.req, 'add', |
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
|
125 |
fromeid=entity.eid): |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
126 |
self.w(value) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
127 |
return |
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
|
128 |
elif role == 'object' and not rschema.has_perm(self.req, 'add', |
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
|
129 |
toeid=entity.eid): |
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
|
130 |
self.w(value) |
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
|
131 |
return |
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
|
132 |
# build form. |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
133 |
landing_zone = landing_zone or self._defaultlandingzone % self.req._(self._landingzonemsg) |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
134 |
value = landing_zone + value |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1750
diff
changeset
|
135 |
if rschema.is_final(): |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
136 |
form = self._build_attribute_form(entity, value, rtype, role, reload, |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
137 |
row, col, default, landing_zone) |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1750
diff
changeset
|
138 |
else: |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
139 |
form = self._build_relation_form(entity, value, rtype, role, row, col, |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
140 |
rvid, default, escape, landing_zone) |
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
|
141 |
renderer = self.vreg.select_object('formrenderers', 'base', self.req, |
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
|
142 |
entity=entity, |
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
|
143 |
display_label=False, display_help=False, |
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
|
144 |
display_fields=[(rtype, role)], |
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
|
145 |
table_class='', button_bar_class='buttonbar', |
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
|
146 |
display_progress_div=False) |
1760
6b97d286eb5a
[reledit] relation edition : cleanup a bit #343123
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1759
diff
changeset
|
147 |
self.w(form.form_render(renderer=renderer)) |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1750
diff
changeset
|
148 |
|
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
149 |
def _build_relation_form(self, entity, value, rtype, role, row, col, rvid, default, escape, lzone): |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
150 |
print rvid, escape |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1750
diff
changeset
|
151 |
divid = 'd%s' % make_uid('%s-%s' % (rtype, entity.eid)) |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
152 |
event_data = {'divid' : divid, 'eid' : entity.eid, 'rtype' : rtype, 'vid' : rvid, |
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
153 |
'default' : default, 'role' : role, 'escape' : escape, 'lzone' : lzone} |
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
|
154 |
onsubmit = ("return inlineValidateRelationForm('%(divid)s-form', '%(rtype)s', " |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
155 |
"'%(role)s', '%(eid)s', '%(divid)s', '%(vid)s', '%(default)s', '%(escape)s', '%(lzone)s');" |
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
|
156 |
% event_data) |
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
|
157 |
cancelclick = "cancelInlineEdit(%s,\'%s\',\'%s\')" % ( |
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
|
158 |
entity.eid, rtype, divid) |
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
|
159 |
form = self.vreg.select_object('forms', 'base', self.req, entity=entity, |
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
|
160 |
domid='%s-form' % divid, cssstyle='display: none', |
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
|
161 |
onsubmit=onsubmit, action='#', |
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
|
162 |
form_buttons=[SubmitButton(), |
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
|
163 |
Button(stdmsgs.BUTTON_CANCEL, |
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
|
164 |
onclick=cancelclick)]) |
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
|
165 |
field = guess_field(entity.e_schema, entity.schema.rschema(rtype), role) |
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
|
166 |
form.append_field(field) |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1750
diff
changeset
|
167 |
self.w(tags.div(value, klass='editableField', id=divid, |
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
|
168 |
ondblclick=self._ondblclick % event_data)) |
1760
6b97d286eb5a
[reledit] relation edition : cleanup a bit #343123
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1759
diff
changeset
|
169 |
return form |
1759
61d026ced19f
preliminary support for inline edition of relations
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1750
diff
changeset
|
170 |
|
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
171 |
def _build_attribute_form(self, entity, value, rtype, role, reload, row, col, default, lzone): |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
172 |
eid = entity.eid |
1559
c4d4851bd18b
[editforms] fix missing __maineid, avoid double submit through submit button, say no to locals()
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1528
diff
changeset
|
173 |
divid = 'd%s' % make_uid('%s-%s' % (rtype, eid)) |
1576
3bfcf1e4eb26
display_fields should search for name+role
sylvain.thenault@logilab.fr
parents:
1559
diff
changeset
|
174 |
event_data = {'divid' : divid, 'eid' : eid, 'rtype' : rtype, |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
175 |
'reload' : dumps(reload), 'default' : default, 'lzone' : lzone} |
2327
2aa28ac13d64
[reledit] onsubmit event is not common to both cases, move from class
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2312
diff
changeset
|
176 |
onsubmit = ("return inlineValidateAttributeForm('%(divid)s-form', '%(rtype)s', " |
2330
8c70ca715fe9
[reledit] have a link-free landing zone for mouse-clicks (closes #343544)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2329
diff
changeset
|
177 |
"'%(eid)s', '%(divid)s', %(reload)s, '%(default)s', '%(lzone)s');") |
1559
c4d4851bd18b
[editforms] fix missing __maineid, avoid double submit through submit button, say no to locals()
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1528
diff
changeset
|
178 |
buttons = [SubmitButton(stdmsgs.BUTTON_OK), |
1304 | 179 |
Button(stdmsgs.BUTTON_CANCEL, |
1576
3bfcf1e4eb26
display_fields should search for name+role
sylvain.thenault@logilab.fr
parents:
1559
diff
changeset
|
180 |
onclick="cancelInlineEdit(%s,\'%s\',\'%s\')" % ( |
3bfcf1e4eb26
display_fields should search for name+role
sylvain.thenault@logilab.fr
parents:
1559
diff
changeset
|
181 |
eid, rtype, divid))] |
1147 | 182 |
form = self.vreg.select_object('forms', 'edition', self.req, self.rset, |
1304 | 183 |
row=row, col=col, form_buttons=buttons, |
1147 | 184 |
domid='%s-form' % divid, action='#', |
185 |
cssstyle='display: none', |
|
2327
2aa28ac13d64
[reledit] onsubmit event is not common to both cases, move from class
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2312
diff
changeset
|
186 |
onsubmit=onsubmit % event_data) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
187 |
self.w(tags.div(value, klass='editableField', id=divid, |
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
|
188 |
ondblclick=self._ondblclick % event_data)) |
1760
6b97d286eb5a
[reledit] relation edition : cleanup a bit #343123
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1759
diff
changeset
|
189 |
return form |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
190 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
191 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
192 |
class EditionFormView(FormViewMixIn, EntityView): |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
193 |
"""display primary entity edition form""" |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
194 |
id = 'edition' |
1147 | 195 |
# add yes() so it takes precedence over deprecated views in baseforms, |
196 |
# though not baseforms based customized view |
|
197 |
__select__ = one_line_rset() & non_final_entity() & yes() |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
198 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
199 |
title = _('edition') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
200 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
201 |
def cell_call(self, row, col, **kwargs): |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
202 |
entity = self.complete_entity(row, col) |
1147 | 203 |
self.render_form(entity) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
204 |
|
1147 | 205 |
def render_form(self, entity): |
206 |
"""fetch and render the form""" |
|
207 |
self.form_title(entity) |
|
1286
cb68c8af3858
use entity's rset and row/col info
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
208 |
form = self.vreg.select_object('forms', 'edition', self.req, entity.rset, |
cb68c8af3858
use entity's rset and row/col info
sylvain.thenault@logilab.fr
parents:
1285
diff
changeset
|
209 |
row=entity.row, col=entity.col, entity=entity, |
1305
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
210 |
submitmsg=self.submited_message()) |
1147 | 211 |
self.init_form(form, entity) |
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
212 |
self.w(form.form_render(formvid=u'edition')) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
213 |
|
1147 | 214 |
def init_form(self, form, entity): |
215 |
"""customize your form before rendering here""" |
|
2049
b9baedffeb8b
set __maineid in EntityFieldsForm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2048
diff
changeset
|
216 |
pass |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
217 |
|
1147 | 218 |
def form_title(self, entity): |
219 |
"""the form view title""" |
|
220 |
ptitle = self.req._(self.title) |
|
221 |
self.w(u'<div class="formTitle"><span>%s %s</span></div>' % ( |
|
222 |
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
|
223 |
|
1147 | 224 |
def submited_message(self): |
225 |
"""return the message that will be displayed on successful edition""" |
|
226 |
return self.req._('entity edited') |
|
227 |
||
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
228 |
|
1147 | 229 |
class CreationFormView(EditionFormView): |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
230 |
"""display primary entity creation form""" |
1147 | 231 |
id = 'creation' |
232 |
__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
|
233 |
|
1147 | 234 |
title = _('creation') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
235 |
|
1147 | 236 |
def call(self, **kwargs): |
237 |
"""creation view for an entity""" |
|
238 |
etype = kwargs.pop('etype', self.req.form.get('etype')) |
|
239 |
try: |
|
1435
6cd6172718bb
allow to instantiate an entity without rset
sylvain.thenault@logilab.fr
parents:
1423
diff
changeset
|
240 |
entity = self.vreg.etype_class(etype)(self.req) |
1147 | 241 |
except: |
242 |
self.w(self.req._('no such entity type %s') % etype) |
|
243 |
else: |
|
244 |
self.initialize_varmaker() |
|
245 |
entity.eid = self.varmaker.next() |
|
246 |
self.render_form(entity) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
247 |
|
1147 | 248 |
def form_title(self, entity): |
249 |
"""the form view title""" |
|
250 |
if '__linkto' in self.req.form: |
|
251 |
if isinstance(self.req.form['__linkto'], list): |
|
252 |
# XXX which one should be considered (case: add a ticket to a |
|
253 |
# version in jpl) |
|
254 |
rtype, linkto_eid, role = self.req.form['__linkto'][0].split(':') |
|
255 |
else: |
|
256 |
rtype, linkto_eid, role = self.req.form['__linkto'].split(':') |
|
257 |
linkto_rset = self.req.eid_rset(linkto_eid) |
|
258 |
linkto_type = linkto_rset.description[0][0] |
|
259 |
if role == 'subject': |
|
260 |
title = self.req.__('creating %s (%s %s %s %%(linkto)s)' % ( |
|
261 |
entity.e_schema, entity.e_schema, rtype, linkto_type)) |
|
262 |
else: |
|
263 |
title = self.req.__('creating %s (%s %%(linkto)s %s %s)' % ( |
|
264 |
entity.e_schema, linkto_type, rtype, entity.e_schema)) |
|
265 |
msg = title % {'linkto' : self.view('incontext', linkto_rset)} |
|
266 |
self.w(u'<div class="formTitle notransform"><span>%s</span></div>' % msg) |
|
267 |
else: |
|
268 |
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
|
269 |
|
1147 | 270 |
def url(self): |
271 |
"""return the url associated with this view""" |
|
272 |
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
|
273 |
|
1147 | 274 |
def submited_message(self): |
275 |
"""return the message that will be displayed on successful edition""" |
|
276 |
return self.req._('entity created') |
|
277 |
||
278 |
||
279 |
class CopyFormView(EditionFormView): |
|
280 |
"""display primary entity creation form initialized with values from another |
|
281 |
entity |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
282 |
""" |
1147 | 283 |
id = 'copy' |
284 |
def render_form(self, entity): |
|
285 |
"""fetch and render the form""" |
|
286 |
# 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
|
287 |
# request's cache. |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
288 |
entity.complete() |
1147 | 289 |
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
|
290 |
self.copying = entity |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
291 |
self.initialize_varmaker() |
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
292 |
self.newentity.eid = self.varmaker.next() |
1147 | 293 |
self.w(u'<script type="text/javascript">updateMessage("%s");</script>\n' |
294 |
% self.req._('Please note that this is only a shallow copy')) |
|
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
295 |
super(CopyFormView, self).render_form(self.newentity) |
1147 | 296 |
del self.newentity |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
297 |
|
1147 | 298 |
def init_form(self, form, entity): |
299 |
"""customize your form before rendering here""" |
|
300 |
super(CopyFormView, self).init_form(form, entity) |
|
301 |
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
|
302 |
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
|
303 |
self.copying.eid) |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
304 |
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
|
305 |
'add'): |
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
306 |
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
|
307 |
# 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
|
308 |
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
|
309 |
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
|
310 |
|
1147 | 311 |
def submited_message(self): |
312 |
"""return the message that will be displayed on successful edition""" |
|
313 |
return self.req._('entity copied') |
|
314 |
||
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
315 |
|
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
|
316 |
class TableEditForm(forms.CompositeForm): |
1147 | 317 |
id = 'muledit' |
1692 | 318 |
domid = 'entityForm' |
319 |
onsubmit = "return validateForm('%s', null);" % domid |
|
1304 | 320 |
form_buttons = [SubmitButton(_('validate modifications on selected items')), |
321 |
ResetButton(_('revert changes'))] |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
322 |
|
1692 | 323 |
def __init__(self, req, rset, **kwargs): |
324 |
kwargs.setdefault('__redirectrql', rset.printable_rql()) |
|
325 |
super(TableEditForm, self).__init__(req, rset, **kwargs) |
|
1147 | 326 |
for row in xrange(len(self.rset)): |
327 |
form = self.vreg.select_object('forms', 'edition', self.req, self.rset, |
|
1305
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
328 |
row=row, attrcategories=('primary',), |
2048
5e4d1433b90b
replace set_error_url/set_dom_id by a single mainform argument
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2046
diff
changeset
|
329 |
mainform=False) |
1324 | 330 |
# XXX rely on the EntityCompositeFormRenderer to put the eid input |
1147 | 331 |
form.remove_field(form.field_by_name('eid')) |
332 |
self.form_add_subform(form) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
333 |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
334 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
335 |
class TableEditFormView(FormViewMixIn, EntityView): |
1147 | 336 |
id = 'muledit' |
337 |
__select__ = EntityView.__select__ & yes() |
|
338 |
title = _('multiple edit') |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
339 |
|
1147 | 340 |
def call(self, **kwargs): |
341 |
"""a view to edit multiple entities of the same type the first column |
|
342 |
should be the eid |
|
343 |
""" |
|
344 |
#self.form_title(entity) |
|
1305
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
345 |
form = self.vreg.select_object('forms', self.id, self.req, self.rset) |
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
346 |
self.w(form.form_render()) |
1147 | 347 |
|
348 |
||
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
349 |
class InlineEntityEditionFormView(FormViewMixIn, EntityView): |
1147 | 350 |
id = 'inline-edition' |
351 |
__select__ = non_final_entity() & match_kwargs('peid', 'rtype') |
|
352 |
removejs = "removeInlinedEntity('%s', '%s', '%s')" |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
353 |
|
1147 | 354 |
def call(self, **kwargs): |
355 |
"""redefine default call() method to avoid automatic |
|
356 |
insertions of <div class="section"> between each row of |
|
357 |
the resultset |
|
358 |
""" |
|
359 |
rset = self.rset |
|
360 |
for i in xrange(len(rset)): |
|
361 |
self.wview(self.id, rset, row=i, **kwargs) |
|
362 |
||
363 |
def cell_call(self, row, col, peid, rtype, role='subject', **kwargs): |
|
364 |
""" |
|
365 |
:param peid: the parent entity's eid hosting the inline form |
|
366 |
:param rtype: the relation bridging `etype` and `peid` |
|
367 |
:param role: the role played by the `peid` in the relation |
|
368 |
""" |
|
369 |
entity = self.entity(row, col) |
|
370 |
divonclick = "restoreInlinedEntity('%s', '%s', '%s')" % (peid, rtype, |
|
371 |
entity.eid) |
|
372 |
self.render_form(entity, peid, rtype, role, divonclick=divonclick) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
373 |
|
1147 | 374 |
def render_form(self, entity, peid, rtype, role, **kwargs): |
375 |
"""fetch and render the form""" |
|
1297 | 376 |
form = self.vreg.select_object('forms', 'edition', self.req, None, |
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
377 |
entity=entity, form_renderer_id='inline', |
2049
b9baedffeb8b
set __maineid in EntityFieldsForm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2048
diff
changeset
|
378 |
mainform=False, copy_nav_params=False) |
1396 | 379 |
self.add_hiddens(form, entity, peid, rtype, role) |
380 |
divid = '%s-%s-%s' % (peid, rtype, entity.eid) |
|
381 |
title = self.schema.rschema(rtype).display_name(self.req, role) |
|
1147 | 382 |
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
|
383 |
countkey = '%s_count' % rtype |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
384 |
try: |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
385 |
self.req.data[countkey] += 1 |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
386 |
except: |
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
387 |
self.req.data[countkey] = 1 |
1995
ec95eaa2b711
turn renderers into appobjects
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
388 |
self.w(form.form_render(divid=divid, title=title, removejs=removejs, |
2247
9dbbe6a4c9b0
use a counter of displayed inlined forms
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2224
diff
changeset
|
389 |
counter=self.req.data[countkey], **kwargs)) |
1396 | 390 |
|
391 |
def add_hiddens(self, form, entity, peid, rtype, role): |
|
392 |
# 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
|
393 |
if self.keep_entity(form, entity, peid, rtype): |
1147 | 394 |
if entity.has_eid(): |
395 |
rval = entity.eid |
|
396 |
else: |
|
397 |
rval = INTERNAL_FIELD_VALUE |
|
398 |
form.form_add_hidden('edit%s-%s:%s' % (role[0], rtype, peid), rval) |
|
399 |
form.form_add_hidden(name='%s:%s' % (rtype, peid), value=entity.eid, |
|
400 |
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
|
401 |
|
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
|
402 |
def keep_entity(self, form, entity, peid, rtype): |
1147 | 403 |
if not entity.has_eid(): |
404 |
return True |
|
405 |
# are we regenerating form because of a validation error ? |
|
1750 | 406 |
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
|
407 |
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
|
408 |
form.form_previous_values) |
1147 | 409 |
if unicode(entity.eid) not in cdvalues: |
410 |
return False |
|
411 |
return True |
|
412 |
||
413 |
||
414 |
class InlineEntityCreationFormView(InlineEntityEditionFormView): |
|
415 |
id = 'inline-creation' |
|
416 |
__select__ = (match_kwargs('peid', 'rtype') |
|
417 |
& specified_etype_implements('Any')) |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
418 |
removejs = "removeInlineForm('%s', '%s', '%s')" |
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
419 |
|
1147 | 420 |
def call(self, etype, peid, rtype, role='subject', **kwargs): |
421 |
""" |
|
422 |
:param etype: the entity type being created in the inline form |
|
423 |
:param peid: the parent entity's eid hosting the inline form |
|
424 |
:param rtype: the relation bridging `etype` and `peid` |
|
425 |
:param role: the role played by the `peid` in the relation |
|
426 |
""" |
|
427 |
try: |
|
428 |
entity = self.vreg.etype_class(etype)(self.req, None, None) |
|
429 |
except: |
|
430 |
self.w(self.req._('no such entity type %s') % etype) |
|
431 |
return |
|
432 |
self.initialize_varmaker() |
|
433 |
entity.eid = self.varmaker.next() |
|
434 |
self.render_form(entity, peid, rtype, role) |