[Checkins] SVN: keas.googlemap/trunk/ Fix tests and get ready for release.

Stephan Richter srichter at gmail.com
Sun Jul 26 21:32:29 EDT 2009


Log message for revision 102312:
  Fix tests and get ready for release.
  

Changed:
  U   keas.googlemap/trunk/CHANGES.txt
  U   keas.googlemap/trunk/setup.py
  U   keas.googlemap/trunk/src/keas/googlemap/README.txt
  U   keas.googlemap/trunk/src/keas/googlemap/geocode.py

-=-
Modified: keas.googlemap/trunk/CHANGES.txt
===================================================================
--- keas.googlemap/trunk/CHANGES.txt	2009-07-27 01:21:35 UTC (rev 102311)
+++ keas.googlemap/trunk/CHANGES.txt	2009-07-27 01:32:28 UTC (rev 102312)
@@ -2,14 +2,15 @@
 CHANGES
 =======
 
-Version 0.5.2 (unreleased)
+Version 0.6.0 (2009-07-26)
+--------------------------
 
-- ...
+- Feature: Updated text to latest packages.
 
 Version 0.5.1 (2008-11-07)
 --------------------------
 
-- Bug: Fix error with non-lating geocode queries. 
+- Bug: Fix error with non-lating geocode queries.
 
 - Feature: You can now do::
 

Modified: keas.googlemap/trunk/setup.py
===================================================================
--- keas.googlemap/trunk/setup.py	2009-07-27 01:21:35 UTC (rev 102311)
+++ keas.googlemap/trunk/setup.py	2009-07-27 01:32:28 UTC (rev 102312)
@@ -15,7 +15,7 @@
 
 setup(
     name='keas.googlemap',
-    version = '0.5.2-dev',
+    version = '0.6.0',
     author='Paul Carduner, Keas, Inc., and the Zope Community',
     author_email = "zope3-dev at zope.org",
     description='Integration of Google Maps with Zope 3',
@@ -66,6 +66,7 @@
     install_requires=[
         'setuptools',
         'simplejson>=1.7.3',
+        'zope.container',
         'zope.interface',
         'zope.schema',
         'zope.viewlet',

Modified: keas.googlemap/trunk/src/keas/googlemap/README.txt
===================================================================
--- keas.googlemap/trunk/src/keas/googlemap/README.txt	2009-07-27 01:21:35 UTC (rev 102311)
+++ keas.googlemap/trunk/src/keas/googlemap/README.txt	2009-07-27 01:32:28 UTC (rev 102312)
@@ -57,9 +57,9 @@
   >>> try:
   ...     geo = interfaces.IGeocode(geoQuery)
   ... except IOError, e:
-  ...     geo = geocode.Geocode(33.944066, -118.408294)
+  ...     geo = geocode.Geocode(33.9440655, -118.408294)
   >>> geo
-  Geocode(33.944066, -118.408294)
+  Geocode(33.9440655, -118.408294)
 
 We can also use non-latin letters for queries, let's try to query
 Saint-Petersburg, Russia in Russian
@@ -69,7 +69,7 @@
   ...     geo = interfaces.IGeocode(geoQuery)
   ... except IOError, e:
   ...     geo = geocode.Geocode(59.939039, 30.315785)
-  >>> geo 
+  >>> geo
   Geocode(59.939039, 30.315785)
 
 The ValueError will be raised if no geocode found for the query:

Modified: keas.googlemap/trunk/src/keas/googlemap/geocode.py
===================================================================
--- keas.googlemap/trunk/src/keas/googlemap/geocode.py	2009-07-27 01:21:35 UTC (rev 102311)
+++ keas.googlemap/trunk/src/keas/googlemap/geocode.py	2009-07-27 01:32:28 UTC (rev 102312)
@@ -25,7 +25,7 @@
 from zope.component import adapts, adapter
 from zope.interface import implements, implementer
 from zope.schema.fieldproperty import FieldProperty
-from zope.app.container.btree import BTreeContainer
+from zope.container.btree import BTreeContainer
 import zope.annotation
 
 from keas.googlemap import interfaces, apikey



More information about the Checkins mailing list