Component webinclude
Component index
Section index

Component webinclude


Search

Type

Function

Summary

Include a text file in the HTML stream and replace some tokens

Description

A token is defined by surrounding it by two pound like this: ##token##. 9 predefined token exist: mark1 to mark9. They correspond to the functag mark1 to mark2.

void mark1 ()
void mark2 ()
void mark3 ()
void mark4 ()
void mark5 ()
void mark6 ()
void mark7 ()
void mark8 ()
void mark9 ()
void other (const char *mark)

Functags

void mark1 () Optional

called when the token mark1 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark2 () Optional

called when the token mark2 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark3 () Optional

called when the token mark3 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark4 () Optional

called when the token mark4 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark5 () Optional

called when the token mark5 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark6 () Optional

called when the token mark6 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark7 () Optional

called when the token mark7 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark8 () Optional

called when the token mark8 is seen in the input file

The function generated whatever HTML code to replace the token.

void mark9 () Optional

called when the token mark9 is seen in the input file

The function generated whatever HTML code to replace the token.

void other (const char *mark) Optional

called when the token is seen in the input file and no markN functag exist

The function generated whatever HTML code to replace the token. If a given markN functag is not defined, then the other functag is called to service the request.