Download O2 Web User Manual (O2C)
Transcript
error in class O2WebInteractor
footer
Summary
Adds a constant footer to the bottom of each page.
Syntax
footer:bits
Arguments
None.
Description
This method adds a constant footer to the bottom of each page. It is called after
each time HTML is produced if the TheO2WebInteractor persistent root is
defined and if a method html_footer has not been defined in the class to
which belongs the object computed by the URL query.
There is no default implementation for this method.
This method is used to add constant elements to the bottom of each page
returned by O2Web.
Returns
An O2 bits value containing a piece of HTML text to be inserted at the bottom of
each page.
Example
A simple footer can be written as follows:
method body footer:bits
{
o2 bits footer;
footer += "<hr>";
footer +=
"<address><center> O2 Technology
</center></address>";
footer += "<hr>";
return footer;
};
O2Web O2C User Manual
95