ajack       2003/10/26 09:00:25

  Modified:    python/gump context.py document.py
  Log:
  Confused the math, now it doesn't over count ... over and over.
  
  Revision  Changes    Path
  1.29      +3 -2      jakarta-gump/python/gump/context.py
  
  Index: context.py
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/context.py,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- context.py        26 Oct 2003 16:00:34 -0000      1.28
  +++ context.py        26 Oct 2003 17:00:25 -0000      1.29
  @@ -783,9 +783,10 @@
           if not summary: 
               summary=Summary()
           
  -        # Subordinates are projects
  +        # Subordinates are modules, get their simmary
  +        # information into this summary
           for ctxt in self:
  -            summary.addSummary(ctxt.getProjectSummary(summary))
  +            ctxt.getProjectSummary(summary)
               
           return summary
                       
  
  
  
  1.94      +1 -1      jakarta-gump/python/gump/document.py
  
  Index: document.py
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/document.py,v
  retrieving revision 1.93
  retrieving revision 1.94
  diff -u -r1.93 -r1.94
  --- document.py       26 Oct 2003 15:22:22 -0000      1.93
  +++ document.py       26 Oct 2003 17:00:25 -0000      1.94
  @@ -780,7 +780,7 @@
   def documentSummary(x,summary,description='Project(s) Summary'):
       if not summary or not summary.projects: return
       startSectionXDoc(x,description)
  -    startTableXDoc(x,'Project Statistics')
  +    startTableXDoc(x)
       
       startTableRowXDoc(x)        
       insertTableHeaderXDoc(x, 'Projects')
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to