This namespace provides default html-texts, which are used from the semiserver-programs. More...


Functions

string warning (string val)
string getHTMLHeader ()
 Create the HTML Header which is used on every page.
string getMenu (char *currMenu, uint pageSize)
 Create the top-menu which is used on every page.
string getHTMLFooter (string refreshForm="")
 Create the HTML Footer which is used on every page.
void createPageSizeForm (string formheader, uint pageSize)
 Create a form which can be used to change the page size.
void createQTEForm (string name, string uri, uint width, uint height)
 Create a form which can be used to open a new window with the embedded quicktime control.
string error (string val)
 Print a HTML-formatted error.

Detailed Description

This namespace provides default html-texts, which are used from the semiserver-programs.

Author:
Klaus Schoeffmann


Function Documentation

string warning string  val  )  [inline]
 

Returns:
a HTML-formatted string, containing a warning, filled with value of the parameter
Definition at line 479 of file SemiGlobals.hpp.
00480 { 00481 string str = "<br><font class=\"warning\">WARNING: "; 00482 str.append(val); 00483 str.append("</font>"); 00484 00485 return str; 00486 }