You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jm...@apache.org on 2008/05/12 18:31:57 UTC

svn commit: r655551 - /incubator/abdera/java/trunk/extensions/geo/src/main/java/org/apache/abdera/ext/geo/GeoHelper.java

Author: jmsnell
Date: Mon May 12 09:31:56 2008
New Revision: 655551

URL: http://svn.apache.org/viewvc?rev=655551&view=rev
Log:
https://issues.apache.org/jira/browse/ABDERA-136 - georss namespace is not correct

There may still be issues with this given that it appears that georss actually has two namespaces defined.  


Modified:
    incubator/abdera/java/trunk/extensions/geo/src/main/java/org/apache/abdera/ext/geo/GeoHelper.java

Modified: incubator/abdera/java/trunk/extensions/geo/src/main/java/org/apache/abdera/ext/geo/GeoHelper.java
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/extensions/geo/src/main/java/org/apache/abdera/ext/geo/GeoHelper.java?rev=655551&r1=655550&r2=655551&view=diff
==============================================================================
--- incubator/abdera/java/trunk/extensions/geo/src/main/java/org/apache/abdera/ext/geo/GeoHelper.java (original)
+++ incubator/abdera/java/trunk/extensions/geo/src/main/java/org/apache/abdera/ext/geo/GeoHelper.java Mon May 12 09:31:56 2008
@@ -33,7 +33,7 @@
 public class GeoHelper {
 
   public static final String W3C_GEO_NS           = "http://www.w3.org/2003/01/geo/wgs84_pos#";
-  public static final String SIMPLE_GEO_NS        = "http://www.georss.org/georss/10";
+  public static final String SIMPLE_GEO_NS        = "http://www.georss.org/georss";
   public static final String GML_NS               = "http://www.opengis.net/gml";
   
   public static final QName QNAME_W3C_POINT       = new QName(W3C_GEO_NS, "Point", "geo");