diff --git a/presentation/Html.inc b/presentation/Html.inc
index 11eefec..d7b8084 100644
--- a/presentation/Html.inc
+++ b/presentation/Html.inc
@@ -15,6 +15,10 @@ function startTable($border, $width) {
return "
\n";
}
+function tableCaption($sCaption) {
+ return "$sCaption\n";
+}
+
function stopTable() {
return "
\n";
}
@@ -23,14 +27,15 @@ function tableRow($align, $bgcolor, $html) {
return "$html
\n";
}
+
function tableHeading($cssClassName, $colspan, $text) {
return "\n
$text\n
| \n";
}
-function tableData($html) {
- return "$html | \n";
+function tableData($html, $iColspan = 1) {
+ return "$html | \n";
}
function tableCssData($html, $cssClass) {
@@ -41,6 +46,10 @@ function startTableRowCell() {
return "| \n";
}
+function textInput($sId, $sValue) {
+ return "\n";
+}
+
function endTableRowCell() {
return " |
\n";
}
@@ -53,4 +62,36 @@ function generateImage($sImageSource) {
return "
";
}
+function getNumberStringValidationJavaScript() {
+ return "\n";
+}
+
?>