
If you are using extensions in your site, you'll want to know
which XML tags are returned by the extension so you can design
templates for the tags. This is quite easy, just use the following tags:
 | | 01 |  | <page> |
| 02 |  | | <!-- The normal content is placed here --> |
| 03 |  | | <randy:setOption option="transform">off</randy:setOption> |
| 04 |  | | <string:htmlspecialchars> |
| 05 |  | | | <!-- Place your extension tags here --> |
| 06 |  | | | <dbc:query connection="foo">SELECT * FROM patRandyExample ORDER BY foo DESC</dbc:query> |
| 07 |  | | </string:htmlspecialchars> |
| 08 |  | | <randy:setOption option="transform">on</randy:setOption> |
| 09 |  | | <!-- Rest of content is placed here. --> |
| 10 |  | </page> |
|  |
This will only parse but not transform the extension tag and makes to visible
to your browser by using htmlspecialchars(). In the above example you would get XML
code consisting of <result>, <row> and <field> tags.

|