author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 26 May 2009 19:45:39 +0200 | |
branch | stable |
changeset 1947 | 8696403e5324 |
parent 1861 | 21fae1546ac4 |
child 1962 | 45af1e015683 |
permissions | -rw-r--r-- |
0 | 1 |
"""abstract form classes for CubicWeb web client |
2 |
||
3 |
:organization: Logilab |
|
751 | 4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
6 |
""" |
|
7 |
__docformat__ = "restructuredtext en" |
|
8 |
||
848
f5aca5c5f6ca
set __errorurl, fix retreiving of field's value
sylvain.thenault@logilab.fr
parents:
847
diff
changeset
|
9 |
from warnings import warn |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
1013
diff
changeset
|
10 |
|
844 | 11 |
from logilab.common.compat import any |
1058
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
12 |
from logilab.common.decorators import iclassmethod |
0 | 13 |
|
1147 | 14 |
from cubicweb.appobject import AppRsetObject |
15 |
from cubicweb.selectors import yes, non_final_entity, match_kwargs, one_line_rset |
|
1133 | 16 |
from cubicweb.view import NOINDEX, NOFOLLOW |
1097
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
17 |
from cubicweb.common import tags |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
18 |
from cubicweb.web import INTERNAL_FIELD_VALUE, eid_param, stdmsgs |
0 | 19 |
from cubicweb.web.httpcache import NoHTTPCacheManager |
1147 | 20 |
from cubicweb.web.controller import NAV_FORM_PARAMETERS |
1097
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
21 |
from cubicweb.web.formfields import (Field, StringField, RelationField, |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
22 |
HiddenInitialValueField) |
1686
32cb9f563fc6
ease overriding of default renderer
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1651
diff
changeset
|
23 |
from cubicweb.web import formrenderers |
1147 | 24 |
from cubicweb.web import formwidgets as fwdgs |
1097
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
25 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
26 |
class FormViewMixIn(object): |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
27 |
"""abstract form view mix-in""" |
0 | 28 |
category = 'form' |
29 |
controller = 'edit' |
|
30 |
http_cache_manager = NoHTTPCacheManager |
|
31 |
add_to_breadcrumbs = False |
|
1437 | 32 |
|
0 | 33 |
def html_headers(self): |
34 |
"""return a list of html headers (eg something to be inserted between |
|
35 |
<head> and </head> of the returned page |
|
36 |
||
37 |
by default forms are neither indexed nor followed |
|
38 |
""" |
|
39 |
return [NOINDEX, NOFOLLOW] |
|
1437 | 40 |
|
0 | 41 |
def linkable(self): |
42 |
"""override since forms are usually linked by an action, |
|
43 |
so we don't want them to be listed by appli.possible_views |
|
44 |
""" |
|
45 |
return False |
|
46 |
||
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
47 |
|
1437 | 48 |
# XXX should disappear |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
49 |
class FormMixIn(object): |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
50 |
"""abstract form mix-in |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
51 |
XXX: you should inherit from this FIRST (obscure pb with super call) |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
52 |
""" |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
53 |
|
1525
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
54 |
def session_key(self): |
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
55 |
"""return the key that may be used to store / retreive data about a |
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
56 |
previous post which failed because of a validation error |
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
57 |
""" |
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
58 |
return '%s#%s' % (self.req.url(), self.domid) |
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
59 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
60 |
def __init__(self, req, rset, **kwargs): |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
61 |
super(FormMixIn, self).__init__(req, rset, **kwargs) |
1525
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
62 |
self.restore_previous_post(self.session_key()) |
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
63 |
|
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
64 |
def restore_previous_post(self, sessionkey): |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
65 |
# get validation session data which may have been previously set. |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
66 |
# deleting validation errors here breaks form reloading (errors are |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
67 |
# no more available), they have to be deleted by application's publish |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
68 |
# method on successful commit |
1525
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
69 |
forminfo = self.req.get_session_data(sessionkey, pop=True) |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
70 |
if forminfo: |
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:
1701
diff
changeset
|
71 |
# XXX remove req.data assigment once cw.web.widget is killed |
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:
1701
diff
changeset
|
72 |
self.req.data['formvalues'] = self.form_previous_values = forminfo['values'] |
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:
1701
diff
changeset
|
73 |
self.req.data['formerrors'] = self.form_valerror = forminfo['errors'] |
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:
1701
diff
changeset
|
74 |
self.req.data['displayederrors'] = self.form_displayed_errors = set() |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
75 |
# if some validation error occured on entity creation, we have to |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
76 |
# get the original variable name from its attributed eid |
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:
1701
diff
changeset
|
77 |
foreid = self.form_valerror.entity |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
78 |
for var, eid in forminfo['eidmap'].items(): |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
79 |
if foreid == eid: |
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:
1701
diff
changeset
|
80 |
self.form_valerror.eid = var |
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
81 |
break |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
82 |
else: |
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:
1701
diff
changeset
|
83 |
self.form_valerror.eid = foreid |
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:
1701
diff
changeset
|
84 |
else: |
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:
1701
diff
changeset
|
85 |
self.form_previous_values = {} |
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:
1701
diff
changeset
|
86 |
self.form_valerror = None |
1437 | 87 |
|
1519
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
88 |
# XXX deprecated with new form system. Should disappear |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
89 |
|
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
90 |
domid = 'entityForm' |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
91 |
category = 'form' |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
92 |
controller = 'edit' |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
93 |
http_cache_manager = NoHTTPCacheManager |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
94 |
add_to_breadcrumbs = False |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
95 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
96 |
def html_headers(self): |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
97 |
"""return a list of html headers (eg something to be inserted between |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
98 |
<head> and </head> of the returned page |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
99 |
|
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
100 |
by default forms are neither indexed nor followed |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
101 |
""" |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
102 |
return [NOINDEX, NOFOLLOW] |
1437 | 103 |
|
1318
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
104 |
def linkable(self): |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
105 |
"""override since forms are usually linked by an action, |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
106 |
so we don't want them to be listed by appli.possible_views |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
107 |
""" |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
108 |
return False |
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
109 |
|
50e1a778c5ee
new FormViewMixIn class, cleanup FormMixIn (to remove once cubes doesn't use it anymore)
sylvain.thenault@logilab.fr
parents:
1315
diff
changeset
|
110 |
|
1147 | 111 |
def button(self, label, klass='validateButton', tabindex=None, **kwargs): |
112 |
if tabindex is None: |
|
113 |
tabindex = self.req.next_tabindex() |
|
114 |
return tags.input(value=label, klass=klass, **kwargs) |
|
115 |
||
116 |
def action_button(self, label, onclick=None, __action=None, **kwargs): |
|
117 |
if onclick is None: |
|
118 |
onclick = "postForm('__action_%s', \'%s\', \'%s\')" % ( |
|
119 |
__action, label, self.domid) |
|
120 |
return self.button(label, onclick=onclick, **kwargs) |
|
121 |
||
122 |
def button_ok(self, label=None, type='submit', name='defaultsubmit', |
|
123 |
**kwargs): |
|
124 |
label = self.req._(label or stdmsgs.BUTTON_OK).capitalize() |
|
125 |
return self.button(label, name=name, type=type, **kwargs) |
|
1437 | 126 |
|
1147 | 127 |
def button_apply(self, label=None, type='button', **kwargs): |
128 |
label = self.req._(label or stdmsgs.BUTTON_APPLY).capitalize() |
|
129 |
return self.action_button(label, __action='apply', type=type, **kwargs) |
|
130 |
||
131 |
def button_delete(self, label=None, type='button', **kwargs): |
|
132 |
label = self.req._(label or stdmsgs.BUTTON_DELETE).capitalize() |
|
133 |
return self.action_button(label, __action='delete', type=type, **kwargs) |
|
1437 | 134 |
|
1147 | 135 |
def button_cancel(self, label=None, type='button', **kwargs): |
136 |
label = self.req._(label or stdmsgs.BUTTON_CANCEL).capitalize() |
|
137 |
return self.action_button(label, __action='cancel', type=type, **kwargs) |
|
1437 | 138 |
|
1147 | 139 |
def button_reset(self, label=None, type='reset', name='__action_cancel', |
140 |
**kwargs): |
|
141 |
label = self.req._(label or stdmsgs.BUTTON_CANCEL).capitalize() |
|
142 |
return self.button(label, type=type, **kwargs) |
|
143 |
||
1305
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
144 |
def need_multipart(self, entity, categories=('primary', 'secondary')): |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
145 |
"""return a boolean indicating if form's enctype should be multipart |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
146 |
""" |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
147 |
for rschema, _, x in entity.relations_by_category(categories): |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
148 |
if entity.get_widget(rschema, x).need_multipart: |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
149 |
return True |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
150 |
# let's find if any of our inlined entities needs multipart |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
151 |
for rschema, targettypes, x in entity.relations_by_category('inlineview'): |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
152 |
assert len(targettypes) == 1, \ |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
153 |
"I'm not able to deal with several targets and inlineview" |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
154 |
ttype = targettypes[0] |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
155 |
inlined_entity = self.vreg.etype_class(ttype)(self.req, None, None) |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
156 |
for irschema, _, x in inlined_entity.relations_by_category(categories): |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
157 |
if inlined_entity.get_widget(irschema, x).need_multipart: |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
158 |
return True |
395ef7f2b95b
cleanup, remove some unnecessary (sometime buggy) stuff
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
159 |
return False |
1437 | 160 |
|
0 | 161 |
def error_message(self): |
162 |
"""return formatted error message |
|
163 |
||
164 |
This method should be called once inlined field errors has been consumed |
|
165 |
""" |
|
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:
1701
diff
changeset
|
166 |
errex = self.req.data.get('formerrors') or self.form_valerror |
0 | 167 |
# get extra errors |
168 |
if errex is not None: |
|
169 |
errormsg = self.req._('please correct the following errors:') |
|
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:
1701
diff
changeset
|
170 |
displayed = self.req.data.get('displayederrors') or self.form_displayed_errors |
0 | 171 |
errors = sorted((field, err) for field, err in errex.errors.items() |
172 |
if not field in displayed) |
|
173 |
if errors: |
|
174 |
if len(errors) > 1: |
|
1437 | 175 |
templstr = '<li>%s</li>\n' |
0 | 176 |
else: |
177 |
templstr = ' %s\n' |
|
178 |
for field, err in errors: |
|
179 |
if field is None: |
|
180 |
errormsg += templstr % err |
|
181 |
else: |
|
182 |
errormsg += templstr % '%s: %s' % (self.req._(field), err) |
|
183 |
if len(errors) > 1: |
|
184 |
errormsg = '<ul>%s</ul>' % errormsg |
|
185 |
return u'<div class="errorMessage">%s</div>' % errormsg |
|
186 |
return u'' |
|
844 | 187 |
|
188 |
||
189 |
############################################################################### |
|
190 |
||
191 |
class metafieldsform(type): |
|
1406
133476216f4a
define self.fields before it is used ...
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1400
diff
changeset
|
192 |
"""metaclass for FieldsForm to retrieve fields defined as class attributes |
133476216f4a
define self.fields before it is used ...
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1400
diff
changeset
|
193 |
and put them into a single ordered list: '_fields_'. |
1393 | 194 |
""" |
844 | 195 |
def __new__(mcs, name, bases, classdict): |
196 |
allfields = [] |
|
197 |
for base in bases: |
|
198 |
if hasattr(base, '_fields_'): |
|
199 |
allfields += base._fields_ |
|
200 |
clsfields = (item for item in classdict.items() |
|
201 |
if isinstance(item[1], Field)) |
|
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
202 |
for fieldname, field in sorted(clsfields, key=lambda x: x[1].creation_rank): |
844 | 203 |
if not field.name: |
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
204 |
field.set_name(fieldname) |
844 | 205 |
allfields.append(field) |
206 |
classdict['_fields_'] = allfields |
|
207 |
return super(metafieldsform, mcs).__new__(mcs, name, bases, classdict) |
|
1270 | 208 |
|
1437 | 209 |
|
1270 | 210 |
class FieldNotFound(Exception): |
211 |
"""raised by field_by_name when a field with the given name has not been |
|
212 |
found |
|
213 |
""" |
|
1437 | 214 |
|
1147 | 215 |
class FieldsForm(FormMixIn, AppRsetObject): |
844 | 216 |
__metaclass__ = metafieldsform |
1047
21d4d5e6aa45
make forms selectable (appobject)
sylvain.thenault@logilab.fr
parents:
1032
diff
changeset
|
217 |
__registry__ = 'forms' |
21d4d5e6aa45
make forms selectable (appobject)
sylvain.thenault@logilab.fr
parents:
1032
diff
changeset
|
218 |
__select__ = yes() |
1437 | 219 |
|
1686
32cb9f563fc6
ease overriding of default renderer
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1651
diff
changeset
|
220 |
renderer_cls = formrenderers.FormRenderer |
1147 | 221 |
is_subform = False |
1437 | 222 |
|
1147 | 223 |
# attributes overrideable through __init__ |
1082 | 224 |
internal_fields = ('__errorurl',) + NAV_FORM_PARAMETERS |
1311
4cc6e2723dc7
move ajax.js to base form class
sylvain.thenault@logilab.fr
parents:
1308
diff
changeset
|
225 |
needs_js = ('cubicweb.ajax.js', 'cubicweb.edition.js',) |
1097
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
226 |
needs_css = ('cubicweb.form.css',) |
1147 | 227 |
domid = 'form' |
228 |
title = None |
|
229 |
action = None |
|
230 |
onsubmit = "return freezeFormButtons('%(domid)s');" |
|
231 |
cssclass = None |
|
232 |
cssstyle = None |
|
233 |
cwtarget = None |
|
234 |
redirect_path = None |
|
235 |
set_error_url = True |
|
236 |
copy_nav_params = False |
|
1304 | 237 |
form_buttons = None # form buttons (button widgets instances) |
1437 | 238 |
|
1271
0a5257f5d723
handle __message in FieldsForm, not only in EntityFieldsForm
sylvain.thenault@logilab.fr
parents:
1270
diff
changeset
|
239 |
def __init__(self, req, rset=None, row=None, col=None, submitmsg=None, |
0a5257f5d723
handle __message in FieldsForm, not only in EntityFieldsForm
sylvain.thenault@logilab.fr
parents:
1270
diff
changeset
|
240 |
**kwargs): |
1147 | 241 |
super(FieldsForm, self).__init__(req, rset, row=row, col=col) |
1406
133476216f4a
define self.fields before it is used ...
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1400
diff
changeset
|
242 |
self.fields = list(self.__class__._fields_) |
1147 | 243 |
for key, val in kwargs.items(): |
1400
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
244 |
if key in NAV_FORM_PARAMETERS: |
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
245 |
self.form_add_hidden(key, val) |
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
246 |
else: |
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
247 |
assert hasattr(self.__class__, key) and not key[0] == '_', key |
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
248 |
setattr(self, key, val) |
1147 | 249 |
if self.set_error_url: |
1525
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
250 |
self.form_add_hidden('__errorurl', self.session_key()) |
1147 | 251 |
if self.copy_nav_params: |
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
252 |
for param in NAV_FORM_PARAMETERS: |
1400
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
253 |
if not param in kwargs: |
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
254 |
value = req.form.get(param) |
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
255 |
if value: |
5926626fb27b
fix navigation parameters handling: those given in kwargs should always be there
sylvain.thenault@logilab.fr
parents:
1393
diff
changeset
|
256 |
self.form_add_hidden(param, value) |
1271
0a5257f5d723
handle __message in FieldsForm, not only in EntityFieldsForm
sylvain.thenault@logilab.fr
parents:
1270
diff
changeset
|
257 |
if submitmsg is not None: |
0a5257f5d723
handle __message in FieldsForm, not only in EntityFieldsForm
sylvain.thenault@logilab.fr
parents:
1270
diff
changeset
|
258 |
self.form_add_hidden('__message', submitmsg) |
1053 | 259 |
self.context = None |
1525
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
260 |
if 'domid' in kwargs:# session key changed |
cc2e2cbd7019
include dom id of the form in __errorurl in case there are multiple forms in a page
sylvain.thenault@logilab.fr
parents:
1519
diff
changeset
|
261 |
self.restore_previous_post(self.session_key()) |
1058
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
262 |
|
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
263 |
@iclassmethod |
1183
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1175
diff
changeset
|
264 |
def field_by_name(cls_or_self, name, role='subject'): |
1947
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
265 |
"""return field with the given name and role. |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
266 |
Raise FieldNotFound if the field can't be found. |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
267 |
""" |
1058
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
268 |
if isinstance(cls_or_self, type): |
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
269 |
fields = cls_or_self._fields_ |
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
270 |
else: |
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
271 |
fields = cls_or_self.fields |
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
272 |
for field in fields: |
1183
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1175
diff
changeset
|
273 |
if field.name == name and field.role == role: |
1058
c27be37daef8
field_by_name method (on class or instance)
sylvain.thenault@logilab.fr
parents:
1056
diff
changeset
|
274 |
return field |
1270 | 275 |
raise FieldNotFound(name) |
1437 | 276 |
|
1147 | 277 |
@iclassmethod |
1947
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
278 |
def fields_by_name(cls_or_self, name, role='subject'): |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
279 |
"""return a list of fields with the given name and role""" |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
280 |
if isinstance(cls_or_self, type): |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
281 |
fields = cls_or_self._fields_ |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
282 |
else: |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
283 |
fields = cls_or_self.fields |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
284 |
return [field for field in fields |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
285 |
if field.name == name and field.role == role] |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
286 |
|
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
287 |
@iclassmethod |
1147 | 288 |
def remove_field(cls_or_self, field): |
1391 | 289 |
"""remove a field from form class or instance""" |
1147 | 290 |
if isinstance(cls_or_self, type): |
291 |
fields = cls_or_self._fields_ |
|
292 |
else: |
|
293 |
fields = cls_or_self.fields |
|
294 |
fields.remove(field) |
|
1437 | 295 |
|
1272 | 296 |
@iclassmethod |
297 |
def append_field(cls_or_self, field): |
|
1391 | 298 |
"""append a field to form class or instance""" |
1272 | 299 |
if isinstance(cls_or_self, type): |
300 |
fields = cls_or_self._fields_ |
|
301 |
else: |
|
302 |
fields = cls_or_self.fields |
|
303 |
fields.append(field) |
|
1437 | 304 |
|
844 | 305 |
@property |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
306 |
def form_needs_multipart(self): |
1391 | 307 |
"""true if the form needs enctype=multipart/form-data""" |
1437 | 308 |
return any(field.needs_multipart for field in self.fields) |
0 | 309 |
|
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
310 |
def form_add_hidden(self, name, value=None, **kwargs): |
1391 | 311 |
"""add an hidden field to the form""" |
1147 | 312 |
field = StringField(name=name, widget=fwdgs.HiddenInput, initial=value, |
313 |
**kwargs) |
|
1338
9e038f84dbb3
setdomid should be true when id specified in kwargs
sylvain.thenault@logilab.fr
parents:
1326
diff
changeset
|
314 |
if 'id' in kwargs: |
9e038f84dbb3
setdomid should be true when id specified in kwargs
sylvain.thenault@logilab.fr
parents:
1326
diff
changeset
|
315 |
# by default, hidden input don't set id attribute. If one is |
9e038f84dbb3
setdomid should be true when id specified in kwargs
sylvain.thenault@logilab.fr
parents:
1326
diff
changeset
|
316 |
# explicitly specified, ensure it will be set |
9e038f84dbb3
setdomid should be true when id specified in kwargs
sylvain.thenault@logilab.fr
parents:
1326
diff
changeset
|
317 |
field.widget.setdomid = True |
1406
133476216f4a
define self.fields before it is used ...
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1400
diff
changeset
|
318 |
self.append_field(field) |
1147 | 319 |
return field |
1437 | 320 |
|
1097
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
321 |
def add_media(self): |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
322 |
"""adds media (CSS & JS) required by this widget""" |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
323 |
if self.needs_js: |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
324 |
self.req.add_js(self.needs_js) |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
325 |
if self.needs_css: |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
326 |
self.req.add_css(self.needs_css) |
611bacbbe001
pylint fixes, media definitions on form as well
sylvain.thenault@logilab.fr
parents:
1082
diff
changeset
|
327 |
|
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
328 |
def form_render(self, **values): |
1391 | 329 |
"""render this form, using the renderer given in args or the default |
330 |
FormRenderer() |
|
331 |
""" |
|
1686
32cb9f563fc6
ease overriding of default renderer
Graziella Toutoungis <graziella.toutoungis@logilab.fr>
parents:
1651
diff
changeset
|
332 |
renderer = values.pop('renderer', self.renderer_cls()) |
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
333 |
return renderer.render(self, values) |
844 | 334 |
|
1391 | 335 |
def form_build_context(self, rendervalues=None): |
336 |
"""build form context values (the .context attribute which is a |
|
337 |
dictionary with field instance as key associated to a dictionary |
|
338 |
containing field 'name' (qualified), 'id', 'value' (for display, always |
|
339 |
a string). |
|
340 |
||
341 |
rendervalues is an optional dictionary containing extra kwargs given to |
|
342 |
form_render() |
|
343 |
""" |
|
844 | 344 |
self.context = context = {} |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
345 |
# ensure rendervalues is a dict |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
346 |
if rendervalues is None: |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
347 |
rendervalues = {} |
1947
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
348 |
# use a copy in case fields are modified while context is build (eg |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
349 |
# __linkto handling for instance) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
350 |
for field in self.fields[:]: |
894 | 351 |
for field in field.actual_fields(self): |
1304 | 352 |
field.form_init(self) |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
353 |
value = self.form_field_display_value(field, rendervalues) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
354 |
context[field] = {'value': value, |
892
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
355 |
'name': self.form_field_name(field), |
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
356 |
'id': self.form_field_id(field), |
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
357 |
} |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
358 |
|
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
359 |
def form_field_display_value(self, field, rendervalues, load_bytes=False): |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
360 |
"""return field's *string* value to use for display |
1437 | 361 |
|
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
362 |
looks in |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
363 |
1. previously submitted form values if any (eg on validation error) |
848
f5aca5c5f6ca
set __errorurl, fix retreiving of field's value
sylvain.thenault@logilab.fr
parents:
847
diff
changeset
|
364 |
2. req.form |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
365 |
3. extra kw args given to render_form |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
366 |
4. field's typed value |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
367 |
|
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
368 |
values found in 1. and 2. are expected te be already some 'display' |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
369 |
value while those found in 3. and 4. are expected to be correctly typed. |
848
f5aca5c5f6ca
set __errorurl, fix retreiving of field's value
sylvain.thenault@logilab.fr
parents:
847
diff
changeset
|
370 |
""" |
1755
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
371 |
value = self._req_display_value(field) |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
372 |
if value is None: |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
373 |
if field.name in rendervalues: |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
374 |
value = rendervalues[field.name] |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
375 |
else: |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
376 |
value = self.form_field_value(field, load_bytes) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
377 |
if callable(value): |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
378 |
value = value(self) |
1437 | 379 |
if value != INTERNAL_FIELD_VALUE: |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
380 |
value = field.format_value(self.req, value) |
897
f5b91f11d8b6
provide basic methods to build fields from schema constraints / cardinality
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
896
diff
changeset
|
381 |
return value |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
382 |
|
1755
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
383 |
def _req_display_value(self, field): |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
384 |
qname = self.form_field_name(field) |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
385 |
if qname in self.form_previous_values: |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
386 |
return self.form_previous_values[qname] |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
387 |
if qname in self.req.form: |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
388 |
return self.req.form[qname] |
1843
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1756
diff
changeset
|
389 |
if field.name in self.req.form: |
646c2dd1f03e
#343290: inputs don't use value specified in URL
sylvain.thenault@logilab.fr
parents:
1756
diff
changeset
|
390 |
return self.req.form[field.name] |
1755
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
391 |
return None |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
392 |
|
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
393 |
def form_field_value(self, field, load_bytes=False): |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
394 |
"""return field's *typed* value""" |
1855
4e2eeb88780f
restore possibility to have default value methods on forms, this may still be useful according to how the form is defined
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
395 |
myattr = '%s_%s_default' % (field.role, field.name) |
4e2eeb88780f
restore possibility to have default value methods on forms, this may still be useful according to how the form is defined
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
396 |
if hasattr(self, myattr): |
4e2eeb88780f
restore possibility to have default value methods on forms, this may still be useful according to how the form is defined
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1843
diff
changeset
|
397 |
return getattr(self, myattr)() |
1861 | 398 |
value = field.initial |
1860
ce67132ced1c
this is actually needed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1855
diff
changeset
|
399 |
if callable(value): |
ce67132ced1c
this is actually needed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1855
diff
changeset
|
400 |
value = value(self) |
1861 | 401 |
return value |
1437 | 402 |
|
1147 | 403 |
def form_field_error(self, field): |
404 |
"""return validation error for widget's field, if any""" |
|
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:
1701
diff
changeset
|
405 |
if self._field_has_error(field): |
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:
1701
diff
changeset
|
406 |
self.form_displayed_errors.add(field.name) |
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:
1701
diff
changeset
|
407 |
return u'<span class="error">%s</span>' % self.form_valerror.errors[field.name] |
1147 | 408 |
return u'' |
897
f5b91f11d8b6
provide basic methods to build fields from schema constraints / cardinality
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
896
diff
changeset
|
409 |
|
1060
d795477ad16b
rename method to form_field_format
sylvain.thenault@logilab.fr
parents:
1059
diff
changeset
|
410 |
def form_field_format(self, field): |
1393 | 411 |
"""return MIME type used for the given (text or bytes) field""" |
892
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
412 |
return self.req.property_value('ui.default-text-format') |
1437 | 413 |
|
1061
7d2e6b5fae3c
* new load_bytes argument to form_field_value
sylvain.thenault@logilab.fr
parents:
1060
diff
changeset
|
414 |
def form_field_encoding(self, field): |
1393 | 415 |
"""return encoding used for the given (text) field""" |
1061
7d2e6b5fae3c
* new load_bytes argument to form_field_value
sylvain.thenault@logilab.fr
parents:
1060
diff
changeset
|
416 |
return self.req.encoding |
1437 | 417 |
|
849
8591d896db7e
update some prototype, ChangeStateForm
sylvain.thenault@logilab.fr
parents:
848
diff
changeset
|
418 |
def form_field_name(self, field): |
1393 | 419 |
"""return qualified name for the given field""" |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
420 |
return field.name |
844 | 421 |
|
849
8591d896db7e
update some prototype, ChangeStateForm
sylvain.thenault@logilab.fr
parents:
848
diff
changeset
|
422 |
def form_field_id(self, field): |
1393 | 423 |
"""return dom id for the given field""" |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
424 |
return field.id |
1437 | 425 |
|
1183
62afd820d3ae
field_by_name now takes a "role" argument, override it in AutomaticForm to call guess field if necessary
sylvain.thenault@logilab.fr
parents:
1175
diff
changeset
|
426 |
def form_field_vocabulary(self, field, limit=None): |
1393 | 427 |
"""return vocabulary for the given field. Should be overriden in |
428 |
specific forms using fields which requires some vocabulary |
|
429 |
""" |
|
844 | 430 |
raise NotImplementedError |
431 |
||
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:
1701
diff
changeset
|
432 |
def _field_has_error(self, field): |
1393 | 433 |
"""return true if the field has some error in given validation exception |
434 |
""" |
|
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:
1701
diff
changeset
|
435 |
return self.form_valerror and field.name in self.form_valerror.errors |
1393 | 436 |
|
1437 | 437 |
|
844 | 438 |
class EntityFieldsForm(FieldsForm): |
1147 | 439 |
__select__ = (match_kwargs('entity') | (one_line_rset & non_final_entity())) |
1437 | 440 |
|
1561
85752d14c15d
[form] __maineid missing from the special fields list
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1530
diff
changeset
|
441 |
internal_fields = FieldsForm.internal_fields + ('__type', 'eid', '__maineid') |
1147 | 442 |
domid = 'entityForm' |
1437 | 443 |
|
844 | 444 |
def __init__(self, *args, **kwargs): |
1147 | 445 |
self.edited_entity = kwargs.pop('entity', None) |
446 |
msg = kwargs.pop('submitmsg', None) |
|
844 | 447 |
super(EntityFieldsForm, self).__init__(*args, **kwargs) |
1147 | 448 |
if self.edited_entity is None: |
1651 | 449 |
self.edited_entity = self.complete_entity(self.row or 0, self.col or 0) |
887
51e371245bc5
various fixes to have change state and deletion forms working
sylvain.thenault@logilab.fr
parents:
874
diff
changeset
|
450 |
self.form_add_hidden('__type', eidparam=True) |
51e371245bc5
various fixes to have change state and deletion forms working
sylvain.thenault@logilab.fr
parents:
874
diff
changeset
|
451 |
self.form_add_hidden('eid') |
1947
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
452 |
if msg: |
1147 | 453 |
# If we need to directly attach the new object to another one |
1947
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
454 |
self.form_add_hidden('__message', msg) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
455 |
if not self.is_subform: |
1147 | 456 |
for linkto in self.req.list_form_param('__linkto'): |
457 |
self.form_add_hidden('__linkto', linkto) |
|
458 |
msg = '%s %s' % (msg, self.req._('and linked')) |
|
1519
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
459 |
# in case of direct instanciation |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
460 |
self.schema = self.edited_entity.schema |
5cfc5cc1dd20
fix retreival of previously submitted error for entity forms
sylvain.thenault@logilab.fr
parents:
1451
diff
changeset
|
461 |
self.vreg = self.edited_entity.vreg |
1437 | 462 |
|
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:
1701
diff
changeset
|
463 |
def _field_has_error(self, field): |
1393 | 464 |
"""return true if the field has some error in given validation exception |
465 |
""" |
|
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:
1701
diff
changeset
|
466 |
return super(EntityFieldsForm, self)._field_has_error(field) \ |
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:
1701
diff
changeset
|
467 |
and self.form_valerror.eid == self.edited_entity.eid |
1393 | 468 |
|
469 |
def _relation_vocabulary(self, rtype, targettype, role, |
|
470 |
limit=None, done=None): |
|
471 |
"""return unrelated entities for a given relation and target entity type |
|
472 |
for use in vocabulary |
|
473 |
""" |
|
474 |
if done is None: |
|
475 |
done = set() |
|
476 |
rset = self.edited_entity.unrelated(rtype, targettype, role, limit) |
|
477 |
res = [] |
|
478 |
for entity in rset.entities(): |
|
479 |
if entity.eid in done: |
|
480 |
continue |
|
481 |
done.add(entity.eid) |
|
482 |
res.append((entity.view('combobox'), entity.eid)) |
|
483 |
return res |
|
484 |
||
1755
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
485 |
def _req_display_value(self, field): |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
486 |
value = super(EntityFieldsForm, self)._req_display_value(field) |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
487 |
if value is None: |
1947
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
488 |
value = self.edited_entity.linked_to(field.name, field.role) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
489 |
if value: |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
490 |
searchedvalues = ['%s:%s:%s' % (field.name, eid, field.role) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
491 |
for eid in value] |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
492 |
# remove associated __linkto hidden fields |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
493 |
for field in self.fields_by_name('__linkto'): |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
494 |
if field.initial in searchedvalues: |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
495 |
self.remove_field(field) |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
496 |
else: |
8696403e5324
test and fix __linkto handling (#343421)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1861
diff
changeset
|
497 |
value = None |
1755
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
498 |
return value |
1bd225376013
consider __linkto in form_field_display_value
sylvain.thenault@logilab.fr
parents:
1710
diff
changeset
|
499 |
|
1393 | 500 |
def _form_field_default_value(self, field, load_bytes): |
501 |
defaultattr = 'default_%s' % field.name |
|
502 |
if hasattr(self.edited_entity, defaultattr): |
|
503 |
# XXX bw compat, default_<field name> on the entity |
|
504 |
warn('found %s on %s, should be set on a specific form' |
|
505 |
% (defaultattr, self.edited_entity.id), DeprecationWarning) |
|
506 |
value = getattr(self.edited_entity, defaultattr) |
|
507 |
if callable(value): |
|
508 |
value = value() |
|
509 |
else: |
|
510 |
value = super(EntityFieldsForm, self).form_field_value(field, |
|
511 |
load_bytes) |
|
512 |
return value |
|
1437 | 513 |
|
1315
86bddd181e03
should set None as default here as well
sylvain.thenault@logilab.fr
parents:
1312
diff
changeset
|
514 |
def form_build_context(self, values=None): |
1393 | 515 |
"""overriden to add edit[s|o] hidden fields and to ensure schema fields |
516 |
have eidparam set to True |
|
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
517 |
|
1528
864ae7c15ef5
other fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1451
diff
changeset
|
518 |
edit[s|o] hidden fields are used to indicate the value for the |
1393 | 519 |
associated field before the (potential) modification made when |
520 |
submitting the form. |
|
521 |
""" |
|
522 |
eschema = self.edited_entity.e_schema |
|
863
4fde01fc39ca
restore previous hidden input behaviour (edits- / edito- fields)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
849
diff
changeset
|
523 |
for field in self.fields[:]: |
894 | 524 |
for field in field.actual_fields(self): |
892
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
525 |
fieldname = field.name |
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
526 |
if fieldname != 'eid' and ( |
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
527 |
(eschema.has_subject_relation(fieldname) or |
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
528 |
eschema.has_object_relation(fieldname))): |
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
529 |
field.eidparam = True |
1393 | 530 |
self.fields.append(HiddenInitialValueField(field)) |
531 |
return super(EntityFieldsForm, self).form_build_context(values) |
|
1437 | 532 |
|
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
533 |
def form_field_value(self, field, load_bytes=False): |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
534 |
"""return field's *typed* value |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
535 |
|
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
536 |
overriden to deal with |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
537 |
* special eid / __type / edits- / edito- fields |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
538 |
* lookup for values on edited entities |
848
f5aca5c5f6ca
set __errorurl, fix retreiving of field's value
sylvain.thenault@logilab.fr
parents:
847
diff
changeset
|
539 |
""" |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
540 |
attr = field.name |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
541 |
entity = self.edited_entity |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
542 |
if attr == 'eid': |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
543 |
return entity.eid |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
544 |
if not field.eidparam: |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
545 |
return super(EntityFieldsForm, self).form_field_value(field, load_bytes) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
546 |
if attr.startswith('edits-') or attr.startswith('edito-'): |
888
603327e9aef4
fix field value for hidden edit[s|Ã ] fields
sylvain.thenault@logilab.fr
parents:
887
diff
changeset
|
547 |
# edit[s|o]- fieds must have the actual value stored on the entity |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
548 |
assert hasattr(field, 'visible_field') |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
549 |
vfield = field.visible_field |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
550 |
assert vfield.eidparam |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
551 |
if entity.has_eid(): |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
552 |
return self.form_field_value(vfield) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
553 |
return INTERNAL_FIELD_VALUE |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
554 |
if attr == '__type': |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
555 |
return entity.id |
1701
9fb5b4741a08
use values cached on the entity if any
sylvain.thenault@logilab.fr
parents:
1686
diff
changeset
|
556 |
if self.schema.rschema(attr).is_final(): |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
557 |
attrtype = entity.e_schema.destination(attr) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
558 |
if attrtype == 'Password': |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
559 |
return entity.has_eid() and INTERNAL_FIELD_VALUE or '' |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
560 |
if attrtype == 'Bytes': |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
561 |
if entity.has_eid(): |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
562 |
if load_bytes: |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
563 |
return getattr(entity, attr) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
564 |
# XXX value should reflect if some file is already attached |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
565 |
return True |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
566 |
return False |
1701
9fb5b4741a08
use values cached on the entity if any
sylvain.thenault@logilab.fr
parents:
1686
diff
changeset
|
567 |
if entity.has_eid() or attr in entity: |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
568 |
value = getattr(entity, attr) |
888
603327e9aef4
fix field value for hidden edit[s|Ã ] fields
sylvain.thenault@logilab.fr
parents:
887
diff
changeset
|
569 |
else: |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
570 |
value = self._form_field_default_value(field, load_bytes) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
571 |
return value |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
572 |
# non final relation field |
1701
9fb5b4741a08
use values cached on the entity if any
sylvain.thenault@logilab.fr
parents:
1686
diff
changeset
|
573 |
if entity.has_eid() or entity.relation_cached(attr, field.role): |
9fb5b4741a08
use values cached on the entity if any
sylvain.thenault@logilab.fr
parents:
1686
diff
changeset
|
574 |
value = [r[0] for r in entity.related(attr, field.role)] |
848
f5aca5c5f6ca
set __errorurl, fix retreiving of field's value
sylvain.thenault@logilab.fr
parents:
847
diff
changeset
|
575 |
else: |
1392
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
576 |
value = self._form_field_default_value(field, load_bytes) |
d6279efff7b3
refactor the way field value/display value are handled to avoid getting a 'display' value when expected a 'typed' value
sylvain.thenault@logilab.fr
parents:
1391
diff
changeset
|
577 |
return value |
1437 | 578 |
|
1060
d795477ad16b
rename method to form_field_format
sylvain.thenault@logilab.fr
parents:
1059
diff
changeset
|
579 |
def form_field_format(self, field): |
1393 | 580 |
"""return MIME type used for the given (text or bytes) field""" |
1147 | 581 |
entity = self.edited_entity |
1107
961a478593a5
has_metadata is a schema method
sylvain.thenault@logilab.fr
parents:
1101
diff
changeset
|
582 |
if field.eidparam and entity.e_schema.has_metadata(field.name, 'format') and ( |
892
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
583 |
entity.has_eid() or '%s_format' % field.name in entity): |
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1338
diff
changeset
|
584 |
return self.edited_entity.attr_metadata(field.name, 'format') |
892
1558772340a7
rich field / fckeditor handling
sylvain.thenault@logilab.fr
parents:
888
diff
changeset
|
585 |
return self.req.property_value('ui.default-text-format') |
844 | 586 |
|
1061
7d2e6b5fae3c
* new load_bytes argument to form_field_value
sylvain.thenault@logilab.fr
parents:
1060
diff
changeset
|
587 |
def form_field_encoding(self, field): |
1393 | 588 |
"""return encoding used for the given (text) field""" |
1147 | 589 |
entity = self.edited_entity |
1107
961a478593a5
has_metadata is a schema method
sylvain.thenault@logilab.fr
parents:
1101
diff
changeset
|
590 |
if field.eidparam and entity.e_schema.has_metadata(field.name, 'encoding') and ( |
1061
7d2e6b5fae3c
* new load_bytes argument to form_field_value
sylvain.thenault@logilab.fr
parents:
1060
diff
changeset
|
591 |
entity.has_eid() or '%s_encoding' % field.name in entity): |
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1338
diff
changeset
|
592 |
return self.edited_entity.attr_metadata(field.name, 'encoding') |
1437 | 593 |
return super(EntityFieldsForm, self).form_field_encoding(field) |
594 |
||
849
8591d896db7e
update some prototype, ChangeStateForm
sylvain.thenault@logilab.fr
parents:
848
diff
changeset
|
595 |
def form_field_name(self, field): |
1393 | 596 |
"""return qualified name for the given field""" |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
597 |
if field.eidparam: |
1147 | 598 |
return eid_param(field.name, self.edited_entity.eid) |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
599 |
return field.name |
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
600 |
|
849
8591d896db7e
update some prototype, ChangeStateForm
sylvain.thenault@logilab.fr
parents:
848
diff
changeset
|
601 |
def form_field_id(self, field): |
1393 | 602 |
"""return dom id for the given field""" |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
603 |
if field.eidparam: |
1147 | 604 |
return eid_param(field.id, self.edited_entity.eid) |
847
27c4ebe90d03
prefixed form methods to avoid potential conflicts with field names, button related method, a bit more serious renderer
sylvain.thenault@logilab.fr
parents:
844
diff
changeset
|
605 |
return field.id |
1437 | 606 |
|
1031
1a89683cb687
restore limit on form_field_vocabulary, actually used
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
607 |
def form_field_vocabulary(self, field, limit=None): |
1393 | 608 |
"""return vocabulary for the given field""" |
903
63a8ab7eeb9c
The value as returned by FieldWidget._render_attrs() is now always a list
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
902
diff
changeset
|
609 |
role, rtype = field.role, field.name |
1265
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
610 |
method = '%s_%s_vocabulary' % (role, rtype) |
903
63a8ab7eeb9c
The value as returned by FieldWidget._render_attrs() is now always a list
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
902
diff
changeset
|
611 |
try: |
1265
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
612 |
vocabfunc = getattr(self, method) |
903
63a8ab7eeb9c
The value as returned by FieldWidget._render_attrs() is now always a list
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
902
diff
changeset
|
613 |
except AttributeError: |
1265
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
614 |
try: |
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
615 |
# XXX bw compat, <role>_<rtype>_vocabulary on the entity |
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
616 |
vocabfunc = getattr(self.edited_entity, method) |
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
617 |
except AttributeError: |
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
618 |
vocabfunc = getattr(self, '%s_relation_vocabulary' % role) |
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
619 |
else: |
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
620 |
warn('found %s on %s, should be set on a specific form' |
e5cdd5c0dce3
handle sort/internationalizable on Field base class + fix guess_field to deal with internationalizable and default values
sylvain.thenault@logilab.fr
parents:
1184
diff
changeset
|
621 |
% (method, self.edited_entity.id), DeprecationWarning) |
1009 | 622 |
# NOTE: it is the responsibility of `vocabfunc` to sort the result |
623 |
# (direclty through RQL or via a python sort). This is also |
|
624 |
# important because `vocabfunc` might return a list with |
|
625 |
# couples (label, None) which act as separators. In these |
|
626 |
# cases, it doesn't make sense to sort results afterwards. |
|
1031
1a89683cb687
restore limit on form_field_vocabulary, actually used
sylvain.thenault@logilab.fr
parents:
1016
diff
changeset
|
627 |
return vocabfunc(rtype, limit) |
844 | 628 |
|
902
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
629 |
def subject_relation_vocabulary(self, rtype, limit=None): |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
630 |
"""defaut vocabulary method for the given relation, looking for |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
631 |
relation's object entities (i.e. self is the subject) |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
632 |
""" |
1147 | 633 |
entity = self.edited_entity |
902
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
634 |
if isinstance(rtype, basestring): |
1528
864ae7c15ef5
other fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1451
diff
changeset
|
635 |
rtype = entity.schema.rschema(rtype) |
902
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
636 |
done = None |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
637 |
assert not rtype.is_final(), rtype |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
638 |
if entity.has_eid(): |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
639 |
done = set(e.eid for e in getattr(entity, str(rtype))) |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
640 |
result = [] |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
641 |
rsetsize = None |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
642 |
for objtype in rtype.objects(entity.e_schema): |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
643 |
if limit is not None: |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
644 |
rsetsize = limit - len(result) |
1393 | 645 |
result += self._relation_vocabulary(rtype, objtype, 'subject', |
646 |
rsetsize, done) |
|
902
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
647 |
if limit is not None and len(result) >= limit: |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
648 |
break |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
649 |
return result |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
650 |
|
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
651 |
def object_relation_vocabulary(self, rtype, limit=None): |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
652 |
"""defaut vocabulary method for the given relation, looking for |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
653 |
relation's subject entities (i.e. self is the object) |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
654 |
""" |
1147 | 655 |
entity = self.edited_entity |
902
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
656 |
if isinstance(rtype, basestring): |
1528
864ae7c15ef5
other fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1451
diff
changeset
|
657 |
rtype = entity.schema.rschema(rtype) |
902
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
658 |
done = None |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
659 |
if entity.has_eid(): |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
660 |
done = set(e.eid for e in getattr(entity, 'reverse_%s' % rtype)) |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
661 |
result = [] |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
662 |
rsetsize = None |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
663 |
for subjtype in rtype.subjects(entity.e_schema): |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
664 |
if limit is not None: |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
665 |
rsetsize = limit - len(result) |
1393 | 666 |
result += self._relation_vocabulary(rtype, subjtype, 'object', |
667 |
rsetsize, done) |
|
902
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
668 |
if limit is not None and len(result) >= limit: |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
669 |
break |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
670 |
return result |
e4de959c76af
vocabulary methods are now defined on forms, not on entities
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
901
diff
changeset
|
671 |
|
1451 | 672 |
def subject_in_state_vocabulary(self, rtype, limit=None): |
1393 | 673 |
"""vocabulary method for the in_state relation, looking for relation's |
674 |
object entities (i.e. self is the subject) according to initial_state, |
|
675 |
state_of and next_state relation |
|
1175
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
676 |
""" |
1184
a33deae7c6a2
oops, this method doesn't belong anymore to entity class
sylvain.thenault@logilab.fr
parents:
1183
diff
changeset
|
677 |
entity = self.edited_entity |
a33deae7c6a2
oops, this method doesn't belong anymore to entity class
sylvain.thenault@logilab.fr
parents:
1183
diff
changeset
|
678 |
if not entity.has_eid() or not entity.in_state: |
1175
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
679 |
# get the initial state |
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
680 |
rql = 'Any S where S state_of ET, ET name %(etype)s, ET initial_state S' |
1184
a33deae7c6a2
oops, this method doesn't belong anymore to entity class
sylvain.thenault@logilab.fr
parents:
1183
diff
changeset
|
681 |
rset = self.req.execute(rql, {'etype': str(entity.e_schema)}) |
1175
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
682 |
if rset: |
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
683 |
return [(rset.get_entity(0, 0).view('combobox'), rset[0][0])] |
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
684 |
return [] |
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
685 |
results = [] |
1184
a33deae7c6a2
oops, this method doesn't belong anymore to entity class
sylvain.thenault@logilab.fr
parents:
1183
diff
changeset
|
686 |
for tr in entity.in_state[0].transitions(entity): |
1175
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
687 |
state = tr.destination_state[0] |
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
688 |
results.append((state.view('combobox'), state.eid)) |
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
689 |
return sorted(results) |
96747df28a1f
backport subject_in_state_vocabulary to EntityFieldsForm, deprecate the old one
sylvain.thenault@logilab.fr
parents:
1147
diff
changeset
|
690 |
|
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
691 |
|
1147 | 692 |
class CompositeForm(FieldsForm): |
693 |
"""form composed for sub-forms""" |
|
1437 | 694 |
|
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
695 |
def __init__(self, *args, **kwargs): |
1147 | 696 |
super(CompositeForm, self).__init__(*args, **kwargs) |
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
697 |
self.forms = [] |
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
698 |
|
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
699 |
def form_add_subform(self, subform): |
1393 | 700 |
"""mark given form as a subform and append it""" |
1147 | 701 |
subform.is_subform = True |
869
168ad6d424d1
form to edit multiple entities, use it in DeleteConfForm
sylvain.thenault@logilab.fr
parents:
867
diff
changeset
|
702 |
self.forms.append(subform) |