| Tag Summary |
| msg | Writes a localized message. The messages are defined in the msg*.properties. |
| param | Writes the value of a HTML request parameter. |
| check | Checks whether there is a index and whether a query was given. If one of these conditions is not fulfilled, a redirect to another page is sent. |
| contenttype | Override the Content Type for this request. |
| navigation | Creates hyperlinks to navigate through the search result pages. |
| list | The list tag encloses the JSP code that should be repeated for every shown search hit. Reads the request parameters: "fromresult" (The index of the first result to show) and "maxresults" (The maximum number of results to show). |
| input_hiddenparam | Writes the value of a HTML request parameter as a hidden field. |
| input_fieldlist | Generates a combobox list that shows all distinct values of a field in the index. |
| input_query | Writes an input field that contains the current search query. |
| input_order | Writes an drop down that contains the possible result order options. |
| input_maxresults | Writes a hidden field that contains the maximum number of results. |
| input_submit | Writes a submit button. |
| error_message | Writes the error message. |
| error_stacktrace | Writes the stacktrace of the error. |
| stats_query | Writes the query as String. |
| stats_from | Writes the number of the first hit shown on this page. |
| stats_to | Writes the number of the last hit shown on this page. |
| stats_total | Writes the total number of hits. |
| stats_numdocs | Writes the total number of documents from the index. |
| stats_searchtime | Writes the time the plain search took in seconds. |
| hit_link | Writes a link to the current hit's document. For the link text the title is used. This tag must be inside a link tag. |
| hit_typeicon | Generates an img showing the hit's type using its extension. This tag must be inside a link tag. |
| hit_path | Writes the navigation path to the current hit's document. This tag must be inside a link tag. |
| hit_score | Writes the score of the current hit in percent. This tag must be inside a link tag. |
| hit_sortContent | Writes the sort content of the current hit. This tag must be inside a link tag. |
| hit_size | Writes the size to the current hit's document. This tag must be inside a link tag. |
| hit_content | Writes a hidden textarea which holds the whole content. |
| hit_cached | Writes the text label for the cached content. |
| hit_url | Writes the URL of the current hit's document. This tag must be inside a link tag. |
| hit_filename | Writes the filename of the current hit's document. This tag must be inside a link tag. |
| hit_field | Writes the value of an index field of the current hit's document. This tag must be inside a link tag. |
| hit_lastModified | Writes the value the last modified date of the current hit's document. This tag must be inside a link tag. |