Skip to content

Commit 06def8a

Browse files
author
Simon Sendler
committed
refactor: use correct composites
1 parent 0a1738d commit 06def8a

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

module-gui/src/main/webapp/resources/uii/plugin_administration_hotfolder_nli.xhtml

+28-28
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xmlns:h="http://xmlns.jcp.org/jsf/html"
66
xmlns:f="http://xmlns.jcp.org/jsf/core"
77
xmlns:jsf="http://xmlns.jcp.org/jsf"
8-
xmlns:intranda="http://xmlns.jcp.org/jsf/composite/compositesPG"
8+
xmlns:intranda="http://xmlns.jcp.org/jsf/composite/composites"
99
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
1010
xmlns:p="http://primefaces.org/ui">
1111

@@ -34,11 +34,11 @@
3434
boxType="action"
3535
boxTitle="false"
3636
boxForm="false">
37-
37+
3838
<intranda:boxTitle
3939
title="#{msgs[AdministrationForm.administrationPlugin.title]}"
4040
icon="fa-plug">
41-
41+
4242
<div class="actions d-flex">
4343
<button
4444
jsf:rendered="#{AdministrationForm.administrationPlugin.paused}"
@@ -49,7 +49,7 @@
4949
title="#{msgs.plugin_administration_nli_hotfolder_resumework}">
5050
<i class="fa fa-pause"></i>
5151
</button>
52-
52+
5353
<button
5454
jsf:rendered="#{not AdministrationForm.administrationPlugin.paused}"
5555
jsf:id="buttonLeft2"
@@ -59,12 +59,12 @@
5959
title="#{msgs.plugin_administration_nli_hotfolder_pausework}">
6060
<i class="fa fa-play"></i>
6161
</button>
62-
62+
6363
</div>
6464
</intranda:boxTitle>
65-
65+
6666
<div class="p-4">
67-
67+
6868
<table class="table table-borderless">
6969
<tr>
7070
<td>
@@ -138,7 +138,7 @@
138138
</button>
139139
</td>
140140
</tr>
141-
141+
142142
<!-- ADDITIONAL ROWS FOR IMPORTING MODE -->
143143
<ui:fragment
144144
rendered="#{not AdministrationForm.administrationPlugin.paused and AdministrationForm.administrationPlugin.running}">
@@ -165,10 +165,10 @@
165165
</tr>
166166
</ui:fragment>
167167
<!-- // ADDITIONAL ROWS FOR IMPORTING MODE -->
168-
168+
169169
</table>
170170
</div>
171-
171+
172172
</intranda:box>
173173
</div>
174174
<!-- // BOX ON THE LEFT WITH STATUS -->
@@ -179,16 +179,16 @@
179179
boxType="neutral"
180180
boxTitle="false"
181181
boxForm="false">
182-
182+
183183
<intranda:boxTitle title="#{msgs.plugin_administration_nli_hotfolder_logs}">
184-
184+
185185
<div class="actions d-flex">
186-
187-
<h:outputText
186+
187+
<h:outputText
188188
styleClass="me-3 mt-2"
189189
rendered="#{AdministrationForm.administrationPlugin.listOfResults.size() ne 0}"
190190
value="#{AdministrationForm.administrationPlugin.logNumber + 1} / #{AdministrationForm.administrationPlugin.listOfResults.size()}"/>
191-
191+
192192
<!-- BUTTON TO PREVIOUS LOG -->
193193
<button
194194
jsf:id="previousLogButton"
@@ -207,23 +207,23 @@
207207
title="#{msgs.plugin_administration_nli_hotfolder_nextEntry}">
208208
<i class="fa fa-angle-right"></i>
209209
</button>
210-
210+
211211
</div>
212212
</intranda:boxTitle>
213-
213+
214214
<div class="p-4">
215-
215+
216216
<h:outputText
217217
styleClass="alert alert-danger d-block"
218218
rendered="#{AdministrationForm.administrationPlugin.lastRunInfo.keySet().size() lt 1}"
219219
value="#{msgs.plugin_administration_nli_hotfolder_noLogEntriesAvailable}"/>
220-
220+
221221
<ui:fragment rendered="#{AdministrationForm.administrationPlugin.lastRunInfo.keySet().size() gt 0}">
222-
222+
223223
<ui:repeat
224224
var="folder"
225225
value="#{AdministrationForm.administrationPlugin.lastRunInfo.keySet()}">
226-
226+
227227
<!-- Template name / Hotfolder name and the button to show / hide logs from previous runs -->
228228
<div>
229229
<button
@@ -233,12 +233,12 @@
233233
<span>
234234
<h:outputText value="#{folder}"/>
235235
</span>
236-
236+
237237
</button>
238238
<br/>
239239
</div>
240240
<!-- // Template name / Hotfolder name and button -->
241-
241+
242242
<!-- Table of error logs from the last run -->
243243
<table
244244
class="gw-table table table-bordered table-hover border-end border-start"
@@ -263,17 +263,17 @@
263263
</tbody>
264264
</table>
265265
<!-- // Table -->
266-
266+
267267
</ui:repeat>
268-
268+
269269
</ui:fragment>
270-
271-
270+
271+
272272
</div>
273273
</intranda:box>
274274
</div>
275275
<!-- // BOX ON THE RIGHT WITH LOGS -->
276-
276+
277277
</div>
278278
</h:form>
279279
</ui:fragment>

0 commit comments

Comments
 (0)