forked from kitodo/kitodo-production
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Save filename mapping to 'renaming' file to use on server outtages
- Loading branch information
Showing
6 changed files
with
137 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
.../main/webapp/WEB-INF/templates/includes/metadataEditor/dialogs/revertRenamingDialog.xhtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!-- | ||
* | ||
* (c) Kitodo. Key to digital objects e. V. <[email protected]> | ||
* | ||
* This file is part of the Kitodo project. | ||
* | ||
* It is licensed under GNU General Public License version 3 or later. | ||
* | ||
* For the full copyright and license information, please read the | ||
* GPL3-License.txt file that was distributed with this source code. | ||
* | ||
--> | ||
|
||
<ui:composition | ||
xmlns="http://www.w3.org/1999/xhtml" | ||
xmlns:h="http://xmlns.jcp.org/jsf/html" | ||
xmlns:ui="http://xmlns.jcp.org/jsf/facelets" | ||
xmlns:p="http://primefaces.org/ui"> | ||
<p:dialog id="revertRenamingDialog" | ||
widgetVar="revertRenamingDialog" | ||
width="500px" | ||
showHeader="false" | ||
appendTo="@(body)" | ||
resizable="false" | ||
closable="false" | ||
modal="true"> | ||
<h:form id="confirmForm"> | ||
<h:panelGroup id="messageWrapper"> | ||
<h3>#{msgs['dataEditor.revertUnsavedRenamingTitle']}</h3> | ||
<h:panelGroup layout="block" | ||
styleClass="select-note ui-messages-error"> | ||
<h:outputText value="#{msgs['dataEditor.revertUnsavedRenamingText']}"/> | ||
</h:panelGroup> | ||
</h:panelGroup> | ||
<h:panelGroup layout="block" | ||
styleClass="dialogButtonWrapper"> | ||
<p:commandButton value="#{msgs['ok']}" | ||
id="okButton" | ||
onclick="PF('revertRenamingDialog').hide();" | ||
styleClass="primary right" | ||
icon="fa fa-close" | ||
iconPos="right"/> | ||
</h:panelGroup> | ||
</h:form> | ||
</p:dialog> | ||
</ui:composition> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters