Remove unused Fedora connection

This commit is contained in:
Graham Triggs 2016-12-19 19:08:13 +00:00
parent 28c99c9408
commit 17b323649d
6 changed files with 0 additions and 967 deletions

View file

@ -1,24 +0,0 @@
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%/* this is used by the FedoraDatastreamController and not by the N3 editing system.*/%>
<h2>Upload a replacement for ${fileName}</h2>
<form action="<c:url value="/fedoraDatastreamController"/>"
enctype="multipart/form-data" method="POST">
<p>File <input type="file" id="fileRes" name="fileRes" /></p>
<%/* <p><input type="radio" name="useNewName" value="false" checked/>
use existing file name</p>
<p><input type="radio" name="useNewName" value="true"/>
rename file to name of file being uploaded</p> */%>
<input type="hidden" name="fileUri" value="${fileUri}"/>
<input type="hidden" name="pid" value="${pid}"/>
<input type="hidden" name="dsid" value="${dsid}"/>
<!--Adding use new name set to true so that it is overwritten correctly-->
<input type="hidden" name="useNewName" value="true"/>
<input type="submit" class="submit" value="submit" />
</form>

View file

@ -1,16 +0,0 @@
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<div>The file ${orginalFileName} was updated. The file received from you had the MD5 checksum ${checksum}.</div>
<c:if test="${useNewName}">
<div>The name of the file was also changed to ${newFileName}.</div>
</c:if>
<c:url value="/individual" var="url">
<c:param name="uri" value="${fileUri}"/>
</c:url>
<div>Goto <a href="${url}">${newFileName}</a></div>

View file

@ -1,11 +0,0 @@
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<div>${checksum} "${fileName}"</div>
<c:url value="/individual" var="url">
<c:param name="uri" value="${uri}"/>
</c:url>
<div>return to <a href="${url}">${name}</a></div>