Implementation of PRePTagPARSE

    This is a subclass of PRePTagCode which defines the PARSE tag. The PARSE tag opens a specified file, parses this file and compiles a certain tag. After that the taglist is resized to the normal size.

    Constructor:

    PRePTagPARSE()
    names the tag "PARSE"

    Methods:

    compile(Session)
    gets the filename (first argument)and opens the file. It gets the PRePMain object from the session object and calls the putFile() method - this will parse the file. Then it gets the tag which is to be executed (second argument) and compiles it. After that the taglist is to be resized to the normal size.

    Related sites:
How the PARSE Tag works
Back