You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
4.2 KiB
114 lines
4.2 KiB
9 years ago
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||
|
|
||
|
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
|
||
|
version="2.0">
|
||
|
|
||
9 years ago
|
<description>Libresonic tag library</description>
|
||
|
<display-name>Libresonic tag library</display-name>
|
||
9 years ago
|
<tlib-version>1.1</tlib-version>
|
||
|
<short-name>sub</short-name>
|
||
9 years ago
|
<uri>http://libresonic.org/taglib/sub</uri>
|
||
9 years ago
|
|
||
|
<tag>
|
||
|
<description>
|
||
|
Creates a URL with optional query parameters. Similar to 'c:url', but
|
||
|
you may specify which character encoding to use for the URL query
|
||
|
parameters. If no encoding is specified, the following steps are performed:
|
||
|
a) Parameter values are encoded as the hexadecimal representation of the UTF-8 bytes of the original string.
|
||
|
b) Parameter names are prepended with the suffix "Utf8Hex"
|
||
|
</description>
|
||
|
<name>url</name>
|
||
9 years ago
|
<tag-class>org.libresonic.player.taglib.UrlTag</tag-class>
|
||
9 years ago
|
<body-content>JSP</body-content>
|
||
|
<attribute>
|
||
|
<description>
|
||
|
Name of the exported scoped variable for the
|
||
|
processed url. The type of the scoped variable is
|
||
|
String.
|
||
|
</description>
|
||
|
<name>var</name>
|
||
|
<required>false</required>
|
||
|
<rtexprvalue>false</rtexprvalue>
|
||
|
</attribute>
|
||
|
<attribute>
|
||
|
<description>URL to be processed.</description>
|
||
|
<name>value</name>
|
||
|
<required>false</required>
|
||
|
<rtexprvalue>true</rtexprvalue>
|
||
|
</attribute>
|
||
|
<attribute>
|
||
|
<description>The encoding to use. Default is ISO-8859-1.</description>
|
||
|
<name>encoding</name>
|
||
|
<required>false</required>
|
||
|
<rtexprvalue>true</rtexprvalue>
|
||
|
</attribute>
|
||
|
</tag>
|
||
|
|
||
|
<tag>
|
||
|
<description>Adds a parameter to a containing 'url' tag.</description>
|
||
|
<name>param</name>
|
||
9 years ago
|
<tag-class>org.libresonic.player.taglib.ParamTag</tag-class>
|
||
9 years ago
|
<body-content>empty</body-content>
|
||
|
<attribute>
|
||
|
<description>Name of the query string parameter.</description>
|
||
|
<name>name</name>
|
||
|
<required>true</required>
|
||
|
<rtexprvalue>true</rtexprvalue>
|
||
|
</attribute>
|
||
|
<attribute>
|
||
|
<description>Value of the parameter.</description>
|
||
|
<name>value</name>
|
||
|
<required>false</required>
|
||
|
<rtexprvalue>true</rtexprvalue>
|
||
|
</attribute>
|
||
|
</tag>
|
||
|
|
||
|
<tag>
|
||
|
<description>
|
||
|
Converts a byte-count to a formatted string suitable for display to the user, with respect
|
||
|
to the current locale.
|
||
|
</description>
|
||
|
<name>formatBytes</name>
|
||
9 years ago
|
<tag-class>org.libresonic.player.taglib.FormatBytesTag</tag-class>
|
||
9 years ago
|
<body-content>JSP</body-content>
|
||
|
<attribute>
|
||
|
<description>The byte count.</description>
|
||
|
<name>bytes</name>
|
||
|
<required>true</required>
|
||
|
<rtexprvalue>true</rtexprvalue>
|
||
|
</attribute>
|
||
|
</tag>
|
||
|
|
||
|
<tag>
|
||
|
<description>
|
||
|
Renders a Wiki text with markup to HTML, using the Radeox render engine.
|
||
|
</description>
|
||
|
<name>wiki</name>
|
||
9 years ago
|
<tag-class>org.libresonic.player.taglib.WikiTag</tag-class>
|
||
9 years ago
|
<body-content>JSP</body-content>
|
||
|
<attribute>
|
||
|
<description>The Wiki markup text.</description>
|
||
|
<name>text</name>
|
||
|
<required>true</required>
|
||
|
<rtexprvalue>true</rtexprvalue>
|
||
|
</attribute>
|
||
|
</tag>
|
||
|
|
||
|
<tag>
|
||
|
<description>
|
||
|
Escapes the characters in a string using JavaScript rules.
|
||
|
</description>
|
||
|
<name>escapeJavaScript</name>
|
||
9 years ago
|
<tag-class>org.libresonic.player.taglib.EscapeJavaScriptTag</tag-class>
|
||
9 years ago
|
<body-content>JSP</body-content>
|
||
|
<attribute>
|
||
|
<description>The string to escape.</description>
|
||
|
<name>string</name>
|
||
|
<required>true</required>
|
||
|
<rtexprvalue>true</rtexprvalue>
|
||
|
</attribute>
|
||
|
</tag>
|
||
|
|
||
|
</taglib>
|