fix imports tls-sprint
authorsylvain.thenault@logilab.fr
Thu, 26 Mar 2009 20:54:40 +0100
branchtls-sprint
changeset 1153 6a7636b32a97
parent 1152 c99ef2a2535c
child 1154 9b23a6836c32
fix imports
web/views/bookmark.py
web/views/editviews.py
web/views/emailaddress.py
web/views/eproperties.py
web/views/euser.py
web/views/schema.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')
--- 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
--- 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):
--- 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')
--- 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
 
 
--- 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