ajack 2004/07/21 21:20:33
Modified: python/gump/document/xdocs documenter.py
Log:
Count 'unbuilt dependencies' on pre-reqs, so we know how 'far' they
are from being built, but do so *w/o* a side effect bug.
Revision Changes Path
1.22 +3 -2 gump/python/gump/document/xdocs/documenter.py
Index: documenter.py
===================================================================
RCS file: /home/cvs/gump/python/gump/document/xdocs/documenter.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- documenter.py 21 Jul 2004 14:54:34 -0000 1.21
+++ documenter.py 22 Jul 2004 04:20:33 -0000 1.22
@@ -1095,9 +1095,10 @@
projectRow.createData(project.getFullDependencyCount())
+ # Count unbuilt dependencies
unbuilt=0
- for project in project.getFullDependencyProjectList():
- if not project.isSuccess():
+ for dep in project.getFullDependencyProjectList():
+ if not dep.isSuccess():
unbuilt+=1
projectRow.createData(unbuilt)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]