app.tld
3.07 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="UTF-8"?>
<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">
<description>Application Specific JSP Tag Library</description>
<tlib-version>1.0</tlib-version>
<short-name>a</short-name>
<tag>
<name>errors</name>
<tag-class>com.dianping.cat.report.view.ErrorsTag</tag-class>
<body-content>JSP</body-content>
</tag>
<tag-file>
<name>base</name>
<path>/WEB-INF/tags/base.tag</path>
</tag-file>
<tag-file>
<name>base_with_nav</name>
<path>/WEB-INF/tags/base_with_nav.tag</path>
</tag-file>
<tag-file>
<name>storage_base</name>
<path>/WEB-INF/tags/storage_base.tag</path>
</tag-file>
<tag-file>
<name>body</name>
<path>/WEB-INF/tags/body.tag</path>
</tag-file>
<tag-file>
<name>body_with_nav</name>
<path>/WEB-INF/tags/body_with_nav.tag</path>
</tag-file>
<tag-file>
<name>storage_body</name>
<path>/WEB-INF/tags/storage_body.tag</path>
</tag-file>
<tag-file>
<name>home</name>
<path>/WEB-INF/tags/home.tag</path>
</tag-file>
<tag-file>
<name>config</name>
<path>/WEB-INF/tags/config.tag</path>
</tag-file>
<tag-file>
<name>offline</name>
<path>/WEB-INF/tags/offline.tag</path>
</tag-file>
<tag-file>
<name>report</name>
<path>/WEB-INF/tags/hourlyReport.tag</path>
</tag-file>
<tag-file>
<name>storage_report</name>
<path>/WEB-INF/tags/hourlyStorageReport.tag</path>
</tag-file>
<tag-file>
<name>historyReport</name>
<path>/WEB-INF/tags/historyReport.tag</path>
</tag-file>
<tag-file>
<name>historyStorageReport</name>
<path>/WEB-INF/tags/historyStorageReport.tag</path>
</tag-file>
<function>
<description>Build form action for given id</description>
<name>action</name>
<function-class>com.dianping.cat.report.view.UriBuilder</function-class>
<function-signature>String action(org.unidal.web.mvc.ViewModel, java.lang.Object)</function-signature>
<example>${a:action(model, 123)}</example>
</function>
<function>
<description>Build uri for given id</description>
<name>uri</name>
<function-class>com.dianping.cat.report.view.UriBuilder</function-class>
<function-signature>String uri(org.unidal.web.mvc.ViewModel, java.lang.Object)</function-signature>
<example>${a:uri(model, 123)}</example>
</function>
<function>
<description>Build uri for given id with additional query string</description>
<name>uri2</name>
<function-class>com.dianping.cat.report.view.UriBuilder</function-class>
<function-signature>String uri2(org.unidal.web.mvc.ViewModel, java.lang.Object, java.lang.String)</function-signature>
<example>${a:uri2(model, 123, 'a=1&b=2')}</example>
</function>
</taglib>