Table of Contents
Introduction
Information Tags
String Tags
Variable Tags
URL Tags
If Tags
Graphics Tags
Database Tags
Programming Tags
Supports System
SSI
htaccess
Image Maps
Appendix
|
<list-tags>
|
 |
<list-tags> is defined in the Main RXML parser module.
Lists all available RXML tags.
|
|
Attributes
- verbose
-
Lists the tags with their help texts as well.
Example
source code
|
<list-tags>
|
 |
|
result
|
Tags at prioity level 0: <!--#config> <!--#echo> <!--#exec> <!--#flastmod> <!--#fsize> <!--#include> <!--#set> </ilayer> </layer> </table> </td> <accept-language> <accessed> <append>
<append>
|
 |
<append> is defined in the Main RXML parser module.
Append a value to a variable.
|
|
Attributes
- variable=variable
-
The variable to append to.
- debug
-
Provide debug messages in case the operation fails. <append>
will normally fail silently.
- define=define
-
Append the contents of this define.
- from=variable
-
Append the value of the named variable.
- other=variable
-
Append the value of this other variable. This is mostly useful
from within output tags like <sqloutput> where all
columns from the sql result will be available as other
variables.
- value=string
-
Append the variable to this value.
Example
source code
|
<set variable=foo value="Hello">
<append variable=foo value=" World">
<insert variable=foo>
|
 |
|
result
|
Hello World
|
|
|
| | |