This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
summary.html
165 lines (151 loc) · 3.09 KB
/
summary.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<html xmlns:str="http://xsltsl.org/string">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="http://yui.yahooapis.com/3.4.1/build/yui/yui-min.js"></script><script type="text/javascript">
YUI().use(
'datatable',
function (Y) {
var pluginsCols = [
{
key: 'Artifact ID',
sortable: true
},
{
key: 'Name',
sortable: true
},
{
key: 'Type',
sortable: true
},
{
key: 'Category',
sortable: true
},
{
key: 'Tags',
sortable: true
},
{
key: 'Short Description',
sortable: true
},
{
key: 'Long Description',
sortable: true
},
{
key: 'Change Log',
sortable: true
},
{
key: 'Page URL',
sortable: true
},
{
key: 'Demo URL',
sortable: true
},
{
key: 'Support URL',
sortable: true
},
{
key: 'Author',
sortable: true
},
{
key: 'Licenses',
sortable: true
},
{
key: 'Liferay Versions',
sortable: true
},
{
key: 'Bundle',
sortable: true
},
{
key: 'Dependent Apps',
sortable: true
},
{
key: 'Labs',
sortable: true
},
{
key: 'Marketplace',
sortable: true
},
{
key: 'Public',
sortable: true
},
{
key: 'Supported',
sortable: true
},
{
key: 'Icon',
sortable: false
},
{
key: 'Screenshots',
sortable: false
}
];
var pluginsData = [
];
var pluginsDataTable = new Y.DataTable.Base(
{
columnset: pluginsCols,
recordset: pluginsData,
plugins: [Y.Plugin.DataTableSort]
}
);
pluginsDataTable.render("#plugins");
var authorsCols = [
{
key: 'Authors',
sortable: true
}
];
var authorsData = [
];
var authorsDataTable = new Y.DataTable.Base(
{
columnset: authorsCols,
recordset: authorsData,
authors: [Y.Plugin.DataTableSort]
}
);
authorsDataTable.render("#authors");
var licensesCols = [
{
key: 'Licenses',
sortable: true
}
];
var licensesData = [
];
var licensesDataTable = new Y.DataTable.Base(
{
columnset: licensesCols,
recordset: licensesData,
licenses: [Y.Plugin.DataTableSort]
}
);
licensesDataTable.render("#licenses");
}
);
</script>
</head>
<body class="yui3-skin-sam">
<div id="plugins"></div>
<br>
<div id="authors"></div>
<br>
<div id="licenses"></div>
</body>
</html>