|
 |
Tag Library Configuration
|

The tag library configuration file is typically provided by the tag library
vendor. In general, users of the tag library will only need to configure
the taglib to point to the vendor's configuration.
resin.conf
<web-app>
<taglib taglib-uri='/mytag/test'
taglib-location='/MyTag.tlb'/>
</web-app>
|
As a shortcut during development, you can pull the taglib definition
into the resin.conf:
<web-app>
<taglib taglib-uri='/mytag/test'>
<tag name='bar' tagclass='test.NoTag'/>
<tag name='foo' tagclass='test.MyTag' teiclass='test.MyTagInfo'/>
</web-app>
|
taglib
|
taglib |
Defines a tag library. |
tag |
Defines a tag. |
attribute |
Defines a tag attribute. |
Defines a tag library. The taglib declaration will contain
several tag declarations.
version |
Version of the tag library.
|
jspversion |
Expected JSP version
|
shortname |
A short name for the tag library. For IDEs, this may
give a suggested tag prefix.
|
uri |
A unique identifier for the tag library.
|
info |
An information string for the tag library.
|
Defines a tag. The tag may contain several attribute
declarations.
name |
The tag name
|
tagclass |
The tag class
|
teiclass |
The TagExtraInfo class (used for validation and
declaring implicit variables.
|
bodycontent |
False if the tag should always be empty.
|
info |
An information string for the tag.
|
Defines a tag attribute.
name |
The attribute name.
|
required |
True if the tag is required.
|
rtexprvalue |
True if the tag can use a real time expression.
|
Copyright © 1998-2000 Caucho Technology. All rights reserved.
Last modified: Tue, 25 Apr 2000 12:33:37 -0700 (PDT)
|