diff -r 30fe8f5afbd8 -r a95b284150d1 web/views/igeocodable.py --- a/web/views/igeocodable.py Tue Feb 17 23:46:48 2009 +0100 +++ b/web/views/igeocodable.py Tue Feb 17 23:47:23 2009 +0100 @@ -18,7 +18,7 @@ templatable = False content_type = 'application/json' - __selectors__ = implements(IGeocodable) + __select__ = implements(IGeocodable) def call(self): zoomlevel = self.req.form.pop('zoomlevel', 8) @@ -51,7 +51,7 @@ class GoogleMapBubbleView(EntityView): id = 'gmap-bubble' - __selectors__ = implements(IGeocodable) + __select__ = implements(IGeocodable) def cell_call(self, row, col): entity = self.entity(row, col) @@ -62,7 +62,7 @@ class GoogleMapsView(EntityView): id = 'gmap-view' - __selectors__ = implements(IGeocodable) + __select__ = implements(IGeocodable) need_navigation = False def call(self, gmap_key, width=400, height=400, uselabel=True, urlparams=None):