From 94afd4b122c7b892b69b66ff93f22197a14dc8d6 Mon Sep 17 00:00:00 2001 From: helge Date: Wed, 29 Aug 2007 21:27:53 +0000 Subject: [PATCH] more work for OGo bug #1908, map new adaptor to URL scheme git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1536 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- sope-gdl1/GDLAccess/ChangeLog | 5 +++++ sope-gdl1/GDLAccess/EOAdaptor.m | 1 + sope-gdl1/GDLAccess/Version | 2 +- sope-gdl1/GNUmakefile | 4 ++++ 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/sope-gdl1/GDLAccess/ChangeLog b/sope-gdl1/GDLAccess/ChangeLog index c4236e36..7a0de80b 100644 --- a/sope-gdl1/GDLAccess/ChangeLog +++ b/sope-gdl1/GDLAccess/ChangeLog @@ -1,3 +1,8 @@ +2007-08-29 Helge Hess + + * EOAdaptor.m: invoke new Oracle8 adaptor for the 'oracle' URL scheme + (v4.7.62) + 2007-06-10 Helge Hess * v4.7.61 diff --git a/sope-gdl1/GDLAccess/EOAdaptor.m b/sope-gdl1/GDLAccess/EOAdaptor.m index 20fa95a9..5ed111cd 100644 --- a/sope-gdl1/GDLAccess/EOAdaptor.m +++ b/sope-gdl1/GDLAccess/EOAdaptor.m @@ -201,6 +201,7 @@ if ([_scheme isEqualToString:@"postgresql"]) return @"PostgreSQL"; if ([_scheme isEqualToString:@"sybase"]) return @"Sybase10"; if ([_scheme isEqualToString:@"sqlite"]) return @"SQLite3"; + if ([_scheme isEqualToString:@"oracle"]) return @"Oracle8"; if ([_scheme isEqualToString:@"http"]) { NSLog(@"WARNING(%s): asked for 'http' URL, " diff --git a/sope-gdl1/GDLAccess/Version b/sope-gdl1/GDLAccess/Version index 9846aa8d..3fea82c7 100644 --- a/sope-gdl1/GDLAccess/Version +++ b/sope-gdl1/GDLAccess/Version @@ -1,3 +1,3 @@ # version file -SUBMINOR_VERSION:=61 +SUBMINOR_VERSION:=62 diff --git a/sope-gdl1/GNUmakefile b/sope-gdl1/GNUmakefile index 3337597f..f725edca 100644 --- a/sope-gdl1/GNUmakefile +++ b/sope-gdl1/GNUmakefile @@ -22,6 +22,10 @@ ifeq ($(HAS_LIBRARY_mysqlclient),yes) SUBPROJECTS += MySQL endif +ifeq ($(HAS_LIBRARY_oracle),yes) +SUBPROJECTS += Oracle +endif + -include GNUmakefile.preamble include $(GNUSTEP_MAKEFILES)/aggregate.make -include GNUmakefile.postamble -- 2.39.5