Fixed typo in displayEntry and menu JSPs
This commit is contained in:
parent
bc918b1c12
commit
29e09dce28
2 changed files with 7 additions and 4 deletions
|
@ -119,7 +119,7 @@
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<p><span class="warning">The requires the <a href="http://iris.lib.virginia.edu/tibet/tools/tmw.html">TibetanMachineWeb font</a> to display Tibetan script.</span></p>
|
<p><span class="warning">This dictionary requires the <a href="http://iris.lib.virginia.edu/tibet/tools/tmw.html">TibetanMachineWeb font</a> to display Tibetan script.</span></p>
|
||||||
|
|
||||||
<div id="entry">
|
<div id="entry">
|
||||||
<c:choose>
|
<c:choose>
|
||||||
|
|
|
@ -81,15 +81,18 @@
|
||||||
</p>
|
</p>
|
||||||
<c:if test="${ ! empty message }">
|
<c:if test="${ ! empty message }">
|
||||||
<p id="message">
|
<p id="message">
|
||||||
<c:out value="${ message }" />
|
<c:out value="${ message }" />
|
||||||
</p>
|
</p>
|
||||||
</c:if>
|
</c:if>
|
||||||
|
|
||||||
<h2>Recently Modified Terms</h2>
|
<h2>Recently Modified Terms</h2>
|
||||||
|
|
||||||
<div id="recentTerms">
|
<div id="recentTerms">
|
||||||
|
|
||||||
|
<p><span class="warning">This dictionary requires the <a href="http://iris.lib.virginia.edu/tibet/tools/tmw.html">TibetanMachineWeb font</a> to display Tibetan script.</span></p>
|
||||||
|
|
||||||
<c:forEach var="term" items="${applicationScope.global.recentTerms }">
|
<c:forEach var="term" items="${applicationScope.global.recentTerms }">
|
||||||
<p class="tmw-block">
|
<p class="tmw-block">
|
||||||
<span class="warning">The requires the <a href="http://iris.lib.virginia.edu/tibet/tools/tmw.html">TibetanMachineWeb font</a> to display Tibetan script.</span><br/>
|
|
||||||
<c:set target="${ sessionScope.visit.helper}" property="wylie" value="${ term.term }"/>
|
<c:set target="${ sessionScope.visit.helper}" property="wylie" value="${ term.term }"/>
|
||||||
<c:set var="tib" value="${ sessionScope.visit.helper.tibetan } " />
|
<c:set var="tib" value="${ sessionScope.visit.helper.tibetan } " />
|
||||||
<c:out value="<a class='tmw-link' href='/lex/action?cmd=displayFull&comp=term&metaId=${term.metaId}'>${ tib } </a>" escapeXml='false' />
|
<c:out value="<a class='tmw-link' href='/lex/action?cmd=displayFull&comp=term&metaId=${term.metaId}'>${ tib } </a>" escapeXml='false' />
|
||||||
|
|
Loading…
Reference in a new issue