You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by aj...@apache.org on 2003/10/03 23:48:56 UTC

cvs commit: jakarta-gump/python/gump document.py

ajack       2003/10/03 14:48:56

  Modified:    python/gump document.py
  Log:
  Title classpath section
  
  Revision  Changes    Path
  1.62      +8 -3      jakarta-gump/python/gump/document.py
  
  Index: document.py
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/document.py,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- document.py	3 Oct 2003 21:10:36 -0000	1.61
  +++ document.py	3 Oct 2003 21:48:56 -0000	1.62
  @@ -652,14 +652,19 @@
       documentProjectContextList(x,"Project Dependees",projectcontext.dependees)            
       documentProjectContextList(x,"Optional Project Dependees",projectcontext.optionees)                  
   
  -    startSectionXDoc(x,title)
  +    startSectionXDoc(x,'Classpath')
       startTableXDoc(x)
  -    x.write('      <tr><th>Path Entry</th></tr>')
  -       
  +    x.write('      <tr><th>Path Entry</th></tr>')       
       classpath=getClasspathList(project,workspace)
  +    paths=0
       for path in classpath:
           startTableRowXDoc(x)    
           insertTableDataXDoc(x,path)
  +        endTableRowXDoc(x)
  +        paths+=1
  +    if not paths:        
  +        startTableRowXDoc(x)    
  +        insertTableDataXDoc(x,"None")
           endTableRowXDoc(x)
       endTableXDoc(x)
       endSectionXDoc(x)