Changeset 227
- Timestamp:
- 09/07/06 13:44:46 (2 years ago)
- Files:
-
- PleiadesGeocoder/trunk/CHANGES.txt (modified) (1 diff)
- PleiadesGeocoder/trunk/GPL.txt (added)
- PleiadesGeocoder/trunk/LICENSE.txt (modified) (1 diff)
- PleiadesGeocoder/trunk/README.txt (modified) (2 diffs)
- PleiadesGeocoder/trunk/__init__.py (modified) (1 diff)
- PleiadesGeocoder/trunk/config.py (modified) (1 diff)
- PleiadesGeocoder/trunk/geocode.py (modified) (1 diff)
- PleiadesGeocoder/trunk/version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
PleiadesGeocoder/trunk/CHANGES.txt
r200 r227 1 Changes 2 ======= 3 4 0.6 - 7 September 2006 5 ---------------------- 6 - PleiadesGeocoder skin is now added to Plone Default during installation, 7 just after the custom layer. 8 - Geospatial properties are added to memberdata during installation. 9 - The portal_geocoder tool is created during installation. 10 - The siteMembers.xml page is removed, replaced by georss.xml and kml.xml. 11 - This product now depends greatly on Five. Support for older Plones is gone. 12 - Interfaces and implementations of geospatial objects modeled after the 13 GeoRSS simple profile. 14 - New geoinfo logical view replaces all previous Python skin helper scripts. 15 PleiadesGeocoder/trunk/LICENSE.txt
r200 r227 1 Copyright (C) 2006 Ancient World Mapping Center 2 3 This program is free software; you can redistribute it and/or modify 4 it under the terms of the GNU General Public License as published by 5 the Free Software Foundation; either version 2 of the License, or 6 (at your option) any later version. 7 8 This program is distributed in the hope that it will be useful, 9 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 GNU General Public License for more details. 12 13 You should have received a copy of the GNU General Public License along 14 with this program; if not, write to the Free Software Foundation, Inc., 15 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 16 17 See GPL.txt 18 PleiadesGeocoder/trunk/README.txt
r138 r227 2 2 ================ 3 3 4 A geocoder for Plone locations based on the Yahoo API. A geocoder converts 5 text locations such as "Fort Collins, Colorado" to spatial coordinates. 4 A geocoder for Plone locations based on the Yahoo API. A geocoder converts 5 text locations such as "Fort Collins, Colorado" to spatial coordinates. Other 6 geocoding backends could be supported in the future. 6 7 7 8 Contact: Sean Gillies <sgillies@frii.com> … … 23 24 Plone admin menu. 24 25 25 3. Add the PleiadesOpenLayers skin to your "Plone Default" skin selection in 26 portal_skins/manage_propertiesForm. Just below "custom" will be fine. 26 3. Give the portal_geocoder a trial run via portal_geocoder/geocodeForm. 27 27 28 4. Add a new string type property named "spatialCoordinates" to member data 29 through portal_memberdata/manage_propertiesForm. 30 31 5. Create a portal_geocoder tool in your plone root by adding a new "Plone 32 Geocoder" object. 33 34 6. Give the portal_geocoder a trial run via portal_geocoder/geocodeForm. 35 36 7. Register for a Yahoo application id and enter it in 28 4. Register for a Yahoo application id and enter it in 37 29 portal_geocoder/manage_propertiesForm. 38 30 PleiadesGeocoder/trunk/__init__.py
r196 r227 15 15 # with this program; if not, write to the Free Software Foundation, Inc., 16 16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 17 # 18 # About Pleiades 19 # -------------- 20 # 21 # Pleiades is an international research network and associated web portal and 22 # content management system devoted to the study of ancient geography. 23 # 24 # See http://icon.stoa.org/trac/pleiades/wiki. 25 # 26 # Funding for the creation of this software was provided by a grant from the 27 # U.S. National Endowment for the Humanities (http://www.neh.gov). 17 28 # =========================================================================== 18 29 PleiadesGeocoder/trunk/config.py
r224 r227 15 15 # with this program; if not, write to the Free Software Foundation, Inc., 16 16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 17 # 18 # About Pleiades 19 # -------------- 20 # 21 # Pleiades is an international research network and associated web portal and 22 # content management system devoted to the study of ancient geography. 23 # 24 # See http://icon.stoa.org/trac/pleiades/wiki. 25 # 26 # Funding for the creation of this software was provided by a grant from the 27 # U.S. National Endowment for the Humanities (http://www.neh.gov). 17 28 # =========================================================================== 18 29 PleiadesGeocoder/trunk/geocode.py
r215 r227 15 15 # with this program; if not, write to the Free Software Foundation, Inc., 16 16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 17 # 18 # About Pleiades 19 # -------------- 20 # 21 # Pleiades is an international research network and associated web portal and 22 # content management system devoted to the study of ancient geography. 23 # 24 # See http://icon.stoa.org/trac/pleiades/wiki. 25 # 26 # Funding for the creation of this software was provided by a grant from the 27 # U.S. National Endowment for the Humanities (http://www.neh.gov). 17 28 # =========================================================================== 18 29 PleiadesGeocoder/trunk/version.txt
r200 r227 1 0.6 2
