NIHVIVO-1493: adding generic selector id="submit" for <input> type=submit.
This commit is contained in:
parent
30bd6c7d88
commit
85d7db23e5
24 changed files with 32 additions and 32 deletions
|
@ -88,7 +88,7 @@ try{
|
|||
</ul>
|
||||
|
||||
</div>
|
||||
<input type="submit" value="Run Query" class="green button">
|
||||
<input id="submit" type="submit" value="Run Query" />
|
||||
</form>
|
||||
<%--
|
||||
<h4>Notes</h4>
|
||||
|
|
|
@ -27,4 +27,4 @@
|
|||
</select>
|
||||
<p>database type</p>
|
||||
|
||||
<input type="submit" value="Connect Database" class="green button"/>
|
||||
<input id="submit" type="submit" value="Connect Database" />
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
<form style="margin-bottom:2ex;" action="ingest" method="post">
|
||||
<input type="hidden" name="action" value="createModel"/>
|
||||
Model name: <input type="text" size="32" name="modelName"/>
|
||||
<input type="submit" name="submit" value="Create Model"/>
|
||||
<input id="submit" type="submit" name="submit" value="Create Model"/>
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
</form>
|
||||
|
|
|
@ -70,4 +70,4 @@
|
|||
</select>
|
||||
<p>Destination Model for TBox</p>
|
||||
|
||||
<input type="submit" value="Convert CSV"/>
|
||||
<input id="submit" type="submit" value="Convert CSV"/>
|
||||
|
|
|
@ -43,4 +43,4 @@
|
|||
%>
|
||||
</select>
|
||||
|
||||
<input type="submit" value="Next >"/>
|
||||
<input id="submit" type="submit" value="Next >"/>
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<option value="TURTLE">Turtle</option>
|
||||
</select>
|
||||
|
||||
<input type="submit" name="submit" class="green button" value="Export"/>
|
||||
<input id="submit" type="submit" name="submit" value="Export"/>
|
||||
|
||||
</form>
|
||||
|
||||
|
|
|
@ -50,4 +50,4 @@
|
|||
%>
|
||||
</select>
|
||||
|
||||
<input type="submit" value="Generate TBox"/>
|
||||
<input id="submit" type="submit" value="Generate TBox"/>
|
||||
|
|
|
@ -34,13 +34,13 @@ function init(){
|
|||
<td>
|
||||
<form name="sdbform" action="ingest" method="get">
|
||||
<input type="hidden" name="action" value="sdbModels"/>
|
||||
<input type="submit" name="submit" value="SDB Models"/>
|
||||
<input id="submit" type="submit" name="submit" value="SDB Models"/>
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
<form name="rdbform" action="ingest" method="get">
|
||||
<input type="hidden" name="action" value="rdbModels"/>
|
||||
<input type="submit" name="submit" value="RDB Models"/>
|
||||
<input id="submit" type="submit" name="submit" value="RDB Models"/>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -48,7 +48,7 @@ function init(){
|
|||
<form action="ingest" method="get">
|
||||
<input type="hidden" name="action" value="createModel"/>
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
<input type="submit" name="submit" value="Create Model"/>
|
||||
<input id="submit" type="submit" name="submit" value="Create Model"/>
|
||||
</form>
|
||||
<form name="information">
|
||||
<input type="hidden" name="info" value="${infoLine}"/>
|
||||
|
@ -66,7 +66,7 @@ function init(){
|
|||
<input type="hidden" name="action" value="loadRDFData"/>
|
||||
<input type="hidden" name="modelName" value="<%=modelName%>"/>
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
<input type="submit" name="submit" value="load RDF data"/>
|
||||
<input id="submit" type="submit" name="submit" value="load RDF data"/>
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
|
@ -81,7 +81,7 @@ function init(){
|
|||
<input type="hidden" name="action" value="clearModel"/>
|
||||
<input type="hidden" name="modelName" value="<%=modelName%>"/>
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
<input type="submit" name="submit" value="clear statements"/>
|
||||
<input id="submit" type="submit" name="submit" value="clear statements"/>
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
|
@ -89,7 +89,7 @@ function init(){
|
|||
<input type="hidden" name="action" value="removeModel"/>
|
||||
<input type="hidden" name="modelName" value="<%=modelName%>"/>
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
<input type="submit" name="submit" value="remove"/>
|
||||
<input id="submit" type="submit" name="submit" value="remove"/>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -99,7 +99,7 @@ function init(){
|
|||
<input type="hidden" name="action" value="attachModel"/>
|
||||
<input type="hidden" name="modelName" value="<%=modelName%>"/>
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
<input type="submit" name="submit" value="attach to webapp"/>
|
||||
<input id="submit" type="submit" name="submit" value="attach to webapp"/>
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
|
@ -107,7 +107,7 @@ function init(){
|
|||
<input type="hidden" name="action" value="detachModel"/>
|
||||
<input type="hidden" name="modelName" value="<%=modelName%>"/>
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
<input type="submit" name="submit" value="detach from webapp"/>
|
||||
<input id="submit" type="submit" name="submit" value="detach from webapp"/>
|
||||
</form>
|
||||
</td>
|
||||
<td>
|
||||
|
@ -115,7 +115,7 @@ function init(){
|
|||
<input type="hidden" name="action" value="permanentURI" />
|
||||
<input type="hidden" name="modelName" value="<%=modelName%>" />
|
||||
<input type="hidden" name="modelType" value="${modelType}"/>
|
||||
<input type="submit" name="submit" value="generate permanent URIs" /></form>
|
||||
<input id="submit" type="submit" name="submit" value="generate permanent URIs" /></form>
|
||||
</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
|
|
|
@ -18,5 +18,5 @@
|
|||
</select>
|
||||
<br></br>
|
||||
<br></br>
|
||||
<p><input type="submit" name="submit" value="Load Data" /></p>
|
||||
<p><input id="submit" type="submit" name="submit" value="Load Data" /></p>
|
||||
</form>
|
|
@ -39,6 +39,6 @@
|
|||
<td>Duplicate individual URI</td><td><input id="uri2" type="text" size="52" name="uri2"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="submit" name="submit" value="Merge individuals" /></p>
|
||||
<input id="submit"type="submit" name="submit" value="Merge individuals" /></p>
|
||||
</form>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ if(!result.equals("No statements merged") && !result.endsWith("statements.")){%>
|
|||
<TR>
|
||||
<br>
|
||||
<p>Download non-mergeable statements.</p>
|
||||
<p><input type="submit" name="Download" value="Download" ></input></p>
|
||||
<p><input id="submit" type="submit" name="Download" value="Download" ></input></p>
|
||||
<br>
|
||||
</TR>
|
||||
<%}} %>
|
||||
|
|
|
@ -58,5 +58,5 @@ Or <%String defaultNamespace = (String)request.getAttribute("defaultNamespace");
|
|||
<p>Use default namespace <%=defaultNamespace%> <input type="checkbox" name="defaultNamespace" value ="<%=defaultNamespace%>"/>
|
||||
</p>
|
||||
|
||||
<p><input type="submit" name="submit" value="Generate URIs" /></p>
|
||||
<p><input id="submit" type="submit" name="submit" value="Generate URIs" /></p>
|
||||
</form>
|
|
@ -70,4 +70,4 @@
|
|||
</select>
|
||||
<p>model in which to save retracted statements</p>
|
||||
|
||||
<input type="submit" value="Process property values"/>
|
||||
<input id="submit" type="submit" value="Process property values"/>
|
||||
|
|
|
@ -57,4 +57,4 @@
|
|||
%>
|
||||
</select>
|
||||
|
||||
<input type="submit" value="Rename Blank Nodes"/>
|
||||
<input id="submit" type="submit" value="Rename Blank Nodes"/>
|
||||
|
|
|
@ -25,5 +25,5 @@ to follow the established "n" + random integer naming convention.</p>
|
|||
<input type="hidden" name="action" value="renameResource"/>
|
||||
<p>Old Namespace <input id="uri1" type="text" size="52" name="uri1"/></p>
|
||||
<p>New Namespace <input id="uri2" type="text" size="52" name="uri2"/></p>
|
||||
<p><input type="submit" name="submit" value="Change namespace" /></p>
|
||||
<p><input id="submit" type="submit" name="submit" value="Change namespace" /></p>
|
||||
</form>
|
|
@ -53,4 +53,4 @@
|
|||
%>
|
||||
</select>
|
||||
|
||||
<input type="submit" value="Smush Resources"/>
|
||||
<input id="submit" type="submit" value="Smush Resources"/>
|
||||
|
|
|
@ -182,4 +182,4 @@ PREFIX <%=prefixText%>: <<%=urlText%>><%}}%>
|
|||
<p><input type="checkbox" name="reasoning" value="pellet" />
|
||||
include Pellet OWL-DL reasoning</p>
|
||||
</c:otherwise>
|
||||
</c:choose> <input type="submit" value="Execute CONSTRUCT" />
|
||||
</c:choose> <input id="submit" type="submit" value="Execute CONSTRUCT" />
|
|
@ -62,4 +62,4 @@
|
|||
%>
|
||||
</select>
|
||||
|
||||
<input type="submit" value="Split Values"/>
|
||||
<input id="submit" type="submit" value="Split Values"/>
|
||||
|
|
|
@ -61,4 +61,4 @@
|
|||
</select>
|
||||
<p>model in which difference should be saved</p>
|
||||
|
||||
<input type="submit" value="Subtract models"/>
|
||||
<input id="submit" type="submit" value="Subtract models"/>
|
||||
|
|
|
@ -46,4 +46,4 @@
|
|||
%>
|
||||
</select>
|
||||
|
||||
<input type="submit" value="Execute Workflow"/>
|
||||
<input id="submit" type="submit" value="Execute Workflow"/>
|
||||
|
|
|
@ -33,6 +33,6 @@
|
|||
|
||||
<p>Destination model</p>
|
||||
|
||||
<input type="submit" name="submit" value="upload XML and convert to RDF"/>
|
||||
<input id="submit" type="submit" name="submit" value="upload XML and convert to RDF"/>
|
||||
</form>
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
</p>
|
||||
</c:if>
|
||||
|
||||
<p><input type="submit" name="submit" value="submit"/></p>
|
||||
<p><input id="submit" type="submit" name="submit" value="submit"/></p>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
<textarea name="s34gfd88p9x1" rows="10" cols="90"></textarea>
|
||||
|
||||
<div class="buttons">
|
||||
<input type="submit" value="Send Mail" class="green button"/>
|
||||
<input id="submit" type="submit" value="Send Mail"/>
|
||||
</div
|
||||
|
||||
<p style="font-weight: bold; margin-top: 1em">Thank you!</p>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<form name="filterForm" method="post" action="search">
|
||||
<h3>Search</h3>
|
||||
<input class="top_padded" name="querytext" value="" type="text" size="50" />
|
||||
<p><input class="form-button" value="Search" type="submit"/></p>
|
||||
<p><input id="submit" value="Search" type="submit"/></p>
|
||||
</form>
|
||||
</div><!--advancedSearchForm-->
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue