web/views/owl.py
changeset 3377 dd9d292b6a6d
parent 2295 4bad4fb08f2e
child 3451 6b46d73823f5
--- a/web/views/owl.py	Wed Sep 23 08:42:52 2009 +0200
+++ b/web/views/owl.py	Wed Sep 23 09:29:39 2009 +0200
@@ -58,7 +58,7 @@
 
 class OWLView(StartupView):
     """This view export in owl format schema database. It is the TBOX"""
-    id = 'owl'
+    __regid__ = 'owl'
     title = _('owl')
     templatable = False
     content_type = 'application/xml' # 'text/xml'
@@ -145,7 +145,7 @@
 
 class OWLABOXView(EntityView):
     '''This view represents a part of the ABOX for a given entity.'''
-    id = 'owlabox'
+    __regid__ = 'owlabox'
     title = _('owlabox')
     templatable = False
     content_type = 'application/xml' # 'text/xml'
@@ -162,7 +162,7 @@
 
 class OWLABOXItemView(EntityView):
     '''This view represents a part of the ABOX for a given entity.'''
-    id = 'owlaboxitem'
+    __regid__ = 'owlaboxitem'
     templatable = False
     content_type = 'application/xml' # 'text/xml'
 
@@ -201,7 +201,7 @@
 
 
 class DownloadOWLSchemaAction(Action):
-    id = 'download_as_owl'
+    __regid__ = 'download_as_owl'
     __select__ = none_rset() & match_view('schema')
 
     category = 'mainactions'