fixes for steve's list

This commit is contained in:
aranganath 2005-03-22 04:27:21 +00:00
parent 60b736246b
commit 3f378c7a66
16 changed files with 15 additions and 3 deletions

View File

@ -430,6 +430,7 @@
<generator class="native" />
</id>
<property name="transitionalDataLabel" type="java.lang.String" column="transitionalDataLabel" length="65535"/>
<property name="transitionalDataLabelShort" type="java.lang.String" column="transitionalDataLabelShort" length="65535"/>
<property name="priority" type="java.lang.Integer" column="priority"/>
</class>
</hibernate-mapping>

View File

@ -14,6 +14,7 @@ public class TransitionalDataLabel implements Serializable {
/** nullable persistent field */
private String transitionalDataLabel;
private String transitionalDataLabelShort;
private Integer priority;
@ -65,4 +66,12 @@ public class TransitionalDataLabel implements Serializable {
public void setPriority(Integer priority) {
this.priority = priority;
}
public String getTransitionalDataLabelShort() {
return transitionalDataLabelShort;
}
public void setTransitionalDataLabelShort(String transitionalDataLabelShort) {
this.transitionalDataLabelShort = transitionalDataLabelShort;
}
}

View File

@ -6,7 +6,7 @@
#main input, #main textarea, #main p, #main li
{ /*--------- '*' = everything -------------*/
font-family: 'Times Ext Roman', 'Arial Unicode MS', 'Lucida Grande', sans-serif !important;
font-family: 'Arial Unicode MS', 'Lucida Grande', sans-serif !important;
}
h1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 127 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 140 B

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 B

After

Width:  |  Height:  |  Size: 124 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 140 B

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 B

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 B

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 B

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 115 B

After

Width:  |  Height:  |  Size: 113 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 B

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 B

After

Width:  |  Height:  |  Size: 137 B

View File

@ -18,7 +18,7 @@
</span>
</c:if>
<span><c:out value="${ transitionalData.transitionalDataLabel.transitionalDataLabel }" /></span> <c:out value="${ pronunciation.phonetics }" escapeXml="false"/> <br />
<span><b><c:out value="${ transitionalData.transitionalDataLabel.transitionalDataLabel }" /></b></span> <c:out value="${ pronunciation.phonetics }" escapeXml="false"/> <br />
<c:out value="${ transitionalData.transitionalDataText }" escapeXml="false"/>
<jsp:include page="displayMeta.jsf" />

View File

@ -130,12 +130,14 @@
<c:set value="${sessionScope.visit.query.entry.transitionalData}" target="${sessionScope.visit.helper}" property="collection"/>
<c:if test="${ sessionScope.visit.helper.collectionSize > 0 }">
<c:out value='<li><a href="#${sessionScope.visit.helper.hashCodeForCollection}">Other Dictionaries</a></li>' escapeXml='false' />
<ul>
<c:forEach var="transitionalData" items="${ sessionScope.visit.query.entry.transitionalData }">
<c:set target="${ sessionScope.visit.helper }" property="component" value="${transitionalData}"/>
<c:if test="${ transitionalData.forPublicConsumption == 'true' || ! sessionScope.visit.user.guest }">
<a href="#<c:out value="${ sessionScope.visit.helper.hashCodeForComponent }" />"><li>-- <c:out value="${ transitionalData.transitionalDataLabel.transitionalDataLabel }" /></li></a>
<c:out value='<li><small><a href="#${sessionScope.visit.helper.hashCodeForComponent}">${transitionalData.transitionalDataLabel.transitionalDataLabelShort}</a></small></li>' escapeXml='false' />
</c:if>
</c:forEach>
</ul>
</c:if>