FDO 3.4.0 RC3

6 messages Options
Embed this post
Permalink
Greg Boone

FDO 3.4.0 RC3

Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)

We are pleased to announce the release of FDO 3.4.0 Release Candidate 3.

 

For a complete list of the new features and defect fixes included in 3.4.0, see the FDO 3.4.0 milestone page.

 

This candidate offers significant revisions to the King Oracle Provider. Please review and test this provider if time permits.

 

Documentation: http://fdo.osgeo.org/documentation.html

Downloads: http://fdo.osgeo.org/downloads

 

Regards,

The FDO Open Source Team

 


_______________________________________________
fdo-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/fdo-internals
Greg Boone

RE: FDO 3.4.0 RC3

Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)

Correction:

 

Downloads: http://fdo.osgeo.org/content/downloads

 

Greg

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of Greg Boone
Sent: March 26, 2009 3:41 PM
To: [hidden email]
Cc: FDO Internals Mail List; [hidden email]; List
Subject: [fdo-announce] FDO 3.4.0 RC3

 

We are pleased to announce the release of FDO 3.4.0 Release Candidate 3.

 

For a complete list of the new features and defect fixes included in 3.4.0, see the FDO 3.4.0 milestone page.

 

This candidate offers significant revisions to the King Oracle Provider. Please review and test this provider if time permits.

 

Documentation: http://fdo.osgeo.org/documentation.html

Downloads: http://fdo.osgeo.org/content/downloads

 

Regards,

The FDO Open Source Team

 


_______________________________________________
fdo-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/fdo-internals
Helio Chissini de Castro

Re: FDO 3.4.0 RC3 - Latest patch to install on linux

Reply Threaded More More options
Print post
Permalink
In reply to this post by Greg Boone
On Thursday 26 of March 2009 16:41:17 Greg Boone wrote:
> We are pleased to announce the release of FDO 3.4.0 Release Candidate 3.
>
> For a complete list of the new features and defect fixes included in 3.4.0,
> see the FDO 3.4.0 milestone<http://trac.osgeo.org/fdo/milestone/3.4.0>
> page.
>
> This candidate offers significant revisions to the King Oracle Provider.
> Please review and test this provider if time permits.

Here's a patch for linux fixing to allow install in a non root environment,
required for rpm building or local non-root installs.
Docs are installed in /usr/share/docs/fdo to match LHS instead of /usr/docs

Modern linux installs use /usr/share/locale instead of /usr/nls as regular
unices, so be aware if you are packaging for linux or only compiling that you
maybe will need need do a symlink to /usr/nls .cat files

[]'s

--
Helio Chissini de Castro
KDE Developer
Brasil/South America Primary Contact

[fdo-3.4.0-install.patch]

--- OpenSource_FDO/Providers/WFS/Src/Message/Makefile.am.orig 2009-03-30 09:06:07.000000000 -0300
+++ OpenSource_FDO/Providers/WFS/Src/Message/Makefile.am 2009-03-30 09:06:27.000000000 -0300
@@ -54,7 +54,7 @@
 WFSMessage.msf : WFSMessage.mc
  $(FDO)/Unmanaged/Src/McToMsf/McToMsf WFSMessage.mc WFSMessage.msf WFS
 
-INSTALL_DIR  = $(prefix)/nls
+ INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 #install data
 install :
--- OpenSource_FDO/Providers/GDAL/Src/Message/Makefile.am.orig 2009-03-30 09:06:07.000000000 -0300
+++ OpenSource_FDO/Providers/GDAL/Src/Message/Makefile.am 2009-03-30 09:06:38.000000000 -0300
@@ -50,7 +50,7 @@
 %.msf : %.mc
  $(FDO)/Unmanaged/Src/McToMsf/McToMsf $< $@ "*" GRFPMESSAGE
 
-INSTALL_DIR  = $(prefix)/nls
+ INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 install :
  @if [ ! -d $(INSTALL_DIR) ]; then mkdir -p $(INSTALL_DIR); fi
--- OpenSource_FDO/Providers/PostGIS/Src/Message/Makefile.am.orig 2009-03-30 09:06:07.000000000 -0300
+++ OpenSource_FDO/Providers/PostGIS/Src/Message/Makefile.am 2009-03-30 09:06:45.000000000 -0300
@@ -54,7 +54,7 @@
 %.msf : %.mc
  ../../../../Fdo/Unmanaged/Src/McToMsf/McToMsf $< $@ "*" POSTGISMESSAGE
 
-INSTALL_DIR  = $(prefix)/nls
+ INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 install :
  @if [ ! -d $(INSTALL_DIR) ]; then mkdir -p $(INSTALL_DIR); fi
--- OpenSource_FDO/Providers/SDF/Src/Message/Makefile.am.orig 2009-03-30 09:06:07.000000000 -0300
+++ OpenSource_FDO/Providers/SDF/Src/Message/Makefile.am 2009-03-30 09:06:54.000000000 -0300
@@ -51,7 +51,7 @@
 SDFMessage.msf : SDFMessage.mc
  $(FDO)/Unmanaged/Src/McToMsf/McToMsf SDFMessage.mc SDFMessage.msf SDF
 
-INSTALL_DIR  = $(prefix)/nls
+ INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 #install data
 install :
--- OpenSource_FDO/Providers/WMS/Src/Message/Makefile.am.orig 2009-03-30 09:06:07.000000000 -0300
+++ OpenSource_FDO/Providers/WMS/Src/Message/Makefile.am 2009-03-30 09:07:01.000000000 -0300
@@ -54,7 +54,7 @@
 %.msf : %.mc
  $(FDO)/Unmanaged/Src/McToMsf/McToMsf $< $@ "*" FDOWMSMESSAGE
 
-INSTALL_DIR  = $(prefix)/nls
+ INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 #install data
 install :
--- OpenSource_FDO/Providers/SHP/Src/Message/Makefile.am.orig 2009-03-30 09:06:07.000000000 -0300
+++ OpenSource_FDO/Providers/SHP/Src/Message/Makefile.am 2009-03-30 09:07:09.000000000 -0300
@@ -54,7 +54,7 @@
 %.msf : %.mc
  $(FDO)/Unmanaged/Src/McToMsf/McToMsf $< $@ "*" SHPMESSAGE
 
-INSTALL_DIR  = $(prefix)/nls
+ INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 #install data
 install :
--- OpenSource_FDO/Fdo/Unmanaged/Src/Message/Makefile.am.orig 2009-03-30 09:06:07.000000000 -0300
+++ OpenSource_FDO/Fdo/Unmanaged/Src/Message/Makefile.am 2009-03-30 09:07:17.000000000 -0300
@@ -51,7 +51,7 @@
  @../McToMsf/McToMsf $(basename $(notdir $<)).mc $(basename $(notdir $<)).msf "*" FDO
 
 
-INSTALL_DIR  = $(prefix)/nls
+ INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 #install data
 install :
--- OpenSource_FDO/Fdo/Unmanaged/Inc/Makefile.am.orig 2009-03-30 09:08:50.000000000 -0300
+++ OpenSource_FDO/Fdo/Unmanaged/Inc/Makefile.am 2009-03-30 09:09:11.000000000 -0300
@@ -17,7 +17,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 EXTRA_DIST = \
     Fdo.h \
--- OpenSource_FDO/Fdo/Docs/Makefile.am.orig 2009-03-30 09:09:41.000000000 -0300
+++ OpenSource_FDO/Fdo/Docs/Makefile.am 2009-03-30 09:11:42.000000000 -0300
@@ -17,7 +17,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-INSTALL_DIR  = $(prefix)
+INSTALL_DIR  = $(DESTDIR)/$(prefix)
 
 SUBDIRS = doc_src XmlSchema
 
@@ -25,19 +25,19 @@
 
 #install Docs
 install :
- @if [ ! -d $(INSTALL_DIR)/docs ]; then mkdir -p $(INSTALL_DIR)/docs; fi
- @if [ ! -d $(INSTALL_DIR)/docs/XmlSchema ]; then mkdir -p $(INSTALL_DIR)/docs/XmlSchema; fi
- @if [ ! -d $(INSTALL_DIR)/docs/XmlSchema/Gml ]; then mkdir -p $(INSTALL_DIR)/docs/XmlSchema/Gml; fi
- @if [ ! -d $(INSTALL_DIR)/docs/XmlSchema/Xlink ]; then mkdir -p $(INSTALL_DIR)/docs/XmlSchema/Xlink; fi
- @if [ ! -d $(INSTALL_DIR)/docs/XmlSchema/XmlSchema ]; then mkdir -p $(INSTALL_DIR)/docs/XmlSchema/XmlSchema; fi
- @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema $(INSTALL_DIR)/docs/XmlSchema
- @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema/Gml $(INSTALL_DIR)/docs/XmlSchema/Gml
- @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema/Xlink $(INSTALL_DIR)/docs/XmlSchema/Xlink
- @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema/XmlSchema $(INSTALL_DIR)/docs/XmlSchema/XmlSchema
- @cp -u -f XmlSchema/Gml/CopyRight.txt $(INSTALL_DIR)/docs/XmlSchema/Gml
- @cp -u -f XmlSchema/Xlink/CopyRight.txt $(INSTALL_DIR)/docs/XmlSchema/Xlink
- @cp -u -f XmlSchema/XmlSchema/base.css $(INSTALL_DIR)/docs/XmlSchema/XmlSchema
+ @if [ ! -d $(INSTALL_DIR)/share/doc/fdo ]; then mkdir -p $(INSTALL_DIR)/share/doc/fdo; fi
+ @if [ ! -d $(INSTALL_DIR)/share/doc/fdo/XmlSchema ]; then mkdir -p $(INSTALL_DIR)/share/doc/fdo/XmlSchema; fi
+ @if [ ! -d $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Gml ]; then mkdir -p $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Gml; fi
+ @if [ ! -d $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Xlink ]; then mkdir -p $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Xlink; fi
+ @if [ ! -d $(INSTALL_DIR)/share/doc/fdo/XmlSchema/XmlSchema ]; then mkdir -p $(INSTALL_DIR)/share/doc/fdo/XmlSchema/XmlSchema; fi
+ @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema $(INSTALL_DIR)/share/doc/fdo/XmlSchema
+ @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema/Gml $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Gml
+ @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema/Xlink $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Xlink
+ @../Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema/XmlSchema $(INSTALL_DIR)/share/doc/fdo/XmlSchema/XmlSchema
+ @cp -u -f XmlSchema/Gml/CopyRight.txt $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Gml
+ @cp -u -f XmlSchema/Xlink/CopyRight.txt $(INSTALL_DIR)/share/doc/fdo/XmlSchema/Xlink
+ @cp -u -f XmlSchema/XmlSchema/base.css $(INSTALL_DIR)/share/doc/fdo/XmlSchema/XmlSchema
 
 uninstall :
- @rm -drf $(INSTALL_DIR)/docs
+ @rm -drf $(INSTALL_DIR)/share/doc/fdo
 
--- OpenSource_FDO/Utilities/SchemaMgr/Nls/Makefile.am.orig 2009-03-30 09:13:25.000000000 -0300
+++ OpenSource_FDO/Utilities/SchemaMgr/Nls/Makefile.am 2009-03-30 09:13:42.000000000 -0300
@@ -50,7 +50,7 @@
  @echo "@$(FDO)/Unmanaged/Src/McToMsf/McToMsf $(basename $(notdir $<)).mc $(basename $(notdir $<)).msf \"*\" SmMessage "; \
  $(FDO)/Unmanaged/Src/McToMsf/McToMsf $(basename $(notdir $<)).mc $(basename $(notdir $<)).msf "*" SmMessage
 
-INSTALL_DIR  = $(prefix)/nls
+INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 #install data
 install :
--- OpenSource_FDO/Utilities/ExpressionEngine/Inc/Makefile.am.orig 2009-03-30 09:12:41.000000000 -0300
+++ OpenSource_FDO/Utilities/ExpressionEngine/Inc/Makefile.am 2009-03-30 09:12:52.000000000 -0300
@@ -24,7 +24,7 @@
    FdoExpressionEngineIFunction.h \
    FdoExpressionEngineINonAggregateFunction.h
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 #install header files
 install :
--- OpenSource_FDO/Providers/GDAL/Inc/Makefile.am.orig 2009-03-30 09:56:51.000000000 -0300
+++ OpenSource_FDO/Providers/GDAL/Inc/Makefile.am 2009-03-30 09:57:04.000000000 -0300
@@ -29,7 +29,7 @@
    GdalFile/Override/FdoGrfpRasterImageDefinition.h \
    GdalFile/Override/FdoGrfpRasterLocation.h
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 install :
  @if [ ! -d $(INSTALL_DIR) ]; then mkdir -p $(INSTALL_DIR); fi
--- OpenSource_FDO/Providers/GenericRdbms/Nls/Makefile.am.orig 2009-03-30 10:07:18.000000000 -0300
+++ OpenSource_FDO/Providers/GenericRdbms/Nls/Makefile.am 2009-03-30 10:07:38.000000000 -0300
@@ -54,7 +54,7 @@
  @echo "@$(FDO)/Unmanaged/Src/McToMsf/McToMsf $(basename $(notdir $<)).mc $(basename $(notdir $<)).msf "*" FDORDBMS"; \
  $(FDO)/Unmanaged/Src/McToMsf/McToMsf $(basename $(notdir $<)).mc $(basename $(notdir $<)).msf  "*"  FDORDBMS
 
-INSTALL_DIR  = $(prefix)/nls
+INSTALL_DIR  = $(DESTDIR)/$(prefix)/nls
 
 #install data
 install :
--- OpenSource_FDO/Providers/GenericRdbms/Inc/Makefile.am.orig 2009-03-30 10:09:58.000000000 -0300
+++ OpenSource_FDO/Providers/GenericRdbms/Inc/Makefile.am 2009-03-30 10:10:11.000000000 -0300
@@ -100,7 +100,7 @@
    Rdbi/proto.h \
    Rdbi/vndr_info.h
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 #install header files
 install :
--- OpenSource_FDO/Providers/GenericRdbms/com/Makefile.am.orig 2009-03-30 10:13:11.000000000 -0300
+++ OpenSource_FDO/Providers/GenericRdbms/com/Makefile.am 2009-03-30 10:13:31.000000000 -0300
@@ -17,7 +17,7 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-INSTALL_DIR  = $(libdir)
+INSTALL_DIR  = $(DESTDIR)/$(libdir)
 
 EXTRA_DIST = fdo_sys.sql fdo_sys_idx.sql fdosys_sys.sql
 
--- OpenSource_FDO/Providers/GenericRdbms/Docs/Makefile.am.orig 2009-03-30 10:15:48.000000000 -0300
+++ OpenSource_FDO/Providers/GenericRdbms/Docs/Makefile.am 2009-03-30 10:17:20.000000000 -0300
@@ -25,7 +25,7 @@
 
 #install doc files
 install :
- @if [ ! -d $(prefix)/docs ]; then mkdir -p $(prefix)/docs; fi
- @if [ ! -d $(prefix)/docs/XmlSchema ]; then mkdir -p $(prefix)/docs/XmlSchema; fi
- @$(FDO)/Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema $(prefix)/docs/XmlSchema/XmlSchema
+ @if [ ! -d $(DESTDIR)/$(prefix)/share/doc/fdo ]; then mkdir -p $(DESTDIR)/$(prefix)/share/doc/fdo; fi
+ @if [ ! -d $(DESTDIR)/$(prefix)/share/doc/fdo/XmlSchema ]; then mkdir -p $(DESTDIR)/$(prefix)/share/doc/fdo/XmlSchema; fi
+ @$(FDO)/Install/XsdInstallPaths/XsdInstallPaths ./XmlSchema $(DESTDIR)/$(prefix)/share/doc/fdo/XmlSchema/XmlSchema
 
--- OpenSource_FDO/Providers/PostGIS/Inc/Makefile.am.orig 2009-03-30 10:19:19.000000000 -0300
+++ OpenSource_FDO/Providers/PostGIS/Inc/Makefile.am 2009-03-30 10:19:32.000000000 -0300
@@ -27,7 +27,7 @@
    PostGIS/Override/PropertyDefinitionCollection.h \
    PostGIS/Override/PropertyDefinition.h
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 install :
  @if [ ! -d $(INSTALL_DIR) ]; then mkdir -p $(INSTALL_DIR); fi
--- OpenSource_FDO/Providers/SDF/Inc/Makefile.am.orig 2009-03-30 10:26:24.000000000 -0300
+++ OpenSource_FDO/Providers/SDF/Inc/Makefile.am 2009-03-30 10:27:27.000000000 -0300
@@ -24,7 +24,7 @@
    SDF/IExtendedSelect.h \
    SDF/IScrollableFeatureReader.h
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 #install header files
 install :
--- OpenSource_FDO/Providers/SHP/Inc/Makefile.am.orig 2009-03-30 10:30:33.000000000 -0300
+++ OpenSource_FDO/Providers/SHP/Inc/Makefile.am 2009-03-30 10:30:49.000000000 -0300
@@ -27,7 +27,7 @@
    SHP/Override/FdoShpPropertyDefinition.h \
    SHP/Override/FdoShpPropertyDefinitionCollection.h
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 #install header files
 install :
--- OpenSource_FDO/Providers/WMS/Inc/Makefile.am.orig 2009-03-30 10:35:15.000000000 -0300
+++ OpenSource_FDO/Providers/WMS/Inc/Makefile.am 2009-03-30 10:37:51.000000000 -0300
@@ -33,7 +33,7 @@
    WMS/Override/FdoWmsOvRasterDefinition.h \
    WMS/Override/FdoWmsOvStyleDefinition.h
 
-INSTALL_DIR  = $(includedir)
+INSTALL_DIR  = $(DESTDIR)/$(includedir)
 
 #install header files
 install :


_______________________________________________
fdo-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/fdo-internals
Greg Boone

RE: FDO 3.4.0 RC3 - Latest patch to install on linux

Reply Threaded More More options
Print post
Permalink
I will try and test the official Linux install with these changes tomorrow. If that goes well I will submit.

Greg

-----Original Message-----
From: Helio Chissini de Castro [mailto:[hidden email]]
Sent: Monday, March 30, 2009 9:49 AM
To: [hidden email]
Cc: Greg Boone
Subject: Re: [fdo-internals] FDO 3.4.0 RC3 - Latest patch to install on linux

On Thursday 26 of March 2009 16:41:17 Greg Boone wrote:
> We are pleased to announce the release of FDO 3.4.0 Release Candidate 3.
>
> For a complete list of the new features and defect fixes included in 3.4.0,
> see the FDO 3.4.0 milestone<http://trac.osgeo.org/fdo/milestone/3.4.0>
> page.
>
> This candidate offers significant revisions to the King Oracle Provider.
> Please review and test this provider if time permits.

Here's a patch for linux fixing to allow install in a non root environment,
required for rpm building or local non-root installs.
Docs are installed in /usr/share/docs/fdo to match LHS instead of /usr/docs

Modern linux installs use /usr/share/locale instead of /usr/nls as regular
unices, so be aware if you are packaging for linux or only compiling that you
maybe will need need do a symlink to /usr/nls .cat files

[]'s

--
Helio Chissini de Castro
KDE Developer
Brasil/South America Primary Contact

_______________________________________________
fdo-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/fdo-internals
Greg Boone

RE: FDO 3.4.0 RC3 - Latest patch to install on linux

Reply Threaded More More options
Print post
Permalink
In reply to this post by Helio Chissini de Castro
If there are no serious objections, I would like to defer this change until FDO 3.5. I am not totally comfortable making the recommended install dir changes at this time as they do have an impact on some of the implemented NLS message handling functionality. Also, I just don’t have the time to do the proper Provider testing to make sure everything is working as it is supposed to.

Greg

-----Original Message-----
From: Helio Chissini de Castro [mailto:[hidden email]]
Sent: Monday, March 30, 2009 9:49 AM
To: [hidden email]
Cc: Greg Boone
Subject: Re: [fdo-internals] FDO 3.4.0 RC3 - Latest patch to install on linux

On Thursday 26 of March 2009 16:41:17 Greg Boone wrote:
> We are pleased to announce the release of FDO 3.4.0 Release Candidate 3.
>
> For a complete list of the new features and defect fixes included in 3.4.0,
> see the FDO 3.4.0 milestone<http://trac.osgeo.org/fdo/milestone/3.4.0>
> page.
>
> This candidate offers significant revisions to the King Oracle Provider.
> Please review and test this provider if time permits.

Here's a patch for linux fixing to allow install in a non root environment,
required for rpm building or local non-root installs.
Docs are installed in /usr/share/docs/fdo to match LHS instead of /usr/docs

Modern linux installs use /usr/share/locale instead of /usr/nls as regular
unices, so be aware if you are packaging for linux or only compiling that you
maybe will need need do a symlink to /usr/nls .cat files

[]'s

--
Helio Chissini de Castro
KDE Developer
Brasil/South America Primary Contact

_______________________________________________
fdo-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/fdo-internals
Greg Boone

RE: FDO 3.4.0 RC3

Reply Threaded More More options
Print post
Permalink
In reply to this post by Greg Boone
Some javascript/style in this post has been disabled (why?)

Hi All,

 

The final submission date for critical changes to FDO 3.4.0 will be this Friday. I hope to release the final 3.4.0 build early next week.

 

Regards,

Greg

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of Greg Boone
Sent: Thursday, March 26, 2009 3:43 PM
To: FDO Announce Mail List
Cc: FDO Internals Mail List; [hidden email]; List
Subject: [fdo-internals] RE: FDO 3.4.0 RC3

 

Correction:

 

Downloads: http://fdo.osgeo.org/content/downloads

 

Greg

 

From: [hidden email] [mailto:[hidden email]] On Behalf Of Greg Boone
Sent: March 26, 2009 3:41 PM
To: [hidden email]
Cc: FDO Internals Mail List; [hidden email]; List
Subject: [fdo-announce] FDO 3.4.0 RC3

 

We are pleased to announce the release of FDO 3.4.0 Release Candidate 3.

 

For a complete list of the new features and defect fixes included in 3.4.0, see the FDO 3.4.0 milestone page.

 

This candidate offers significant revisions to the King Oracle Provider. Please review and test this provider if time permits.

 

Documentation: http://fdo.osgeo.org/documentation.html

Downloads: http://fdo.osgeo.org/content/downloads

 

Regards,

The FDO Open Source Team

 


_______________________________________________
fdo-internals mailing list
[hidden email]
http://lists.osgeo.org/mailman/listinfo/fdo-internals