commit-gnue
[Top][All Lists]
Advanced

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

gnue/gnuef INSTALL src/GFForm.py README.oracle ...


From: James Thompson
Subject: gnue/gnuef INSTALL src/GFForm.py README.oracle ...
Date: Mon, 09 Apr 2001 16:26:25 -0700

CVSROOT:        /cvs
Module name:    gnue
Changes by:             01/04/09 16:26:25

Modified files:
        gnuef          : INSTALL 
        gnuef/src      : GFForm.py 
Added files:
        gnuef          : README.oracle 
        gnuef/src/drivers/oracle: DBdriver.py __init__.py 

Log message:
        Added Jason Cater's Oracle driver for gnuef
        Added Jason Cater's patch to get rid of my Argh! error report :)

CVSWeb URLs:
http://subversions.gnu.org/cgi-bin/cvsweb/gnue/gnuef/README.oracle.diff?tr1=NONE&tr2=1.1r1=text&r2=text
http://subversions.gnu.org/cgi-bin/cvsweb/gnue/gnuef/INSTALL.diff?tr1=1.12&tr2=1.13r1=text&r2=text
http://subversions.gnu.org/cgi-bin/cvsweb/gnue/gnuef/src/GFForm.py.diff?tr1=1.84&tr2=1.85r1=text&r2=text
http://subversions.gnu.org/cgi-bin/cvsweb/gnue/gnuef/src/drivers/oracle/DBdriver.py.diff?tr1=NONE&tr2=1.1r1=text&r2=text
http://subversions.gnu.org/cgi-bin/cvsweb/gnue/gnuef/src/drivers/oracle/__init__.py.diff?tr1=NONE&tr2=1.1r1=text&r2=text

Patches:
Index: gnue/gnuef/INSTALL
diff -u gnue/gnuef/INSTALL:1.12 gnue/gnuef/INSTALL:1.13
--- gnue/gnuef/INSTALL:1.12     Sun Apr  8 07:23:08 2001
+++ gnue/gnuef/INSTALL  Mon Apr  9 16:26:24 2001
@@ -42,7 +42,7 @@
 Other software to be installed:
 ===============================
 
-All the following files have to be downloaded and installed. I will
+Some of the following files have to be downloaded and installed. I will
 give short installation instructions and a compact list of the needed
 files and sites at the bottom for convenient reference for
 download. Space requirements are 6856 KByte for the downloaded files
@@ -79,6 +79,8 @@
         Note: The debian package is current too old and does not work
         Untar in some place. Enter in the directory, issue
         "python setup.py build" and as root "python setup.py install".
+
+
 
 PyXML-0.6.x.tar.gz:      pyxml.sourceforge.net/topics/download.html
   ->sourceforge.net/project/showfiles.php?group_id=6473&release_id=13315
Index: gnue/gnuef/src/GFForm.py
diff -u gnue/gnuef/src/GFForm.py:1.84 gnue/gnuef/src/GFForm.py:1.85
--- gnue/gnuef/src/GFForm.py:1.84       Mon Mar 26 20:27:54 2001
+++ gnue/gnuef/src/GFForm.py    Mon Apr  9 16:26:24 2001
@@ -16,6 +16,7 @@
 import string
 import GFDebug
 import GFOptions            
+import traceback
 
 from GFObjects import *
 from GFEvent import *
@@ -252,7 +253,10 @@
         self.databaseDictionary[key].rollback()
       message = "Database commit error:\n%s\n%s " % (sys.exc_info()[0], 
sys.exc_info()[1])
     except:
-      print "GFForm Argh: \n%s\n%s " % (sys.exc_info()[0], sys.exc_info()[1]) 
+      print "\n\nGFForm: Unexpected Exception:" 
+      print '-'*60 
+      traceback.print_exc(file=sys.stdout) 
+      print '-'*60 
 
     return message
 



reply via email to

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