commit-gnue
[Top][All Lists]
Advanced

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

gnue/gnue-common/gnue/common/dbdrivers/geas DBd...


From: Derek Neighbors
Subject: gnue/gnue-common/gnue/common/dbdrivers/geas DBd...
Date: Thu, 07 Jun 2001 20:55:10 -0700

CVSROOT:        /home/cvs
Module name:    gnue
Changes by:     Derek Neighbors <address@hidden>        01/06/07 20:55:10

Modified files:
        gnue-common/gnue/common/dbdrivers/geas: DBdriver.py 

Log message:
        Changed GConf. to GConfig. for all referencing to idl pathing.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-common/gnue/common/dbdrivers/geas/DBdriver.py.diff?cvsroot=OldCVS&tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: gnue/gnue-common/gnue/common/dbdrivers/geas/DBdriver.py
diff -u gnue/gnue-common/gnue/common/dbdrivers/geas/DBdriver.py:1.2 
gnue/gnue-common/gnue/common/dbdrivers/geas/DBdriver.py:1.3
--- gnue/gnue-common/gnue/common/dbdrivers/geas/DBdriver.py:1.2 Thu Jun  7 
20:48:50 2001
+++ gnue/gnue-common/gnue/common/dbdrivers/geas/DBdriver.py     Thu Jun  7 
20:55:10 2001
@@ -21,7 +21,7 @@
 #
 # GEAS database driver
 #
-# $Id: DBdriver.py,v 1.2 2001/06/08 03:48:50 jamest Exp $
+# $Id: DBdriver.py,v 1.3 2001/06/08 03:55:10 dneighbors Exp $
 #
 
 import sys
@@ -35,13 +35,13 @@
 try:
     import CORBA
     if GFOptions.DEBUG:
-       print "IDL being loaded from %s" % (GConf.get('GEASDIR')+"idl/geas.idl")
+       print "IDL being loaded from %s" % 
(GConfig.get('GEASDIR')+"idl/geas.idl")
     # FIXME: Temporary hack to make this run with both orbit-python 0.1.x
     #        (uses load_idl) and 0.2.0 (uses _load_idl)
     if CORBA.__dict__.has_key("_load_idl"):
-        CORBA._load_idl(GConf.get('GEASDIR')+"idl/geas.idl")    # this will 
remain
+        CORBA._load_idl(GConfig.get('GEASDIR')+"idl/geas.idl")    # this will 
remain
     else:
-        CORBA.load_idl(GConf.get('GEASDIR')+"idl/geas.idl")     # this will go 
away
+        CORBA.load_idl(GConfig.get('GEASDIR')+"idl/geas.idl")     # this will 
go away
     # FIXME: end temporary hack
     import GEAS
     
@@ -66,7 +66,7 @@
         # find the object server base object
         self.orb = CORBA.ORB_init(() , CORBA.ORB_ID)
         try:
-            self.ior = 
open(GConf.get('GEASDIR')+"src/geas-server.ior").readline()
+            self.ior = 
open(GConfig.get('GEASDIR')+"src/geas-server.ior").readline()
         except (IOError), ex:
             print "*** Error: ior file for geas was not found...  is geas 
running?"
             print



reply via email to

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