author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Fri, 02 Jul 2010 15:26:59 +0200 | |
changeset 5869 | 8a129b3a5aff |
parent 5727 | 29afb9e715bb |
child 5877 | 0c7b7b76a84f |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5389
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
18 |
"""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
|
19 |
or a list of entities of the same type |
5583
24125df012f3
[reledit] #894131: use "<`attribute` unset>" instead of generic "<not specified>" when an attribute or relation has no value
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
20 |
""" |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
21 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
22 |
__docformat__ = "restructuredtext en" |
1965 | 23 |
_ = unicode |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
24 |
|
1147 | 25 |
from copy import copy |
26 |
||
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2247
diff
changeset
|
27 |
from logilab.mtconverter import xml_escape |
3518
11ce4682187d
[form] important refactoring of inlined forms to get proper separation of form object creation / rendering
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3513
diff
changeset
|
28 |
from logilab.common.decorators import cached |
5869
8a129b3a5aff
reledit refactoring
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5727
diff
changeset
|
29 |
from logilab.common.deprecation import class_moved |
1147 | 30 |
|
5583
24125df012f3
[reledit] #894131: use "<`attribute` unset>" instead of generic "<not specified>" when an attribute or relation has no value
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
31 |
from cubicweb import tags |
1147 | 32 |
from cubicweb.selectors import (match_kwargs, one_line_rset, non_final_entity, |
4649
9a6db1eb12ff
[views/deleteconf] remove action ppty (useless & clashes with form attr, replace buggy non_final_entity selector with implements workaround
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4641
diff
changeset
|
33 |
specified_etype_implements, implements, yes) |
1132 | 34 |
from cubicweb.view import EntityView |
5583
24125df012f3
[reledit] #894131: use "<`attribute` unset>" instead of generic "<not specified>" when an attribute or relation has no value
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
35 |
from cubicweb.schema import display_name |
5389
809d3b5b3d31
[python2.6] careful: json-py provides a json package. We don't want that.
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5377
diff
changeset
|
36 |
from cubicweb.web import uicfg, stdmsgs, eid_param, dumps, \ |
4378
785c56bdacc6
[forms] the last touch: handle inlined relation forms as fields
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4366
diff
changeset
|
37 |
formfields as ff, formwidgets as fw |
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
|
38 |
from cubicweb.web.form import FormViewMixIn, FieldNotFound |
5869
8a129b3a5aff
reledit refactoring
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5727
diff
changeset
|
39 |
from cubicweb.web.views import forms, reledit |
1491
742aff97dbf7
move AutomaticEntityForm and PrimaryView into their own module
sylvain.thenault@logilab.fr
parents:
1459
diff
changeset
|
40 |
|
3927
b2a6c25b8429
consider 'rvid' key in primaryview_display_control to determine sub-view to use in reledit
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3880
diff
changeset
|
41 |
_pvdc = uicfg.primaryview_display_ctrl |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
42 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
43 |
|
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
44 |
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
|
45 |
__regid__ = 'deleteconf' |
4649
9a6db1eb12ff
[views/deleteconf] remove action ppty (useless & clashes with form attr, replace buggy non_final_entity selector with implements workaround
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4641
diff
changeset
|
46 |
# XXX non_final_entity does not implement eclass_selector |
9a6db1eb12ff
[views/deleteconf] remove action ppty (useless & clashes with form attr, replace buggy non_final_entity selector with implements workaround
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4641
diff
changeset
|
47 |
__select__ = implements('Any') |
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
48 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
49 |
domid = 'deleteconf' |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
50 |
copy_nav_params = True |
4378
785c56bdacc6
[forms] the last touch: handle inlined relation forms as fields
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4366
diff
changeset
|
51 |
form_buttons = [fw.Button(stdmsgs.BUTTON_DELETE, cwaction='delete'), |
785c56bdacc6
[forms] the last touch: handle inlined relation forms as fields
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4366
diff
changeset
|
52 |
fw.Button(stdmsgs.BUTTON_CANCEL, cwaction='cancel')] |
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
53 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
54 |
def __init__(self, *args, **kwargs): |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
55 |
super(DeleteConfForm, self).__init__(*args, **kwargs) |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
56 |
done = set() |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
57 |
for entity in self.cw_rset.entities(): |
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
58 |
if entity.eid in done: |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
59 |
continue |
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
60 |
done.add(entity.eid) |
3485 | 61 |
subform = self._cw.vreg['forms'].select('base', self._cw, |
62 |
entity=entity, |
|
63 |
mainform=False) |
|
3513
c002f6488631
[form] replace is_subform by parent_form, carrying more information at the same cost
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3355
diff
changeset
|
64 |
self.add_subform(subform) |
2572
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
65 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
66 |
|
58556f9317c9
[notification view] consider row/col
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2538
diff
changeset
|
67 |
class DeleteConfFormView(FormViewMixIn, EntityView): |
1147 | 68 |
"""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
|
69 |
__regid__ = 'deleteconf' |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
70 |
title = _('delete') |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
71 |
# 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
|
72 |
# else we will only delete the displayed page |
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4242
diff
changeset
|
73 |
paginable = False |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
74 |
|
1852
f04da596da6c
give back onsubmit customizability (oops)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1847
diff
changeset
|
75 |
def call(self, onsubmit=None): |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
76 |
"""ask for confirmation before real deletion""" |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
77 |
req, w = self._cw, self.w |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
78 |
_ = req._ |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
79 |
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
|
80 |
% _('this action is not reversible!')) |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
81 |
# XXX above message should have style of a warning |
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
82 |
w(u'<h4>%s</h4>\n' % _('Do you want to delete the following element(s) ?')) |
3485 | 83 |
form = self._cw.vreg['forms'].select(self.__regid__, req, |
84 |
rset=self.cw_rset, |
|
85 |
onsubmit=onsubmit) |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
86 |
w(u'<ul>\n') |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
87 |
for entity in self.cw_rset.entities(): |
3485 | 88 |
# don't use outofcontext view or any other that may contain inline |
89 |
# edition form |
|
4242
b4b39745d26e
Backed out changeset b8ea99f5e8ea, tags.a escape its content.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4238
diff
changeset
|
90 |
w(u'<li>%s</li>' % tags.a(entity.view('textoutofcontext'), |
b4b39745d26e
Backed out changeset b8ea99f5e8ea, tags.a escape its content.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4238
diff
changeset
|
91 |
href=entity.absolute_url())) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
92 |
w(u'</ul>\n') |
3953
19aefd78f61b
[forms] deprecate form_render(**kwargs) in favor of render(formvalues=None, rendervalues=None, renderer=None)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3947
diff
changeset
|
93 |
w(form.render()) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
94 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
95 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
96 |
class EditionFormView(FormViewMixIn, EntityView): |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
97 |
"""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
|
98 |
__regid__ = 'edition' |
1147 | 99 |
# add yes() so it takes precedence over deprecated views in baseforms, |
100 |
# though not baseforms based customized view |
|
101 |
__select__ = one_line_rset() & non_final_entity() & yes() |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
102 |
|
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
103 |
title = _('edition') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
104 |
|
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
105 |
def cell_call(self, row, col, **kwargs): |
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
106 |
entity = self.cw_rset.complete_entity(row, col) |
1147 | 107 |
self.render_form(entity) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
108 |
|
1147 | 109 |
def render_form(self, entity): |
110 |
"""fetch and render the form""" |
|
111 |
self.form_title(entity) |
|
4669
2a77a0d9075f
cleanup, typos
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4668
diff
changeset
|
112 |
form = self._cw.vreg['forms'].select('edition', self._cw, entity=entity, |
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
113 |
submitmsg=self.submited_message()) |
1147 | 114 |
self.init_form(form, entity) |
4668
9f82f81bf13d
[form] fix #719285, due to multiple calls to restore_previous_post, by proper refactorings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4649
diff
changeset
|
115 |
self.w(form.render()) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
116 |
|
1147 | 117 |
def init_form(self, form, entity): |
118 |
"""customize your form before rendering here""" |
|
2049
b9baedffeb8b
set __maineid in EntityFieldsForm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2048
diff
changeset
|
119 |
pass |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
120 |
|
1147 | 121 |
def form_title(self, entity): |
122 |
"""the form view title""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
123 |
ptitle = self._cw._(self.title) |
1147 | 124 |
self.w(u'<div class="formTitle"><span>%s %s</span></div>' % ( |
125 |
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
|
126 |
|
1147 | 127 |
def submited_message(self): |
128 |
"""return the message that will be displayed on successful edition""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
129 |
return self._cw._('entity edited') |
1147 | 130 |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
131 |
|
1147 | 132 |
class CreationFormView(EditionFormView): |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
133 |
"""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
|
134 |
__regid__ = 'creation' |
1147 | 135 |
__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
|
136 |
|
1147 | 137 |
title = _('creation') |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
138 |
|
1147 | 139 |
def call(self, **kwargs): |
140 |
"""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
|
141 |
# 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
|
142 |
# selector |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
143 |
etype = kwargs.pop('etype', self._cw.form.get('etype')) |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
144 |
entity = self._cw.vreg['etypes'].etype_class(etype)(self._cw) |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
145 |
entity.eid = self._cw.varmaker.next() |
3077
6c92323667a6
case insensitive add/XXX url
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3062
diff
changeset
|
146 |
self.render_form(entity) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
147 |
|
1147 | 148 |
def form_title(self, entity): |
149 |
"""the form view title""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
150 |
if '__linkto' in self._cw.form: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
151 |
if isinstance(self._cw.form['__linkto'], list): |
1147 | 152 |
# XXX which one should be considered (case: add a ticket to a |
153 |
# version in jpl) |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
154 |
rtype, linkto_eid, role = self._cw.form['__linkto'][0].split(':') |
1147 | 155 |
else: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
156 |
rtype, linkto_eid, role = self._cw.form['__linkto'].split(':') |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
157 |
linkto_rset = self._cw.eid_rset(linkto_eid) |
1147 | 158 |
linkto_type = linkto_rset.description[0][0] |
159 |
if role == 'subject': |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
160 |
title = self._cw.__('creating %s (%s %s %s %%(linkto)s)' % ( |
1147 | 161 |
entity.e_schema, entity.e_schema, rtype, linkto_type)) |
162 |
else: |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
163 |
title = self._cw.__('creating %s (%s %%(linkto)s %s %s)' % ( |
1147 | 164 |
entity.e_schema, linkto_type, rtype, entity.e_schema)) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
165 |
msg = title % {'linkto' : self._cw.view('incontext', linkto_rset)} |
1147 | 166 |
self.w(u'<div class="formTitle notransform"><span>%s</span></div>' % msg) |
167 |
else: |
|
168 |
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
|
169 |
|
1147 | 170 |
def url(self): |
171 |
"""return the url associated with this view""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
172 |
return self.create_url(self._cw.form.get('etype')) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
173 |
|
1147 | 174 |
def submited_message(self): |
175 |
"""return the message that will be displayed on successful edition""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
176 |
return self._cw._('entity created') |
1147 | 177 |
|
178 |
||
179 |
class CopyFormView(EditionFormView): |
|
180 |
"""display primary entity creation form initialized with values from another |
|
181 |
entity |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
182 |
""" |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
183 |
__regid__ = 'copy' |
3629 | 184 |
|
3627
70dbba754c11
fix title of CopyFormView
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
3586
diff
changeset
|
185 |
title = _('copy') |
3062
a8e901fc4457
ease overriding of copy warning
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2686
diff
changeset
|
186 |
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
|
187 |
|
1147 | 188 |
def render_form(self, entity): |
189 |
"""fetch and render the form""" |
|
190 |
# 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
|
191 |
# request's cache. |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
192 |
entity.complete() |
1147 | 193 |
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
|
194 |
self.copying = entity |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
195 |
self.newentity.eid = self._cw.varmaker.next() |
1147 | 196 |
self.w(u'<script type="text/javascript">updateMessage("%s");</script>\n' |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
197 |
% self._cw._(self.warning_message)) |
1685
3c59ae0e6548
fix copy edition view
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1629
diff
changeset
|
198 |
super(CopyFormView, self).render_form(self.newentity) |
1147 | 199 |
del self.newentity |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
200 |
|
1147 | 201 |
def init_form(self, form, entity): |
202 |
"""customize your form before rendering here""" |
|
203 |
super(CopyFormView, self).init_form(form, entity) |
|
204 |
if entity.eid == self.newentity.eid: |
|
4164
119a374c5eb4
form_add_hidden -> add_hidden
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
205 |
form.add_hidden(eid_param('__cloned_eid', entity.eid), |
119a374c5eb4
form_add_hidden -> add_hidden
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
206 |
self.copying.eid) |
3476
6e927b729ae1
[uicfg, autoform] more consistent/powerful autoform_section rtags by using formtype/section; deprecates autoform_is_inlined; refactor automatci form and renderer thanks to this
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3460
diff
changeset
|
207 |
for rschema, role in form.editable_attributes(): |
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3643
diff
changeset
|
208 |
if not rschema.final: |
1703
a2b5dfdb4b62
should prefill cached values for relation in the primary or secondary category
sylvain.thenault@logilab.fr
parents:
1692
diff
changeset
|
209 |
# 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
|
210 |
rset = self.copying.related(rschema, role) |
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
211 |
self.newentity.cw_set_relation_cache(rschema, role, rset) |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
212 |
|
1147 | 213 |
def submited_message(self): |
214 |
"""return the message that will be displayed on successful edition""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
215 |
return self._cw._('entity copied') |
1147 | 216 |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
217 |
|
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
|
218 |
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
|
219 |
__regid__ = 'muledit' |
1692 | 220 |
domid = 'entityForm' |
221 |
onsubmit = "return validateForm('%s', null);" % domid |
|
4378
785c56bdacc6
[forms] the last touch: handle inlined relation forms as fields
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4366
diff
changeset
|
222 |
form_buttons = [fw.SubmitButton(_('validate modifications on selected items')), |
785c56bdacc6
[forms] the last touch: handle inlined relation forms as fields
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4366
diff
changeset
|
223 |
fw.ResetButton(_('revert changes'))] |
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
224 |
|
1692 | 225 |
def __init__(self, req, rset, **kwargs): |
226 |
kwargs.setdefault('__redirectrql', rset.printable_rql()) |
|
2890
fdcb8a2bb6eb
fix __init__ parameters
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2789
diff
changeset
|
227 |
super(TableEditForm, self).__init__(req, rset=rset, **kwargs) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
228 |
for row in xrange(len(self.cw_rset)): |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3396
diff
changeset
|
229 |
form = self._cw.vreg['forms'].select('edition', self._cw, |
3476
6e927b729ae1
[uicfg, autoform] more consistent/powerful autoform_section rtags by using formtype/section; deprecates autoform_is_inlined; refactor automatci form and renderer thanks to this
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3460
diff
changeset
|
230 |
rset=self.cw_rset, row=row, |
6e927b729ae1
[uicfg, autoform] more consistent/powerful autoform_section rtags by using formtype/section; deprecates autoform_is_inlined; refactor automatci form and renderer thanks to this
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3460
diff
changeset
|
231 |
formtype='muledit', |
3890
d7a270f50f54
backport stable branch (one more time painfully)
Sylvain Thénault <sylvain.thenault@logilab.fr>
diff
changeset
|
232 |
copy_nav_params=False, |
3476
6e927b729ae1
[uicfg, autoform] more consistent/powerful autoform_section rtags by using formtype/section; deprecates autoform_is_inlined; refactor automatci form and renderer thanks to this
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3460
diff
changeset
|
233 |
mainform=False) |
1324 | 234 |
# XXX rely on the EntityCompositeFormRenderer to put the eid input |
1147 | 235 |
form.remove_field(form.field_by_name('eid')) |
3513
c002f6488631
[form] replace is_subform by parent_form, carrying more information at the same cost
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3355
diff
changeset
|
236 |
self.add_subform(form) |
1091
b5e253c0dd13
a bit of reorganisation inside web/views:
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
237 |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
238 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
239 |
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
|
240 |
__regid__ = 'muledit' |
1147 | 241 |
__select__ = EntityView.__select__ & yes() |
242 |
title = _('multiple edit') |
|
1423
39320a58faac
missing overriding of removejs in inline-creation form view
sylvain.thenault@logilab.fr
parents:
1396
diff
changeset
|
243 |
|
1147 | 244 |
def call(self, **kwargs): |
245 |
"""a view to edit multiple entities of the same type the first column |
|
246 |
should be the eid |
|
247 |
""" |
|
4310
a139b98b6af5
specify formvid=edition to get multiple edition working w/ 3.6
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4278
diff
changeset
|
248 |
# XXX overriding formvid (eg __form_id) necessary to make work edition: |
a139b98b6af5
specify formvid=edition to get multiple edition working w/ 3.6
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4278
diff
changeset
|
249 |
# the edit controller try to select the form with no rset but |
a139b98b6af5
specify formvid=edition to get multiple edition working w/ 3.6
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4278
diff
changeset
|
250 |
# entity=entity, and use this form to edit the entity. So we want |
a139b98b6af5
specify formvid=edition to get multiple edition working w/ 3.6
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4278
diff
changeset
|
251 |
# edition form there but specifying formvid may have other undesired |
4669
2a77a0d9075f
cleanup, typos
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4668
diff
changeset
|
252 |
# side effect. Maybe we should provide another variable optionally |
4310
a139b98b6af5
specify formvid=edition to get multiple edition working w/ 3.6
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4278
diff
changeset
|
253 |
# telling which form the edit controller should select (eg difffers |
a139b98b6af5
specify formvid=edition to get multiple edition working w/ 3.6
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4278
diff
changeset
|
254 |
# between html generation / post handling form) |
4668
9f82f81bf13d
[form] fix #719285, due to multiple calls to restore_previous_post, by proper refactorings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4649
diff
changeset
|
255 |
form = self._cw.vreg['forms'].select(self.__regid__, self._cw, |
9f82f81bf13d
[form] fix #719285, due to multiple calls to restore_previous_post, by proper refactorings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4649
diff
changeset
|
256 |
rset=self.cw_rset, |
9f82f81bf13d
[form] fix #719285, due to multiple calls to restore_previous_post, by proper refactorings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4649
diff
changeset
|
257 |
copy_nav_params=True, |
9f82f81bf13d
[form] fix #719285, due to multiple calls to restore_previous_post, by proper refactorings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4649
diff
changeset
|
258 |
formvid='edition') |
9f82f81bf13d
[form] fix #719285, due to multiple calls to restore_previous_post, by proper refactorings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4649
diff
changeset
|
259 |
self.w(form.render()) |
1147 | 260 |
|
261 |
||
4387
4aacd6492ef4
reorganize code:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4380
diff
changeset
|
262 |
# click and edit handling ('reledit') ########################################## |
4378
785c56bdacc6
[forms] the last touch: handle inlined relation forms as fields
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4366
diff
changeset
|
263 |
|
5869
8a129b3a5aff
reledit refactoring
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5727
diff
changeset
|
264 |
ClickAndEditFormView = class_moved(reledit.ClickAndEditFormView) |
8a129b3a5aff
reledit refactoring
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5727
diff
changeset
|
265 |
AutoClickAndEditFormView = class_moved(reledit.AutoClickAndEditFormView) |