diff -r 7e9283731db8 -r ae74b46ea96c web/views/cwproperties.py --- a/web/views/cwproperties.py Fri Jul 24 14:59:54 2009 +0200 +++ b/web/views/cwproperties.py Fri Jul 24 15:00:49 2009 +0200 @@ -64,6 +64,7 @@ class SystemCWPropertiesForm(FormViewMixIn, StartupView): + """site-wide properties edition form""" id = 'systempropertiesform' __select__ = none_rset() & match_user_groups('managers') @@ -94,7 +95,6 @@ return status def call(self, **kwargs): - """The default view representing the application's index""" self.req.add_js(('cubicweb.edition.js', 'cubicweb.preferences.js', 'cubicweb.ajax.js')) self.req.add_css('cubicweb.preferences.css') vreg = self.vreg @@ -226,6 +226,7 @@ class CWPropertiesForm(SystemCWPropertiesForm): + """user's preferences properties edition form""" id = 'propertiesform' __select__ = ( (none_rset() & match_user_groups('users','managers'))