blob: 003501f432c02c09e9e07517e35c914bbc90d64e [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright 2002-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<document>
<properties>
<title>Utility Tag Library</title>
<author email="dion@apache.org">dIon Gillard</author>
</properties>
<body>
<section name="Overview">
<p>
A number of utility tags.
See the <a href="tags.html">tags</a> for more information.
</p>
</section>
<section name="Tips">
<p>
If you would like to use the <code>tokenize</code> tag and tokenize on
whitespace, you may think you could use a delimiter of <code>\n or \t</code>
etc, but those character strings are specific to Java, not XML.
</p>
<p>
Randy Xu came up with a workaround, using XML unicode entities, e.g.
<code><![CDATA[&#xA, &#xD, &#x9, &x20]]></code> for line feed, carriage return,
tab and space respectively.
</p>
</section>
</body>
</document>