]> granicus.if.org Git - postgis/commitdiff
Preliminary change email addres to private one because schabios@logi-track.com is...
authorMarkus Schaber <markus@schabi.de>
Wed, 30 Mar 2005 15:24:40 +0000 (15:24 +0000)
committerMarkus Schaber <markus@schabi.de>
Wed, 30 Mar 2005 15:24:40 +0000 (15:24 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1585 b70326c6-7e19-0410-871a-916f4a2858ee

34 files changed:
jdbc2/Makefile
jdbc2/jtssrc/examples/JtsTestParser.java
jdbc2/jtssrc/org/postgis/jts/JtsBinaryParser.java
jdbc2/jtssrc/org/postgis/jts/JtsGeometry.java
jdbc2/jtssrc/org/postgis/jts/JtsGisWrapper.java
jdbc2/jtssrc/org/postgis/jts/JtsWrapper.java
jdbc2/src/examples/Test.java
jdbc2/src/examples/TestAutoregister.java
jdbc2/src/examples/TestBoxes.java
jdbc2/src/examples/TestParser.java
jdbc2/src/examples/TestServer.java
jdbc2/src/examples/VersionPrinter.java
jdbc2/src/org/postgis/ComposedGeom.java
jdbc2/src/org/postgis/DriverWrapper.java
jdbc2/src/org/postgis/Geometry.java
jdbc2/src/org/postgis/GeometryCollection.java
jdbc2/src/org/postgis/LineString.java
jdbc2/src/org/postgis/LinearRing.java
jdbc2/src/org/postgis/MultiLineString.java
jdbc2/src/org/postgis/MultiPoint.java
jdbc2/src/org/postgis/MultiPolygon.java
jdbc2/src/org/postgis/PGbox2d.java
jdbc2/src/org/postgis/PGbox3d.java
jdbc2/src/org/postgis/PGboxbase.java
jdbc2/src/org/postgis/PGgeometry.java
jdbc2/src/org/postgis/Point.java
jdbc2/src/org/postgis/PointComposedGeom.java
jdbc2/src/org/postgis/Polygon.java
jdbc2/src/org/postgis/Version.java
jdbc2/src/org/postgis/binary/BinaryParser.java
jdbc2/src/org/postgis/binary/ByteGetter.java
jdbc2/src/org/postgis/binary/ValueGetter.java
jdbc2/stubs/org/postgresql/Connection.java
jdbc2/stubs/org/postgresql/PGConnection.java

index 158237f1f11e2b7fd22720f389b9e788e1f26f75..7fdd57048f18fdc7df744d84b69edd23c419d736 100644 (file)
@@ -1,7 +1,7 @@
 # PostGIS Makefile
 
 # (C) 2004 Paul Ramsey, pramsey@refractions.net
-# (C) 2005 Markus Schaber, schabios@logi-track.com
+# (C) 2005 Markus Schaber, markus@schabi.de
 # (C) 2005 Sandro Santilli, strk@refractions.net
 # (C) 2005 Alex Bodnaru, alexbodn@012.net.il
 
index 1b5b2f373365b6925983ebe66e3093573882b0fa..fcf192be0a6eda6c90cf393bbccccf0481a7f969 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This program is free software; you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
index 73f903e4ee1564dc78c0a022ee05f34a5644f766..f87d974058cdba093c1a84e53f029526f4729cba 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * Binary Parser for JTS - relies on org.postgis V1.0.0+ package.
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
@@ -54,7 +54,7 @@ import org.postgis.binary.ByteGetter.StringByteGetter;
  * (bytes), so we cannot even get or build Geometries with more than approx.
  * 2^28 coordinates (8 bytes each).
  * 
- * @author markus.schaber@logi-track.com
+ * @author Markus Schaber <markus@schabi.de>
  *  
  */
 public class JtsBinaryParser {
index 1b40e56e059480164de503566dae0a3328f862aa..2d585f8166d1d2392fdf52b6c62edc57025bf469 100644 (file)
@@ -4,7 +4,7 @@
  * Wrapper for PostgreSQL JDBC driver to allow transparent reading and writing
  * of JTS geometries
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 8050c050db5c37bb3c6181d78fb4e883ecf88af8..808f091ec9cfbe4a09903c018670cc6d2c64aaa9 100644 (file)
@@ -4,7 +4,7 @@
  * Allows transparent usage of JTS Geometry classes via PostgreSQL JDBC driver
  * connected to a PostGIS enabled PostgreSQL server.
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
@@ -88,10 +88,10 @@ public class JtsGisWrapper extends Driver {
      * adds the JTS/PostGIS Data types to a PG Connection.
      */
     public static void addGISTypes(PGConnection pgconn) {
-        pgconn.addDataType("geometry", "com.logitrack.gis.util.JtsGeometry");
+        pgconn.addDataType("geometry", "org.postgis.jts.JtsGeometry");
         pgconn.addDataType("box3d", "org.postgis.PGbox3d");
         //pgconn.addDataType("geometry",
-        // com.logitrack.gis.util.JtsGeometry.class);
+        // org.postgis.jts.JtsGeometry.class);
         //pgconn.addDataType("box3d", org.postgis.PGbox3d.class);
     }
 
index a0796fc168b9e065c18c031dfd7edb2df68f9ebd..6cf4c85e58af0adafb3dee7104a0a0f068f0200a 100644 (file)
@@ -4,7 +4,7 @@
  * Allows transparent usage of JTS Geometry classes via PostgreSQL JDBC driver
  * connected to a PostGIS enabled PostgreSQL server.
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
@@ -48,7 +48,7 @@ import java.util.Properties;
  * implementation, set the driver class property in the datasource config, the
  * following works for jboss:
  * 
- * &lt;driver-class&gt;com.logitrack.gis.util.PostGisWrapper&lt;/driver-class&gt;
+ * &lt;driver-class&gt;org.postgis.jts.PostGisWrapper&lt;/driver-class&gt;
  * 
  * @author schabi
  *  
@@ -101,7 +101,7 @@ public class JtsWrapper extends Driver {
         // Use the following for PostgreSQL jdbc driver V8.0 or newer
         // The above way still works, but is deprecated.
         // pgconn.addDataType("geometry",
-        // com.logitrack.gis.util.JtsGeometry.class);
+        // org.postgis.jts.JtsGeometry.class);
     }
 
     /**
index 009cd1007d138a0e8a82a7f2df57edf1ce78cd76..68958fa2b56c8c42c057549385b29878d83aa4a1 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This program is free software; you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
index f5a5dc078c7dbb05f2c58f64c8df8abcc073ab03..f1530dde9aeb8f89b0406c61e666f80bf53acc0a 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * PostGIS extension for PostgreSQL JDBC driver - example and test classes
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This program is free software; you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
index c641e97ce612c9635b152fa7b5a04addefc106b9..06f552f48174bd95fa7ea9f1f9b0cb87e61c9fa3 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This program is free software; you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
index 1304e66b184e0c581e41f3ee5b6c8658809db8ec..597b3719cea7b9fa728bd87b8b211dd5c0087e7c 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This program is free software; you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
index 106dc9a63493ee4cf1322e9f9898f6bbcd836b41..4970746e65aefd62ff1b2320291cfe1dcfa2a568 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This program is free software; you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
index 7cdd4197669b25596032ab58573f0ab46c9b4a28..8ea98373e35effbcd9bffb8fc949ada373b867eb 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * PostGIS extension for PostgreSQL JDBC driver - example and test classes
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This program is free software; you can redistribute it and/or modify it under
  * the terms of the GNU General Public License as published by the Free Software
index 4f1f63d694585671aeca9a1b30b0c6b1b876d8ab..417863e2ee4f2962de30a0263172724b3f127ccf 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 286460d3fc1ab9679a86ea8986cb9e2b7b63f094..5c3ad36d77681fe1b8e9f073b89919e7f049594e 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * PostGIS extension for PostgreSQL JDBC driver - Wrapper utility class
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
@@ -59,7 +59,7 @@ import java.util.Properties;
  * are deprecated in pgjdbc 8.0, see the commented code variants in the
  * addGisTypes() method.
  * 
- * @author Markus Schaber <schabios@logi-track.com>
+ * @author Markus Schaber <markus@schabi.de>
  *  
  */
 public class DriverWrapper extends Driver {
index bfbdcd5658f679eca292bd7ebafa26679b4fe338..34c00c368f8bcefd086f7c2334180c2a3eb4f88b 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 48430614159f8dda971640272827865cac7803cb..8ff2170af247f24011a7f788f825455d78ac9815 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 0f5443b3cbdc6f5077376c335eb5d50c77777943..c3d1d01e20864dcc2105aee33655378289ac4e21 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index f590f7470887a6e6a96b055333cfa62c46019674..07ae771c9c67be5b32c0b43d1cdb61c080658759 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 013cb65a7354752a57f902650c5c145475023a0b..f311507981eef786276c7c683b8d4e6e5e78073d 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index a6f2aca2c14b8205799c7b149c94949ab397b763..bda8ef33f58c6d17caa986698e0c275326495ab8 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index ace6cbd1db82bd5540573dfa8526fccc44bdfef0..23a517cb9936cbf03bbb198be471a02c571e22a5 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index ff51c901927938824c7d6cef48e29098bf04380b..78fa89b1b5089a5eb228593c9f107ec753c23203 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 5f13f6550624194c7409117cd875a27622e48f22..ab59277c2d8b9d3a10ada1001a4403bf3462a978 100644 (file)
@@ -6,7 +6,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 1058325be6a4d083725d0064b523514b90525756..d196b6d622496aedac6f717bc0453e833a82fa1d 100644 (file)
@@ -6,7 +6,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 2f5420f7d996ccf93d252a5cfd9d8113b88c7fe8..4011dfb56c1f6a3b73479c31aabafee2efb760f0 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 661c26c040cadc7d5fb821ce56d56a3080b21845..40e9147ed2a23721c178516fdf8c80b4a8b81187 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 74514e0247c7ed1e50297f2b36254cc672a85b73..3aaff02ecdcdcd83aca48b2d9b2e3e1c9887c6f5 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index a158570c358d852fc5556f8ed8355a2495416ea9..9d65b602507fe844faf717a142903286d8c78354 100644 (file)
@@ -5,7 +5,7 @@
  * 
  * (C) 2004 Paul Ramsey, pramsey@refractions.net
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 64572f8d57a50631b922cf30bc75df46a71954e8..f4521de753ead870a782ec9ed6ac2098215ca762 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * PostGIS extension for PostgreSQL JDBC driver - current version identification
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index d9182210325b427902a192f496e3cf94661022c4..00d472a1597a36623962f91777774531cc3ad5bf 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * PostGIS extension for PostgreSQL JDBC driver - Binary Parser
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
@@ -47,7 +47,7 @@ import org.postgis.binary.ByteGetter.StringByteGetter;
  * (bytes), so we cannot even get or build Geometries with more than approx.
  * 2^28 coordinates (8 bytes each).
  * 
- * @author markus.schaber@logi-track.com
+ * @author Markus Schaber <markus@schabi.de>
  *  
  */
 public class BinaryParser {
index 7b612218e548ed854a22f5fa3777c0d317dfbdb4..90dd793ec32d3446b694f5de3c67172fbfdb0d52 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * PostGIS extension for PostgreSQL JDBC driver - Binary Parser
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index eacde436989cf4b5d752a891f7124b939cdd43fe..c05471fd658f03694719d7d7c32720377660a0aa 100644 (file)
@@ -3,7 +3,7 @@
  * 
  * PostGIS extension for PostgreSQL JDBC driver - Binary Parser
  * 
- * (C) 2005 Markus Schaber, schabios@logi-track.com
+ * (C) 2005 Markus Schaber, markus@schabi.de
  * 
  * This library is free software; you can redistribute it and/or modify it under
  * the terms of the GNU Lesser General Public License as published by the Free
index 26c12a640e8b22aa0b7ba4db7ebfefe5cfd40855..b93926ced1fe4a3a23d30bb638071dc60a4ee5a8 100644 (file)
@@ -3,7 +3,7 @@
  * the pgjdbc 7.2 binary jar which both are licensed under BSD license.
  *
  * Copyright (c) 2003-2005, PostgreSQL Global Development Group
- * Copyright (c) 2005 Markus Schaber <schabios@logi-track.com>
+ * Copyright (c) 2005 Markus Schaber <markus@schabi.de>
  *
  * IDENTIFICATION
  *   $PostgreSQL: pgjdbc/org/postgresql/PGConnection.java,v 1.13 2005/01/17 09:51:40 jurka Exp $
index 1a5ab6f4b68ca50d3a71f3ed49a023d7a75bf9df..6720ddd27dfa72902ed29d46db68ab41d4c2fb62 100644 (file)
@@ -3,7 +3,7 @@
  * under BSD license.
  *
  * Copyright (c) 2003-2005, PostgreSQL Global Development Group
- * Copyright (c) 2005 Markus Schaber <schabios@logi-track.com>
+ * Copyright (c) 2005 Markus Schaber <markus@schabi.de>
  *
  * IDENTIFICATION
  *   $PostgreSQL: pgjdbc/org/postgresql/PGConnection.java,v 1.13 2005/01/17 09:51:40 jurka Exp $