docs.roxen.com
main | demo | docs
download | community | pike
© 2000 Roxen Internet Software
Suggestions, Comments or Complaints
manuals@roxen.com

DocsRoxen2.0Web Site Creator ManualProgramming tags
   

  • <awizard>
  • <cache>
  • <crypt>
  • <debug>
  • <gauge>
  • <maketag>
  • <nooutput>
  • <noparse>
  • <pike>
  • <set-max-cache>
  • <trace>
  • <maketag></maketag>

    This tag creates tags. The contents of the container will be put into the contents of the produced container.

    Attributes

    name
    name=string
    The name of the tag.
    noxml
    Tags should not be terminated with a trailing slash.
    type
    type={tag, container} (tag)
    What kind of tag should be produced.
    Inside the maketag container the container attrib is defined. It is used to add attributes to the produced tag. It has the required attribute attrib, which is the name of the attribute. The contents of the attribute container will be the attribute value. E.g.
    <eval>
    <maketag name="replace" type="container">
     <attrib name="from">A</attrib>
     <attrib name="to">U</attrib>
     MAD
    </maketag>
    </eval>
    
    MUD