From 9643086b34749794580895cc84fcd5fa79614554 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 11 Jul 2013 13:01:47 -0500 Subject: [PATCH] TRHEAD->__TRHEAD__ as Jonathan suggested --- VERSION | 2 +- gluon/html.py | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/VERSION b/VERSION index 627cdd40..450a45d7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.6.0-development+timestamp.2013.07.11.11.48.58 +Version 2.6.0-development+timestamp.2013.07.11.13.00.56 diff --git a/gluon/html.py b/gluon/html.py index 2d9fd7a2..8714bc73 100644 --- a/gluon/html.py +++ b/gluon/html.py @@ -98,7 +98,6 @@ __all__ = [ 'TFOOT', 'TITLE', 'TR', -# 'TRHEAD', 'TT', 'URL', 'XHTML', @@ -1641,9 +1640,9 @@ class TR(DIV): self._wrap_components((TD, TH), TD) -class TRHEAD(DIV): +class __TRHEAD__(DIV): """ - TRHEAD Component. + __TRHEAD__ Component, internal only If subcomponents are not TD/TH-components they will be wrapped in a TH @@ -1661,7 +1660,7 @@ class THEAD(DIV): tag = 'thead' def _fixup(self): - self._wrap_components((TRHEAD, TR), TRHEAD) + self._wrap_components((__TRHEAD__, TR), __TRHEAD__) class TBODY(DIV):