web/views/urlpublishing.py
changeset 3377 dd9d292b6a6d
parent 2890 fdcb8a2bb6eb
child 3720 5376aaadd16b
--- a/web/views/urlpublishing.py	Wed Sep 23 08:42:52 2009 +0200
+++ b/web/views/urlpublishing.py	Wed Sep 23 09:29:39 2009 +0200
@@ -49,7 +49,7 @@
     lower priority.  The first evaluator returning a result or raising
     something else than `PathDontMatch` will stop the handlers chain.
     """
-    id = 'urlpublisher'
+    __regid__ = 'urlpublisher'
     vreg = None # XXX necessary until property for deprecation warning is on appobject
 
     def __init__(self, vreg, default_method='view'):
@@ -101,7 +101,7 @@
 
 class URLPathEvaluator(component.Component):
     __abstract__ = True
-    id = 'urlpathevaluator'
+    __regid__ = 'urlpathevaluator'
     vreg = None # XXX necessary until property for deprecation warning is on appobject
 
     def __init__(self, urlpublisher):