-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.tld
31 lines (31 loc) · 1.26 KB
/
resource.tld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.1" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd">
<tlib-version>1.0</tlib-version>
<short-name>resource</short-name>
<uri>http://localhost:8080/static/resource</uri>
<tag>
<name>appModule</name>
<tag-class>bto.ring.tags.resources.AppModule</tag-class>
<body-content>empty</body-content>
<info>This tag includes all the CSS or JS files passed in the fileArray, in that order.</info>
<attribute>
<name>path</name>
<required>true</required>
<description>Path of file</description>
<rtexprvalue>false</rtexprvalue>
</attribute>
<attribute>
<name>type</name>
<required>false</required>
<description>Type, module (jspf) or resource (JS, CSS)</description>
<rtexprvalue>false</rtexprvalue>
</attribute>
<attribute>
<name>position</name>
<required>false</required>
<description>Position to be loaded, HEAD or BODY</description>
<rtexprvalue>true</rtexprvalue>
<type>bto.ring.tags.resources.AppModule.POSITIONS</type>
</attribute>
</tag>
</taglib>