dabodoc Commit
Revision 29
Date: 2005-10-18 10:29:47 -0700 (Tue, 18 Oct 2005)
Author: paul
Changed:
U trunk/api/getDaboModules.py
Log:
The automatic api doc generation hasn't been working since I removed
dabo.common. This attempts to fix that.
Diff:
Modified: trunk/api/getDaboModules.py
===================================================================
--- trunk/api/getDaboModules.py 2005-10-06 21:48:33 UTC (rev 28)
+++ trunk/api/getDaboModules.py 2005-10-18 17:29:47 UTC (rev 29)
@@ -1,5 +1,5 @@
import dabo
-import dabo.common
+from dabo.dObject import dObject
dabo.ui.loadUI("wx")
@@ -61,12 +61,12 @@
import dabo.db.dbPostgreSQL
import dabo.db.dbFirebird
import dabo.db.dbSQLite
- for module in (dabo, dabo.dSecurityManager, dabo.common,
dabo.db.dbPostgreSQL,
+ for module in (dabo, dabo.dSecurityManager, dabo.db.dbPostgreSQL,
dabo.db, dabo.biz, dabo.ui, dabo.db.dbMySQL,
dabo.db.dbSQLite,
dabo.db.dbFirebird):
for i in dir(module):
c = module.__dict__[i]
- if type(c) == type and issubclass(c,
dabo.common.dObject):
+ if type(c) == type and issubclass(c, dObject):
if c not in classes:
classes.append(c)
def sortfunc(a,b):
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev