|
|
 |

|
 |
| |
Résultats de recherche de top-horoscopes
© 2004 Mirago PLC <%!
/** Echo a single result
* @param out
* @param title Title of the serahc result
* @param url URL of the result
* @param abs Abstract of the result
* @param redir Redirection URL
* @param details description of the result
* @param offset Offset from start of results.
* @param count Index of result in current group.
*/
public void echoResult(JspWriter out, String title, String url, String abs, String redir, boolean details, int offset, int count) throws IOException {
out.print(""+(offset+count+1) +". ");
out.print(title);
out.println("");
if (details) {
out.println("" + abs +"");
out.print("");
out.println(url+"
");
}
}
/** Formatting text before first result.
* @param out Where to write content
*/
public void echoResultTop(JspWriter out) throws IOException {
out.println("
");
}
/** formatting text after last result.
*/
public void echoResultBottom(JspWriter out) throws IOException {
out.println(" ");
}
%>
|
|
|
 |
 |
 |
|
|