fixed a couple of minor issues with missing methods
This commit is contained in:
parent
44bf0bcbc3
commit
c2fb1f036f
|
@ -114,6 +114,24 @@ public class FindPostView implements ContentJSP
|
||||||
*--------------------------------------------------------------------------------
|
*--------------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
public final CommunityContext getCommunity()
|
||||||
|
{
|
||||||
|
return comm;
|
||||||
|
|
||||||
|
} // end getCommunity
|
||||||
|
|
||||||
|
public final ConferenceContext getConference()
|
||||||
|
{
|
||||||
|
return conf;
|
||||||
|
|
||||||
|
} // end getConference
|
||||||
|
|
||||||
|
public final TopicContext getTopic()
|
||||||
|
{
|
||||||
|
return topic;
|
||||||
|
|
||||||
|
} // end getTopic
|
||||||
|
|
||||||
public final String getTerm()
|
public final String getTerm()
|
||||||
{
|
{
|
||||||
return term;
|
return term;
|
||||||
|
|
|
@ -81,18 +81,17 @@
|
||||||
%>
|
%>
|
||||||
<HR>
|
<HR>
|
||||||
<TABLE WIDTH="100%" BORDER=0 ALIGN=CENTER><TR VALIGN=MIDDLE>
|
<TABLE WIDTH="100%" BORDER=0 ALIGN=CENTER><TR VALIGN=MIDDLE>
|
||||||
<TD WIDTH="50%" ALIGN=LEFT CLASS="content"><%= rdat.getStdFontTag(ColorSelectors.CONTENT_FOREGROUND,3) %>
|
<TD WIDTH="50%" ALIGN=LEFT CLASS="content"><util:font color="content.fg" size="3">
|
||||||
<%-- The initial search results --%>
|
<%-- The initial search results --%>
|
||||||
<B>Search Results</B>
|
<B>Search Results</B>
|
||||||
<% if (view.getFindCount()>0) { %>
|
<% if (view.getFindCount()>0) { %>
|
||||||
(Displaying <%= view.getOffset() + 1 %>-<%= view.getOffset() + dcount %> of
|
(Displaying <%= view.getOffset() + 1 %>-<%= view.getOffset() + dcount %> of
|
||||||
<%= view.getFindCount() %>)
|
<%= view.getFindCount() %>)
|
||||||
<% } else { %>(None)<% } %>
|
<% } else { %>(None)<% } %>
|
||||||
</FONT></TD>
|
</util:font></TD>
|
||||||
|
|
||||||
|
|
||||||
<TD WIDTH="50%" ALIGN=RIGHT CLASS="content">
|
<TD WIDTH="50%" ALIGN=RIGHT CLASS="content">
|
||||||
<% if (go_next || (data.getOffset()>0)) { %>
|
<% if (go_next || (view.getOffset()>0)) { %>
|
||||||
<%-- The navigational form that allows us to page through the results --%>
|
<%-- The navigational form that allows us to page through the results --%>
|
||||||
<util:comment>Navigational form</util:comment>
|
<util:comment>Navigational form</util:comment>
|
||||||
<util:form action="conf/find.js.vs" type="servlet"><DIV CLASS="content">
|
<util:form action="conf/find.js.vs" type="servlet"><DIV CLASS="content">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user