From 8a6769f897bc473a668bf74578345135c8bd2ae5 Mon Sep 17 00:00:00 2001 From: Markus Schaber Date: Wed, 30 Mar 2005 15:24:40 +0000 Subject: [PATCH] Preliminary change email addres to private one because schabios@logi-track.com is currently not working. git-svn-id: http://svn.osgeo.org/postgis/trunk@1585 b70326c6-7e19-0410-871a-916f4a2858ee --- jdbc2/Makefile | 2 +- jdbc2/jtssrc/examples/JtsTestParser.java | 2 +- jdbc2/jtssrc/org/postgis/jts/JtsBinaryParser.java | 4 ++-- jdbc2/jtssrc/org/postgis/jts/JtsGeometry.java | 2 +- jdbc2/jtssrc/org/postgis/jts/JtsGisWrapper.java | 6 +++--- jdbc2/jtssrc/org/postgis/jts/JtsWrapper.java | 6 +++--- jdbc2/src/examples/Test.java | 2 +- jdbc2/src/examples/TestAutoregister.java | 2 +- jdbc2/src/examples/TestBoxes.java | 2 +- jdbc2/src/examples/TestParser.java | 2 +- jdbc2/src/examples/TestServer.java | 2 +- jdbc2/src/examples/VersionPrinter.java | 2 +- jdbc2/src/org/postgis/ComposedGeom.java | 2 +- jdbc2/src/org/postgis/DriverWrapper.java | 4 ++-- jdbc2/src/org/postgis/Geometry.java | 2 +- jdbc2/src/org/postgis/GeometryCollection.java | 2 +- jdbc2/src/org/postgis/LineString.java | 2 +- jdbc2/src/org/postgis/LinearRing.java | 2 +- jdbc2/src/org/postgis/MultiLineString.java | 2 +- jdbc2/src/org/postgis/MultiPoint.java | 2 +- jdbc2/src/org/postgis/MultiPolygon.java | 2 +- jdbc2/src/org/postgis/PGbox2d.java | 2 +- jdbc2/src/org/postgis/PGbox3d.java | 2 +- jdbc2/src/org/postgis/PGboxbase.java | 2 +- jdbc2/src/org/postgis/PGgeometry.java | 2 +- jdbc2/src/org/postgis/Point.java | 2 +- jdbc2/src/org/postgis/PointComposedGeom.java | 2 +- jdbc2/src/org/postgis/Polygon.java | 2 +- jdbc2/src/org/postgis/Version.java | 2 +- jdbc2/src/org/postgis/binary/BinaryParser.java | 4 ++-- jdbc2/src/org/postgis/binary/ByteGetter.java | 2 +- jdbc2/src/org/postgis/binary/ValueGetter.java | 2 +- jdbc2/stubs/org/postgresql/Connection.java | 2 +- jdbc2/stubs/org/postgresql/PGConnection.java | 2 +- 34 files changed, 41 insertions(+), 41 deletions(-) diff --git a/jdbc2/Makefile b/jdbc2/Makefile index 158237f1f..7fdd57048 100644 --- a/jdbc2/Makefile +++ b/jdbc2/Makefile @@ -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 diff --git a/jdbc2/jtssrc/examples/JtsTestParser.java b/jdbc2/jtssrc/examples/JtsTestParser.java index 1b5b2f373..fcf192be0 100644 --- a/jdbc2/jtssrc/examples/JtsTestParser.java +++ b/jdbc2/jtssrc/examples/JtsTestParser.java @@ -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 diff --git a/jdbc2/jtssrc/org/postgis/jts/JtsBinaryParser.java b/jdbc2/jtssrc/org/postgis/jts/JtsBinaryParser.java index 73f903e4e..f87d97405 100644 --- a/jdbc2/jtssrc/org/postgis/jts/JtsBinaryParser.java +++ b/jdbc2/jtssrc/org/postgis/jts/JtsBinaryParser.java @@ -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 * */ public class JtsBinaryParser { diff --git a/jdbc2/jtssrc/org/postgis/jts/JtsGeometry.java b/jdbc2/jtssrc/org/postgis/jts/JtsGeometry.java index 1b40e56e0..2d585f816 100644 --- a/jdbc2/jtssrc/org/postgis/jts/JtsGeometry.java +++ b/jdbc2/jtssrc/org/postgis/jts/JtsGeometry.java @@ -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 diff --git a/jdbc2/jtssrc/org/postgis/jts/JtsGisWrapper.java b/jdbc2/jtssrc/org/postgis/jts/JtsGisWrapper.java index 8050c050d..808f091ec 100644 --- a/jdbc2/jtssrc/org/postgis/jts/JtsGisWrapper.java +++ b/jdbc2/jtssrc/org/postgis/jts/JtsGisWrapper.java @@ -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); } diff --git a/jdbc2/jtssrc/org/postgis/jts/JtsWrapper.java b/jdbc2/jtssrc/org/postgis/jts/JtsWrapper.java index a0796fc16..6cf4c85e5 100644 --- a/jdbc2/jtssrc/org/postgis/jts/JtsWrapper.java +++ b/jdbc2/jtssrc/org/postgis/jts/JtsWrapper.java @@ -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: * - * <driver-class>com.logitrack.gis.util.PostGisWrapper</driver-class> + * <driver-class>org.postgis.jts.PostGisWrapper</driver-class> * * @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); } /** diff --git a/jdbc2/src/examples/Test.java b/jdbc2/src/examples/Test.java index 009cd1007..68958fa2b 100644 --- a/jdbc2/src/examples/Test.java +++ b/jdbc2/src/examples/Test.java @@ -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 diff --git a/jdbc2/src/examples/TestAutoregister.java b/jdbc2/src/examples/TestAutoregister.java index f5a5dc078..f1530dde9 100644 --- a/jdbc2/src/examples/TestAutoregister.java +++ b/jdbc2/src/examples/TestAutoregister.java @@ -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 diff --git a/jdbc2/src/examples/TestBoxes.java b/jdbc2/src/examples/TestBoxes.java index c641e97ce..06f552f48 100644 --- a/jdbc2/src/examples/TestBoxes.java +++ b/jdbc2/src/examples/TestBoxes.java @@ -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 diff --git a/jdbc2/src/examples/TestParser.java b/jdbc2/src/examples/TestParser.java index 1304e66b1..597b3719c 100644 --- a/jdbc2/src/examples/TestParser.java +++ b/jdbc2/src/examples/TestParser.java @@ -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 diff --git a/jdbc2/src/examples/TestServer.java b/jdbc2/src/examples/TestServer.java index 106dc9a63..4970746e6 100644 --- a/jdbc2/src/examples/TestServer.java +++ b/jdbc2/src/examples/TestServer.java @@ -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 diff --git a/jdbc2/src/examples/VersionPrinter.java b/jdbc2/src/examples/VersionPrinter.java index 7cdd41976..8ea98373e 100644 --- a/jdbc2/src/examples/VersionPrinter.java +++ b/jdbc2/src/examples/VersionPrinter.java @@ -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 diff --git a/jdbc2/src/org/postgis/ComposedGeom.java b/jdbc2/src/org/postgis/ComposedGeom.java index 4f1f63d69..417863e2e 100644 --- a/jdbc2/src/org/postgis/ComposedGeom.java +++ b/jdbc2/src/org/postgis/ComposedGeom.java @@ -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 diff --git a/jdbc2/src/org/postgis/DriverWrapper.java b/jdbc2/src/org/postgis/DriverWrapper.java index 286460d3f..5c3ad36d7 100644 --- a/jdbc2/src/org/postgis/DriverWrapper.java +++ b/jdbc2/src/org/postgis/DriverWrapper.java @@ -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 + * @author Markus Schaber * */ public class DriverWrapper extends Driver { diff --git a/jdbc2/src/org/postgis/Geometry.java b/jdbc2/src/org/postgis/Geometry.java index bfbdcd565..34c00c368 100644 --- a/jdbc2/src/org/postgis/Geometry.java +++ b/jdbc2/src/org/postgis/Geometry.java @@ -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 diff --git a/jdbc2/src/org/postgis/GeometryCollection.java b/jdbc2/src/org/postgis/GeometryCollection.java index 484306141..8ff2170af 100644 --- a/jdbc2/src/org/postgis/GeometryCollection.java +++ b/jdbc2/src/org/postgis/GeometryCollection.java @@ -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 diff --git a/jdbc2/src/org/postgis/LineString.java b/jdbc2/src/org/postgis/LineString.java index 0f5443b3c..c3d1d01e2 100644 --- a/jdbc2/src/org/postgis/LineString.java +++ b/jdbc2/src/org/postgis/LineString.java @@ -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 diff --git a/jdbc2/src/org/postgis/LinearRing.java b/jdbc2/src/org/postgis/LinearRing.java index f590f7470..07ae771c9 100644 --- a/jdbc2/src/org/postgis/LinearRing.java +++ b/jdbc2/src/org/postgis/LinearRing.java @@ -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 diff --git a/jdbc2/src/org/postgis/MultiLineString.java b/jdbc2/src/org/postgis/MultiLineString.java index 013cb65a7..f31150798 100644 --- a/jdbc2/src/org/postgis/MultiLineString.java +++ b/jdbc2/src/org/postgis/MultiLineString.java @@ -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 diff --git a/jdbc2/src/org/postgis/MultiPoint.java b/jdbc2/src/org/postgis/MultiPoint.java index a6f2aca2c..bda8ef33f 100644 --- a/jdbc2/src/org/postgis/MultiPoint.java +++ b/jdbc2/src/org/postgis/MultiPoint.java @@ -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 diff --git a/jdbc2/src/org/postgis/MultiPolygon.java b/jdbc2/src/org/postgis/MultiPolygon.java index ace6cbd1d..23a517cb9 100644 --- a/jdbc2/src/org/postgis/MultiPolygon.java +++ b/jdbc2/src/org/postgis/MultiPolygon.java @@ -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 diff --git a/jdbc2/src/org/postgis/PGbox2d.java b/jdbc2/src/org/postgis/PGbox2d.java index ff51c9019..78fa89b1b 100644 --- a/jdbc2/src/org/postgis/PGbox2d.java +++ b/jdbc2/src/org/postgis/PGbox2d.java @@ -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 diff --git a/jdbc2/src/org/postgis/PGbox3d.java b/jdbc2/src/org/postgis/PGbox3d.java index 5f13f6550..ab59277c2 100644 --- a/jdbc2/src/org/postgis/PGbox3d.java +++ b/jdbc2/src/org/postgis/PGbox3d.java @@ -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 diff --git a/jdbc2/src/org/postgis/PGboxbase.java b/jdbc2/src/org/postgis/PGboxbase.java index 1058325be..d196b6d62 100644 --- a/jdbc2/src/org/postgis/PGboxbase.java +++ b/jdbc2/src/org/postgis/PGboxbase.java @@ -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 diff --git a/jdbc2/src/org/postgis/PGgeometry.java b/jdbc2/src/org/postgis/PGgeometry.java index 2f5420f7d..4011dfb56 100644 --- a/jdbc2/src/org/postgis/PGgeometry.java +++ b/jdbc2/src/org/postgis/PGgeometry.java @@ -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 diff --git a/jdbc2/src/org/postgis/Point.java b/jdbc2/src/org/postgis/Point.java index 661c26c04..40e9147ed 100644 --- a/jdbc2/src/org/postgis/Point.java +++ b/jdbc2/src/org/postgis/Point.java @@ -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 diff --git a/jdbc2/src/org/postgis/PointComposedGeom.java b/jdbc2/src/org/postgis/PointComposedGeom.java index 74514e024..3aaff02ec 100644 --- a/jdbc2/src/org/postgis/PointComposedGeom.java +++ b/jdbc2/src/org/postgis/PointComposedGeom.java @@ -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 diff --git a/jdbc2/src/org/postgis/Polygon.java b/jdbc2/src/org/postgis/Polygon.java index a158570c3..9d65b6025 100644 --- a/jdbc2/src/org/postgis/Polygon.java +++ b/jdbc2/src/org/postgis/Polygon.java @@ -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 diff --git a/jdbc2/src/org/postgis/Version.java b/jdbc2/src/org/postgis/Version.java index 64572f8d5..f4521de75 100644 --- a/jdbc2/src/org/postgis/Version.java +++ b/jdbc2/src/org/postgis/Version.java @@ -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 diff --git a/jdbc2/src/org/postgis/binary/BinaryParser.java b/jdbc2/src/org/postgis/binary/BinaryParser.java index d91822103..00d472a15 100644 --- a/jdbc2/src/org/postgis/binary/BinaryParser.java +++ b/jdbc2/src/org/postgis/binary/BinaryParser.java @@ -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 * */ public class BinaryParser { diff --git a/jdbc2/src/org/postgis/binary/ByteGetter.java b/jdbc2/src/org/postgis/binary/ByteGetter.java index 7b612218e..90dd793ec 100644 --- a/jdbc2/src/org/postgis/binary/ByteGetter.java +++ b/jdbc2/src/org/postgis/binary/ByteGetter.java @@ -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 diff --git a/jdbc2/src/org/postgis/binary/ValueGetter.java b/jdbc2/src/org/postgis/binary/ValueGetter.java index eacde4369..c05471fd6 100644 --- a/jdbc2/src/org/postgis/binary/ValueGetter.java +++ b/jdbc2/src/org/postgis/binary/ValueGetter.java @@ -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 diff --git a/jdbc2/stubs/org/postgresql/Connection.java b/jdbc2/stubs/org/postgresql/Connection.java index 26c12a640..b93926ced 100644 --- a/jdbc2/stubs/org/postgresql/Connection.java +++ b/jdbc2/stubs/org/postgresql/Connection.java @@ -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 + * Copyright (c) 2005 Markus Schaber * * IDENTIFICATION * $PostgreSQL: pgjdbc/org/postgresql/PGConnection.java,v 1.13 2005/01/17 09:51:40 jurka Exp $ diff --git a/jdbc2/stubs/org/postgresql/PGConnection.java b/jdbc2/stubs/org/postgresql/PGConnection.java index 1a5ab6f4b..6720ddd27 100644 --- a/jdbc2/stubs/org/postgresql/PGConnection.java +++ b/jdbc2/stubs/org/postgresql/PGConnection.java @@ -3,7 +3,7 @@ * under BSD license. * * Copyright (c) 2003-2005, PostgreSQL Global Development Group - * Copyright (c) 2005 Markus Schaber + * Copyright (c) 2005 Markus Schaber * * IDENTIFICATION * $PostgreSQL: pgjdbc/org/postgresql/PGConnection.java,v 1.13 2005/01/17 09:51:40 jurka Exp $ -- 2.40.0