web/views/embedding.py
changeset 3377 dd9d292b6a6d
parent 2808 497424219fb0
child 3451 6b46d73823f5
--- a/web/views/embedding.py	Wed Sep 23 08:42:52 2009 +0200
+++ b/web/views/embedding.py	Wed Sep 23 09:29:39 2009 +0200
@@ -29,7 +29,7 @@
 class ExternalTemplate(basetemplates.TheMainTemplate):
     """template embeding an external web pages into CubicWeb web interface
     """
-    id = 'external'
+    __regid__ = 'external'
 
     def call(self, body):
         # XXX fallback to HTML 4 mode when embeding ?
@@ -44,7 +44,7 @@
 
 
 class EmbedController(Controller):
-    id = 'embed'
+    __regid__ = 'embed'
     template = 'external'
 
     def publish(self, rset=None):
@@ -92,7 +92,7 @@
     """display an 'embed' link on entity implementing `embeded_url` method
     if the returned url match embeding configuration
     """
-    id = 'embed'
+    __regid__ = 'embed'
     __select__ = (one_line_rset() & match_search_state('normal')
                   & implements(IEmbedable)
                   & score_entity(entity_has_embedable_url))