Changeset 535
- Timestamp:
- 09/22/06 13:47:07
- Files:
-
- geolocation/trunk/adapters/geolocaion.py (deleted)
- geolocation/trunk/adapters/geolocation.py (added)
- geolocation/trunk/adapters/geomap.py (modified) (1 diff)
- geolocation/trunk/browser/map.py (added)
- geolocation/trunk/configure.zcml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
geolocation/trunk/adapters/geomap.py
r534 r535 1 1 from zope.interface import implements 2 2 from Products.geolocation.interfaces.geomap import IGEOMap 3 from zope.app.annotation.interfaces import IAnnotations 3 from zope.app.annotation.interfaces import IAnnotations, IAnnotatable 4 4 from persistent.mapping import PersistentMapping 5 5 geolocation/trunk/configure.zcml
r534 r535 22 22 for="Products.ATContentTypes.interface.document.IATDocument" 23 23 provides=".interfaces.geolocation.IGEOLocated" 24 factory=".adapters.geoloca ion.GEOLocated"24 factory=".adapters.geolocation.GEOLocated" 25 25 /> 26 26 <adapter 27 27 for="Products.ATContentTypes.interface.event.IATEvent" 28 28 provides=".interfaces.geolocation.IGEOLocated" 29 factory=".adapters.geoloca ion.GEOLocated"29 factory=".adapters.geolocation.GEOLocated" 30 30 /> 31 31 <adapter 32 32 for="Products.ATContentTypes.interface.link.IATLink" 33 33 provides=".interfaces.geolocation.IGEOLocated" 34 factory=".adapters.geoloca ion.GEOLocated"34 factory=".adapters.geolocation.GEOLocated" 35 35 /> 36 36 <adapter 37 37 for="Products.ATContentTypes.interface.image.IATImage" 38 38 provides=".interfaces.geolocation.IGEOLocated" 39 factory=".adapters.geoloca ion.GEOLocated"39 factory=".adapters.geolocation.GEOLocated" 40 40 /> 41 41 <adapter 42 42 for="Products.ATContentTypes.interface.news.IATNewsItem" 43 43 provides=".interfaces.geolocation.IGEOLocated" 44 factory=".adapters.geoloca ion.GEOLocated"44 factory=".adapters.geolocation.GEOLocated" 45 45 /> 46 46
