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