module Synopsis.Formatters.HTML.View
class Format
Default and base class for formatting a view layout. The Format class basically defines the HTML used at the start and end of the view. The default creates an XHTML compliant header and footer with a proper title, and link to the stylesheet.
Format-inheritance Scopes/Synopsis/Formatters/HTML/View/Template.html Scopes/Synopsis/Formatters/Texinfo/MenuMaker.html Scopes/Synopsis/Formatters/HTML/Fragments/DeclarationCommenter/DeclarationCommenter.html
-Methods
  init(self, processor, prefix)
references
source code
  view_header(self, os, title, body, headextra, view)
references
source code

-

Called to output the view header to the given output stream. @param os a file-like object (use os.write()) @param title the title of this view @param body the body tag, which may contain extra parameters such as onLoad scripts, and may also be empty eg: for the frames index @param headextra extra html to put in the head section, such as scripts
  view_footer(self, os, body)
references
source code

-

Called to output the view footer to the given output stream. @param os a file-like object (use os.write()) @param body the close body tag, which may be empty eg: for the frames index