Update of /cvsroot/freevo/freevo/src/www
In directory sc8-pr-cvs1:/tmp/cvs-serv571/src/www
Modified Files:
web_types.py
Log Message:
<thead>, <tbody> and <tfoot> support.
Index: web_types.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/www/web_types.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** web_types.py 6 Sep 2003 22:11:40 -0000 1.12
--- web_types.py 12 Sep 2003 19:39:35 -0000 1.13
***************
*** 10,13 ****
--- 10,16 ----
# -----------------------------------------------------------------------
# $Log$
+ # Revision 1.13 2003/09/12 19:39:35 gsbarbieri
+ # <thead>, <tbody> and <tfoot> support.
+ #
# Revision 1.12 2003/09/06 22:11:40 gsbarbieri
# Rewoked Popup box so it looks better in Internet Exploder.
***************
*** 142,155 ****
def tableRowOpen(self, opts=''):
! self.res += " <tr "+opts+">\n"
def tableRowClose(self):
! self.res += " </tr>\n"
def tableCell(self, data='', opts=''):
! self.res += " <td "+opts+">"+data+"</td>\n"
--- 145,182 ----
+ def tableHeadOpen(self, opts=''):
+ self.res += " <thead "+opts+">\n"
+
+
+ def tableHeadClose(self, opts=''):
+ self.res += " </thead>\n"
+
+ def tableBodyOpen(self, opts=''):
+ self.res += " <tbody "+opts+">\n"
+
+
+ def tableBodyClose(self, opts=''):
+ self.res += " </tbody>\n"
+
+
+ def tableFootOpen(self, opts=''):
+ self.res += " <tfoot "+opts+">\n"
+
+
+ def tableFootClose(self, opts=''):
+ self.res += " </tfoot>\n"
+
+
+
def tableRowOpen(self, opts=''):
! self.res += " <tr "+opts+">\n"
def tableRowClose(self):
! self.res += " </tr>\n"
def tableCell(self, data='', opts=''):
! self.res += " <td "+opts+">"+data+"</td>\n"
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog