annotate src/main/webapp/clean/missingRelations.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 91f177641ec7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
180
0d31c8be7c31 new MissingRelations feature and UI.
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">
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml"
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
3 xmlns:h="http://java.sun.com/jsf/html"
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
4 xmlns:f="http://java.sun.com/jsf/core"
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
5 xmlns:ui="http://java.sun.com/jsf/facelets"
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
6 xmlns:a4j="http://richfaces.org/a4j"
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
7 xmlns:rich="http://richfaces.org/rich">
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
8
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
9 <body>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
10 <ui:composition template="/templates/privateTemplate.xhtml">
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
11
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
12 <h:outputStylesheet name="/css/ismi-db/repository.css" />
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
13
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
14 <ui:define name="privateContent">
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
15
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
16 <div id="pageTitle">
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
17 <h:outputText value="Find Missing Relations" />
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
18 </div>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
19
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
20 <h:panelGrid columns="1" styleClass="mainPanel">
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
21
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
22 <rich:tabPanel id="tabPanel"
181
52aa06772336 fixed missingCodex function. moved some code from SessionBean up to MissingRelationsBean and PublicByAuthorBean.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 180
diff changeset
23 itemChangeListener="#{Session.missingRelations.listenerTabChange}"
52aa06772336 fixed missingCodex function. moved some code from SessionBean up to MissingRelationsBean and PublicByAuthorBean.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 180
diff changeset
24 activeItem="#{Session.missingRelations.selectedTab}">
180
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
25
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
26 <rich:tab header="Author" name="aut">
180
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
27 <ui:include src="components/missingAuthor.xhtml" />
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
28 </rich:tab>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
29
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
30 <rich:tab header="Text" name="txt">
180
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
31 <ui:include src="components/missingText.xhtml" />
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
32 </rich:tab>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
33
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
34 <rich:tab header="Codex" name="cod">
180
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
35 <ui:include src="components/missingCodex.xhtml" />
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
36 </rich:tab>
182
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
37
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
38 <rich:tab header="Collection" name="col">
182
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
39 <ui:include src="components/missingCollection.xhtml" />
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
40 </rich:tab>
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
41
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
42 <rich:tab header="Repository" name="rep">
182
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
43 <ui:include src="components/missingRepository.xhtml" />
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
44 </rich:tab>
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
45
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
46 <rich:tab header="Place" name="plc">
182
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
47 <ui:include src="components/missingPlace.xhtml" />
ef0949b8efc3 more Find Missing Relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 181
diff changeset
48 </rich:tab>
199
8af530c5b4cd new find-lost-alias function in clean menu to delete aliases without relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 182
diff changeset
49
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
50 <rich:tab header="Alias" name="ali">
199
8af530c5b4cd new find-lost-alias function in clean menu to delete aliases without relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 182
diff changeset
51 <ui:include src="components/lostAlias.xhtml" />
8af530c5b4cd new find-lost-alias function in clean menu to delete aliases without relations.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 182
diff changeset
52 </rich:tab>
200
95c18711c0be new find-lost-references function in clean menu to delete references without relations.
casties
parents: 199
diff changeset
53
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
54 <rich:tab header="Floruit" name="flo">
207
91f177641ec7 New clean actions to delete lost floruit_dates and empty references.
casties
parents: 200
diff changeset
55 <ui:include src="components/lostFloruit.xhtml" />
91f177641ec7 New clean actions to delete lost floruit_dates and empty references.
casties
parents: 200
diff changeset
56 </rich:tab>
91f177641ec7 New clean actions to delete lost floruit_dates and empty references.
casties
parents: 200
diff changeset
57
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
58 <rich:tab header="Reference1" name="ref">
200
95c18711c0be new find-lost-references function in clean menu to delete references without relations.
casties
parents: 199
diff changeset
59 <ui:include src="components/lostReference.xhtml" />
95c18711c0be new find-lost-references function in clean menu to delete references without relations.
casties
parents: 199
diff changeset
60 </rich:tab>
207
91f177641ec7 New clean actions to delete lost floruit_dates and empty references.
casties
parents: 200
diff changeset
61
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
62 <rich:tab header="Reference2" name="eref">
207
91f177641ec7 New clean actions to delete lost floruit_dates and empty references.
casties
parents: 200
diff changeset
63 <ui:include src="components/emptyReference.xhtml" />
91f177641ec7 New clean actions to delete lost floruit_dates and empty references.
casties
parents: 200
diff changeset
64 </rich:tab>
211
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
65
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
66 <rich:tab header="Misattribution" name="misa">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
67 <ui:include src="components/lostMisattribution.xhtml" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
68 </rich:tab>
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
69
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
70 <rich:tab header="Misidentification" name="misi">
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
71 <ui:include src="components/lostMisidentification.xhtml" />
631864bfec2e add methods for lost misattributions and misidentifications.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 207
diff changeset
72 </rich:tab>
180
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
73 </rich:tabPanel>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
74
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
75 </h:panelGrid>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
76
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
77
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
78 </ui:define>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
79 </ui:composition>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
80
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
81 </body>
0d31c8be7c31 new MissingRelations feature and UI.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
82 </html>