Update of /cvsroot/sqlobject/SQLObject/SQLObject
In directory sc8-pr-cvs1:/tmp/cvs-serv893/SQLObject
Modified Files:
Col.py SQLObject.py
Log Message:
Removed references to util module (which has been removed)
Index: Col.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/Col.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Col.py 21 Apr 2003 22:37:16 -0000 1.14
--- Col.py 22 Apr 2003 03:10:00 -0000 1.15
***************
*** 4,8 ****
import SQLBuilder
- from util import splitWords
import re
import Constraints
--- 4,7 ----
***************
*** 77,88 ****
def autoConstraints(self):
return []
-
- def generateDBName(self, name):
- if name.endswith('ID'):
- # We'd get row_i_d if we didn't do this (or
- # you'd be required to use names like rowId)
- return splitWords(name[:-2]) + "_id"
- else:
- return splitWords(name)
def _get_default(self):
--- 76,79 ----
Index: SQLObject.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/SQLObject/SQLObject.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** SQLObject.py 22 Apr 2003 02:27:10 -0000 1.27
--- SQLObject.py 22 Apr 2003 03:10:01 -0000 1.28
***************
*** 26,30 ****
import Col
import Style
- from util import splitWords
import sys
--- 26,29 ----
|