vitro/webapp/web/jenaIngest/loadRDFData.jsp
mb863 ee0c1dd5bb NIHVIVO-1954: Done some markup refactoring changing ID's into classes.
Also,  in some cases I wasn't able to change id selectors because these are used temporarily due to the custom jsp tags (<v:input>) 
for editing forms which require an id and do not allow a class. This will be 
removed once we refactor the editing forms to Freemarker
2011-02-02 17:15:05 +00:00

22 lines
No EOL
870 B
Text

<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
<h2><a class="ingestMenu" href="ingest">Ingest Menu</a> > Load RDF Data</h2>
<form style="margin-bottom: 2ex;" action="uploadRDF" method="POST" enctype="multipart/form-data">
<input type="hidden" name="modelName"
value="<%=request.getParameter("modelName")%>" /> <input type="hidden"
name="action" value="loadRDFData" />
<p>RDF document URI: <input type="text" size="32" name="docLoc" /></p>
<p>Or upload a file from your computer:</p>
<p><input type="file" name="filePath" /></p>
<select name="language">
<option value="RDF/XML">RDF/XML</option>
<option value="N3">N3</option>
<option value="N-TRIPLE">N-Triples</option>
<option value="TTL">Turtle</option>
</select>
<br></br>
<br></br>
<p><input class="submit" type="submit" name="submit" value="Load Data" /></p>
</form>