NIHVIVO-1487 new jsp for renaming blank nodes in csv2rdf tool.
This commit is contained in:
parent
f6e0a8bbf2
commit
30fab1ac5e
1 changed files with 83 additions and 0 deletions
83
webapp/web/jenaIngest/csv2rdfSelectUri.jsp
Normal file
83
webapp/web/jenaIngest/csv2rdfSelectUri.jsp
Normal file
|
@ -0,0 +1,83 @@
|
|||
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
|
||||
|
||||
<%@ page import="com.hp.hpl.jena.ontology.Individual" %>
|
||||
<%@ page import="com.hp.hpl.jena.ontology.OntModel" %>
|
||||
<%@ page import="com.hp.hpl.jena.rdf.model.ModelMaker" %>
|
||||
<%@ page import="com.hp.hpl.jena.shared.Lock" %>
|
||||
<%@ page import="java.util.Iterator" %>
|
||||
<%@ page import="java.util.List" %>
|
||||
<%@ page import="java.net.URLEncoder" %>
|
||||
<%@ page import="java.util.Map" %>
|
||||
<%@ page import="java.util.LinkedList" %>
|
||||
<%@ page import="java.util.HashMap" %>
|
||||
<%@ page import="java.util.Set" %>
|
||||
<%@ page import="java.util.Map.Entry" %>
|
||||
|
||||
<%
|
||||
|
||||
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/renameNode.js"></script>
|
||||
<script type="text/javascript">
|
||||
function selectProperties(){
|
||||
document.getElementById("properties").disabled = false;
|
||||
document.getElementById("pattern").disabled = false;
|
||||
}
|
||||
function disableProperties(){
|
||||
document.getElementById("properties").disabled = true;
|
||||
document.getElementById("pattern").disabled = true;
|
||||
}
|
||||
</script>
|
||||
|
||||
<h2><a class="ingestMenu" href="ingest">Ingest Menu</a> > Convert Blank Nodes to Named Resources</h2>
|
||||
|
||||
<form id="takeuri" action="ingest" method="get">
|
||||
<input type="hidden" name="action" value="renameBNodesURISelect"/>
|
||||
|
||||
<h3>Select URI prefix</h3>
|
||||
|
||||
<p>URIs will be constructed from the following string:</p>
|
||||
<input id="namespace" type="text" style="width:65%;" name="namespaceEtcStr"/>
|
||||
|
||||
<p/>
|
||||
|
||||
<p>You can concatenate above string with random integer OR your own pattern based on <b>values</b> of one of the properties (Properties will be enabled in the dropdown) </p>
|
||||
|
||||
<input type="radio" value="integer" name="concatenate" checked="checked" onclick="disableProperties()"><b>No</b>, concatenate with random integer</input>
|
||||
<br></br>
|
||||
<input type="radio" value="pattern" name="concatenate" onclick="selectProperties()"><b>Yes</b>, concatenate with my pattern</input>
|
||||
|
||||
|
||||
<% Map<String,LinkedList<String>> propertyMap = (Map) request.getAttribute("propertyMap");
|
||||
Set<Entry<String,LinkedList<String>>> set = propertyMap.entrySet();
|
||||
Iterator<Entry<String,LinkedList<String>>> itr = set.iterator();
|
||||
Entry<String, LinkedList<String>> entry = null;
|
||||
%>
|
||||
|
||||
<select name="property" id="properties" disabled="disabled">
|
||||
<% while(itr.hasNext()){%>
|
||||
|
||||
<%entry = itr.next();
|
||||
Iterator<String> listItr = entry.getValue().iterator();
|
||||
%>
|
||||
<option value ="<%=entry.getKey() %>"><%=entry.getKey()%></option>
|
||||
<%}
|
||||
%>
|
||||
</select>
|
||||
<br></br>
|
||||
<p>Enter your pattern that will prefix property value with an underscore eg. depID_$$$ where depID is your pattern and $$$ is the property value.</p>
|
||||
<input id="pattern" disabled="disabled" type="text" style="width:35%;" name="pattern"/>
|
||||
|
||||
<%String modelName = (String) request.getAttribute("destinationModelName"); %>
|
||||
|
||||
<input type="hidden" name="destinationModelName" value=<%=modelName%>/>
|
||||
|
||||
<input id="submit" type="submit" value="Convert CSV"/>
|
||||
|
||||
</form>
|
||||
|
Loading…
Add table
Reference in a new issue