annotate src/main/webapp/entry/codex.xhtml @ 160:1882f1c9974b

change wording from alias to reproduction in CODEX entry form.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Fri, 13 Apr 2018 12:58:36 +0200
parents 1326182855ef
children 8049becb05ca
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
jurzua
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
jurzua
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml"
jurzua
parents:
diff changeset
3 xmlns:h="http://java.sun.com/jsf/html"
jurzua
parents:
diff changeset
4 xmlns:f="http://java.sun.com/jsf/core"
jurzua
parents:
diff changeset
5 xmlns:ui="http://java.sun.com/jsf/facelets"
jurzua
parents:
diff changeset
6 xmlns:a4j="http://richfaces.org/a4j"
jurzua
parents:
diff changeset
7 xmlns:rich="http://richfaces.org/rich"
jurzua
parents:
diff changeset
8 xmlns:ismi="http://java.sun.com/jsf/composite/components/ismi">
jurzua
parents:
diff changeset
9
jurzua
parents:
diff changeset
10 <body>
jurzua
parents:
diff changeset
11 <ui:composition>
jurzua
parents:
diff changeset
12
jurzua
parents:
diff changeset
13 <ui:include src="components/codexPopups.xhtml" />
jurzua
parents:
diff changeset
14
jurzua
parents:
diff changeset
15 <h:panelGrid>
jurzua
parents:
diff changeset
16 <h:outputText value="Codex - #{CurrentCodex.entity.ownValue}"
jurzua
parents:
diff changeset
17 rendered="#{!empty CurrentCodex.entity.ownValue}"
jurzua
parents:
diff changeset
18 styleClass="titlePanel"/>
jurzua
parents:
diff changeset
19 <h:outputText value="Codex"
jurzua
parents:
diff changeset
20 rendered="#{empty CurrentCodex.entity.ownValue}"
jurzua
parents:
diff changeset
21 styleClass="titlePanel"/>
jurzua
parents:
diff changeset
22 </h:panelGrid>
jurzua
parents:
diff changeset
23
jurzua
parents:
diff changeset
24
jurzua
parents:
diff changeset
25 <h:panelGrid columns="4" styleClass="createPanel"
jurzua
parents:
diff changeset
26 columnClasses="createPanelFirstColumn" id="codexCollectionPanel">
jurzua
parents:
diff changeset
27
jurzua
parents:
diff changeset
28 <h:outputLabel value="Country" />
jurzua
parents:
diff changeset
29 <ismi:autocomplete lo="#{CurrentCodex.countryLo}" />
jurzua
parents:
diff changeset
30 <h:outputText />
jurzua
parents:
diff changeset
31 <h:panelGrid>
jurzua
parents:
diff changeset
32 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
jurzua
parents:
diff changeset
33 rendered="#{!empty CurrentCodex.countryLo.entity.id}"
jurzua
parents:
diff changeset
34 actionListener="#{CurrentCodex.editThisCountryAction}" />
jurzua
parents:
diff changeset
35 </h:panelGrid>
jurzua
parents:
diff changeset
36
jurzua
parents:
diff changeset
37 <h:outputLabel value="Place/City" />
jurzua
parents:
diff changeset
38 <ismi:autocomplete lo="#{CurrentCodex.cityLo}" />
jurzua
parents:
diff changeset
39 <h:panelGrid>
jurzua
parents:
diff changeset
40 <h:selectOneMenu
jurzua
parents:
diff changeset
41 rendered="#{!empty CurrentCodex.citiesInCurrentCountry}"
jurzua
parents:
diff changeset
42 valueChangeListener="#{CurrentCodex.inCurrentCountryListener}">
jurzua
parents:
diff changeset
43 <f:selectItems value="#{CurrentCodex.citiesInCurrentCountry}" />
jurzua
parents:
diff changeset
44 <a4j:ajax event="change" render="codexCollectionPanel" />
jurzua
parents:
diff changeset
45 </h:selectOneMenu>
jurzua
parents:
diff changeset
46 </h:panelGrid>
jurzua
parents:
diff changeset
47 <h:panelGrid>
jurzua
parents:
diff changeset
48 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
jurzua
parents:
diff changeset
49 rendered="#{!empty CurrentCodex.cityLo.entity.id}"
jurzua
parents:
diff changeset
50 actionListener="#{CurrentCodex.editThisCityAction}" />
jurzua
parents:
diff changeset
51 </h:panelGrid>
jurzua
parents:
diff changeset
52
jurzua
parents:
diff changeset
53
jurzua
parents:
diff changeset
54 <h:outputLabel value="Repository" />
jurzua
parents:
diff changeset
55 <ismi:autocomplete lo="#{CurrentCodex.repositoryLo}" />
jurzua
parents:
diff changeset
56 <h:panelGrid>
jurzua
parents:
diff changeset
57 <h:selectOneMenu partialSubmit="true"
jurzua
parents:
diff changeset
58 rendered="#{!empty CurrentCodex.repositoriesInCurrentCity}"
jurzua
parents:
diff changeset
59 valueChangeListener="#{CurrentCodex.inCurrentCityListener}">
jurzua
parents:
diff changeset
60 <f:selectItems value="#{CurrentCodex.repositoriesInCurrentCity}" />
jurzua
parents:
diff changeset
61 <a4j:ajax event="change" render="codexCollectionPanel" />
jurzua
parents:
diff changeset
62 </h:selectOneMenu>
jurzua
parents:
diff changeset
63 <h:outputText
jurzua
parents:
diff changeset
64 rendered="#{empty CurrentCodex.repositoriesInCurrentCity}" />
jurzua
parents:
diff changeset
65 </h:panelGrid>
jurzua
parents:
diff changeset
66 <h:panelGrid>
jurzua
parents:
diff changeset
67 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
jurzua
parents:
diff changeset
68 rendered="#{!empty CurrentCodex.repositoryLo.entity.id}"
jurzua
parents:
diff changeset
69 actionListener="#{CurrentCodex.editThisRepositoryAction}" />
jurzua
parents:
diff changeset
70 </h:panelGrid>
jurzua
parents:
diff changeset
71
jurzua
parents:
diff changeset
72
jurzua
parents:
diff changeset
73 <h:outputLabel value="Collection" />
jurzua
parents:
diff changeset
74 <ismi:autocomplete lo="#{CurrentCodex.collectionLo}" />
jurzua
parents:
diff changeset
75 <h:panelGrid>
jurzua
parents:
diff changeset
76 <h:selectOneMenu
jurzua
parents:
diff changeset
77 rendered="#{!empty CurrentCodex.collectionsInCurrentRepository}"
jurzua
parents:
diff changeset
78 valueChangeListener="#{CurrentCodex.inCurrentRepositoryListener}">
jurzua
parents:
diff changeset
79 <f:selectItems
jurzua
parents:
diff changeset
80 value="#{CurrentCodex.collectionsInCurrentRepository}" />
jurzua
parents:
diff changeset
81 <a4j:ajax event="change" render="codexCollectionPanel" />
jurzua
parents:
diff changeset
82 </h:selectOneMenu>
jurzua
parents:
diff changeset
83 </h:panelGrid>
jurzua
parents:
diff changeset
84 <h:panelGrid>
jurzua
parents:
diff changeset
85 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
jurzua
parents:
diff changeset
86 rendered="#{!empty CurrentCodex.collectionLo.entity.id}"
jurzua
parents:
diff changeset
87 actionListener="#{CurrentCodex.editThisCollectionAction}" />
jurzua
parents:
diff changeset
88 </h:panelGrid>
jurzua
parents:
diff changeset
89
jurzua
parents:
diff changeset
90 <h:outputText />
jurzua
parents:
diff changeset
91 <h:commandButton
jurzua
parents:
diff changeset
92 actionListener="#{CurrentCodex.checkConsistencyFromCountryToCodex}"
jurzua
parents:
diff changeset
93 value="Check Consistency From Country To Codex" />
jurzua
parents:
diff changeset
94 <h:outputText />
jurzua
parents:
diff changeset
95 <h:outputText />
jurzua
parents:
diff changeset
96
jurzua
parents:
diff changeset
97 <h:outputLabel value="Shelf Mark / Identifier" />
jurzua
parents:
diff changeset
98 <h:inputText rows="6" width="500"
jurzua
parents:
diff changeset
99 value="#{CurrentCodex.attributes['identifier']}"
jurzua
parents:
diff changeset
100 style="font-style:normal;
jurzua
parents:
diff changeset
101 font-size:15px;
jurzua
parents:
diff changeset
102 font-weight:bold;
jurzua
parents:
diff changeset
103 font-family:sans-serif ;" />
jurzua
parents:
diff changeset
104 <h:outputText />
jurzua
parents:
diff changeset
105 <h:outputText />
jurzua
parents:
diff changeset
106
jurzua
parents:
diff changeset
107 </h:panelGrid>
jurzua
parents:
diff changeset
108
jurzua
parents:
diff changeset
109 <h:panelGrid columns="2" styleClass="createPanel"
jurzua
parents:
diff changeset
110 columnClasses="createPanelFirstColumn">
jurzua
parents:
diff changeset
111 <h:outputText value="Public?"/>
jurzua
parents:
diff changeset
112 <h:selectOneMenu value="#{CurrentCodex.attributes['public']}">
jurzua
parents:
diff changeset
113 <f:selectItems value="#{ApplicationBean1.suggestedBoolean}" />
jurzua
parents:
diff changeset
114 </h:selectOneMenu>
jurzua
parents:
diff changeset
115 </h:panelGrid>
jurzua
parents:
diff changeset
116
jurzua
parents:
diff changeset
117 <h:panelGrid columns="2" styleClass="createPanel"
jurzua
parents:
diff changeset
118 columnClasses="createPanelFirstColumn">
jurzua
parents:
diff changeset
119
134
25bfcc9d757c effort to re-use more relations when saving entities.
casties
parents: 79
diff changeset
120 <h:outputText value="Owned By" />
7
jurzua
parents:
diff changeset
121
jurzua
parents:
diff changeset
122 <h:panelGrid columns="2" id="ownedEventPanel">
jurzua
parents:
diff changeset
123 <rich:dataTable value="#{CurrentCodex.ownedByPeople.entities}"
jurzua
parents:
diff changeset
124 var="item" rendered="#{!empty CurrentCodex.ownedByPeople.entities}">
jurzua
parents:
diff changeset
125 <h:column>
jurzua
parents:
diff changeset
126 <f:facet name="header">
jurzua
parents:
diff changeset
127 <h:outputText value="Owner" style="width: 100px;" />
jurzua
parents:
diff changeset
128 </f:facet>
jurzua
parents:
diff changeset
129 <h:outputText value="[#{item.id}] #{item.ownValue}" />
jurzua
parents:
diff changeset
130 </h:column>
jurzua
parents:
diff changeset
131 <h:column>
jurzua
parents:
diff changeset
132 <f:facet name="header">
jurzua
parents:
diff changeset
133 <h:outputText value="Date" />
jurzua
parents:
diff changeset
134 </f:facet>
jurzua
parents:
diff changeset
135 <h:panelGrid columns="1">
jurzua
parents:
diff changeset
136 <h:outputText
jurzua
parents:
diff changeset
137 value="#{CurrentCodex.ownedByPeople.calendarMap[item.id].calendarAsHtml}"
jurzua
parents:
diff changeset
138 escape="false" />
jurzua
parents:
diff changeset
139 <a4j:commandButton image="#{ApplicationBean1.editImage}"
jurzua
parents:
diff changeset
140 actionListener="#{CurrentCodex.listenerEditCalendarOwnedBy}"
jurzua
parents:
diff changeset
141 render="ownedEventPanel,currentCalendarPP" />
jurzua
parents:
diff changeset
142 </h:panelGrid>
jurzua
parents:
diff changeset
143 </h:column>
jurzua
parents:
diff changeset
144 <h:column>
jurzua
parents:
diff changeset
145 <h:selectBooleanCheckbox
jurzua
parents:
diff changeset
146 value="#{CurrentCodex.ownedByPeople.selections[item.id]}" />
jurzua
parents:
diff changeset
147 </h:column>
jurzua
parents:
diff changeset
148 </rich:dataTable>
jurzua
parents:
diff changeset
149 <a4j:commandButton value="Remove Selection"
jurzua
parents:
diff changeset
150 rendered="#{!empty CurrentCodex.ownedByPeople.entities}"
jurzua
parents:
diff changeset
151 actionListener="#{CurrentCodex.ownedByPeople.listenerRemoveSelection}"
jurzua
parents:
diff changeset
152 render="ownedEventPanel" />
jurzua
parents:
diff changeset
153
jurzua
parents:
diff changeset
154
jurzua
parents:
diff changeset
155 <ismi:autocomplete lo="#{CurrentCodex.ownedByPeople.lo}" />
jurzua
parents:
diff changeset
156 <a4j:commandButton value="ADD"
jurzua
parents:
diff changeset
157 actionListener="#{CurrentCodex.ownedByPeople.listenerAdd}"
jurzua
parents:
diff changeset
158 render="ownedEventPanel" />
jurzua
parents:
diff changeset
159 </h:panelGrid>
jurzua
parents:
diff changeset
160
jurzua
parents:
diff changeset
161
134
25bfcc9d757c effort to re-use more relations when saving entities.
casties
parents: 79
diff changeset
162 <h:outputText value="Read by" />
7
jurzua
parents:
diff changeset
163 <h:panelGrid columns="2" id="readByEventPanel">
jurzua
parents:
diff changeset
164
jurzua
parents:
diff changeset
165 <rich:dataTable value="#{CurrentCodex.readByPeople.entities}"
jurzua
parents:
diff changeset
166 var="item" rendered="#{!empty CurrentCodex.readByPeople.entities}">
jurzua
parents:
diff changeset
167 <h:column>
jurzua
parents:
diff changeset
168 <f:facet name="header">
jurzua
parents:
diff changeset
169 <h:outputText value="Reader" style="width: 100px;" />
jurzua
parents:
diff changeset
170 </f:facet>
jurzua
parents:
diff changeset
171 <h:outputText value="[#{item.id}] #{item.ownValue}" />
jurzua
parents:
diff changeset
172 </h:column>
jurzua
parents:
diff changeset
173 <h:column>
jurzua
parents:
diff changeset
174 <f:facet name="header">
jurzua
parents:
diff changeset
175 <h:outputText value="Date" />
jurzua
parents:
diff changeset
176 </f:facet>
jurzua
parents:
diff changeset
177 <h:panelGrid columns="1">
jurzua
parents:
diff changeset
178 <h:outputText
jurzua
parents:
diff changeset
179 value="#{CurrentCodex.readByPeople.calendarMap[item.id].calendarAsHtml}"
jurzua
parents:
diff changeset
180 escape="false" />
jurzua
parents:
diff changeset
181 <a4j:commandButton image="#{ApplicationBean1.editImage}"
jurzua
parents:
diff changeset
182 actionListener="#{CurrentCodex.listenerEditCalendarReadBy}"
jurzua
parents:
diff changeset
183 render="readByEventPanel,currentCalendarPP" />
jurzua
parents:
diff changeset
184 </h:panelGrid>
jurzua
parents:
diff changeset
185 </h:column>
jurzua
parents:
diff changeset
186 <h:column>
jurzua
parents:
diff changeset
187 <h:selectBooleanCheckbox
jurzua
parents:
diff changeset
188 value="#{CurrentCodex.readByPeople.selections[item.id]}" />
jurzua
parents:
diff changeset
189 </h:column>
jurzua
parents:
diff changeset
190 </rich:dataTable>
jurzua
parents:
diff changeset
191 <a4j:commandButton value="Remove Selection"
jurzua
parents:
diff changeset
192 actionListener="#{CurrentCodex.readByPeople.listenerRemoveSelection}"
jurzua
parents:
diff changeset
193 render="readByEventPanel"
jurzua
parents:
diff changeset
194 rendered="#{!empty CurrentCodex.readByPeople.entities}" />
jurzua
parents:
diff changeset
195
jurzua
parents:
diff changeset
196 <ismi:autocomplete lo="#{CurrentCodex.readByPeople.lo}" />
jurzua
parents:
diff changeset
197 <a4j:commandButton value="ADD"
jurzua
parents:
diff changeset
198 actionListener="#{CurrentCodex.readByPeople.listenerAdd}"
jurzua
parents:
diff changeset
199 render="readByEventPanel" />
jurzua
parents:
diff changeset
200
jurzua
parents:
diff changeset
201
jurzua
parents:
diff changeset
202 </h:panelGrid>
jurzua
parents:
diff changeset
203 </h:panelGrid>
jurzua
parents:
diff changeset
204
jurzua
parents:
diff changeset
205 <h:panelGrid columns="2" styleClass="createPanel"
jurzua
parents:
diff changeset
206 columnClasses="createPanelFirstColumn">
jurzua
parents:
diff changeset
207
jurzua
parents:
diff changeset
208 <h:outputText value="URL Digitized Codex" />
jurzua
parents:
diff changeset
209 <h:panelGrid columns="1" id="urlCodex">
jurzua
parents:
diff changeset
210 <h:inputText size="100"
jurzua
parents:
diff changeset
211 value="#{CurrentCodex.attributes['url_digitized_codex']}">
jurzua
parents:
diff changeset
212 <a4j:ajax event="change" render="urlCodex" />
jurzua
parents:
diff changeset
213 </h:inputText>
jurzua
parents:
diff changeset
214 <a href="#{CurrentCodex.attributes['url_digitized_codex']}"
jurzua
parents:
diff changeset
215 target="_blank"> <h:outputText
jurzua
parents:
diff changeset
216 value="#{CurrentCodex.attributes['url_digitized_codex']}" />
jurzua
parents:
diff changeset
217 </a>
jurzua
parents:
diff changeset
218 </h:panelGrid>
jurzua
parents:
diff changeset
219
32
86a9bb234663 exposed mpiwg_url and indexmeta_folder attributes on codex edit page.
casties
parents: 9
diff changeset
220 <h:outputText value="MPIWG ID" />
86a9bb234663 exposed mpiwg_url and indexmeta_folder attributes on codex edit page.
casties
parents: 9
diff changeset
221 <h:inputText size="100"
86a9bb234663 exposed mpiwg_url and indexmeta_folder attributes on codex edit page.
casties
parents: 9
diff changeset
222 value="#{CurrentCodex.attributes['mpiwg_id']}" />
86a9bb234663 exposed mpiwg_url and indexmeta_folder attributes on codex edit page.
casties
parents: 9
diff changeset
223
86a9bb234663 exposed mpiwg_url and indexmeta_folder attributes on codex edit page.
casties
parents: 9
diff changeset
224 <h:outputText value="MPIWG index.meta folder" />
86a9bb234663 exposed mpiwg_url and indexmeta_folder attributes on codex edit page.
casties
parents: 9
diff changeset
225 <h:inputText size="100"
86a9bb234663 exposed mpiwg_url and indexmeta_folder attributes on codex edit page.
casties
parents: 9
diff changeset
226 value="#{CurrentCodex.attributes['indexmeta_folder']}" />
7
jurzua
parents:
diff changeset
227
jurzua
parents:
diff changeset
228 <h:outputText value="Number of Folios" />
jurzua
parents:
diff changeset
229 <h:inputText size="100"
jurzua
parents:
diff changeset
230 value="#{CurrentCodex.attributes['number_of_folios']}" />
jurzua
parents:
diff changeset
231
jurzua
parents:
diff changeset
232 <h:outputText value="Dimensions" />
jurzua
parents:
diff changeset
233 <h:inputText size="100"
jurzua
parents:
diff changeset
234 value="#{CurrentCodex.attributes['dimensions']}" />
jurzua
parents:
diff changeset
235
jurzua
parents:
diff changeset
236 <h:outputText value="Binding" />
jurzua
parents:
diff changeset
237 <h:panelGroup>
jurzua
parents:
diff changeset
238 <h:selectOneMenu value="#{CurrentCodex.attributes['binding']}">
jurzua
parents:
diff changeset
239 <f:selectItems value="#{CurrentCodex.suggestedBindingList}" />
jurzua
parents:
diff changeset
240 </h:selectOneMenu>
jurzua
parents:
diff changeset
241 <h:commandButton value="Refresh list"
jurzua
parents:
diff changeset
242 actionListener="#{CurrentCodex.listenerRefreshBindingList}" />
jurzua
parents:
diff changeset
243 </h:panelGroup>
jurzua
parents:
diff changeset
244
jurzua
parents:
diff changeset
245 <h:outputText value="Distinguishing Features" />
jurzua
parents:
diff changeset
246 <h:inputTextarea cols="100" rows="10"
jurzua
parents:
diff changeset
247 value="#{CurrentCodex.attributes['distinguishing_features']}" />
9
jurzua
parents: 7
diff changeset
248
7
jurzua
parents:
diff changeset
249 <h:outputText value="Notes" />
jurzua
parents:
diff changeset
250 <h:inputTextarea cols="100" rows="10"
jurzua
parents:
diff changeset
251 value="#{CurrentCodex.attributes['notes']}" />
jurzua
parents:
diff changeset
252
9
jurzua
parents: 7
diff changeset
253 <h:outputText value="Notes (old)" />
jurzua
parents: 7
diff changeset
254 <h:inputTextarea cols="100" rows="10"
jurzua
parents: 7
diff changeset
255 value="#{CurrentCodex.attributes['notes_old']}" />
jurzua
parents: 7
diff changeset
256
jurzua
parents: 7
diff changeset
257 <h:outputText value="Notes on ownership (old)" />
jurzua
parents: 7
diff changeset
258 <h:inputTextarea cols="100" rows="10"
jurzua
parents: 7
diff changeset
259 value="#{CurrentCodex.attributes['notes_on_ownership']}" />
7
jurzua
parents:
diff changeset
260
jurzua
parents:
diff changeset
261 </h:panelGrid>
jurzua
parents:
diff changeset
262
jurzua
parents:
diff changeset
263 <ismi:refWidget entityForm="#{CurrentCodex}" />
jurzua
parents:
diff changeset
264
160
1882f1c9974b change wording from alias to reproduction in CODEX entry form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 151
diff changeset
265 <h:outputText value="Reproduction" styleClass="titlePanel"/>
151
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
266 <h:panelGrid columns="2" styleClass="createPanel"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
267 columnClasses="createPanelFirstColumn">
160
1882f1c9974b change wording from alias to reproduction in CODEX entry form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 151
diff changeset
268 <h:outputText value="Is this codex a reproduction?" />
151
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
269 <h:selectBooleanCheckbox value="#{CurrentCodex.isAlias}">
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
270 <a4j:ajax event="click" render="codexAliasPanel" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
271 </h:selectBooleanCheckbox>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
272 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
273
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
274
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
275 <h:panelGrid columns="1" id="codexAliasPanel">
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
276
160
1882f1c9974b change wording from alias to reproduction in CODEX entry form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 151
diff changeset
277 <h:outputText value="Original codex"
151
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
278 rendered="#{CurrentCodex.isAlias}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
279 styleClass="titlePanel"/>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
280
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
281 <h:panelGrid columns="4" styleClass="createPanel"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
282 columnClasses="createPanelFirstColumn"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
283 rendered="#{CurrentCodex.isAlias}">
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
284
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
285 <h:outputLabel value="Country" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
286 <ismi:autocomplete
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
287 lo="#{CurrentCodex.referencedCodexTemplate.countryLo}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
288 <h:outputText />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
289 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
290 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
291 rendered="#{!empty CurrentCodex.referencedCodexTemplate.countryLo.entity.id}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
292 actionListener="#{CurrentCodex.referencedCodexTemplate.editThisCountryAction}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
293 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
294
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
295 <h:outputLabel value="Place/City" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
296 <ismi:autocomplete
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
297 lo="#{CurrentCodex.referencedCodexTemplate.cityLo}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
298 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
299 <h:selectOneMenu
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
300 rendered="#{!empty CurrentCodex.referencedCodexTemplate.citiesInCurrentCountry}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
301 valueChangeListener="#{CurrentCodex.referencedCodexTemplate.inCurrentCountryListener}">
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
302 <f:selectItems
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
303 value="#{CurrentCodex.referencedCodexTemplate.citiesInCurrentCountry}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
304 <a4j:ajax event="change" render="codexAliasPanel" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
305 </h:selectOneMenu>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
306 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
307 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
308 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
309 rendered="#{!empty CurrentCodex.referencedCodexTemplate.cityLo.entity.id}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
310 actionListener="#{CurrentCodex.referencedCodexTemplate.editThisCityAction}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
311 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
312
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
313
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
314 <h:outputLabel value="Repository" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
315 <ismi:autocomplete
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
316 lo="#{CurrentCodex.referencedCodexTemplate.repositoryLo}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
317 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
318 <h:selectOneMenu partialSubmit="true"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
319 rendered="#{!empty CurrentCodex.referencedCodexTemplate.repositoriesInCurrentCity}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
320 valueChangeListener="#{CurrentCodex.referencedCodexTemplate.inCurrentCityListener}">
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
321 <f:selectItems
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
322 value="#{CurrentCodex.referencedCodexTemplate.repositoriesInCurrentCity}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
323 <a4j:ajax event="change" render="codexAliasPanel" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
324 </h:selectOneMenu>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
325 <h:outputText
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
326 rendered="#{empty CurrentCodex.referencedCodexTemplate.repositoriesInCurrentCity}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
327 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
328 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
329 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
330 rendered="#{!empty CurrentCodex.referencedCodexTemplate.repositoryLo.entity.id}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
331 actionListener="#{CurrentCodex.referencedCodexTemplate.editThisRepositoryAction}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
332 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
333
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
334
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
335 <h:outputLabel value="Collection" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
336 <ismi:autocomplete
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
337 lo="#{CurrentCodex.referencedCodexTemplate.collectionLo}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
338 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
339 <h:selectOneMenu
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
340 rendered="#{!empty CurrentCodex.referencedCodexTemplate.collectionsInCurrentRepository}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
341 valueChangeListener="#{CurrentCodex.referencedCodexTemplate.inCurrentRepositoryListener}">
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
342 <f:selectItems
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
343 value="#{CurrentCodex.referencedCodexTemplate.collectionsInCurrentRepository}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
344 <a4j:ajax event="change" render="codexAliasPanel" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
345 </h:selectOneMenu>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
346 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
347 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
348 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
349 rendered="#{!empty CurrentCodex.referencedCodexTemplate.collectionLo.entity.id}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
350 actionListener="#{CurrentCodex.referencedCodexTemplate.editThisCollectionAction}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
351 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
352
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
353 <h:outputLabel value="Shelf Mark / Identifier" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
354 <ismi:autocomplete
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
355 lo="#{CurrentCodex.referencedCodexTemplate.codexLo}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
356 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
357 <h:selectOneMenu
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
358 rendered="#{!empty CurrentCodex.referencedCodexTemplate.shelfMarksInCurrentCollection}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
359 valueChangeListener="#{CurrentCodex.referencedCodexTemplate.identifierChangedListener}">
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
360 <f:selectItems
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
361 value="#{CurrentCodex.referencedCodexTemplate.shelfMarksInCurrentCollection}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
362 <a4j:ajax event="change" render="codexAliasPanel" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
363 </h:selectOneMenu>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
364 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
365 <h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
366 <h:commandButton alt="edit" image="#{ApplicationBean1.editImage}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
367 rendered="#{!empty CurrentCodex.referencedCodexTemplate.codexLo.entity.ownValue}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
368 actionListener="#{CurrentCodex.referencedCodexTemplate.editThisCodexAction}" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
369 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
370
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
371
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
372 <h:outputText />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
373 <h:commandButton
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
374 actionListener="#{CurrentCodex.referencedCodexTemplate.checkConsistencyFromCountryToCodex}"
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
375 value="Check Consistency From Country To Codex" />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
376 <h:outputText />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
377 <h:outputText />
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
378 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
379 </h:panelGrid>
1326182855ef new iiif_manifest_url and public attributes for DIGITALIZATION. cleanup of codex form.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 139
diff changeset
380
7
jurzua
parents:
diff changeset
381 <h:panelGrid columns="4">
jurzua
parents:
diff changeset
382 <h:outputText value="ID of the Codex" />
jurzua
parents:
diff changeset
383 <h:inputText value="#{CurrentCodex.currentId}" />
jurzua
parents:
diff changeset
384 <h:commandButton value="Load Codex By ID"
jurzua
parents:
diff changeset
385 action="#{CurrentCodex.actionReloadEntity}"
jurzua
parents:
diff changeset
386 onclick="confirm('Do you really want to reload the entity?');" />
jurzua
parents:
diff changeset
387 <h:outputText value="#{CurrentCodex.currentIdMsg}"
jurzua
parents:
diff changeset
388 style="color:red" />
jurzua
parents:
diff changeset
389 </h:panelGrid>
jurzua
parents:
diff changeset
390
139
9cd25e1a58f0 change save button to a4j to show busy indicator for person, text, and other entry forms.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 134
diff changeset
391 <a4j:commandButton value="#{CurrentCodex.saveButtonLabel}"
7
jurzua
parents:
diff changeset
392 rendered="#{CurrentCodex.renderSaveButton}"
jurzua
parents:
diff changeset
393 action="#{CurrentCodex.save}"
jurzua
parents:
diff changeset
394 onclick="#{ApplicationBean1.JSConfirmationSave}" />
jurzua
parents:
diff changeset
395
jurzua
parents:
diff changeset
396 <h:commandButton value="Clear Form"
jurzua
parents:
diff changeset
397 action="#{CurrentCodex.clearAction}"
jurzua
parents:
diff changeset
398 onclick="#{ApplicationBean1.JSConfirmationCleanForm}" />
jurzua
parents:
diff changeset
399
jurzua
parents:
diff changeset
400 <h:outputText rendered="#{CurrentCodex.create_error}"
jurzua
parents:
diff changeset
401 value="City already exists - not saved!" />
jurzua
parents:
diff changeset
402
jurzua
parents:
diff changeset
403 <h:outputText rendered="#{CurrentCity.create_error}"
jurzua
parents:
diff changeset
404 value="City already exists - not saved!" />
jurzua
parents:
diff changeset
405
jurzua
parents:
diff changeset
406
jurzua
parents:
diff changeset
407 </ui:composition>
jurzua
parents:
diff changeset
408 </body>
jurzua
parents:
diff changeset
409 </html>