annotate src/main/webapp/clean/components/lostMisidentification.xhtml @ 211:631864bfec2e

add methods for lost misattributions and misidentifications.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Fri, 04 Oct 2019 17:42:27 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
3 xmlns:h="http://java.sun.com/jsf/html"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
4 xmlns:f="http://java.sun.com/jsf/core"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
5 xmlns:ui="http://java.sun.com/jsf/facelets"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
6 xmlns:a4j="http://richfaces.org/a4j"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
7 xmlns:rich="http://richfaces.org/rich">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
8
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
9 <body>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
10 <ui:composition>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
11
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
12 <h2 style="color:black">Misidentifications without relations</h2>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
13
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
14 <h:panelGrid columns="3" styleClass="displayPanel"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
15 columnClasses="displayPanelColumn01,displayPanelColumn02">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
16
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
17 <a4j:commandButton value="Show misidentifications without relations"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
18 actionListener="#{Session.missingRelations.actionFindLostMisidentification}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
19 render="showMisidentificationPanel,lostMisidentificationButton" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
20 <h:outputText/>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
21 <h:outputText/>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
22
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
23 </h:panelGrid>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
24
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
25 <h:panelGrid id="showMisidentificationPanel" columns="1"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
26 style="margin-left: auto; margin-right: auto; text-align: center; width: 100%;">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
27
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
28 <h:outputText
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
29 value="#{Session.missingRelations.browseBean.resultSummaryMsg}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
30 rendered="#{!empty Session.missingRelations.browseBean.resultSummaryMsg}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
31 styleClass="summaryMsg" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
32
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
33 <h:column
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
34 rendered="#{!empty Session.missingRelations.browseBean.entities}">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
35 <h:outputText value="go to page" styleClass="sumaryMsg" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
36 <h:inputText value="#{Session.missingRelations.browseBean.page}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
37 size="4" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
38 <h:commandButton value="submit"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
39 actionListener="#{Session.missingRelations.browseBean.actionGoToPageAdvancedResult}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
40 <h:outputText value=" #{Session.missingRelations.browseBean.pageMsg}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
41 rendered="#{!empty Session.missingRelations.browseBean.pageMsg}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
42 style="color:red" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
43 </h:column>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
44
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
45
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
46 <h:column
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
47 rendered="#{!empty Session.missingRelations.browseBean.entities}">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
48 <h:panelGroup>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
49 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
50 image="/resources/css/xp/css-images/arrow-first.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
51 style="border:none;" title="First Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
52 action="#{Session.missingRelations.browseBean.advancedFirst}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
53
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
54 <h:commandButton image="/resources/css/xp/css-images/arrow-fr.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
55 style="border:none;" title="Fast Backwards"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
56 action="#{Session.missingRelations.browseBean.advancedFastRewind}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
57
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
58 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
59 image="/resources/css/xp/css-images/arrow-previous.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
60 style="border:none;" title="Previous Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
61 action="#{Session.missingRelations.browseBean.advancedPrevious}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
62
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
63 <h:outputText
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
64 value="#{Session.missingRelations.browseBean.advancedPaginator.recordStatus}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
65 styleClass="sumaryMsg" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
66
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
67 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
68 image="/resources/css/xp/css-images/arrow-next.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
69 style="border:none;" title="Next Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
70 action="#{Session.missingRelations.browseBean.advancedNext}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
71
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
72 <h:commandButton image="/resources/css/xp/css-images/arrow-ff.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
73 style="border:none;" title="Fast Forward"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
74 action="#{Session.missingRelations.browseBean.advancedFastForward}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
75
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
76 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
77 image="/resources/css/xp/css-images/arrow-last.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
78 style="border:none;" title="Last Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
79 action="#{Session.missingRelations.browseBean.advancedLast}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
80 </h:panelGroup>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
81 </h:column>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
82
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
83 <rich:dataTable id="MisidentificationDataTable" rows="30"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
84 value="#{Session.missingRelations.browseBean.currentEntities}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
85 rendered="#{!empty Session.missingRelations.browseBean.currentEntities}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
86 var="entity" styleClass="rsPanel" columnClasses="rsPanelColumn">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
87 <h:column style="text-align:left">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
88 <f:facet name="header">Misidentification</f:facet>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
89 <h:outputLink target="_blank"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
90 value="#{ApplicationBean1.root}/browse/entityDetails.xhtml?eid=#{entity.id}">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
91 <h:outputText
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
92 value="#{entity.ownValue} [#{entity.id}]" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
93 </h:outputLink>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
94 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
95 action="#{Session.missingRelations.browseBean.actionEdit}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
96 rendered="#{Session.canEdit}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
97 image="/resources/css/xp/css-images/edit16.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
98 title="Edit this entity" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
99 </h:column>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
100 <h:column style="text-align:left">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
101 <f:facet name="header">State</f:facet>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
102 <h:outputText value="#{entity.privacity}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
103 </h:column>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
104 </rich:dataTable>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
105
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
106 <h:column
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
107 rendered="#{!empty Session.missingRelations.browseBean.entities}">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
108 <h:panelGroup>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
109 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
110 image="/resources/css/xp/css-images/arrow-first.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
111 style="border:none;" title="First Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
112 action="#{Session.missingRelations.browseBean.advancedFirst}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
113
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
114 <h:commandButton image="/resources/css/xp/css-images/arrow-fr.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
115 style="border:none;" title="Fast Backwards"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
116 action="#{Session.missingRelations.browseBean.advancedFastRewind}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
117
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
118 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
119 image="/resources/css/xp/css-images/arrow-previous.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
120 style="border:none;" title="Previous Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
121 action="#{Session.missingRelations.browseBean.advancedPrevious}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
122
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
123 <h:outputText
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
124 value="#{Session.missingRelations.browseBean.advancedPaginator.recordStatus}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
125 styleClass="sumaryMsg" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
126
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
127 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
128 image="/resources/css/xp/css-images/arrow-next.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
129 style="border:none;" title="Next Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
130 action="#{Session.missingRelations.browseBean.advancedNext}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
131
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
132 <h:commandButton image="/resources/css/xp/css-images/arrow-ff.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
133 style="border:none;" title="Fast Forward"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
134 action="#{Session.missingRelations.browseBean.advancedFastForward}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
135
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
136 <h:commandButton
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
137 image="/resources/css/xp/css-images/arrow-last.gif"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
138 style="border:none;" title="Last Page"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
139 action="#{Session.missingRelations.browseBean.advancedLast}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
140 </h:panelGroup>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
141 </h:column>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
142
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
143 <h:column rendered="#{!empty Session.missingRelations.browseBean.entities}">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
144 <h:commandButton value="download all as CSV"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
145 actionListener="#{Session.missingRelations.browseBean.downloadAdvancedCsv}" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
146 </h:column>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
147
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
148 </h:panelGrid>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
149
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
150 <h:panelGrid columns="3" styleClass="displayPanel" id="lostMisidentificationButton"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
151 columnClasses="displayPanelColumn01,displayPanelColumn02">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
152
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
153 <a4j:commandButton value="Delete all these misidentifications"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
154 rendered="#{Session.canDelete and (!empty Session.missingRelations.browseBean.entities)}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
155 onclick="if(!confirm('Do you really want to delete all selected misidentifications?')){ return; };"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
156 actionListener="#{Session.missingRelations.actionDeleteSelectedEntities}"
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
157 render="showMisidentificationPanel,lostMisidentificationButton" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
158 <h:outputText/>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
159 <h:outputText/>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
160
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
161 </h:panelGrid>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
162
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
163
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
164 </ui:composition>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
165 </body>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
166 </html>