1 """abstract form classes for CubicWeb web client |
1 """abstract form classes for CubicWeb web client |
2 |
2 |
3 :organization: Logilab |
3 :organization: Logilab |
4 :copyright: 2001-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
4 :copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
5 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
6 """ |
6 """ |
7 __docformat__ = "restructuredtext en" |
7 __docformat__ = "restructuredtext en" |
8 |
8 |
9 from simplejson import dumps |
9 from simplejson import dumps |
10 |
10 |
11 from logilab.mtconverter import html_escape |
11 from logilab.mtconverter import html_escape |
12 |
12 |
13 from cubicweb import typed_eid |
13 from cubicweb import typed_eid |
14 from cubicweb.selectors import match_form_params |
14 from cubicweb.selectors import match_form_params |
|
15 from cubicweb.view import NOINDEX, NOFOLLOW, View, EntityView, AnyRsetView |
15 from cubicweb.common.registerers import accepts_registerer |
16 from cubicweb.common.registerers import accepts_registerer |
16 from cubicweb.common.view import NOINDEX, NOFOLLOW, View, EntityView, AnyRsetView |
|
17 from cubicweb.web import stdmsgs |
17 from cubicweb.web import stdmsgs |
18 from cubicweb.web.httpcache import NoHTTPCacheManager |
18 from cubicweb.web.httpcache import NoHTTPCacheManager |
19 from cubicweb.web.controller import redirect_params |
19 from cubicweb.web.controller import redirect_params |
20 |
20 |
21 |
21 |