NIHVIVO-2595 adding title attribute to anchor tags
This commit is contained in:
parent
80c3e0d387
commit
943315a9c6
13 changed files with 20 additions and 20 deletions
|
@ -77,7 +77,7 @@
|
|||
</#if>
|
||||
</span>
|
||||
|
||||
<a href="${urls.base}/edit/primitiveDelete" class="remove">Remove</a>
|
||||
<a href="${urls.base}/edit/primitiveDelete" class="remove" title="remove author link">Remove</a>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
<input type="hidden" id="editKey" name="editKey" value="${editConfiguration.editKey}"/>
|
||||
<p class="submit">
|
||||
<input type="submit" id="submit" value="${submitButtonText}"/><span class="or"> or </span>
|
||||
<a class="cancel" href="${editConfiguration.cancelUrl}">Cancel</a>
|
||||
<a class="cancel" href="${editConfiguration.cancelUrl}" title="Cancel">Cancel</a>
|
||||
</p>
|
||||
</form>
|
||||
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
|
||||
<p class="submit">
|
||||
<input type="hidden" name = "editKey" value="${editKey}"/>
|
||||
<input type="submit" id="submit" value="${submitButtonLabel}"/><span class="or"> or </span><a class="cancel" href="${cancelUrl}">Cancel</a>
|
||||
<input type="submit" id="submit" value="${submitButtonLabel}"/><span class="or"> or </span><a class="cancel" href="${cancelUrl}" title="Cancel">Cancel</a>
|
||||
</p>
|
||||
|
||||
<p id="requiredLegend" class="requiredHint">* required fields</p>
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
<p class="inline">
|
||||
<label>Selected Publication:</label>
|
||||
<span class="acSelectionInfo"></span>
|
||||
<a href="/vivo/individual?uri=" class="verifyMatch">(Verify this match)</a>
|
||||
<a href="/vivo/individual?uri=" class="verifyMatch" title"verify match">(Verify this match)</a>
|
||||
</p>
|
||||
<input class="acUriReceiver" type="hidden" id="pubUri" name="pubUri" value="" />
|
||||
</div>
|
||||
|
|
|
@ -176,7 +176,7 @@
|
|||
</div>
|
||||
<p class="submit">
|
||||
<input type="hidden" id="editKey" name="editKey" value="${editKey}" />
|
||||
<input type="submit" id="submit" value="${submitButtonText}"/><span class="or"> or </span><a class="cancel" href="${cancelUrl}">Cancel</a>
|
||||
<input type="submit" id="submit" value="${submitButtonText}"/><span class="or"> or </span><a class="cancel" href="${cancelUrl}" title="Cancel">Cancel</a>
|
||||
</p>
|
||||
|
||||
<p id="requiredLegend" class="requiredHint">* required fields</p>
|
||||
|
|
|
@ -27,7 +27,7 @@ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.Institu
|
|||
<p>In order for a local ontology to be recognized here, its namespace URI must follow this pattern:</p>
|
||||
<blockquote>${localOntologyNamespace}ontology/<em>yourOntologyName</em></blockquote>
|
||||
</#if>
|
||||
<p>Please create a <a href='${urls.base}/editForm?controller=Ontology'>new local ontology</a> and then return here to define the institutional internal class.</p>
|
||||
<p>Please create a <a href='${urls.base}/editForm?controller=Ontology' title="new local ontology">new local ontology</a> and then return here to define the institutional internal class.</p>
|
||||
</section>
|
||||
|
||||
<#--else if local ontologies exist and local classes exist, show drop-down of local classes-->
|
||||
|
@ -46,7 +46,7 @@ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.Institu
|
|||
</#list>
|
||||
</select>
|
||||
|
||||
<p>Can't find an appropriate class? Create a <a href="${formUrl}?cmd=createClass">new one</a>.</p>
|
||||
<p>Can't find an appropriate class? Create a <a href="${formUrl}?cmd=createClass" title="create new class">new one</a>.</p>
|
||||
</section>
|
||||
|
||||
<#--if parameter to create new class passed or if there are local ontologies but no local classes, show create new class page-->
|
||||
|
@ -80,7 +80,7 @@ edu.cornell.mannlib.vitro.webapp.edit.n3editing.configuration.generators.Institu
|
|||
|
||||
<#--only show submit and cancel if ontologies exist-->
|
||||
<#if ontologiesExist = true>
|
||||
<input type="submit" name="submit-internalClass" value="${submitAction}" class="submit" /> or <a class="cancel" href="${cancelUrl}">Cancel</a>
|
||||
<input type="submit" name="submit-internalClass" value="${submitAction}" class="submit" /> or <a class="cancel" href="${cancelUrl}" title="Cancel">Cancel</a>
|
||||
</#if>
|
||||
</form>
|
||||
</section>
|
||||
|
|
|
@ -36,11 +36,11 @@
|
|||
</#if>
|
||||
|
||||
<span class="webpageName">
|
||||
<a href="${webpage.url}">${anchor}</a>
|
||||
<a href="${webpage.url}" title="webpage url">${anchor}</a>
|
||||
</span>
|
||||
<span class="editingLinks">
|
||||
<a href="${baseEditWebpageUrl}&objectUri=${webpage.link?url}" class="edit">Edit</a> |
|
||||
<a href="${urls.base}${deleteWebpageUrl}" class="remove">Delete</a>
|
||||
<a href="${baseEditWebpageUrl}&objectUri=${webpage.link?url}" class="edit" title="edit web page link">Edit</a> |
|
||||
<a href="${urls.base}${deleteWebpageUrl}" class="remove" title="delete web page link">Delete</a>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
|
@ -57,9 +57,9 @@
|
|||
These can just be ordinary links, rather than a v:input element, as in
|
||||
addAuthorsToInformationResource.jsp. -->
|
||||
<br />
|
||||
<a href="${showAddFormUrl}" id="showAddForm" class="button green">Add New Web Page</a>
|
||||
<a href="${showAddFormUrl}" id="showAddForm" class="button green" title="add new web page">Add New Web Page</a>
|
||||
|
||||
<a href="${cancelUrl}" id="returnToIndividual" class="return">Return to Individual</a>
|
||||
<a href="${cancelUrl}" id="returnToIndividual" class="return" title="return to individual">Return to Individual</a>
|
||||
</section>
|
||||
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<#assign enableInternalClass = '' />
|
||||
<#assign disableClass = 'class="inline"' />
|
||||
<#else>
|
||||
<#assign enableInternalClass = '<p class="note">To enable this option, you must first select an <a href="${urls.base}/processInstitutionalInternalClass">institutional internal class</a> for your instance</p>' />
|
||||
<#assign enableInternalClass = '<p class="note">To enable this option, you must first select an <a href="${urls.base}/processInstitutionalInternalClass" title="institutional internal class">institutional internal class</a> for your instance</p>' />
|
||||
<#assign disableClass = 'class="disable inline" disabled="disabled"' />
|
||||
</#if>
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
<p class="submit">
|
||||
<input type="hidden" name = "editKey" value="${editKey}"/>
|
||||
<input type="submit" id="submit" value="Create ${typeName}"/>
|
||||
<span class="or"> or </span><a class="cancel" href="${urls.base}/siteAdmin">Cancel</a>
|
||||
<span class="or"> or </span><a class="cancel" href="${urls.base}/siteAdmin" title="Cancel">Cancel</a>
|
||||
</p>
|
||||
|
||||
<p id="requiredLegend" class="requiredHint">* required fields</p>
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
<p class="inline">
|
||||
<label>Selected Person:</label>
|
||||
<span class="acSelectionInfo"></span>
|
||||
<a href="/vivo/individual?uri=" class="verifyMatch">(Verify this match)</a>
|
||||
<a href="/vivo/individual?uri=" class="verifyMatch" title="verify match">(Verify this match)</a>
|
||||
</p>
|
||||
<input class="acUriReceiver" type="hidden" id="personUri" name="person" value="${personValue}" />
|
||||
</div>
|
||||
|
@ -129,7 +129,7 @@
|
|||
<p class="submit">
|
||||
<input type="hidden" id="editKey" name="editKey" value="${editKey}" />
|
||||
<input type="submit" id="submit" value="${submitButtonText}"/>
|
||||
<span class="or"> or </span><a class="cancel" href="${cancelUrl}">Cancel</a>
|
||||
<span class="or"> or </span><a class="cancel" href="${cancelUrl}" title="Cancel">Cancel</a>
|
||||
</p>
|
||||
|
||||
<p id="requiredLegend" class="requiredHint">* required fields</p>
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
<input type="hidden" id="editKey" name="editKey" value="${editKey}"/>
|
||||
<p class="submit">
|
||||
<input type="submit" id="submit" value="${submitButtonText}"/><span class="or"> or </span>
|
||||
<a class="cancel" href="${cancelUrl}">Cancel</a>
|
||||
<a class="cancel" href="${cancelUrl}" title="Cancel">Cancel</a>
|
||||
</p>
|
||||
|
||||
<p id="requiredLegend" class="requiredHint">* required fields</p>
|
||||
|
|
|
@ -140,7 +140,7 @@
|
|||
<input type="submit" id="submit" name="submit-${formAction}" value="${submitButtonText}" class="submit" />
|
||||
</#if>
|
||||
|
||||
<span class="or"> or </span><a class="cancel" href="${editConfiguration.cancelUrl}">Cancel</a>
|
||||
<span class="or"> or </span><a class="cancel" href="${editConfiguration.cancelUrl}" title="Cancel">Cancel</a>
|
||||
</p>
|
||||
<p class="requiredHint" id="requiredLegend" >* required fields</p>
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<p class="inline">
|
||||
<label></label>
|
||||
<span class="acSelectionInfo"></span>
|
||||
<a href="${urlsBase}/individual?uri=" class="verifyMatch">(Verify this match)</a>
|
||||
<a href="${urlsBase}/individual?uri=" class="verifyMatch" title="verify match">(Verify this match)</a>
|
||||
</p>
|
||||
<input class="acUriReceiver" type="hidden" id="${inputId}" name="${inputName}" value="${inputValue}" />
|
||||
<!-- Field value populated by JavaScript -->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue