diff -r 5607ef9ab9f5 -r 112c884b2d8d web/formwidgets.py --- a/web/formwidgets.py Wed Apr 09 17:29:25 2014 +0200 +++ b/web/formwidgets.py Tue Jun 10 09:49:45 2014 +0200 @@ -311,7 +311,7 @@ # basic html widgets ########################################################### class TextInput(Input): - """Simple , will return an unicode string.""" + """Simple , will return a unicode string.""" type = 'text' @@ -321,7 +321,7 @@ class PasswordSingleInput(Input): - """Simple , will return an utf-8 encoded string. + """Simple , will return a utf-8 encoded string. You may prefer using the :class:`~cubicweb.web.formwidgets.PasswordInput` widget which handles password confirmation. @@ -338,7 +338,7 @@ class PasswordInput(Input): """ and a confirmation input. Form processing will fail if password and confirmation differs, else it will return the password - as an utf-8 encoded string. + as a utf-8 encoded string. """ type = 'password' @@ -379,7 +379,7 @@ class HiddenInput(Input): - """Simple for hidden value, will return an unicode + """Simple for hidden value, will return a unicode string. """ type = 'hidden' @@ -388,7 +388,7 @@ class ButtonInput(Input): - """Simple , will return an unicode string. + """Simple , will return a unicode string. If you want a global form button, look at the :class:`Button`, :class:`SubmitButton`, :class:`ResetButton` and :class:`ImgButton` below. @@ -397,7 +397,7 @@ class TextArea(FieldWidget): - """Simple