libgda r3048 - in branches/release-3-0-branch: . po



Author: murrayc
Date: Mon Jan 28 17:13:34 2008
New Revision: 3048
URL: http://svn.gnome.org/viewvc/libgda?rev=3048&view=rev

Log:
Increased version for release.

Modified:
   branches/release-3-0-branch/ChangeLog
   branches/release-3-0-branch/NEWS
   branches/release-3-0-branch/gtk-doc.make
   branches/release-3-0-branch/po/POTFILES.skip

Modified: branches/release-3-0-branch/NEWS
==============================================================================
--- branches/release-3-0-branch/NEWS	(original)
+++ branches/release-3-0-branch/NEWS	Mon Jan 28 17:13:34 2008
@@ -1,3 +1,33 @@
+libgda 3.0.2, 2007-05-10
+
+
+* GdaClient:
+  - gda_client_find_connection(): The first existing connection was 
+  always returned regardless of the requested DSN.
+  - Correctly implement connection sharing.
+  - correctly emit the "event_notification" signal when a connection is opened. 
+    Bug #316698.
+  (Vivien Malerba)
+* GdaColumn: Avoid a double free and a memory leak.
+* GdaConnection: correctly output the number of rows in a returned
+  data model when that number is not known.
+  (Vivien Malerba)
+* GdaGraph: Correctly interpret the ID of a graph when loaded from XML.
+  (Vivien Malerba)
+* GdaServerOperation: Fixed a leak (and crash on Window).
+  (Armin Burgmeier)
+
+* Postgres provider: Allow spaces in the username and password, 
+  by using quotes. (Murray Cumming) Bug #491171.
+* LDAP provider: Build fixes. (Hans de Goede)
+* SQLLite provider:
+  - Fix handling of NOT NULL.
+  - Fixed crash in gda_connection_commit_transaction(). Bug #493360.
+  - Force SQLite to re-read the database structure in case it has been modified 
+    by another connection since the last time an SQL statement was executed.
+  (Vivien Malerba)
+* Various other small fixes. (Vivien Malerba)
+
 libgda 3.0.1, 2007-05-10
 
  - Bug fixes: #433687, #434464, #432798, #432798

Modified: branches/release-3-0-branch/gtk-doc.make
==============================================================================
--- branches/release-3-0-branch/gtk-doc.make	(original)
+++ branches/release-3-0-branch/gtk-doc.make	Mon Jan 28 17:13:34 2008
@@ -5,11 +5,11 @@
 ####################################
 
 if GTK_DOC_USE_LIBTOOL
-GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS)
-GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS)
+GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
 else
-GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS)
-GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS)
+GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
 endif
 
 # We set GPATH here; this gives us semantics for GNU make
@@ -38,7 +38,12 @@
 	$(DOC_MODULE).prerequisites \
 	$(DOC_MODULE).signals
 
-CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS)
+REPORT_FILES = \
+	$(DOC_MODULE)-undocumented.txt \
+	$(DOC_MODULE)-undeclared.txt \
+	$(DOC_MODULE)-unused.txt
+
+CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
 
 if ENABLE_GTK_DOC
 all-local: html-build.stamp
@@ -79,6 +84,10 @@
 tmpl.stamp: tmpl-build.stamp
 	@true
 
+tmpl/*.sgml:
+	@true
+
+
 #### xml ####
 
 sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files)
@@ -96,11 +105,11 @@
 html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
 	@echo 'gtk-doc: Building HTML'
 	@-chmod -R u+w $(srcdir)
-	rm -rf $(srcdir)/html 
+	rm -rf $(srcdir)/html
 	mkdir $(srcdir)/html
 	cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
 	test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
-	@echo 'gtk-doc: Fixing cross-references' 
+	@echo 'gtk-doc: Fixing cross-references'
 	cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
 	touch html-build.stamp
 
@@ -110,11 +119,16 @@
 	rm -f *~ *.bak
 	rm -rf .libs
 
+distclean-local:
+	cd $(srcdir) && \
+	  rm -rf xml $(REPORT_FILES) \
+	         $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
+
 maintainer-clean-local: clean
-	cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
+	cd $(srcdir) && rm -rf xml html
 
 install-data-local:
-	installfiles=`echo $(srcdir)/html/*`; \
+	-installfiles=`echo $(srcdir)/html/*`; \
 	if test "$$installfiles" = '$(srcdir)/html/*'; \
 	then echo '-- Nothing to install' ; \
 	else \
@@ -125,7 +139,10 @@
 	  done; \
 	  echo '-- Installing $(srcdir)/html/index.sgml' ; \
 	  $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \
+	  which gtkdoc-rebase >/dev/null && \
+	    gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \
 	fi
+	
 
 uninstall-local:
 	rm -f $(DESTDIR)$(TARGET_DIR)/*
@@ -148,8 +165,9 @@
 	-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
 	-cp $(srcdir)/xml/*.xml $(distdir)/xml
 	cp $(srcdir)/html/* $(distdir)/html
-	if test -f $(srcdir)/$(DOC_MODULE).types; then \
-	  cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \
-	fi
+	-cp $(srcdir)/$(DOC_MODULE).types $(distdir)/
+	-cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/
+	cd $(distdir) && rm -f $(DISTCLEANFILES)
+	-gtkdoc-rebase --online --relative --html-dir=$(distdir)/html
 
 .PHONY : dist-hook-local docs

Modified: branches/release-3-0-branch/po/POTFILES.skip
==============================================================================
--- branches/release-3-0-branch/po/POTFILES.skip	(original)
+++ branches/release-3-0-branch/po/POTFILES.skip	Mon Jan 28 17:13:34 2008
@@ -1,3 +1,8 @@
 providers/sqlite/sqlite-src/os_common.h
 providers/sqlite/sqlite-src/vdbe.c
 providers/sybase/main.c
+libgda/sql-delimiter/lexer.c
+libgda/sql-delimiter/parser.c
+libgda/sql-transaction/parser.c
+libsql/lexer.c
+libsql/parser.c



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]