Mercurial > hg > ismi-richfaces
annotate src/main/webapp/search/displayTitle.xhtml @ 143:1c09041f1182
110: The title-as-written-on-manuscript in the witness form does not save
Task-Url: https://it-dev.mpiwg-berlin.mpg.de/tracs/ismi/ticket/110
author | Robert Casties <casties@mpiwg-berlin.mpg.de> |
---|---|
date | Fri, 23 Jun 2017 20:40:18 +0200 |
parents | 71638720fe2f |
children | a279d80fae42 |
rev | line source |
---|---|
7 | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
2 <html xmlns="http://www.w3.org/1999/xhtml" | |
3 xmlns:h="http://java.sun.com/jsf/html" | |
4 xmlns:f="http://java.sun.com/jsf/core" | |
5 xmlns:ui="http://java.sun.com/jsf/facelets" | |
6 xmlns:a4j="http://richfaces.org/a4j" | |
7 xmlns:rich="http://richfaces.org/rich"> | |
8 | |
9 <body> | |
10 <ui:composition template="/templates/publicTemplate.xhtml"> | |
11 | |
12 <ui:define name="publicContent"> | |
13 | |
14 <h:outputStylesheet name="/css/ismi-db/display.css" /> | |
15 | |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
16 <!-- TODO: fix this! --> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
17 <script type="text/javascript" src="../imageServer/resources/js/diva4ismi.js"></script> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
18 |
7 | 19 <div id="pageTitle"> |
20 <h:outputText | |
21 value="Title [#{Session.displayTitle.selectedTitleId}]" /> | |
22 </div> | |
23 | |
24 <h:panelGrid columns="1" styleClass="mainPanel"> | |
25 | |
26 <h:commandButton value="Edit form" | |
27 image="#{ApplicationBean1.editImage}" title="Edit This Entity" | |
28 action="#{Session.displayTitle.actionEditTitle}" | |
29 rendered="#{Session.user != null}" /> | |
30 | |
31 | |
32 <h:panelGrid columns="2" styleClass="displayPanel" | |
33 columnClasses="displayPanelColumn01,displayPanelColumn02"> | |
34 | |
35 <h:outputText value="Permission" /> | |
36 <h:panelGrid columns="2"> | |
37 <h:outputText value="#{Session.displayTitle.title.privacity} - " /> | |
38 <h:commandLink value="change" rendered="#{Session.user != null}" | |
39 actionListener="#{Session.displayTitle.changePrivacity4Title}" | |
40 onclick="if(!confirm('Do you really want to change the privacity of this title?')){ return; };" /> | |
41 </h:panelGrid> | |
42 | |
43 <h:outputText value="Title ID" /> | |
44 <h:outputText value="#{Session.displayTitle.selectedTitleId}" /> | |
45 | |
46 <h:outputText value="Full title" /> | |
47 <h:outputText value="#{Session.displayTitle.title.fullTitle}" /> | |
48 | |
49 <h:outputText value="Full title (translit)" /> | |
50 <h:outputText | |
51 value="#{Session.displayTitle.title.fullTitleTranslit}" /> | |
52 | |
53 <h:outputText value="Aliases" /> | |
54 <h:dataTable var="aliasTitle" style="border:none;" | |
55 value="#{Session.displayTitle.title.aliasList}"> | |
56 <h:column style="border:none;"> | |
57 <h:outputText value="#{aliasTitle}" /> | |
58 </h:column> | |
59 </h:dataTable> | |
60 | |
61 <h:outputText value="Author"/> | |
62 <h:panelGroup rendered="#{Session.displayTitle.title.hasAuthor}"> | |
63 <h:outputText value="#{Session.displayTitle.title.author}" /> | |
64 <h:outputLink | |
65 target="_blank" | |
66 value="#{ApplicationBean1.root}/search/displayAuthor.xhtml?personId=#{Session.displayTitle.title.authorId}" title="Person viewer" | |
67 styleClass="displayButton"> | |
68 <h:graphicImage | |
69 value="#{ApplicationBean1.displayImage}" | |
70 width="20" height="20"/> | |
71 </h:outputLink> | |
72 <h:outputLink | |
73 target="_blank" | |
74 value="#{ApplicationBean1.root}/browse/entityDetails.xhtml?eid=#{Session.displayTitle.title.authorId}" title="Metadata of the entity" | |
75 styleClass="displayButton"> | |
76 <h:graphicImage | |
77 value="#{ApplicationBean1.imgNetwork32}" | |
78 width="20" height="20"/> | |
79 </h:outputLink> | |
80 | |
81 </h:panelGroup> | |
82 <h:outputText rendered="#{!Session.displayTitle.title.hasAuthor}"/> | |
83 | |
84 <h:outputText value="Date" /> | |
85 <h:outputText value="#{Session.displayTitle.title.creationDate}" | |
86 escape="false" /> | |
87 | |
120 | 88 <h:outputText value="Created in" /> |
7 | 89 <h:outputText value="#{Session.displayTitle.title.createIn}" /> |
90 | |
91 <h:outputText value="Language" /> | |
92 <h:outputText value="#{Session.displayTitle.title.language}" /> | |
93 | |
94 <h:outputText value="Subject" /> | |
95 <h:outputText value="#{Session.displayTitle.title.category}" /> | |
96 | |
97 <h:outputText value="Notes" /> | |
98 <h:outputText value="#{Session.displayTitle.title.notes}" /> | |
99 | |
100 <h:outputText value="Incipit" /> | |
101 <h:outputText value="#{Session.displayTitle.title.incipit}" /> | |
102 | |
103 <h:outputText value="Explicit" /> | |
104 <h:outputText value="#{Session.displayTitle.title.explicit}" | |
105 dir="RTL" /> | |
106 | |
107 <h:outputText value="Dedication" /> | |
108 <h:outputText value="#{Session.displayTitle.title.dedication}" | |
109 dir="RTL" /> | |
110 | |
111 <h:outputText value="Table of Contents" /> | |
112 <h:outputText value="#{Session.displayTitle.title.tableOfContents}" | |
113 escape="false" /> | |
114 | |
118
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
115 <h:outputText value="Misattributions" /> |
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
116 <h:dataTable var="authorMisatt" style="border:none;" |
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
117 value="#{Session.displayTitle.title.authorMisattributionList}"> |
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
118 <h:column style="border:none;"> |
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
119 <h:outputText value="#{authorMisatt}" /> |
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
120 </h:column> |
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
121 </h:dataTable> |
579839a2e3e2
added misattribution display to displayTitle.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
77
diff
changeset
|
122 |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
123 <h:outputText value="Bibliographical References" |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
124 rendered="#{!empty Session.displayTitle.title.referenceList}" /> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
125 <h:panelGrid columns="1" |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
126 rendered="#{!empty Session.displayTitle.title.referenceList}"> |
7 | 127 <rich:dataTable var="item" style="border:none;width: 700px;" |
128 value="#{Session.displayTitle.title.referenceList}" | |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
129 rendered="#{!empty Session.displayTitle.title.referenceList}" |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
130 rowKeyVar="cnt"> |
7 | 131 |
132 <h:column> | |
133 <f:facet name="header"> | |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
134 <h:outputText value="Reference id" /> |
7 | 135 </f:facet> |
136 <h:outputText value="#{item.endnoteId}" /> | |
137 </h:column> | |
138 | |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
139 <h:column> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
140 <f:facet name="header"> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
141 <h:outputText value="Reference display (Drupal)" /> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
142 </f:facet> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
143 <script>showBibliographyEntryFormatted("#{item.endnoteId}", null, "#bibl-entry-title-#{cnt}")</script> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
144 <span id="bibl-entry-title-#{cnt}">(loading reference...)</span> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
145 </h:column> |
7 | 146 |
147 <h:column> | |
148 <f:facet name="header"> | |
149 <h:outputText value="additional_information" /> | |
150 </f:facet> | |
151 <h:outputText value="#{item.additionalInf}" /> | |
152 </h:column> | |
153 </rich:dataTable> | |
154 </h:panelGrid> | |
155 | |
73
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
156 </h:panelGrid> |
7 | 157 |
74 | 158 <h:panelGrid columns="3"> |
159 <h:selectBooleanCheckbox value="#{Session.displayTitle.showWitnessesWithScans}"/> | |
160 <h:outputText value="Show only witnesses with scans"/> | |
161 <h:commandButton value="Change" | |
162 action="#{Session.displayTitle.changeShowWitnessesWithScans}"/> | |
163 </h:panelGrid> | |
164 | |
73
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
165 <!-- no WITNESS --> |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
166 <h:outputText value="No known witnesses" |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
167 rendered="#{empty Session.displayTitle.witnessItems}" |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
168 styleClass="titlePanel" /> |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
169 |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
170 <!-- WITNESSes --> |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
171 <h:panelGrid id="witnessesPanel" style="width:100%;" rendered="#{!empty Session.displayTitle.witnessItems}"> |
7 | 172 <a name="witnesses" /> |
173 <h:outputText | |
174 value="Witnesses (#{Session.displayTitle.witnessItemsSize})" | |
175 rendered="#{!empty Session.displayTitle.witnessItems}" | |
176 styleClass="titlePanel" /> | |
177 | |
178 <h:panelGrid columns="1" | |
179 rendered="#{(!empty Session.displayTitle.witnessItems) and Session.user != null}"> | |
180 <h:commandLink value="Make all public" | |
181 actionListener="#{Session.displayTitle.listenerMakeAllWitnessesPublic}" | |
182 onclick="if(!confirm('Do you really want to change the privacity these witnesses?\nThis action can take some minutes.')){ return; };" /> | |
183 <h:commandLink value="Make all private" | |
184 actionListener="#{Session.displayTitle.listenerMakeAllWitnessesPrivate}" | |
185 onclick="if(!confirm('Do you really want to change the privacity these witnesses?\nThis action can take some minutes.')){ return; };" /> | |
186 </h:panelGrid> | |
187 </h:panelGrid> | |
188 | |
189 <rich:dataTable | |
190 rendered="#{!empty Session.displayTitle.witnessItems}" | |
191 value="#{Session.displayTitle.witnessItems}" var="witnessItem" | |
192 styleClass="select" | |
193 rows="10"> | |
194 <rich:column> | |
195 <h:commandLink id="selectItem" | |
196 actionListener="#{Session.displayTitle.listenerShowWitness0}" | |
197 style="text-decoration:none;"> | |
198 <div class="selectItem" style="#{witnessItem.style}">#{witnessItem.label}</div> | |
199 </h:commandLink> | |
200 </rich:column> | |
201 <f:facet name="footer"> | |
202 <rich:dataScroller id="scroller" rendered="#{Session.displayTitle.witnessItemsSize > 10}"/> | |
203 </f:facet> | |
204 </rich:dataTable> | |
205 | |
206 <h:panelGrid id="witnessPanel" columns="1" style="width: 100%;" | |
207 rendered="#{Session.displayTitle.selectedWitnessId != null}"> | |
208 | |
73
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
209 <h:outputText |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
210 value="Witness [#{Session.displayTitle.selectedWitnessId}]: #{Session.displayTitle.witness.ov}" |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
211 styleClass="titlePanel" /> |
7 | 212 |
213 <h:panelGrid columns="2" styleClass="displayPanel" | |
214 columnClasses="displayPanelColumn01,displayPanelColumn02"> | |
215 | |
216 <h:outputText value="Permission" /> | |
217 <h:panelGrid columns="2"> | |
218 <h:outputText | |
219 value="#{Session.displayTitle.witness.privacity} - " /> | |
220 <h:commandLink value="change" rendered="#{Session.user != null}" | |
221 actionListener="#{Session.displayTitle.changePrivacity4Witness}" | |
222 onclick="if(!confirm('Do you really want to change the privacity of this witness?')){ return; };" /> | |
223 </h:panelGrid> | |
224 | |
225 <h:outputText value="Witness ID" /> | |
226 <h:outputText value="#{Session.displayTitle.selectedWitnessId}" /> | |
227 | |
228 <h:outputText value="State" /> | |
229 <h:outputText value="#{Session.displayTitle.witness.status}" /> | |
230 | |
231 <h:outputText value="Country" /> | |
232 <h:outputText value="#{Session.displayTitle.witness.country}" /> | |
233 | |
234 <h:outputText value="City" /> | |
235 <h:outputText value="#{Session.displayTitle.witness.city}" /> | |
236 | |
237 <h:outputText value="Repository" /> | |
238 <h:outputText value="#{Session.displayTitle.witness.repository}" /> | |
239 | |
240 <h:outputText value="Collection" /> | |
241 <h:outputText value="#{Session.displayTitle.witness.collection}" /> | |
242 | |
243 <h:outputText value="Codex Identifier" /> | |
244 <h:outputText value="#{Session.displayTitle.witness.codex}" /> | |
245 | |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
246 <h:outputText value="Witness Owned by" /> |
7 | 247 <h:panelGrid columns="1"> |
248 <h:dataTable var="item" style="border:none;" | |
249 value="#{Session.displayTitle.witness.ownedByList}" | |
250 rendered="#{!empty Session.displayTitle.witness.ownedByList}"> | |
251 <h:column style="border:none;"> | |
252 <f:facet name="header"> | |
253 <h:outputText value="Owner" /> | |
254 </f:facet> | |
255 <h:outputText value="#{item}" /> | |
256 </h:column> | |
257 <h:column style="border:none;"> | |
258 <f:facet name="header"> | |
259 <h:outputText value="Date" /> | |
260 </f:facet> | |
261 <h:outputText | |
262 value="#{Session.displayTitle.witness.ownedByMap[item]}" | |
263 escape="false" /> | |
264 </h:column> | |
265 </h:dataTable> | |
266 | |
267 </h:panelGrid> | |
268 | |
269 | |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
270 <h:outputText value="Witness Read by" /> |
7 | 271 <h:panelGrid columns="1"> |
272 <h:dataTable var="item" style="border:none;" | |
273 value="#{Session.displayTitle.witness.readByList}" | |
274 rendered="#{!empty Session.displayTitle.witness.readByList}"> | |
275 <h:column style="border:none;"> | |
276 <f:facet name="header"> | |
277 <h:outputText value="Reader" /> | |
278 </f:facet> | |
279 <h:outputText value="#{item}" /> | |
280 </h:column> | |
281 <h:column style="border:none;"> | |
282 <f:facet name="header"> | |
283 <h:outputText value="Date" /> | |
284 </f:facet> | |
285 <h:outputText | |
286 value="#{Session.displayTitle.witness.readByMap[item]}" | |
287 escape="false" /> | |
288 </h:column> | |
289 </h:dataTable> | |
290 </h:panelGrid> | |
291 | |
77
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
292 <h:outputText value="Scans" /> |
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
293 <h:outputLink rendered="#{!empty Session.displayTitle.witness.scanViewer}" |
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
294 value="#{request.contextPath}#{Session.displayTitle.witness.scanViewer}" |
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
295 target="_blank"> |
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
296 See witness scans |
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
297 </h:outputLink> |
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
298 <h:outputText rendered="#{empty Session.displayTitle.witness.scanViewer}"/> |
985dcecba904
"show scans" link and indicator for all witnesses with digitalization (no check for public).
casties
parents:
74
diff
changeset
|
299 |
9 | 300 <h:outputText value="Notes" /> |
7 | 301 <h:outputText value="#{Session.displayTitle.witness.notes}" /> |
302 | |
303 <h:outputText value="Table of Contents" /> | |
304 <h:outputText | |
305 value="#{Session.displayTitle.witness.tableOfContents}" | |
306 escape="false" /> | |
307 | |
308 <h:outputText value="Bibliographical References" /> | |
309 <h:panelGrid columns="1"> | |
310 <rich:dataTable var="item" style="border:none;width: 700px;" | |
311 value="#{Session.displayTitle.witness.referenceList}" | |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
312 rendered="#{!empty Session.displayTitle.witness.referenceList}" |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
313 rowKeyVar="cnt"> |
7 | 314 |
70
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
315 <h:column> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
316 <f:facet name="header"> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
317 <h:outputText value="Reference id" /> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
318 </f:facet> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
319 <h:outputText value="#{item.endnoteId}" /> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
320 </h:column> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
321 |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
322 <h:column> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
323 <f:facet name="header"> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
324 <h:outputText value="Reference display (Drupal)" /> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
325 </f:facet> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
326 <script>showBibliographyEntryFormatted("#{item.endnoteId}", null, "#bibl-entry-title-#{cnt}")</script> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
327 <span id="bibl-entry-title-#{cnt}">(loading reference...)</span> |
954d6200336d
display live reference from Drupal in edit form (ticket #71).
casties
parents:
60
diff
changeset
|
328 </h:column> |
7 | 329 |
330 <h:column> | |
331 <f:facet name="header"> | |
332 <h:outputText value="additional_information" /> | |
333 </f:facet> | |
334 <h:outputText value="#{item.additionalInf}" /> | |
335 </h:column> | |
336 </rich:dataTable> | |
337 </h:panelGrid> | |
338 | |
339 </h:panelGrid> | |
340 | |
73
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
341 <h:commandButton value="edit this witness" |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
342 action="#{Session.displayTitle.actionEditWitness}" |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
343 rendered="#{Session.canEdit}" /> |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
344 |
ebd008b2e6ba
cleaned displayTitle too. added filter for witnesses with scans.
casties
parents:
70
diff
changeset
|
345 |
7 | 346 </h:panelGrid> |
347 </h:panelGrid> | |
348 </ui:define> | |
349 </ui:composition> | |
350 </body> | |
351 | |
352 </html> |