l5m-tools 0.0.11 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +1 -1
- data/README.md +2 -1
- data/VERSION +1 -1
- data/bin/duplicate-app +0 -0
- data/bin/l5m +0 -0
- data/bin/make-app +0 -0
- data/bin/set_env.sh +0 -0
- data/bin/svn.tool +0 -0
- data/l5m-tools.gemspec +8 -7
- data/lib/l5m-tools/application.rb +34 -11
- data/lib/l5m-tools/array.rb +0 -0
- data/lib/l5m-tools/env.rb +2 -2
- data/lib/l5m-tools/ignore/svn_ingore.yaml +0 -0
- data/lib/l5m-tools/l5m-tools-module.rb +0 -0
- data/lib/l5m-tools/svn.rb +0 -0
- data/lib/l5m-tools/template/Template.jsp +53 -116
- data/lib/l5m-tools/template/TemplateBaseAbstractWorker.java +10 -2
- data/lib/l5m-tools/template/TemplateServicerImpl.java +21 -4
- data/lib/l5m-tools/template/TemplateViewer.java +60 -0
- data/lib/l5m-tools/template/frt.jsp +46 -93
- data/lib/l5m-tools/template/ms2.jsp +69 -108
- data/lib/l5m-tools/template/rad.jsp +53 -91
- data/lib/l5m-tools/template/ttv2.jsp +53 -111
- data/lib/l5m-tools/tools.rb +0 -0
- data/lib/l5m-tools.rb +0 -0
- data/test/test_l5m-tools.rb +0 -0
- metadata +35 -27
@@ -3,7 +3,7 @@
|
|
3
3
|
import="java.util.*,
|
4
4
|
com.l5m.common.bean.*,
|
5
5
|
com.l5m.common.l5m_util.bean.*,
|
6
|
-
com.l5m.common.l5m_util.rld.*,
|
6
|
+
com.l5m.common.l5m_util.rld.*,com.l5m.customtags.beans.*, com.l5m.customtags.tags*,
|
7
7
|
com.l5m.common.util.*,
|
8
8
|
org.ajaxanywhere.AAUtils,
|
9
9
|
com.l5m.!REPLACE_STYLE!.bean.*,
|
@@ -26,15 +26,25 @@
|
|
26
26
|
<c:set var="formName" value="${worker.FORM_NAME}" scope="request"/>
|
27
27
|
<c:set var="packageLowerCase" value="${worker.packageLowerCase}" scope="request"/>
|
28
28
|
<c:set var="packageUpperCase" value="${worker.packageUpperCase}" scope="request"/>
|
29
|
-
<c:set var="styleLowerCase" value="${
|
30
|
-
<c:set var="styleUpperCase" value="${
|
29
|
+
<c:set var="styleLowerCase" value="${worker.styleLowerCase}" />
|
30
|
+
<c:set var="styleUpperCase" value="${worker.styleUpperCase}" />
|
31
31
|
<c:set var="PANEL" value="${worker.PANEL}"/>
|
32
32
|
<%
|
33
33
|
if(AAUtils.isAjaxRequest(request)){
|
34
34
|
AAUtils.addZonesToRefresh(request, "alwaysRefreshZone,"+ ((String)request.getAttribute("refreshZones")));
|
35
35
|
}
|
36
36
|
%><!-- -->
|
37
|
+
<c:set var="soc" value='${servicer.sourceOptionController}'/>
|
38
|
+
<c:set var='jsCache' value='<%="&__jstimeunique="+System.currentTimeMillis()%>'/>
|
39
|
+
<c:set var='theme' value='${worker.navigationBean.theme}' />
|
40
|
+
<c:set var='_request' value="<%=request%>"/>
|
41
|
+
<c:set var="isIE9Below" value="${l5mfunctions:isIE9Below(_request)}"/>
|
42
|
+
<%
|
37
43
|
|
44
|
+
CSSImportParaBean _cssImport = new CSSImportParaBean(request.getContextPath(), "ms2", 1);
|
45
|
+
JSImportParaBean _jsImport = new JSImportParaBean(request.getContextPath());
|
46
|
+
|
47
|
+
%>
|
38
48
|
|
39
49
|
<html>
|
40
50
|
|
@@ -42,7 +52,7 @@ if(AAUtils.isAjaxRequest(request)){
|
|
42
52
|
|
43
53
|
|
44
54
|
|
45
|
-
<l5m:jspHead useIE7Compatible="true" includeJQuery='true' title="${worker.APP_NAME}" formName="${formName}" packageName="${packageLowerCase}" planingCss="L001;L004">
|
55
|
+
<l5m:jspHead useIE7Compatible="true" useCssImport='1' includeJQuery='true' title="${worker.APP_NAME}" formName="${formName}" packageName="${packageLowerCase}" planingCss="L001;L004">
|
46
56
|
|
47
57
|
<!-- add additinal js css in here -->
|
48
58
|
<link href="<%=request.getContextPath()%>/htdoc/datepicker-lite.css" rel="stylesheet" type="text/css" />
|
@@ -84,9 +94,21 @@ if(AAUtils.isAjaxRequest(request)){
|
|
84
94
|
table{
|
85
95
|
border-collapse:collapse;
|
86
96
|
}
|
97
|
+
.grid .TD{border-top:1px dotted #888888;}
|
98
|
+
.grid .LD{border-left:1px dotted #888888;}
|
99
|
+
.grid .row{line-height:33px;}
|
100
|
+
.grid label{white-space:nowrap;}
|
87
101
|
</style>
|
88
102
|
|
89
|
-
|
103
|
+
<%=_cssImport.getCSSFileImports3(
|
104
|
+
|
105
|
+
)%>
|
106
|
+
|
107
|
+
|
108
|
+
<%=_jsImport.getJSFileImports3(
|
109
|
+
|
110
|
+
)%>
|
111
|
+
|
90
112
|
<l5m:LoadResources/>
|
91
113
|
|
92
114
|
</l5m:jspHead>
|
@@ -111,10 +133,8 @@ if(AAUtils.isAjaxRequest(request)){
|
|
111
133
|
|
112
134
|
<aa:zone name="topNavigationZone">
|
113
135
|
<l5m:TopBar2
|
114
|
-
|
115
|
-
|
116
|
-
iconsStatus = "${worker.iconsStatus}"
|
117
|
-
actions = "${worker.actions}"
|
136
|
+
id="${paraBean.topBarStateBean.id}"
|
137
|
+
topBarItems='${worker.topBarItems}'
|
118
138
|
decimalControlList = "${servicer.reportDecimalControlList}"
|
119
139
|
startControlZone = "topPanel"
|
120
140
|
style = "${styleLowerCase}"
|
@@ -130,9 +150,11 @@ if(AAUtils.isAjaxRequest(request)){
|
|
130
150
|
<table border="0" cellspacing="0" cellpadding="0" width="100%">
|
131
151
|
<tr>
|
132
152
|
<td>
|
133
|
-
|
153
|
+
<c:set var='leftstyle' value='line-height:33px;width:200px;padding-left:7px;border-bottom:1px dotted #888; font-weight:bold;' />
|
154
|
+
<c:set var='righstyle' value='padding-left:10px;border-bottom:1px dotted #888;border-left:1px dotted #888;'/>
|
155
|
+
|
134
156
|
<l5m:tabPanel2
|
135
|
-
id="
|
157
|
+
id="${baseServicerParameterBean.tabPanelID}"
|
136
158
|
captions="${baseServicerParameterBean.tabbedPanelCaptions}"
|
137
159
|
selected="${baseServicerParameterBean.selectedTab}"
|
138
160
|
style="${styleLowerCase}"
|
@@ -158,7 +180,12 @@ if(AAUtils.isAjaxRequest(request)){
|
|
158
180
|
|
159
181
|
<aa:zone name="sourcePanelZone">
|
160
182
|
<table id='sourcePanel' border="0" cellspacing="0" cellpadding="0" width="100%">
|
161
|
-
<tr
|
183
|
+
<tr class="row">
|
184
|
+
<td class="TD" style="${leftstyle};" nowrap valign="top"> /td>
|
185
|
+
<td class="TD LD" style="${righstyle}; line-height:16px;">
|
186
|
+
|
187
|
+
</td>
|
188
|
+
</tr>
|
162
189
|
</table>
|
163
190
|
</aa:zone>
|
164
191
|
</td>
|
@@ -200,80 +227,14 @@ if(AAUtils.isAjaxRequest(request)){
|
|
200
227
|
<tr>
|
201
228
|
<td align="left" valign="top" width="99%">
|
202
229
|
<aa:zone name="result">
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
${panel.label}
|
212
|
-
</div>
|
213
|
-
</c:if>
|
214
|
-
<c:if test="${false}">
|
215
|
-
<div style=' ${worker.servicer.panelIndex == panelIndex.index || !true ?"cursor: none" : ""} ; white-space:nowrap; ${worker.servicer.panelIndex == panelIndex.index || true ?"font-weight: bold" : ""} ; font-size:11px; border-top-width:0px;${panelIndex.first?"border-left-width:0px":""}' nowrap id="displayBy_${panelIndex.index }" onclick="${baseServicerParameterBean.panelIndex== panelIndex.index ? '':(true? jsChangePanel:'')}" class="${worker.servicer.panelIndex== panelIndex.index? 'focus' :true?'base':'base'}" >
|
216
|
-
${panel.label }
|
217
|
-
</div>
|
218
|
-
</c:if>
|
219
|
-
</c:if>
|
220
|
-
</c:forEach>
|
221
|
-
<div class="last"> </div>
|
222
|
-
</div>
|
223
|
-
<div style='clear:both'/>
|
224
|
-
<table width="100%">
|
225
|
-
<tr>
|
226
|
-
<td nowrap="nowrap" height="40px" style="padding-left:5px;" >
|
227
|
-
</td>
|
228
|
-
<td nowrap="nowrap" height="40px" style="text-align:right; float:right ;padding-right:10px;">
|
229
|
-
${worker.renderPaginatorHTML}
|
230
|
-
</td>
|
231
|
-
</tr>
|
232
|
-
</table>
|
233
|
-
|
234
|
-
|
235
|
-
<table border="0" cellpadding="0" cellspacing="0" width="100%" >
|
236
|
-
<tr> <td nowrap="nowrap" align='left' >
|
237
|
-
<c:if test="${baseServicerParameterBean.panelIndex !=worker.help && baseServicerParameterBean.panelIndex !=worker.dataAvailability}" >
|
238
|
-
</c:if>
|
239
|
-
</td></tr>
|
240
|
-
<tr>
|
241
|
-
<td nowrap="nowrap" align='center' >
|
242
|
-
${worker.renderHTML}
|
243
|
-
</td>
|
244
|
-
</tr>
|
245
|
-
</table>
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.help}">
|
254
|
-
<!-- the div of descriptionTab -->
|
255
|
-
<div id="descriptionTab"><br/><br/><l5m:appDesc
|
256
|
-
navigationBean="${worker.navigationBean}" style="${styleLowerCase}" id="navDesc" />
|
257
|
-
</div>
|
258
|
-
<!-- the end descriptionTab-->
|
259
|
-
</c:if>
|
260
|
-
|
261
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.dataAvailability}">
|
262
|
-
<table width="100%">
|
263
|
-
<tr>
|
264
|
-
<td width="15%" rowspan="4"> </td>
|
265
|
-
<td width="70%">
|
266
|
-
<c:set var="moduleGeneralAvailability" scope="request" value="${worker.servicer.generalAvailabilityModule}"/>
|
267
|
-
<!-- GeneralAvailabilityModule.SESSION_NAME -->
|
268
|
-
<table border="0" cellpadding="0" cellspacing="2" width="100%">
|
269
|
-
<jsp:include page="GeneralAvailabilityModule.jsp" flush="true"/>
|
270
|
-
</table>
|
271
|
-
</td>
|
272
|
-
<td width="15%" rowspan="4"> </td>
|
273
|
-
</tr>
|
274
|
-
</table>
|
275
|
-
|
276
|
-
</c:if>
|
230
|
+
<l5m:resultZone
|
231
|
+
panels='${PANEL}'
|
232
|
+
formName="${worker.FORM_NAME}" packageName="${packageLowerCase}" style="${styleLowerCase}"
|
233
|
+
groupId="${servicer.groupId}" companyId="${servicer.companyId}"
|
234
|
+
userId="${servicer.userId}"
|
235
|
+
dbHandler="${servicer.dbHandler}" usingDefaultPaginatorRender='false'
|
236
|
+
|
237
|
+
/>
|
277
238
|
</aa:zone>
|
278
239
|
</td>
|
279
240
|
</tr>
|
@@ -340,14 +301,16 @@ if(AAUtils.isAjaxRequest(request)){
|
|
340
301
|
<c:if test="${!empty paraBean.displayWrappers[paraBean.panelIndex]}">
|
341
302
|
<c:forEach var="displayWrapper" items="${paraBean.displayWrappers[paraBean.panelIndex]}">
|
342
303
|
<c:if test="${!empty displayWrapper.columnsMap}">
|
304
|
+
<div style="${displayWrapper.hidden?'display:none;':''}">
|
343
305
|
<l5m:multipleSelect
|
344
306
|
id="${displayWrapper.id}"
|
345
307
|
style="${styleLowerCase}"
|
346
308
|
title="${displayWrapper.title}"
|
347
309
|
sourceValues="${displayWrapper.columnsMap}"
|
348
310
|
selectedValues="${displayWrapper.selectedColumns }"
|
311
|
+
selectedValue="${displayWrapper.selectedValue}"
|
349
312
|
onChange=""
|
350
|
-
displayMode="
|
313
|
+
displayMode="${displayWrapper.displayMode}"
|
351
314
|
useSortBy="true"
|
352
315
|
sortBy="1"
|
353
316
|
sortField="2"
|
@@ -357,7 +320,8 @@ if(AAUtils.isAjaxRequest(request)){
|
|
357
320
|
destinationWidth="200"
|
358
321
|
sourceSize="5"
|
359
322
|
destinationSize="5"
|
360
|
-
/>
|
323
|
+
/>
|
324
|
+
</div>
|
361
325
|
</c:if>
|
362
326
|
</c:forEach>
|
363
327
|
</c:if>
|
@@ -435,9 +399,7 @@ if(AAUtils.isAjaxRequest(request)){
|
|
435
399
|
|
436
400
|
|
437
401
|
|
438
|
-
|
439
|
-
<l5m:jspFoot id="jspFoot"/>
|
440
|
-
</aa:zone>
|
402
|
+
|
441
403
|
<!-- end dialog -->
|
442
404
|
|
443
405
|
</l5m:jspBody>
|
@@ -4,7 +4,7 @@
|
|
4
4
|
com.l5m.common.bean.*,
|
5
5
|
com.l5m.common.l5m_util.bean.*,
|
6
6
|
com.l5m.common.l5m_util.rld.*,
|
7
|
-
com.l5m.common.util.*,
|
7
|
+
com.l5m.common.util.*,com.l5m.customtags.beans.*, com.l5m.customtags.tags*,
|
8
8
|
org.ajaxanywhere.AAUtils,
|
9
9
|
com.l5m.ttv2.bean.*,
|
10
10
|
com.l5m.ttv2.engine.worker.*,
|
@@ -27,20 +27,31 @@
|
|
27
27
|
<c:set var="formName" value="${worker.FORM_NAME}" scope="request"/>
|
28
28
|
<c:set var="packageLowerCase" value="${worker.packageLowerCase}" scope="request"/>
|
29
29
|
<c:set var="packageUpperCase" value="${worker.packageUpperCase}" scope="request"/>
|
30
|
-
<c:set var="styleLowerCase" value="${
|
31
|
-
<c:set var="styleUpperCase" value="${
|
30
|
+
<c:set var="styleLowerCase" value="${worker.styleLowerCase}" />
|
31
|
+
<c:set var="styleUpperCase" value="${worker.styleUpperCase}" />
|
32
32
|
<c:set var="PANEL" value="${worker.PANEL}"/>
|
33
33
|
<%
|
34
34
|
if(AAUtils.isAjaxRequest(request)){
|
35
35
|
AAUtils.addZonesToRefresh(request, "alwaysRefreshZone,"+ ((String)request.getAttribute("refreshZones")));
|
36
36
|
}
|
37
37
|
%>
|
38
|
+
<c:set var="soc" value='${servicer.sourceOptionController}'/>
|
39
|
+
<c:set var='jsCache' value='<%="&__jstimeunique="+System.currentTimeMillis()%>'/>
|
40
|
+
<c:set var='theme' value='${worker.navigationBean.theme}' />
|
41
|
+
<c:set var='_request' value="<%=request%>"/>
|
42
|
+
<c:set var="isIE9Below" value="${l5mfunctions:isIE9Below(_request)}"/>
|
43
|
+
<%
|
44
|
+
|
45
|
+
CSSImportParaBean _cssImport = new CSSImportParaBean(request.getContextPath(), "ms2", 1);
|
46
|
+
JSImportParaBean _jsImport = new JSImportParaBean(request.getContextPath());
|
47
|
+
|
48
|
+
%>
|
38
49
|
<html>
|
39
50
|
|
40
51
|
|
41
52
|
|
42
53
|
|
43
|
-
<l5m:jspHead useIE7Compatible="true" includeJQuery='true' title="${worker.APP_NAME}" formName="${formName}" packageName="${packageLowerCase}" planingCss="L001;L004">
|
54
|
+
<l5m:jspHead useIE7Compatible="true" useCssImport='1' includeJQuery='true' title="${worker.APP_NAME}" formName="${formName}" packageName="${packageLowerCase}" planingCss="L001;L004">
|
44
55
|
|
45
56
|
<!-- add additinal js css in here -->
|
46
57
|
|
@@ -306,9 +317,20 @@ if(AAUtils.isAjaxRequest(request)){
|
|
306
317
|
table{
|
307
318
|
border-collapse:collapse;
|
308
319
|
}
|
320
|
+
.grid .TD{border-top:1px dotted #888888;}
|
321
|
+
.grid .LD{border-left:1px dotted #888888;}
|
322
|
+
.grid .row{line-height:33px;}
|
323
|
+
.grid label{white-space:nowrap;}
|
309
324
|
</style>
|
310
325
|
|
311
|
-
|
326
|
+
<%=_cssImport.getCSSFileImports3(
|
327
|
+
|
328
|
+
)%>
|
329
|
+
|
330
|
+
|
331
|
+
<%=_jsImport.getJSFileImports3(
|
332
|
+
|
333
|
+
)%>
|
312
334
|
|
313
335
|
|
314
336
|
|
@@ -337,10 +359,8 @@ if(AAUtils.isAjaxRequest(request)){
|
|
337
359
|
|
338
360
|
<aa:zone name="topNavigationZone">
|
339
361
|
<l5m:TopBar2
|
340
|
-
|
341
|
-
|
342
|
-
iconsStatus = "${worker.iconsStatus}"
|
343
|
-
actions = "${worker.actions}"
|
362
|
+
id="${paraBean.topBarStateBean.id}"
|
363
|
+
topBarItems='${worker.topBarItems}'
|
344
364
|
decimalControlList = "${servicer.reportDecimalControlList}"
|
345
365
|
startControlZone = "topPanel"
|
346
366
|
style = "${styleLowerCase}"
|
@@ -356,9 +376,11 @@ if(AAUtils.isAjaxRequest(request)){
|
|
356
376
|
<table border="0" cellspacing="0" cellpadding="0" width="100%">
|
357
377
|
<tr>
|
358
378
|
<td>
|
359
|
-
|
379
|
+
<c:set var='leftstyle' value='line-height:33px;width:200px;padding-left:7px;border-bottom:1px dotted #888; font-weight:bold;' />
|
380
|
+
<c:set var='righstyle' value='padding-left:10px;border-bottom:1px dotted #888;border-left:1px dotted #888;'/>
|
381
|
+
|
360
382
|
<l5m:tabPanel2
|
361
|
-
id="
|
383
|
+
id="${baseServicerParameterBean.tabPanelID}"
|
362
384
|
captions="${baseServicerParameterBean.tabbedPanelCaptions}"
|
363
385
|
selected="${baseServicerParameterBean.selectedTab}"
|
364
386
|
style="${styleLowerCase}"
|
@@ -384,7 +406,12 @@ if(AAUtils.isAjaxRequest(request)){
|
|
384
406
|
|
385
407
|
<aa:zone name="sourcePanelZone">
|
386
408
|
<table id='sourcePanel' border="0" cellspacing="0" cellpadding="0" width="100%">
|
387
|
-
<tr
|
409
|
+
<tr class="row">
|
410
|
+
<td class="TD" style="${leftstyle};" nowrap valign="top"> /td>
|
411
|
+
<td class="TD LD" style="${righstyle}; line-height:16px;">
|
412
|
+
|
413
|
+
</td>
|
414
|
+
</tr>
|
388
415
|
</table>
|
389
416
|
</aa:zone>
|
390
417
|
</td>
|
@@ -433,98 +460,14 @@ if(AAUtils.isAjaxRequest(request)){
|
|
433
460
|
<tr>
|
434
461
|
<td align="left" valign="top" width="99%">
|
435
462
|
<aa:zone name="result">
|
436
|
-
<
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
<c:set var="jsChangePanel">
|
445
|
-
javascript:pageAction.changePanel('${panelIndex.index}');
|
446
|
-
</c:set>
|
447
|
-
<c:if test="${true}">
|
448
|
-
<td width="120px" style=' ${worker.servicer.panelIndex == panelIndex.index ?"" : ""} ; white-space:nowrap; ${ true ?"font-weight: bold" : ""} ; font-size:11px; border-top-width:0px;${panelIndex.first?"border-left-width:0px":""}' nowrap id="displayBy_${panelIndex.index }" onclick="${baseServicerParameterBean.panelIndex== panelIndex.index ? '':(true? jsChangePanel:'')}" class="${worker.servicer.panelIndex== panelIndex.index? 'sec2' : true ?'sec1':'sec1'}" >
|
449
|
-
${panel.label}
|
450
|
-
</td >
|
451
|
-
</c:if>
|
452
|
-
<c:if test="${false}">
|
453
|
-
<td width="145px" style=' ${worker.servicer.panelIndex == panelIndex.index || !true ?"cursor: none" : ""} ; white-space:nowrap; ${worker.servicer.panelIndex == panelIndex.index || true ?"font-weight: bold" : ""} ; font-size:11px; border-top-width:0px;${panelIndex.first?"border-left-width:0px":""}' nowrap id="displayBy_${panelIndex.index }" onclick="${baseServicerParameterBean.panelIndex== panelIndex.index ? '':(true? jsChangePanel:'')}" class="${worker.servicer.panelIndex== panelIndex.index? 'sec2' :true?'sec1':'sec1'}" >
|
454
|
-
${panel.label }
|
455
|
-
</td >
|
456
|
-
</c:if>
|
457
|
-
</c:if>
|
458
|
-
</c:forEach>
|
459
|
-
<td class="sec1" style="border-color:#63B1e6; border-top-width:0px; border-right-width:0px;cursor: none;"> </td>
|
460
|
-
</tr>
|
461
|
-
</tbody>
|
462
|
-
</table>
|
463
|
-
|
464
|
-
|
465
|
-
<br/>
|
466
|
-
<div style='clear:both'/>
|
467
|
-
|
468
|
-
<table width="100%">
|
469
|
-
<tr>
|
470
|
-
<td nowrap="nowrap" height="40px" style="padding-left:5px;" >
|
471
|
-
</td>
|
472
|
-
|
473
|
-
<td nowrap="nowrap" height="40px" style="text-align:right; float:right ;padding-right:10px;">
|
474
|
-
<c:if test="${baseServicerParameterBean.panelIndex !=worker.help && baseServicerParameterBean.panelIndex !=worker.dataAvailability}" >
|
475
|
-
${worker.renderPaginatorHTML}
|
476
|
-
</c:if>
|
477
|
-
</td>
|
478
|
-
</tr>
|
479
|
-
</table>
|
480
|
-
|
481
|
-
|
482
|
-
<table border="0" cellpadding="0" cellspacing="0" width="100%" >
|
483
|
-
<tr> <td nowrap="nowrap" align='left' >
|
484
|
-
<c:if test="${baseServicerParameterBean.panelIndex !=worker.help && baseServicerParameterBean.panelIndex !=worker.dataAvailability}" >
|
485
|
-
<!-- <a style='font-weight:bold' href='javascript:pageAction.clickExportButton("exportToCSV")'>[Export to CSV] </a> <br/><br/> -->
|
486
|
-
</c:if>
|
487
|
-
</td></tr>
|
488
|
-
<tr>
|
489
|
-
|
490
|
-
<td nowrap="nowrap" align='center' >
|
491
|
-
<c:if test="${baseServicerParameterBean.panelIndex !=worker.help && baseServicerParameterBean.panelIndex !=worker.dataAvailability}" >
|
492
|
-
${worker.renderHTML}
|
493
|
-
</c:if>
|
494
|
-
</td>
|
495
|
-
</tr>
|
496
|
-
</table>
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.help}">
|
505
|
-
<!-- the div of descriptionTab -->
|
506
|
-
<div id="descriptionTab"><br/><br/><l5m:appDesc
|
507
|
-
navigationBean="${worker.navigationBean}" style="ttv2" id="navDesc" />
|
508
|
-
</div>
|
509
|
-
<!-- the end descriptionTab-->
|
510
|
-
</c:if>
|
511
|
-
|
512
|
-
<c:if test="${baseServicerParameterBean.panelIndex ==worker.dataAvailability}">
|
513
|
-
<table width="100%">
|
514
|
-
<tr>
|
515
|
-
<td width="15%" rowspan="4"> </td>
|
516
|
-
<td width="70%">
|
517
|
-
<c:set var="moduleGeneralAvailability" scope="request" value="${worker.servicer.generalAvailabilityModule}"/>
|
518
|
-
<!-- GeneralAvailabilityModule.SESSION_NAME -->
|
519
|
-
<table border="0" cellpadding="0" cellspacing="2" width="100%">
|
520
|
-
<jsp:include page="GeneralAvailabilityModule.jsp" flush="true"/>
|
521
|
-
</table>
|
522
|
-
</td>
|
523
|
-
<td width="15%" rowspan="4"> </td>
|
524
|
-
</tr>
|
525
|
-
</table>
|
526
|
-
|
527
|
-
</c:if>
|
463
|
+
<l5m:resultZone
|
464
|
+
panels='${PANEL}'
|
465
|
+
formName="${worker.FORM_NAME}" packageName="${packageLowerCase}" style="${styleLowerCase}"
|
466
|
+
groupId="${servicer.groupId}" companyId="${servicer.companyId}"
|
467
|
+
userId="${servicer.userId}"
|
468
|
+
dbHandler="${servicer.dbHandler}" usingDefaultPaginatorRender='false'
|
469
|
+
|
470
|
+
/>
|
528
471
|
</aa:zone>
|
529
472
|
</td>
|
530
473
|
</tr>
|
@@ -591,14 +534,16 @@ if(AAUtils.isAjaxRequest(request)){
|
|
591
534
|
<c:if test="${!empty paraBean.displayWrappers[paraBean.panelIndex]}">
|
592
535
|
<c:forEach var="displayWrapper" items="${paraBean.displayWrappers[paraBean.panelIndex]}">
|
593
536
|
<c:if test="${!empty displayWrapper.columnsMap}">
|
537
|
+
<div style="${displayWrapper.hidden?'display:none;':''}">
|
594
538
|
<l5m:multipleSelect
|
595
539
|
id="${displayWrapper.id}"
|
596
540
|
style="${styleLowerCase}"
|
597
541
|
title="${displayWrapper.title}"
|
598
542
|
sourceValues="${displayWrapper.columnsMap}"
|
599
543
|
selectedValues="${displayWrapper.selectedColumns }"
|
544
|
+
selectedValue="${displayWrapper.selectedValue}"
|
600
545
|
onChange=""
|
601
|
-
displayMode="
|
546
|
+
displayMode="${displayWrapper.displayMode}"
|
602
547
|
useSortBy="true"
|
603
548
|
sortBy="1"
|
604
549
|
sortField="2"
|
@@ -608,7 +553,8 @@ if(AAUtils.isAjaxRequest(request)){
|
|
608
553
|
destinationWidth="200"
|
609
554
|
sourceSize="5"
|
610
555
|
destinationSize="5"
|
611
|
-
/>
|
556
|
+
/>
|
557
|
+
</div>
|
612
558
|
</c:if>
|
613
559
|
</c:forEach>
|
614
560
|
</c:if>
|
@@ -682,11 +628,7 @@ if(AAUtils.isAjaxRequest(request)){
|
|
682
628
|
<a href="javascript:pageAction.clickExportButton('<%=ActionConstants.EXPORT_EXCEL%>');">[Apply]</a>
|
683
629
|
</l5m:dialogBottom>
|
684
630
|
</l5m:dialog>
|
685
|
-
|
686
|
-
<aa:zone name="footerZone">
|
687
|
-
<l5m:jspFoot id="jspFoot"/>
|
688
|
-
</aa:zone>
|
689
|
-
|
631
|
+
|
690
632
|
|
691
633
|
<!-- end dialog -->
|
692
634
|
|
data/lib/l5m-tools/tools.rb
CHANGED
File without changes
|
data/lib/l5m-tools.rb
CHANGED
File without changes
|
data/test/test_l5m-tools.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,60 +1,71 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: l5m-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- RONGHAI
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2015-07-07 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: shoulda
|
16
|
-
requirement:
|
17
|
-
none: false
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
|
-
version_requirements:
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
25
27
|
- !ruby/object:Gem::Dependency
|
26
28
|
name: rdoc
|
27
|
-
requirement:
|
28
|
-
none: false
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
29
30
|
requirements:
|
30
31
|
- - ~>
|
31
32
|
- !ruby/object:Gem::Version
|
32
33
|
version: '3.12'
|
33
34
|
type: :development
|
34
35
|
prerelease: false
|
35
|
-
version_requirements:
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.12'
|
36
41
|
- !ruby/object:Gem::Dependency
|
37
42
|
name: bundler
|
38
|
-
requirement:
|
39
|
-
none: false
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
40
44
|
requirements:
|
41
|
-
- -
|
45
|
+
- - '>='
|
42
46
|
- !ruby/object:Gem::Version
|
43
|
-
version:
|
47
|
+
version: '0'
|
44
48
|
type: :development
|
45
49
|
prerelease: false
|
46
|
-
version_requirements:
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
47
55
|
- !ruby/object:Gem::Dependency
|
48
56
|
name: jeweler
|
49
|
-
requirement:
|
50
|
-
none: false
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
51
58
|
requirements:
|
52
59
|
- - ~>
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: 1.8.4
|
55
62
|
type: :development
|
56
63
|
prerelease: false
|
57
|
-
version_requirements:
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.8.4
|
58
69
|
description: A tool set for Lake5Media and QingheTech developer
|
59
70
|
email: ronghai.wei@outlook.com
|
60
71
|
executables:
|
@@ -92,6 +103,7 @@ files:
|
|
92
103
|
- lib/l5m-tools/template/Template.jsp
|
93
104
|
- lib/l5m-tools/template/TemplateBaseAbstractWorker.java
|
94
105
|
- lib/l5m-tools/template/TemplateServicerImpl.java
|
106
|
+
- lib/l5m-tools/template/TemplateViewer.java
|
95
107
|
- lib/l5m-tools/template/TemplateWorker.java
|
96
108
|
- lib/l5m-tools/template/frt.jsp
|
97
109
|
- lib/l5m-tools/template/ms2.jsp
|
@@ -103,29 +115,25 @@ files:
|
|
103
115
|
homepage: http://github.com/RONGHAI/l5m-tools
|
104
116
|
licenses:
|
105
117
|
- MIT
|
118
|
+
metadata: {}
|
106
119
|
post_install_message:
|
107
120
|
rdoc_options: []
|
108
121
|
require_paths:
|
109
122
|
- lib
|
110
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
111
|
-
none: false
|
112
124
|
requirements:
|
113
|
-
- -
|
125
|
+
- - '>='
|
114
126
|
- !ruby/object:Gem::Version
|
115
127
|
version: '0'
|
116
|
-
segments:
|
117
|
-
- 0
|
118
|
-
hash: -2504906497180096747
|
119
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
120
|
-
none: false
|
121
129
|
requirements:
|
122
|
-
- -
|
130
|
+
- - '>='
|
123
131
|
- !ruby/object:Gem::Version
|
124
132
|
version: '0'
|
125
133
|
requirements: []
|
126
134
|
rubyforge_project:
|
127
|
-
rubygems_version:
|
135
|
+
rubygems_version: 2.0.14
|
128
136
|
signing_key:
|
129
|
-
specification_version:
|
137
|
+
specification_version: 4
|
130
138
|
summary: A tool set for Lake5Media and QingheTech developer
|
131
139
|
test_files: []
|