NIHVIVO-330 new jsp file for tool to merge individuals
This commit is contained in:
parent
b64dd13960
commit
d29f950ed2
1 changed files with 29 additions and 0 deletions
29
webapp/web/jenaIngest/mergeIndividuals.jsp
Normal file
29
webapp/web/jenaIngest/mergeIndividuals.jsp
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
|
||||||
|
|
||||||
|
<%@ page import="com.hp.hpl.jena.rdf.model.ModelMaker"%>
|
||||||
|
<%@ page import="com.hp.hpl.jena.rdf.model.Model"%>
|
||||||
|
<%@ page import="java.util.Iterator"%>
|
||||||
|
<%@ page import="java.net.URLEncoder"%>
|
||||||
|
<%@ page import="java.util.List"%>
|
||||||
|
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
|
||||||
|
<%
|
||||||
|
|
||||||
|
ModelMaker maker = (ModelMaker) request.getSession().getAttribute("vitroJenaModelMaker");
|
||||||
|
if (maker == null) {
|
||||||
|
maker = (ModelMaker) getServletContext().getAttribute("vitroJenaModelMaker");
|
||||||
|
}
|
||||||
|
|
||||||
|
%>
|
||||||
|
<script type="text/javascript" src="js/jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="js/jenaIngest/ingestUtils.js"></script>
|
||||||
|
|
||||||
|
<p><a href="ingest">Ingest Home</a></p>
|
||||||
|
|
||||||
|
<h2>Merge Individuals</h2>
|
||||||
|
<form id="takeuri" action="ingest" method="get">
|
||||||
|
<input type="hidden" name="action" value="mergeIndividuals"/>
|
||||||
|
<p>Individual URI1 <input id="uri1" type="text" size="52" name="uri1"/></p>
|
||||||
|
<p>Individual URI2 <input id="uri2" type="text" size="52" name="uri2"/></p>
|
||||||
|
<p><input type="submit" name="submit" value="submit" /></p>
|
||||||
|
</form>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue