commit-gnue
[Top][All Lists]
Advanced

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

gnue/gnuef/src/GFObjects GFDatabase.py


From: Jason Cater
Subject: gnue/gnuef/src/GFObjects GFDatabase.py
Date: Thu, 30 Aug 2001 10:19:50 -0700

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Jason Cater <address@hidden>    01/08/30 10:19:50

Modified files:
        gnuef/src/GFObjects: GFDatabase.py 

Log message:
        Fixed case problems w/database tags

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnuef/src/GFObjects/GFDatabase.py.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text

Patches:
Index: gnue/gnuef/src/GFObjects/GFDatabase.py
diff -u gnue/gnuef/src/GFObjects/GFDatabase.py:1.3 
gnue/gnuef/src/GFObjects/GFDatabase.py:1.4
--- gnue/gnuef/src/GFObjects/GFDatabase.py:1.3  Mon Aug 13 16:15:28 2001
+++ gnue/gnuef/src/GFObjects/GFDatabase.py      Thu Aug 30 10:19:50 2001
@@ -33,6 +33,7 @@
 #
 
 from gnue.common import GDebug
+import string
 from GFObj import GFObj
 
 
@@ -42,8 +43,11 @@
     self.comment = ""
     self.name = ""
 
-  def initialize(self): 
-    # Add our database connection information to the connections  
+  def buildObject(self):
+    self.name = string.lower(self.name)
+
+  def initialize(self):
+    # Add our database connection information to the connections
     # manager, then let it handle everything from there.
     self.findParentOfType('GFForm')._app.connections.\
         addConnectionSpecification(self.name, {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]