gnome-python-extras r449 - in trunk: . examples/gda



Author: murrayc
Date: Sun Feb 15 22:23:06 2009
New Revision: 449
URL: http://svn.gnome.org/viewvc/gnome-python-extras?rev=449&view=rev

Log:
Increased version

Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.ac
   trunk/examples/gda/select.py

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Sun Feb 15 22:23:06 2009
@@ -1,3 +1,9 @@
+Overview of Changes from 2.25.2 to 2.25.3
+==============================================================================
+
+* gda: Now requires and builds with the latest libgda (3.99.11)
+  (Murray Cumming)
+
 Overview of Changes from 2.25.1 to 2.25.2
 ==============================================================================
 

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Sun Feb 15 22:23:06 2009
@@ -4,7 +4,7 @@
 dnl the gnome-python version number
 m4_define(gnome_python_extras_major_version, 2)
 m4_define(gnome_python_extras_minor_version, 25)
-m4_define(gnome_python_extras_micro_version, 2)
+m4_define(gnome_python_extras_micro_version, 3)
 m4_define(gnome_python_extras_version, gnome_python_extras_major_version.gnome_python_extras_minor_version.gnome_python_extras_micro_version)
 
 dnl required versions of other packages
@@ -19,7 +19,7 @@
 m4_define(mozilla_required_version,           1.2b)
 m4_define(firefox_required_version,           1.0)
 m4_define(xulrunner_required_version,         1.8)
-m4_define(libgda_required_version,            3.99.9)
+m4_define(libgda_required_version,            3.99.11)
 m4_define(gksu_required_version,              1.2.5)
 m4_define(gksu2_required_version,             2.0.4)
 m4_define(gksuui_required_version,            1.0.3)

Modified: trunk/examples/gda/select.py
==============================================================================
--- trunk/examples/gda/select.py	(original)
+++ trunk/examples/gda/select.py	Sun Feb 15 22:23:06 2009
@@ -22,8 +22,6 @@
 
 def main ():
 
-    client = gda.Client();
-
     data_source_name = "datasource_pygda_example_select11";
 
     #TODO: This should be gda.Config.find_data_source().
@@ -48,7 +46,7 @@
 
     # Note that, if the server is not running, this can take a few minutes to fail: */
     print "DEBUG: Before opening connection\n"
-    gda_connection = client.open_connection(data_source.name, data_source.username, data_source.password);
+    gda_connection = gda.open_connection(data_source.name, data_source.username, data_source.password);
     print "DEBUG: After opening connection\n"
     
     if not gda_connection:



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