ajack       2004/07/13 16:01:31

  Modified:    python/gump/document/xdocs xdoc.py documenter.py
  Log:
  Too terse...
  
  Revision  Changes    Path
  1.7       +6 -6      gump/python/gump/document/xdocs/xdoc.py
  
  Index: xdoc.py
  ===================================================================
  RCS file: /home/cvs/gump/python/gump/document/xdocs/xdoc.py,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- xdoc.py   13 Jul 2004 18:44:36 -0000      1.6
  +++ xdoc.py   13 Jul 2004 23:01:31 -0000      1.7
  @@ -534,13 +534,13 @@
               
       def start(self):
           if self.config.isXhtml():    
  -            self.context.writeLineIndented('<table><tr><td class="NOTE">')
  +            self.context.writeLineIndented('<p><table><tr><td class="NOTE">')
           else:
               self.context.writeLineIndented('<note>')    
           
       def end(self):
           if self.config.isXhtml():    
  -            self.context.writeLine('</td></tr></table>')
  +            self.context.writeLine('</td></tr></table></p>')
           else:
               self.context.writeLine('</note>')
           
  @@ -570,13 +570,13 @@
           
       def start(self):
           if self.config.isXhtml():    
  -            self.context.writeLineIndented('<table><tr><td class="WARN">')
  +            self.context.writeLineIndented('<p><table><tr><td class="WARN">')
           else:
               self.context.writeLineIndented('<warning>')    
           
       def end(self):
           if self.config.isXhtml():    
  -            self.context.writeLine('</td></tr></table>')
  +            self.context.writeLine('</td></tr></table></p>')
           else:
               self.context.writeLine('</warning>')
           
  @@ -601,13 +601,13 @@
           
       def start(self):
           if self.config.isXhtml():    
  -            self.context.writeIndented('<pre clas="CODE">')
  +            self.context.writeIndented('<p><pre clas="CODE">')
           else:
               self.context.writeIndented('<source>')
           
       def end(self):
           if self.config.isXhtml():    
  -            self.context.writeIndented('</pre>')
  +            self.context.writeIndented('</pre></p>')
           else:
               self.context.writeIndented('</source>')
           
  
  
  
  1.16      +7 -7      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.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- documenter.py     13 Jul 2004 21:43:31 -0000      1.15
  +++ documenter.py     13 Jul 2004 23:01:31 -0000      1.16
  @@ -777,8 +777,8 @@
               It started at %s. As of this moment (%s), %s modules have been updated, 
and %s projects built.""" \
                   % (self.workspace.getStartDateTime(), time.strftime('%H:%M:%S'), 
modules, projects ))
                   
  -            document.createNote("""Only projects with significant information 
  -            (e.g a recent change of state, a failure, etc.) are listed at 
runtime.""")
  +            #document.createNote("""Only projects with significant information 
  +            #(e.g a recent change of state, a failure, etc.) are listed at 
runtime.""")
                
           else:
               document.createNote("""This Gump run is complete. 
  @@ -839,11 +839,11 @@
           pcount=0
           for project in self.gumpSet.getCompletedProjects():
                          
  -            if realTime and \
  -                (project.getState()==STATE_FAILED or \
  -                    ((project.getState()<>STATE_PREREQ_FAILED) and \
  -                     (project.getStats().sequenceInState < 
INSIGNIFICANT_DURATION))):
  -                continue
  +            #if realTime and \
  +            #    (project.getState()==STATE_FAILED or \
  +            #        ((project.getState()<>STATE_PREREQ_FAILED) and \
  +            #         (project.getStats().sequenceInState < 
INSIGNIFICANT_DURATION))):
  +            #    continue
                   
               pcount+=1
       
  
  
  

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

Reply via email to