renamed validatebutton into topmenuvalidation
[myslice.git] / portal / sliceview.py
index ff4cc5e..91d60ef 100644 (file)
@@ -10,7 +10,7 @@ from manifold.manifoldapi            import execute_query
 
 from ui.topmenu                      import topmenu_items, the_user
 
-from plugins.validatebutton          import ValidateButton
+from plugins.topmenuvalidation          import TopmenuValidation
 from plugins.raw                     import Raw
 from plugins.stack                   import Stack
 from plugins.tabs                    import Tabs
@@ -428,14 +428,15 @@ class SliceView (LoginRequiredAutoLogoutView):
         # even though this plugin does not have any html materialization, the corresponding domid
         # must exist because it is searched at init-time to create the JS plugin
         # so we simply piggy-back the target button here
-        validatebutton = ValidateButton (page=page, 
-                                         # see above
-                                         domid='topmenu-validation',
-                                         query=query_pi_auths,
-                                         # this one is the target for a $.show() when the query comes back
-                                         button_domid="topmenu-validation")
+        topmenuvalidation = TopmenuValidation (
+            page=page, 
+            # see above
+            domid='topmenu-validation',
+            query=query_pi_auths,
+            # this one is the target for a $.show() when the query comes back
+            button_domid="topmenu-validation")
         # although the result does not matter, rendering is required for the JS init code to make it in the page
-        validatebutton.render(request)
+        topmenuvalidation.render(request)
 # end topmenu addition
 
         # variables that will get passed to the view-unfold1.html template