Go to the first, previous, next, last section, table of contents.


Style parameter

All the cgi-bin accept the style parameter. It is used by the template handling library to locate the appropriate template for a given application. The template configuration file is searched for a template file map whose name equals the value of the style parameter. If no map is found, the template file name is the default file name. If a map is found but no entry exist for the default file name, the default file name is used. If an entry exists for the default file name, the file name associated with it is used in place of the default file name.

Here a portion of the template.conf file that illustrate this behavior.

style
        custom
                sqledit_search.html = custom_search.html
        end
end

If the value of style is custom, the results of a search will be displayed using the custom_search.html template instead of the sqledit_search.html template. For a definition of the template.conf file, See section Template configuration file.


Go to the first, previous, next, last section, table of contents.