*** empty log message ***

svn path=/trunk/boinc/; revision=2225
This commit is contained in:
Karl Chen 2003-09-03 05:58:24 +00:00
parent 8277f2ec44
commit a53c9997bb
2 changed files with 26 additions and 2 deletions

View File

@ -6004,3 +6004,23 @@ David Sept 2 2003
client/ client/
prefs.C,h prefs.C,h
Karl 2003/08/25 - 2003/09/02
- created python database modules
- created sign_executable C program which factors out key signing from
add.C for python use
tools/
Makefile.am
add.py (added)
sign_executable.C (added)
backend_lib.C
backend_lib.h
lib/
crypt.C
crypt.h
py/
boinc_db.py (added)
database.py (added)
Makefile.am

View File

@ -1,7 +1,11 @@
## $Id$ ## $Id$
## database middle-end - defines database object classes with formatting and ## database middle-end. This file is not required for normal database use.
## URL info ## it is useful for debugging scripts; e.g.
##
## print database.Users[1]
##
## will look prettier if you import this module.
import database import database