Introduction
  Publishing web pages
  RXML
  Information tags
  String tags
  Variable tags
    <set>
    <unset>
    <cset>
    <append>
    <define>
    <undefine>
    <insert>
    <use>
    <formoutput>
  URL tags
  If tags
  Graphics tags
  Database tags
  LDAP
  Programming tags
  SSI tags
  Image maps
  IntraSeek
  LogView
  Templates
  Navigation
  SiteBuilder tags
  Supports system
  Security
  Appendix
 
<use> Main RXML module

 

Reads tags, container tags and defines from a file or package.

 

Attributes

file=path
Reads all tags and container tags and defines from the file.

This file will be fetched just as if someone had tried to fetch it with an HTTP request. This makes it possible to use Pike script results and other dynamic documents. Note, however, that the results of the parsing are heavily cached for performance reasons. If you do not want this cache, use <insert file=... nocache> instead.

package=name
Reads all tags, container tags and defines from the given package. Packages are files located in local/rxml_packages/.

By default, the package gtext_headers is available, that replaces normal headers with graphical headers. It redefines the h1, h2, h3, h4, h5 and h6 container tags.

The <use> tag is much faster than the <include>, since the parsed definitions is cached.

 

Example


<use package=gtext_headers>

<h1>Hello World</h1>

Hello World