dabodoc Commit
Revision 66
Date: 2011-03-17 09:17:15 -0700 (Thu, 17 Mar 2011)
Author: Paul
Trac: http://trac.dabodev.com/changeset/66

Changed:
U   trunk/api/makeDaboApiDoc.py

Log:
Fixed report writer api doc generation to include dabo.lib.reportWriter.


Diff:
Modified: trunk/api/makeDaboApiDoc.py
===================================================================
--- trunk/api/makeDaboApiDoc.py 2011-03-06 10:58:41 UTC (rev 65)
+++ trunk/api/makeDaboApiDoc.py 2011-03-17 16:17:15 UTC (rev 66)
@@ -330,9 +330,12 @@
        eventList = []
        methodList = []
        funcList = []
+       onlyDabo = True
        if type(cls) == type:
                # cls is actually a class (good)
-               propList = joinDynamicProps(cls.getPropertyList(refresh=True, 
onlyDabo=True))
+               if cls.__name__ == "dReportWriter":
+                       onlyDabo = False
+               propList = joinDynamicProps(cls.getPropertyList(refresh=True, 
onlyDabo=onlyDabo))
                eventList = cls.getEventList()
                methodList = cls.getMethodList(refresh=True)
                html += getListing("Properties", propList)



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: 
http://leafe.com/archives/byMID/[email protected]

Reply via email to