<?xml version="1.0"?>
<!--
Author: Edgar de Graaf
Date: 22-8-2002
Ordina Utopics BV
-->
<taglibrary>
	<namespace>
		<url>http://apache.org/xsp</url>
		<tags>
			<tag>
				<name>ATTRIBUTE</name>
				<attribute>
					<name>name</name>
					<description>contains the attribute name of which the value is set</description>
				</attribute>
				<description>This tag is used to make attributes dynamic. It enables you to mix attributes with XSP and programming language like Java via <jump>LOGIC</jump></description>
				<example><![CDATA[
<input>
  <xsp:attribute name="name">home<xsp:expr>i</xsp:expr></xsp:attribute>
</input>

If i=1 it will result in:
<input name="home1"/>
				]]></example>
			</tag>
			<tag>
				<name>LOGIC</name>
				<description>LOGIC enables you to mix programming code with XML elements</description>
				<example>None. [TO DO]</example>
			</tag>
		</tags>
	</namespace>
	<namespace>
			<url>http://apache.org/xsp/request/2.0</url>
			<tags>
				<tag>
					<name>GET-REQUEST-URL</name>
					<description>This will give you the current URL. This is without the parameter list, which you get with <jump>GET-QUERY-STRING</jump></description>
					<example>None. [TO DO]</example>
				</tag>
				<tag>
					<name>GET-QUERY-STRING</name>
					<description>The query string is the list of parameter you place behind the ? in the URL.</description>
					<example>None. [TO DO]</example>
				</tag>
			</tags>
	</namespace>
</taglibrary>
