refactor form error handling:
* almost everything is in the base form class, with other form errors related code
* deprecate form_field_error in favor of field_error and format_error on the renderer
* fix pb with js localization of errors by properly using field.role_name()
* rename 'errors' into 'error' in forminfo to avoid confusion
from cubicweb.devtools.testlib import CubicWebTC
from cubicweb.web import uicfg
class UICFGTC(CubicWebTC):
def test(self):
self.skip('write some tests')
if __name__ == '__main__':
from logilab.common.testlib import unittest_main
unittest_main()