author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 05 Feb 2010 15:44:34 +0100 | |
changeset 4481 | 56440a1f816a |
parent 4392 | 91a56a30141e |
child 4508 | b329af3315b6 |
permissions | -rw-r--r-- |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
1 |
"""widget classes for form construction |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
2 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
3 |
:organization: Logilab |
4382
6fb02edd05da
3.6 api update, cleanup
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4376
diff
changeset
|
4 |
:copyright: 2009-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1970
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
7 |
""" |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
8 |
__docformat__ = "restructuredtext en" |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
9 |
|
1096 | 10 |
from datetime import date |
1966
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
11 |
from warnings import warn |
1096 | 12 |
|
4160 | 13 |
from logilab.mtconverter import xml_escape |
14 |
from logilab.common.deprecation import deprecated |
|
4481
56440a1f816a
hidden usage of datetime function which has been moved to lgc
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4392
diff
changeset
|
15 |
from logilab.common.date import todatetime |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
16 |
|
4481
56440a1f816a
hidden usage of datetime function which has been moved to lgc
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4392
diff
changeset
|
17 |
from cubicweb import tags, uilib |
3387
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
18 |
from cubicweb.web import stdmsgs, INTERNAL_FIELD_VALUE, ProcessFormError |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
19 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
20 |
class FieldWidget(object): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
21 |
"""abstract widget class""" |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
22 |
# javascript / css files required by the widget |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
23 |
needs_js = () |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
24 |
needs_css = () |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
25 |
# automatically set id and tabindex attributes ? |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
26 |
setdomid = True |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
27 |
settabindex = True |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
28 |
# to ease usage as a sub-widgets (eg widget used by another widget) |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
29 |
suffix = None |
2091
a7ea618e5478
don't set select widget when a vocabulary widget is already specified on the field class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1989
diff
changeset
|
30 |
# does this widget expect a vocabulary |
a7ea618e5478
don't set select widget when a vocabulary widget is already specified on the field class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1989
diff
changeset
|
31 |
vocabulary_widget = False |
1474 | 32 |
|
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
33 |
def __init__(self, attrs=None, setdomid=None, settabindex=None, suffix=None): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
34 |
if attrs is None: |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
35 |
attrs = {} |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
36 |
self.attrs = attrs |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
37 |
if setdomid is not None: |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
38 |
# override class's default value |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
39 |
self.setdomid = setdomid |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
40 |
if settabindex is not None: |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
41 |
# override class's default value |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
42 |
self.settabindex = settabindex |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
43 |
if suffix is not None: |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
44 |
self.suffix = suffix |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
45 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
46 |
def add_media(self, form): |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
47 |
"""adds media (CSS & JS) required by this widget""" |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
48 |
if self.needs_js: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
49 |
form._cw.add_js(self.needs_js) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
50 |
if self.needs_css: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
51 |
form._cw.add_css(self.needs_css) |
1474 | 52 |
|
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
53 |
|
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
54 |
def render(self, form, field, renderer=None): |
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
55 |
self.add_media(form) |
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
56 |
return self._render(form, field, renderer) |
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
57 |
|
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
58 |
def _render(self, form, field, renderer): |
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
59 |
raise NotImplementedError() |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
60 |
|
4304
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
61 |
def typed_value(self, form, field): |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
62 |
"""return field's *typed* value specified in: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
63 |
3. extra form values given to render() |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
64 |
4. field's typed value |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
65 |
""" |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
66 |
qname = field.input_name(form) |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
67 |
for key in (field, qname): |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
68 |
try: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
69 |
return form.formvalues[key] |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
70 |
except KeyError: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
71 |
continue |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
72 |
if field.name != qname and field.name in form.formvalues: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
73 |
return form.formvalues[field.name] |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
74 |
return field.typed_value(form) |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
75 |
|
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
76 |
def format_value(self, form, field, value): |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
77 |
return field.format_value(form._cw, value) |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
78 |
|
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
79 |
def values_and_attributes(self, form, field): |
4304
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
80 |
"""found field's *string* value in: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
81 |
1. previously submitted form values if any (eg on validation error) |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
82 |
2. req.form |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
83 |
3. extra form values given to render() |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
84 |
4. field's typed value |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
85 |
|
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
86 |
values found in 1. and 2. are expected te be already some 'display' |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
87 |
value while those found in 3. and 4. are expected to be correctly typed. |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
88 |
|
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
89 |
3 and 4 are handle by the .typed_value(form, field) method |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
90 |
""" |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
91 |
attrs = dict(self.attrs) |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
92 |
if self.setdomid: |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
93 |
attrs['id'] = field.dom_id(form, self.suffix) |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
94 |
if self.settabindex and not 'tabindex' in attrs: |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
95 |
attrs['tabindex'] = form._cw.next_tabindex() |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
96 |
return self.values(form, field), attrs |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
97 |
|
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
98 |
def values(self, form, field): |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
99 |
qname = field.input_name(form, self.suffix) |
4304
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
100 |
if qname in form.form_previous_values: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
101 |
values = form.form_previous_values[qname] |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
102 |
elif qname in form._cw.form: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
103 |
values = form._cw.form[qname] |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
104 |
elif field.name != qname and field.name in form._cw.form: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
105 |
# compat: accept attr=value in req.form to specify value of attr-subject |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
106 |
values = form._cw.form[field.name] |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
107 |
else: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
108 |
values = self.typed_value(form, field) |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
109 |
if values != INTERNAL_FIELD_VALUE: |
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
110 |
values = self.format_value(form, field, values) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
111 |
if not isinstance(values, (tuple, list)): |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
112 |
values = (values,) |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
113 |
return values |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
114 |
|
3387
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
115 |
def process_field_data(self, form, field): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
116 |
posted = form._cw.form |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
117 |
val = posted.get(field.input_name(form, self.suffix)) |
4169
341d19ef7b7c
strip string by default
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4163
diff
changeset
|
118 |
if isinstance(val, basestring): |
4392
91a56a30141e
by default this is not the widget responsability to turn empty string into None,
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4382
diff
changeset
|
119 |
val = val.strip() |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
120 |
return val |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
121 |
|
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
122 |
@deprecated('[3.6] use values_and_attributes') |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
123 |
def _render_attrs(self, form, field): |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
124 |
"""return html tag name, attributes and a list of values for the field |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
125 |
""" |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
126 |
values, attrs = self.values_and_attributes(form, field) |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
127 |
return field.input_name(form, self.suffix), values, attrs |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
128 |
|
1096 | 129 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
130 |
class Input(FieldWidget): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
131 |
"""abstract widget class for <input> tag based widgets""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
132 |
type = None |
1474 | 133 |
|
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
134 |
def _render(self, form, field, renderer): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
135 |
"""render the widget for the given `field` of `form`. |
1474 | 136 |
|
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
137 |
Generate one <input> tag for each field's value |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
138 |
""" |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
139 |
values, attrs = self.values_and_attributes(form, field) |
1768
b59b7c422a8a
ensure input widgets are displayed anyway if they get an empty list as values
sylvain.thenault@logilab.fr
parents:
1749
diff
changeset
|
140 |
# ensure something is rendered |
b59b7c422a8a
ensure input widgets are displayed anyway if they get an empty list as values
sylvain.thenault@logilab.fr
parents:
1749
diff
changeset
|
141 |
if not values: |
b59b7c422a8a
ensure input widgets are displayed anyway if they get an empty list as values
sylvain.thenault@logilab.fr
parents:
1749
diff
changeset
|
142 |
values = (INTERNAL_FIELD_VALUE,) |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
143 |
inputs = [tags.input(name=field.input_name(form, self.suffix), |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
144 |
type=self.type, value=value, **attrs) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
145 |
for value in values] |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
146 |
return u'\n'.join(inputs) |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
147 |
|
1096 | 148 |
|
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
149 |
# basic html widgets ########################################################### |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
150 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
151 |
class TextInput(Input): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
152 |
"""<input type='text'>""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
153 |
type = 'text' |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
154 |
|
1096 | 155 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
156 |
class PasswordInput(Input): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
157 |
"""<input type='password'> and its confirmation field (using |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
158 |
<field's name>-confirm as name) |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
159 |
""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
160 |
type = 'password' |
1474 | 161 |
|
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
162 |
def _render(self, form, field, renderer): |
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
163 |
assert self.suffix is None, 'suffix not supported' |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
164 |
values, attrs = self.values_and_attributes(form, field) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
165 |
assert len(values) == 1 |
1110
c71997f514ba
fix password widget: do not duplicate dom id, fix confirm field name
sylvain.thenault@logilab.fr
parents:
1096
diff
changeset
|
166 |
id = attrs.pop('id') |
4156
1bbb0ee42c8e
drop form_field_name/form_field_id methods from form object, in favor of field.input_name(form) / field.dom_id(form)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
167 |
inputs = [tags.input(name=field.input_name(form), |
1bbb0ee42c8e
drop form_field_name/form_field_id methods from form object, in favor of field.input_name(form) / field.dom_id(form)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
168 |
value=values[0], type=self.type, id=id, **attrs), |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
169 |
'<br/>', |
4156
1bbb0ee42c8e
drop form_field_name/form_field_id methods from form object, in favor of field.input_name(form) / field.dom_id(form)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
170 |
tags.input(name=field.input_name(form, '-confirm'), |
1bbb0ee42c8e
drop form_field_name/form_field_id methods from form object, in favor of field.input_name(form) / field.dom_id(form)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
171 |
value=values[0], type=self.type, **attrs), |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
172 |
' ', tags.span(form._cw._('confirm password'), |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
173 |
**{'class': 'emphasis'})] |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
174 |
return u'\n'.join(inputs) |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
175 |
|
3387
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
176 |
def process_field_data(self, form, field): |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
177 |
passwd1 = super(PasswordInput, self).process_field_data(form, field) |
4156
1bbb0ee42c8e
drop form_field_name/form_field_id methods from form object, in favor of field.input_name(form) / field.dom_id(form)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
178 |
passwd2 = form._cw.form.get(field.input_name(form, '-confirm')) |
3387
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
179 |
if passwd1 == passwd2: |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
180 |
if passwd1 is None: |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
181 |
return None |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
182 |
return passwd1.encode('utf-8') |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
183 |
raise ProcessFormError(form._cw._("password and confirmation don't match")) |
1096 | 184 |
|
185 |
||
1934
be86bb31c4c2
add single input password widget
Florent <florent@secondweb.fr>
parents:
1875
diff
changeset
|
186 |
class PasswordSingleInput(Input): |
be86bb31c4c2
add single input password widget
Florent <florent@secondweb.fr>
parents:
1875
diff
changeset
|
187 |
"""<input type='password'> without a confirmation field""" |
be86bb31c4c2
add single input password widget
Florent <florent@secondweb.fr>
parents:
1875
diff
changeset
|
188 |
type = 'password' |
be86bb31c4c2
add single input password widget
Florent <florent@secondweb.fr>
parents:
1875
diff
changeset
|
189 |
|
3387
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
190 |
def process_field_data(self, form, field): |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
191 |
value = super(PasswordSingleInput, self).process_field_data(form, field) |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
192 |
if value is not None: |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
193 |
return value.encode('utf-8') |
a357d4147eee
[forms] work-in-progress, big editcontroller refactoring: let fields/widgets process posted data
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2549
diff
changeset
|
194 |
return value |
1934
be86bb31c4c2
add single input password widget
Florent <florent@secondweb.fr>
parents:
1875
diff
changeset
|
195 |
|
be86bb31c4c2
add single input password widget
Florent <florent@secondweb.fr>
parents:
1875
diff
changeset
|
196 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
197 |
class FileInput(Input): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
198 |
"""<input type='file'>""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
199 |
type = 'file' |
1474 | 200 |
|
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
201 |
def values_and_attributes(self, form, field): |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
202 |
# ignore value which makes no sense here (XXX even on form validation error?) |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
203 |
values, attrs = super(FileInput, self).values_and_attributes(form, field) |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
204 |
return ('',), attrs |
1096 | 205 |
|
1474 | 206 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
207 |
class HiddenInput(Input): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
208 |
"""<input type='hidden'>""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
209 |
type = 'hidden' |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
210 |
setdomid = False # by default, don't set id attribute on hidden input |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
211 |
settabindex = False |
1096 | 212 |
|
1474 | 213 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
214 |
class ButtonInput(Input): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
215 |
"""<input type='button'> |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
216 |
|
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
217 |
if you want a global form button, look at the Button, SubmitButton, |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
218 |
ResetButton and ImgButton classes below. |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
219 |
""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
220 |
type = 'button' |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
221 |
|
1096 | 222 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
223 |
class TextArea(FieldWidget): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
224 |
"""<textarea>""" |
2366
e4229723b824
[formwidgets] let the textarea height be dependant on the actual content (up to a limit)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2360
diff
changeset
|
225 |
|
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
226 |
def _render(self, form, field, renderer): |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
227 |
values, attrs = self.values_and_attributes(form, field) |
2131
00e6d1cb18ea
[views] call autogrow only once per key event
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2091
diff
changeset
|
228 |
attrs.setdefault('onkeyup', 'autogrow(this)') |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
229 |
if not values: |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
230 |
value = u'' |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
231 |
elif len(values) == 1: |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
232 |
value = values[0] |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
233 |
else: |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
234 |
raise ValueError('a textarea is not supposed to be multivalued') |
2366
e4229723b824
[formwidgets] let the textarea height be dependant on the actual content (up to a limit)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2360
diff
changeset
|
235 |
lines = value.splitlines() |
e4229723b824
[formwidgets] let the textarea height be dependant on the actual content (up to a limit)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2360
diff
changeset
|
236 |
linecount = len(lines) |
e4229723b824
[formwidgets] let the textarea height be dependant on the actual content (up to a limit)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2360
diff
changeset
|
237 |
for line in lines: |
e4229723b824
[formwidgets] let the textarea height be dependant on the actual content (up to a limit)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2360
diff
changeset
|
238 |
linecount += len(line) / 80 |
e4229723b824
[formwidgets] let the textarea height be dependant on the actual content (up to a limit)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2360
diff
changeset
|
239 |
attrs.setdefault('cols', 80) |
e4229723b824
[formwidgets] let the textarea height be dependant on the actual content (up to a limit)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2360
diff
changeset
|
240 |
attrs.setdefault('rows', min(15, linecount + 2)) |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
241 |
return tags.textarea(value, name=field.input_name(form, self.suffix), |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
242 |
**attrs) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
243 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
244 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
245 |
class FCKEditor(TextArea): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
246 |
"""FCKEditor enabled <textarea>""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
247 |
def __init__(self, *args, **kwargs): |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
248 |
super(FCKEditor, self).__init__(*args, **kwargs) |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
249 |
self.attrs['cubicweb:type'] = 'wysiwyg' |
1474 | 250 |
|
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
251 |
def _render(self, form, field, renderer): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
252 |
form._cw.fckeditor_config() |
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
253 |
return super(FCKEditor, self)._render(form, field, renderer) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
254 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
255 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
256 |
class Select(FieldWidget): |
1474 | 257 |
"""<select>, for field having a specific vocabulary""" |
2091
a7ea618e5478
don't set select widget when a vocabulary widget is already specified on the field class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1989
diff
changeset
|
258 |
vocabulary_widget = True |
a7ea618e5478
don't set select widget when a vocabulary widget is already specified on the field class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1989
diff
changeset
|
259 |
|
1562
e6d2c07c0c58
[forms/widgets] fix relation field not sorting its vocabulary, revert hack on Select widget
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1541
diff
changeset
|
260 |
def __init__(self, attrs=None, multiple=False): |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
261 |
super(Select, self).__init__(attrs) |
1541
ddddbb748355
[widgets] an option for Select to show sorted content
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1538
diff
changeset
|
262 |
self._multiple = multiple |
1474 | 263 |
|
2522
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
264 |
def render(self, form, field, renderer): |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
265 |
curvalues, attrs = self.values_and_attributes(form, field) |
1989
8c8dead642f7
set default select size to 1 into the widget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
266 |
if not 'size' in attrs: |
8c8dead642f7
set default select size to 1 into the widget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
267 |
attrs['size'] = self._multiple and '5' or '1' |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
268 |
options = [] |
1771
bb9538d91465
fix <optgroup> tag cannot be empty according to DTD
Florent <florent@secondweb.fr>
parents:
1768
diff
changeset
|
269 |
optgroup_opened = False |
2518
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
270 |
for option in field.vocabulary(form): |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
271 |
try: |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
272 |
label, value, oattrs = option |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
273 |
except ValueError: |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
274 |
label, value = option |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
275 |
oattrs = {} |
1336
2e552353c42a
insert an optgroup as separator on None values
sylvain.thenault@logilab.fr
parents:
1330
diff
changeset
|
276 |
if value is None: |
2e552353c42a
insert an optgroup as separator on None values
sylvain.thenault@logilab.fr
parents:
1330
diff
changeset
|
277 |
# handle separator |
1771
bb9538d91465
fix <optgroup> tag cannot be empty according to DTD
Florent <florent@secondweb.fr>
parents:
1768
diff
changeset
|
278 |
if optgroup_opened: |
bb9538d91465
fix <optgroup> tag cannot be empty according to DTD
Florent <florent@secondweb.fr>
parents:
1768
diff
changeset
|
279 |
options.append(u'</optgroup>') |
2518
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
280 |
oattrs.setdefault('label', label or '') |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
281 |
options.append(u'<optgroup %s>' % uilib.sgml_attributes(oattrs)) |
1771
bb9538d91465
fix <optgroup> tag cannot be empty according to DTD
Florent <florent@secondweb.fr>
parents:
1768
diff
changeset
|
282 |
optgroup_opened = True |
1336
2e552353c42a
insert an optgroup as separator on None values
sylvain.thenault@logilab.fr
parents:
1330
diff
changeset
|
283 |
elif value in curvalues: |
2518
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
284 |
options.append(tags.option(label, value=value, |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
285 |
selected='selected', **oattrs)) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
286 |
else: |
2518
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
287 |
options.append(tags.option(label, value=value, **oattrs)) |
1771
bb9538d91465
fix <optgroup> tag cannot be empty according to DTD
Florent <florent@secondweb.fr>
parents:
1768
diff
changeset
|
288 |
if optgroup_opened: |
bb9538d91465
fix <optgroup> tag cannot be empty according to DTD
Florent <florent@secondweb.fr>
parents:
1768
diff
changeset
|
289 |
options.append(u'</optgroup>') |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
290 |
return tags.select(name=field.input_name(form, self.suffix), |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
291 |
multiple=self._multiple, options=options, **attrs) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
292 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
293 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
294 |
class CheckBox(Input): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
295 |
"""<input type='checkbox'>, for field having a specific vocabulary. One |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
296 |
input will be generated for each possible value. |
1474 | 297 |
""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
298 |
type = 'checkbox' |
2091
a7ea618e5478
don't set select widget when a vocabulary widget is already specified on the field class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1989
diff
changeset
|
299 |
vocabulary_widget = True |
1474 | 300 |
|
2522
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
301 |
def render(self, form, field, renderer): |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
302 |
curvalues, attrs = self.values_and_attributes(form, field) |
1367
01bb5b727fe3
set dom id on the first input of radio choices
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
303 |
domid = attrs.pop('id', None) |
2519
ac1a869e1e93
nicer checkbox widget implementation, avoid extra <br/> at the end
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2518
diff
changeset
|
304 |
sep = attrs.pop('separator', u'<br/>\n') |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
305 |
options = [] |
2518
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
306 |
for i, option in enumerate(field.vocabulary(form)): |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
307 |
try: |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
308 |
label, value, oattrs = option |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
309 |
except ValueError: |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
310 |
label, value = option |
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
311 |
oattrs = {} |
1367
01bb5b727fe3
set dom id on the first input of radio choices
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
312 |
iattrs = attrs.copy() |
2518
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
313 |
iattrs.update(oattrs) |
1367
01bb5b727fe3
set dom id on the first input of radio choices
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
314 |
if i == 0 and domid is not None: |
2518
38c28ee40138
allow vocabulary functions to return either label/value or label/value/dict (to use as attributes of the tag for this input)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2366
diff
changeset
|
315 |
iattrs.setdefault('id', domid) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
316 |
if value in curvalues: |
1367
01bb5b727fe3
set dom id on the first input of radio choices
sylvain.thenault@logilab.fr
parents:
1359
diff
changeset
|
317 |
iattrs['checked'] = u'checked' |
4371
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
318 |
tag = tags.input(name=field.input_name(form, self.suffix), |
0d337feb5374
[forms] new optional suffix attribute on widget objects, used to generage input name / dom id.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4305
diff
changeset
|
319 |
type=self.type, value=value, **iattrs) |
2519
ac1a869e1e93
nicer checkbox widget implementation, avoid extra <br/> at the end
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2518
diff
changeset
|
320 |
options.append(tag + label) |
ac1a869e1e93
nicer checkbox widget implementation, avoid extra <br/> at the end
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2518
diff
changeset
|
321 |
return sep.join(options) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
322 |
|
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
323 |
|
1832
3384264d25cc
fix CheckBox multiple dom id and refactor with Radio
Florent <florent@secondweb.fr>
parents:
1771
diff
changeset
|
324 |
class Radio(CheckBox): |
3384264d25cc
fix CheckBox multiple dom id and refactor with Radio
Florent <florent@secondweb.fr>
parents:
1771
diff
changeset
|
325 |
"""<input type='radio'>, for field having a specific vocabulary. One |
3384264d25cc
fix CheckBox multiple dom id and refactor with Radio
Florent <florent@secondweb.fr>
parents:
1771
diff
changeset
|
326 |
input will be generated for each possible value. |
3384264d25cc
fix CheckBox multiple dom id and refactor with Radio
Florent <florent@secondweb.fr>
parents:
1771
diff
changeset
|
327 |
""" |
3384264d25cc
fix CheckBox multiple dom id and refactor with Radio
Florent <florent@secondweb.fr>
parents:
1771
diff
changeset
|
328 |
type = 'radio' |
3384264d25cc
fix CheckBox multiple dom id and refactor with Radio
Florent <florent@secondweb.fr>
parents:
1771
diff
changeset
|
329 |
|
2225 | 330 |
|
2523
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
331 |
# compound widgets ############################################################# |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
332 |
|
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
333 |
class IntervalWidget(FieldWidget): |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
334 |
"""custom widget to display an interval composed by 2 fields. This widget |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
335 |
is expected to be used with a CompoundField containing the two actual |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
336 |
fields. |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
337 |
|
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
338 |
Exemple usage:: |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
339 |
|
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
340 |
from uicfg import autoform_field, autoform_section |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
341 |
autoform_field.tag_attribute(('Concert', 'minprice'), |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
342 |
CompoundField(fields=(IntField(name='minprice'), |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
343 |
IntField(name='maxprice')), |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
344 |
label=_('price'), |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
345 |
widget=IntervalWidget() |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
346 |
)) |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
347 |
# we've to hide the other field manually for now |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
348 |
autoform_section.tag_attribute(('Concert', 'maxprice'), 'generated') |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
349 |
""" |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
350 |
def render(self, form, field, renderer): |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
351 |
actual_fields = field.fields |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
352 |
assert len(actual_fields) == 2 |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
353 |
return u'<div>%s %s %s %s</div>' % ( |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
354 |
form._cw._('from_interval_start'), |
2523
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
355 |
actual_fields[0].render(form, renderer), |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
356 |
form._cw._('to_interval_end'), |
2523
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
357 |
actual_fields[1].render(form, renderer), |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
358 |
) |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
359 |
|
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
360 |
|
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
361 |
class HorizontalLayoutWidget(FieldWidget): |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
362 |
"""custom widget to display a set of fields grouped together horizontally |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
363 |
in a form. See `IntervalWidget` for example usage. |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
364 |
""" |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
365 |
def render(self, form, field, renderer): |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
366 |
if self.attrs.get('display_label', True): |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
367 |
subst = self.attrs.get('label_input_substitution', '%(label)s %(input)s') |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
368 |
fields = [subst % {'label': renderer.render_label(form, f), |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
369 |
'input': f.render(form, renderer)} |
2549
3d8c62e5e2d4
[R forms] use a subfields(form) method to get a chance to adapt to context
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2523
diff
changeset
|
370 |
for f in field.subfields(form)] |
2523
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
371 |
else: |
2549
3d8c62e5e2d4
[R forms] use a subfields(form) method to get a chance to adapt to context
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2523
diff
changeset
|
372 |
fields = [f.render(form, renderer) for f in field.subfields(form)] |
2523
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
373 |
return u'<div>%s</div>' % ' '.join(fields) |
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
374 |
|
1d245fbbeb90
some new field/widgets classes: CompoundField, IntervalWidget, HorizontalLayoutWidget
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2522
diff
changeset
|
375 |
|
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
376 |
# javascript widgets ########################################################### |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
377 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
378 |
class DateTimePicker(TextInput): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
379 |
"""<input type='text' + javascript date/time picker for date or datetime |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
380 |
fields |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
381 |
""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
382 |
monthnames = ('january', 'february', 'march', 'april', |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
383 |
'may', 'june', 'july', 'august', |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
384 |
'september', 'october', 'november', 'december') |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
385 |
daynames = ('monday', 'tuesday', 'wednesday', 'thursday', |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
386 |
'friday', 'saturday', 'sunday') |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
387 |
|
1311
4cc6e2723dc7
move ajax.js to base form class
sylvain.thenault@logilab.fr
parents:
1304
diff
changeset
|
388 |
needs_js = ('cubicweb.calendar.js',) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
389 |
needs_css = ('cubicweb.calendar_popup.css',) |
1474 | 390 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
391 |
@classmethod |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
392 |
def add_localized_infos(cls, req): |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
393 |
"""inserts JS variables defining localized months and days""" |
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3998
diff
changeset
|
394 |
# import here to avoid dependancy from cubicweb to simplejson |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
395 |
_ = req._ |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
396 |
monthnames = [_(mname) for mname in cls.monthnames] |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
397 |
daynames = [_(dname) for dname in cls.daynames] |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
398 |
req.html_headers.define_var('MONTHNAMES', monthnames) |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
399 |
req.html_headers.define_var('DAYNAMES', daynames) |
1474 | 400 |
|
2522
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
401 |
def render(self, form, field, renderer): |
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
402 |
txtwidget = super(DateTimePicker, self).render(form, field, renderer) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
403 |
self.add_localized_infos(form._cw) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
404 |
cal_button = self._render_calendar_popup(form, field) |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
405 |
return txtwidget + cal_button |
1474 | 406 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
407 |
def _render_calendar_popup(self, form, field): |
4159
6b2b20c73d59
refactor form field value handling, to get a nicer api and an easier algorithm to get field's value
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4156
diff
changeset
|
408 |
value = field.typed_value(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:
1389
diff
changeset
|
409 |
if not 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:
1389
diff
changeset
|
410 |
value = date.today() |
4156
1bbb0ee42c8e
drop form_field_name/form_field_id methods from form object, in favor of field.input_name(form) / field.dom_id(form)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4023
diff
changeset
|
411 |
inputid = field.dom_id(form) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
412 |
helperid = '%shelper' % inputid |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
413 |
year, month = value.year, value.month |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
414 |
return (u"""<a onclick="toggleCalendar('%s', '%s', %s, %s);" class="calhelper"> |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
415 |
<img src="%s" title="%s" alt="" /></a><div class="calpopup hidden" id="%s"></div>""" |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
416 |
% (helperid, inputid, year, month, |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
417 |
form._cw.external_resource('CALENDAR_ICON'), |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
418 |
form._cw._('calendar'), helperid) ) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
419 |
|
1474 | 420 |
|
4373
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
421 |
class JQueryDatePicker(FieldWidget): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
422 |
"""use jquery.ui.datepicker to define a date time picker""" |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
423 |
needs_js = ('jquery.ui.js', ) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
424 |
needs_css = ('jquery.ui.css',) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
425 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
426 |
def __init__(self, datestr=None, **kwargs): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
427 |
super(JQueryDatePicker, self).__init__(**kwargs) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
428 |
self.datestr = datestr |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
429 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
430 |
def _render(self, form, field, renderer): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
431 |
req = form._cw |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
432 |
domid = field.dom_id(form, self.suffix) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
433 |
# XXX find a way to understand every format |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
434 |
fmt = req.property_value('ui.date-format') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
435 |
fmt = fmt.replace('%Y', 'yy').replace('%m', 'mm').replace('%d', 'dd') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
436 |
req.add_onload(u'jqNode("%s").datepicker(' |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
437 |
'{buttonImage: "%s", dateFormat: "%s", firstDay: 1,' |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
438 |
' showOn: "button", buttonImageOnly: true})' % ( |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
439 |
domid, req.external_resource('CALENDAR_ICON'), fmt)) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
440 |
if self.datestr is None: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
441 |
value = self.values(form, field)[0] |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
442 |
else: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
443 |
value = self.datestr |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
444 |
return tags.input(id=domid, name=domid, value=value, |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
445 |
type='text', size='10') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
446 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
447 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
448 |
class JQueryTimePicker(FieldWidget): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
449 |
"""use jquery.timePicker.js to define a js time picker""" |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
450 |
needs_js = ('jquery.timePicker.js',) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
451 |
needs_css = ('jquery.timepicker.css',) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
452 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
453 |
def __init__(self, timestr=None, timesteps=30, **kwargs): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
454 |
super(JQueryTimePicker, self).__init__(**kwargs) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
455 |
self.timestr = timestr |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
456 |
self.timesteps = timesteps |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
457 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
458 |
def _render(self, form, field, renderer): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
459 |
req = form._cw |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
460 |
domid = field.dom_id(form, self.suffix) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
461 |
req.add_onload(u'jqNode("%s").timePicker({selectedTime: "%s", step: %s})' % ( |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
462 |
domid, self.timestr, self.timesteps)) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
463 |
if self.timestr is None: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
464 |
value = self.values(form, field)[0] |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
465 |
else: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
466 |
value = self.timestr |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
467 |
return tags.input(id=domid, name=domid, value=value, |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
468 |
type='text', size='5') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
469 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
470 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
471 |
class JQueryDateTimePicker(FieldWidget): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
472 |
def __init__(self, initialtime=None, timesteps=15, **kwargs): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
473 |
super(JQueryDateTimePicker, self).__init__(**kwargs) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
474 |
self.initialtime = initialtime |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
475 |
self.timesteps = timesteps |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
476 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
477 |
def _render(self, form, field, renderer): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
478 |
"""render the widget for the given `field` of `form`. |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
479 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
480 |
Generate one <input> tag for each field's value |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
481 |
""" |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
482 |
req = form._cw |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
483 |
dateqname = field.input_name(form, 'date') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
484 |
timeqname = field.input_name(form, 'time') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
485 |
if dateqname in form.form_previous_values: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
486 |
datestr = form.form_previous_values[dateqname] |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
487 |
timestr = form.form_previous_values[timeqname] |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
488 |
else: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
489 |
datestr = timestr = u'' |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
490 |
if field.name in req.form: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
491 |
value = req.parse_datetime(req.form[field.name]) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
492 |
else: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
493 |
value = self.typed_value(form, field) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
494 |
if value: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
495 |
datestr = req.format_date(value) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
496 |
timestr = req.format_time(value) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
497 |
elif self.initialtime: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
498 |
timestr = req.format_time(self.initialtime) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
499 |
datepicker = JQueryDatePicker(datestr=datestr, suffix='date') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
500 |
timepicker = JQueryTimePicker(timestr=timestr, timesteps=self.timesteps, |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
501 |
suffix='time') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
502 |
return u'<div id="%s">%s%s</div>' % (field.dom_id(form), |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
503 |
datepicker.render(form, field), |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
504 |
timepicker.render(form, field)) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
505 |
|
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
506 |
def process_field_data(self, form, field): |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
507 |
req = form._cw |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
508 |
datestr = req.form.get(field.input_name(form, 'date')).strip() or None |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
509 |
timestr = req.form.get(field.input_name(form, 'time')).strip() or None |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
510 |
if datestr is None: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
511 |
return None |
4481
56440a1f816a
hidden usage of datetime function which has been moved to lgc
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4392
diff
changeset
|
512 |
date = todatetime(req.parse_datetime(datestr, 'Date')) |
4373
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
513 |
if timestr is None: |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
514 |
return date |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
515 |
time = req.parse_datetime(timestr, 'Time') |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
516 |
return date.replace(hour=time.hour, minute=time.minute, second=time.second) |
972143183ea3
new jquery based widgets for Time/Date/DateTime, backported from crm
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4372
diff
changeset
|
517 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
518 |
|
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
519 |
# ajax widgets ################################################################ |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
520 |
|
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
521 |
def init_ajax_attributes(attrs, wdgtype, loadtype=u'auto'): |
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
522 |
try: |
1344
930020cb134b
shouldn't use unicode keys in attrs
sylvain.thenault@logilab.fr
parents:
1337
diff
changeset
|
523 |
attrs['klass'] += u' widget' |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
524 |
except KeyError: |
1344
930020cb134b
shouldn't use unicode keys in attrs
sylvain.thenault@logilab.fr
parents:
1337
diff
changeset
|
525 |
attrs['klass'] = u'widget' |
930020cb134b
shouldn't use unicode keys in attrs
sylvain.thenault@logilab.fr
parents:
1337
diff
changeset
|
526 |
attrs.setdefault('cubicweb:wdgtype', wdgtype) |
930020cb134b
shouldn't use unicode keys in attrs
sylvain.thenault@logilab.fr
parents:
1337
diff
changeset
|
527 |
attrs.setdefault('cubicweb:loadtype', loadtype) |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
528 |
|
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
529 |
|
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
530 |
class AjaxWidget(FieldWidget): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
531 |
"""simple <div> based ajax widget""" |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
532 |
def __init__(self, wdgtype, inputid=None, **kwargs): |
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
533 |
super(AjaxWidget, self).__init__(**kwargs) |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
534 |
init_ajax_attributes(self.attrs, wdgtype) |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
535 |
if inputid is not None: |
1344
930020cb134b
shouldn't use unicode keys in attrs
sylvain.thenault@logilab.fr
parents:
1337
diff
changeset
|
536 |
self.attrs['cubicweb:inputid'] = inputid |
1474 | 537 |
|
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
538 |
def _render(self, form, field, renderer): |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
539 |
attrs = self.values_and_attributes(form, field)[-1] |
1081
f2a85f52b9e5
move fields and widgets to their own module
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
540 |
return tags.div(**attrs) |
1304 | 541 |
|
1474 | 542 |
|
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
543 |
class AutoCompletionWidget(TextInput): |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
544 |
"""ajax widget for StringField, proposing matching existing values as you |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
545 |
type. |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
546 |
""" |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
547 |
needs_js = ('cubicweb.widgets.js', 'jquery.autocomplete.js') |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
548 |
needs_css = ('jquery.autocomplete.css',) |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
549 |
wdgtype = 'SuggestField' |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
550 |
loadtype = 'auto' |
1474 | 551 |
|
1966
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
552 |
def __init__(self, *args, **kwargs): |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
553 |
try: |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
554 |
self.autocomplete_initfunc = kwargs.pop('autocomplete_initfunc') |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
555 |
except KeyError: |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
556 |
warn('use autocomplete_initfunc argument of %s constructor ' |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
557 |
'instead of relying on autocomplete_initfuncs dictionary on ' |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
558 |
'the entity class' % self.__class__.__name__, |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
559 |
DeprecationWarning) |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
560 |
self.autocomplete_initfunc = None |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
561 |
super(AutoCompletionWidget, self).__init__(*args, **kwargs) |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
562 |
|
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
563 |
def values_and_attributes(self, form, field): |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
564 |
values, attrs = super(AutoCompletionWidget, self).values_and_attributes(form, field) |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
565 |
init_ajax_attributes(attrs, self.wdgtype, self.loadtype) |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
566 |
# XXX entity form specific |
1875
7bcb02377516
no rschema attribute on widgets
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1874
diff
changeset
|
567 |
attrs['cubicweb:dataurl'] = self._get_url(form.edited_entity, field) |
3993
8cf7c767b134
quick & dirty fix for auto completion widget
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3803
diff
changeset
|
568 |
if not values: |
8cf7c767b134
quick & dirty fix for auto completion widget
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
3803
diff
changeset
|
569 |
values = ('',) |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
570 |
return values, attrs |
1474 | 571 |
|
1875
7bcb02377516
no rschema attribute on widgets
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1874
diff
changeset
|
572 |
def _get_url(self, entity, field): |
1966
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
573 |
if self.autocomplete_initfunc is None: |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
574 |
# XXX for bw compat |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
575 |
fname = entity.autocomplete_initfuncs[field.name] |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
576 |
else: |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
577 |
fname = self.autocomplete_initfunc |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
578 |
return entity._cw.build_url('json', fname=fname, mode='remote', |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
579 |
pageid=entity._cw.pageid) |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
580 |
|
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
581 |
|
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
582 |
class StaticFileAutoCompletionWidget(AutoCompletionWidget): |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
583 |
"""XXX describe me""" |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
584 |
wdgtype = 'StaticFileSuggestField' |
1474 | 585 |
|
1875
7bcb02377516
no rschema attribute on widgets
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1874
diff
changeset
|
586 |
def _get_url(self, entity, field): |
1966
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
587 |
if self.autocomplete_initfunc is None: |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
588 |
# XXX for bw compat |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
589 |
fname = entity.autocomplete_initfuncs[field.name] |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
590 |
else: |
87ce7d336393
stop using autocomplete_initfuncs dict on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1934
diff
changeset
|
591 |
fname = self.autocomplete_initfunc |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
592 |
return entity._cw.datadir_url + fname |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
593 |
|
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
594 |
|
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
595 |
class RestrictedAutoCompletionWidget(AutoCompletionWidget): |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
596 |
"""XXX describe me""" |
1474 | 597 |
wdgtype = 'RestrictedSuggestField' |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
598 |
|
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
599 |
|
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
600 |
class AddComboBoxWidget(Select): |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
601 |
def values_and_attributes(self, form, field): |
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
602 |
values, attrs = super(AddComboBoxWidget, self).values_and_attributes(form, field) |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
603 |
init_ajax_attributes(self.attrs, 'AddComboBox') |
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
604 |
# XXX entity form specific |
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
605 |
entity = form.edited_entity |
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
606 |
attrs['cubicweb:etype_to'] = entity.e_schema |
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3106
diff
changeset
|
607 |
etype_from = entity.e_schema.subjrels[field.name].objects(entity.e_schema)[0] |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
608 |
attrs['cubicweb:etype_from'] = etype_from |
4163
b2747ed057e6
substitute _render_attrs by values_and_attributes method, keeping bw compat
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4160
diff
changeset
|
609 |
return values, attrs |
1474 | 610 |
|
2522
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
611 |
def render(self, form, field, renderer): |
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
612 |
return super(AddComboBoxWidget, self).render(form, field, renderer) + u''' |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
613 |
<div id="newvalue"> |
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
614 |
<input type="text" id="newopt" /> |
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2549
diff
changeset
|
615 |
<a href="javascript:noop()" id="add_newopt"> </a></div> |
1337
828bbf500bcc
backport AddComboBoxWidget, ajax widgets refactoring
sylvain.thenault@logilab.fr
parents:
1336
diff
changeset
|
616 |
''' |
1359 | 617 |
|
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
618 |
# buttons ###################################################################### |
1304 | 619 |
|
620 |
class Button(Input): |
|
1389 | 621 |
"""<input type='button'>, base class for global form buttons |
622 |
||
623 |
note label is a msgid which will be translated at form generation time, you |
|
624 |
should not give an already translated string. |
|
625 |
""" |
|
1304 | 626 |
type = 'button' |
627 |
def __init__(self, label=stdmsgs.BUTTON_OK, attrs=None, |
|
628 |
setdomid=None, settabindex=None, |
|
629 |
name='', value='', onclick=None, cwaction=None): |
|
630 |
super(Button, self).__init__(attrs, setdomid, settabindex) |
|
3803
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
631 |
if isinstance(label, tuple): |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
632 |
self.label = label[0] |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
633 |
self.icon = label[1] |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
634 |
else: |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
635 |
self.label = label |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
636 |
self.icon = None |
1304 | 637 |
self.name = name |
638 |
self.value = '' |
|
639 |
self.onclick = onclick |
|
640 |
self.cwaction = cwaction |
|
641 |
self.attrs.setdefault('klass', 'validateButton') |
|
1474 | 642 |
|
2522
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
643 |
def render(self, form, field=None, renderer=None): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
644 |
label = form._cw._(self.label) |
1304 | 645 |
attrs = self.attrs.copy() |
646 |
if self.cwaction: |
|
647 |
assert self.onclick is None |
|
648 |
attrs['onclick'] = "postForm('__action_%s', \'%s\', \'%s\')" % ( |
|
649 |
self.cwaction, self.label, form.domid) |
|
650 |
elif self.onclick: |
|
651 |
attrs['onclick'] = self.onclick |
|
652 |
if self.name: |
|
4250
39adce674a09
fix NameError
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
4212
diff
changeset
|
653 |
attrs['name'] = self.name |
1304 | 654 |
if self.setdomid: |
655 |
attrs['id'] = self.name |
|
656 |
if self.settabindex and not 'tabindex' in attrs: |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
657 |
attrs['tabindex'] = form._cw.next_tabindex() |
3803
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
658 |
if self.icon: |
3890
d7a270f50f54
backport stable branch (one more time painfully)
Sylvain Thénault <sylvain.thenault@logilab.fr>
diff
changeset
|
659 |
img = tags.img(src=form._cw.external_resource(self.icon), alt=self.icon) |
3803
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
660 |
else: |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
661 |
img = u'' |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
662 |
return tags.button(img + xml_escape(label), escapecontent=False, |
414bb8439002
[web ui] decorate form buttons with icons (at last)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3689
diff
changeset
|
663 |
value=label, type=self.type, **attrs) |
1304 | 664 |
|
1474 | 665 |
|
1304 | 666 |
class SubmitButton(Button): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
667 |
"""<input type='submit'>, main button to submit a form""" |
1304 | 668 |
type = 'submit' |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
669 |
|
1474 | 670 |
|
1304 | 671 |
class ResetButton(Button): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
672 |
"""<input type='reset'>, main button to reset a form. |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
673 |
You usually don't want this. |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
674 |
""" |
1304 | 675 |
type = 'reset' |
676 |
||
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
677 |
|
1304 | 678 |
class ImgButton(object): |
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
679 |
"""<img> wrapped into a <a> tag with href triggering something (usually a |
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
680 |
javascript call) |
1389 | 681 |
|
682 |
note label is a msgid which will be translated at form generation time, you |
|
683 |
should not give an already translated string. |
|
1330
92343a468e2a
add some documentation, backport *CompletionWidget
sylvain.thenault@logilab.fr
parents:
1329
diff
changeset
|
684 |
""" |
1304 | 685 |
def __init__(self, domid, href, label, imgressource): |
686 |
self.domid = domid |
|
687 |
self.href = href |
|
688 |
self.imgressource = imgressource |
|
689 |
self.label = label |
|
1474 | 690 |
|
2522
562f5dcf2345
widget.render now takes the renderer as third argument (keeping minimal bw compat)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2519
diff
changeset
|
691 |
def render(self, form, field=None, renderer=None): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
692 |
label = form._cw._(self.label) |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3388
diff
changeset
|
693 |
imgsrc = form._cw.external_resource(self.imgressource) |
1389 | 694 |
return '<a id="%(domid)s" href="%(href)s">'\ |
695 |
'<img src="%(imgsrc)s" alt="%(label)s"/>%(label)s</a>' % { |
|
696 |
'label': label, 'imgsrc': imgsrc, |
|
697 |
'domid': self.domid, 'href': self.href} |
|
1474 | 698 |
|
1304 | 699 |
|
4304
0b53e850cdb5
refactor field's value retreiving from the widget (eg 'display value' concept):
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
700 |
# more widgets ################################################################# |
1474 | 701 |
|
4375
6d34e3cf60a3
cleanup base class
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4373
diff
changeset
|
702 |
class EditableURLWidget(FieldWidget): |
4305
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
703 |
"""custom widget to edit separatly an url path / query string (used by |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
704 |
default for Bookmark.path for instance), dealing with url quoting nicely |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
705 |
(eg user edit the unquoted value). |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
706 |
""" |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
707 |
|
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
708 |
def _render(self, form, field, renderer): |
4305
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
709 |
"""render the widget for the given `field` of `form`. |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
710 |
|
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
711 |
Generate one <input> tag for each field's value |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
712 |
""" |
4372
0c44af150a49
introduce a default render implementation on the base widget, which
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4371
diff
changeset
|
713 |
assert self.suffix is None, 'not supported' |
4305
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
714 |
req = form._cw |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
715 |
pathqname = field.input_name(form, 'path') |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
716 |
fqsqname = field.input_name(form, 'fqs') # formatted query string |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
717 |
if pathqname in form.form_previous_values: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
718 |
path = form.form_previous_values[pathqname] |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
719 |
fqs = form.form_previous_values[fqsqname] |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
720 |
else: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
721 |
if field.name in req.form: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
722 |
value = req.form[field.name] |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
723 |
else: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
724 |
value = self.typed_value(form, field) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
725 |
try: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
726 |
path, qs = value.split('?', 1) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
727 |
except ValueError: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
728 |
path = value |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
729 |
qs = '' |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
730 |
fqs = u'\n'.join(u'%s=%s' % (k, v) for k, v in req.url_parse_qsl(qs)) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
731 |
attrs = dict(self.attrs) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
732 |
if self.setdomid: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
733 |
attrs['id'] = field.dom_id(form) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
734 |
if self.settabindex and not 'tabindex' in attrs: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
735 |
attrs['tabindex'] = req.next_tabindex() |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
736 |
# ensure something is rendered |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
737 |
inputs = [u'<table><tr><th>', |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
738 |
req._('i18n_bookmark_url_path'), |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
739 |
u'</th><td>', |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
740 |
tags.input(name=pathqname, type='string', value=path, **attrs), |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
741 |
u'</td></tr><tr><th>', |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
742 |
req._('i18n_bookmark_url_fqs'), |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
743 |
u'</th><td>'] |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
744 |
if self.setdomid: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
745 |
attrs['id'] = field.dom_id(form, 'fqs') |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
746 |
if self.settabindex: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
747 |
attrs['tabindex'] = req.next_tabindex() |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
748 |
attrs.setdefault('onkeyup', 'autogrow(this)') |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
749 |
inputs += [tags.textarea(fqs, name=fqsqname, **attrs), |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
750 |
u'</td></tr></table>'] |
4376
839b28a3652e
surrounding div necessary for proper error localization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4375
diff
changeset
|
751 |
# surrounding div necessary for proper error localization |
839b28a3652e
surrounding div necessary for proper error localization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4375
diff
changeset
|
752 |
return u'<div id="%s">%s%s</div>' % ( |
839b28a3652e
surrounding div necessary for proper error localization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4375
diff
changeset
|
753 |
field.dom_id(form), u'\n'.join(inputs)) |
4305
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
754 |
|
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
755 |
def process_field_data(self, form, field): |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
756 |
req = form._cw |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
757 |
values = {} |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
758 |
path = req.form.get(field.input_name(form, 'path')) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
759 |
if isinstance(path, basestring): |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
760 |
path = path.strip() or None |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
761 |
fqs = req.form.get(field.input_name(form, 'fqs')) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
762 |
if isinstance(fqs, basestring): |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
763 |
fqs = fqs.strip() or None |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
764 |
if fqs: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
765 |
for i, line in enumerate(fqs.split('\n')): |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
766 |
line = line.strip() |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
767 |
if line: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
768 |
try: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
769 |
key, val = line.split('=', 1) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
770 |
except ValueError: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
771 |
raise ProcessFormError(req._("wrong query parameter line %s") % (i+1)) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
772 |
# value will be url quoted by build_url_params |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
773 |
values.setdefault(key.encode(req.encoding), []).append(val) |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
774 |
if not values: |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
775 |
return path |
3d731478d9a8
new field's responsibility POC: EditableURLWidget allow to edit Bookmark.path in two separated fields, displaying unquoted values which are requoted on form post processing
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4304
diff
changeset
|
776 |
return u'%s?%s' % (path, req.build_url_params(**values)) |