commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gnue-reports/src/adapters/filters/SimpleTabulat...


From: Jan Ischebeck
Subject: gnue-reports/src/adapters/filters/SimpleTabulat...
Date: Mon, 03 Nov 2003 15:43:29 -0500

CVSROOT:        /cvsroot/gnue
Module name:    gnue-reports
Branch:         
Changes by:     Jan Ischebeck <address@hidden>  03/11/03 15:43:29

Modified files:
        src/adapters/filters/SimpleTabulation/tabulator/formatters: 
                                                                    html.py 

Log message:
        Never commit before saving!

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gnue/gnue-reports/src/adapters/filters/SimpleTabulation/tabulator/formatters/html.py.diff?tr1=1.6&tr2=1.7&r1=text&r2=text

Patches:
Index: 
gnue-reports/src/adapters/filters/SimpleTabulation/tabulator/formatters/html.py
diff -c 
gnue-reports/src/adapters/filters/SimpleTabulation/tabulator/formatters/html.py:1.6
 
gnue-reports/src/adapters/filters/SimpleTabulation/tabulator/formatters/html.py:1.7
*** 
gnue-reports/src/adapters/filters/SimpleTabulation/tabulator/formatters/html.py:1.6
 Mon Nov  3 15:36:06 2003
--- 
gnue-reports/src/adapters/filters/SimpleTabulation/tabulator/formatters/html.py 
    Mon Nov  3 15:43:28 2003
***************
*** 73,79 ****
  
    def EndReportTitle(self, reporttitle):
      self._reporttitle = reporttitle
!     self.writeout('  <h1>%s</h1>\n<hr>\n' % 
self._reporttitle.encode(gConfig('textEncoding'),'replace'))
  
    def BeginSection(self):
      pass
--- 73,79 ----
  
    def EndReportTitle(self, reporttitle):
      self._reporttitle = reporttitle
!     self.writeout('  <h1>%s</h1>\n<hr>\n' % self._reporttitle)
  
    def BeginSection(self):
      pass
***************
*** 86,92 ****
      
    def EndSectionTitle(self, sectiontitle):
      self._sectiontitle = sectiontitle
!     self.writeout('  <h2>%s</h2>\n' % 
self._sectiontitle.encode(gConfig('textEncoding'),'replace'))
  
    def BeginTable(self):
      self._odd = 1
--- 86,92 ----
      
    def EndSectionTitle(self, sectiontitle):
      self._sectiontitle = sectiontitle
!     self.writeout('  <h2>%s</h2>\n' % self._sectiontitle)
  
    def BeginTable(self):
      self._odd = 1
***************
*** 108,114 ****
    def EndColHead(self, colhead, width, alignment=None):
      self._colalign.append(alignment)
      self.writeout('align="%s">%s</th>\n' % (alignment,
!                                               
colhead.encode(gConfig('textEncoding'),'replace')))
  
    def BeginRow(self, rowtype=None):
      self._rowtype = rowtype
--- 108,114 ----
    def EndColHead(self, colhead, width, alignment=None):
      self._colalign.append(alignment)
      self.writeout('align="%s">%s</th>\n' % (alignment,
!                                               colhead))
  
    def BeginRow(self, rowtype=None):
      self._rowtype = rowtype
***************
*** 131,138 ****
        self.writeout('        <td class="item" ')
  
    def EndCol(self, col, index):
!     self.writeout('align="%s">%s</td>\n' % (self._colalign[index],
!                                               
col.encode(gConfig('textEncoding'),'replace')))
  
  
  STYLE = """body {
--- 131,137 ----
        self.writeout('        <td class="item" ')
  
    def EndCol(self, col, index):
!     self.writeout('align="%s">%s</td>\n' % (self._colalign[index],col))
  
  
  STYLE = """body {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]