# HG changeset patch # User sylvain.thenault@logilab.fr # Date 1238097280 -3600 # Node ID 6a7636b32a97883811dcb1d612b9bc74ee5a958b # Parent c99ef2a2535c07285584915bd766b0bfebe65455 fix imports diff -r c99ef2a2535c -r 6a7636b32a97 web/views/bookmark.py --- a/web/views/bookmark.py Thu Mar 26 20:11:37 2009 +0100 +++ b/web/views/bookmark.py Thu Mar 26 20:54:40 2009 +0100 @@ -14,7 +14,7 @@ from cubicweb.web.action import Action from cubicweb.web.box import UserRQLBoxTemplate from cubicweb.web.views.baseviews import PrimaryView -from cubicweb.web.views.editform import AutomaticEntityForm +from cubicweb.web.views.editforms import AutomaticEntityForm AutomaticEntityForm.rcategories.set_rtag('primary', 'path', 'subject', 'Bookmark') AutomaticEntityForm.rwidgets.set_rtag('StringWidget', 'path', 'subject', 'Bookmark') diff -r c99ef2a2535c -r 6a7636b32a97 web/views/editviews.py --- a/web/views/editviews.py Thu Mar 26 20:11:37 2009 +0100 +++ b/web/views/editviews.py Thu Mar 26 20:54:40 2009 +0100 @@ -17,7 +17,7 @@ match_search_state, match_form_params) from cubicweb.common.uilib import cut from cubicweb.web.views import linksearch_select_url -from cubicweb.web.views.editforms import relation_id +from cubicweb.web.views.editformss import relation_id from cubicweb.web.views.baseviews import FinalView _ = unicode diff -r c99ef2a2535c -r 6a7636b32a97 web/views/emailaddress.py --- a/web/views/emailaddress.py Thu Mar 26 20:11:37 2009 +0100 +++ b/web/views/emailaddress.py Thu Mar 26 20:54:40 2009 +0100 @@ -11,7 +11,7 @@ from cubicweb.selectors import implements from cubicweb.common import Unauthorized from cubicweb.web.views import baseviews -from cubicweb.web.views.editform import AutomaticEntityForm +from cubicweb.web.views.editforms import AutomaticEntityForm class EmailAddressPrimaryView(baseviews.PrimaryView): diff -r c99ef2a2535c -r 6a7636b32a97 web/views/eproperties.py --- a/web/views/eproperties.py Thu Mar 26 20:11:37 2009 +0100 +++ b/web/views/eproperties.py Thu Mar 26 20:54:40 2009 +0100 @@ -17,7 +17,7 @@ from cubicweb.web import INTERNAL_FIELD_VALUE, eid_param from cubicweb.web.views import baseviews from cubicweb.web.form import FormMixIn -from cubicweb.web.views.editform import AutomaticEntityForm +from cubicweb.web.views.editforms import AutomaticEntityForm AutomaticEntityForm.rwidgets.set_rtag('PropertyKeyWidget', 'pkey', 'subject', 'EProperty') AutomaticEntityForm.rwidgets.set_rtag('PropertyValueWidget', 'value', 'subject', 'EProperty') diff -r c99ef2a2535c -r 6a7636b32a97 web/views/euser.py --- a/web/views/euser.py Thu Mar 26 20:11:37 2009 +0100 +++ b/web/views/euser.py Thu Mar 26 20:54:40 2009 +0100 @@ -16,7 +16,7 @@ from cubicweb.web.form import FormMixIn from cubicweb.web.action import Action from cubicweb.web.views.baseviews import PrimaryView, EntityView -from cubicweb.web.views.editform import AutomaticEntityForm +from cubicweb.web.views.editforms import AutomaticEntityForm from cubicweb.web.views.boxes import EditBox diff -r c99ef2a2535c -r 6a7636b32a97 web/views/schema.py --- a/web/views/schema.py Thu Mar 26 20:11:37 2009 +0100 +++ b/web/views/schema.py Thu Mar 26 20:54:40 2009 +0100 @@ -18,7 +18,7 @@ from cubicweb.web.action import Action from cubicweb.web.views import baseviews from cubicweb.web.views import TmpFileViewMixin -from cubicweb.web.views.editform import AutomaticEntityForm +from cubicweb.web.views.editforms import AutomaticEntityForm from cubicweb.web.views.boxes import EditBox