lucene/sandbox/contributions/taglib
Erik Hatcher 259f0f8e2f taglib cleanup, but still busted functionally
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150922 13f79535-47bb-0310-9956-ffa450edef68
2004-01-12 16:41:56 +00:00
..
WEB-INF taglib cleanup, but still busted functionally 2004-01-12 16:41:56 +00:00
docs documentation from Bryan 2003-05-29 17:21:19 +00:00
LICENSE.txt #19834 - Taglib contribution from Bryan LaPlante 2003-05-12 14:02:36 +00:00
footer.jsp #19834 - Taglib contribution from Bryan LaPlante 2003-05-12 14:02:36 +00:00
header.jsp #19834 - Taglib contribution from Bryan LaPlante 2003-05-12 14:02:36 +00:00
index.html taglib cleanup, but still busted functionally 2004-01-12 16:41:56 +00:00
index.jsp Bugzilla #20081 - added Bryan LaPlante's patch 2003-05-21 01:22:22 +00:00
readme.txt taglib cleanup, but still busted functionally 2004-01-12 16:41:56 +00:00
result.jsp taglib cleanup, but still busted functionally 2004-01-12 16:41:56 +00:00

readme.txt

WARNING: THE CURRENT STATE OF THIS CODEBASE IS BROKEN!  RESULTS.JSP
NEEDS A BIT OF WORK TO FUNCTION PROPERLY.

INTRODUCTION
The lucene-taglib project provides a tag library for searching
a lucene-index.

INSTRUCTIONS
1. download this project and create a context in your favorite
	servelt container called lucene-taglib.
2.	copy the file under the taglib directory into your new context.
3.	open result.jsp and locate the collection attribute of the
	<LUCENE:Search> tag.
4.	change the collection attribute to point to a lucene-index
	that you created using the system appropriate path.
5.	open index.jsp in your browser and enter search criteria
	and click the submit button.

DOCUMENTATION:
you will find documentation and an over view of the tag library in
the docs folder of this project and the javadocs in the api folder
respectively.

BUGS:
I tried to create a .war file for this project but I am having trouble
getting it to deploy properly.

More like a heads up than a bug I discovered that if you have tag pooling \
turned on in Tomcat that values passed to a custom tag will not change in
the event that an exception is thrown. Catching the exception inside of
the tag or page does not help, to update the values at this point you
have to turn off tag pooling. Follow the instructions below to do this
in Tomcat.

----------------------------------------------------------------------------

  From: Bill Barker
  Subject: Re: HELP:Tagpool sharing problems
  Date: Mon, 28 Apr 2003 22:20:20 -0700

----------------------------------------------------------------------------

In $CATALINA_HOME/conf/web.xml, locate the <servlet-name>jsp</servlet-name>
servlet, and add:
  <init-param>
    <param-name>enablePooling</param-name>
    <param-value>false</param-value>
  </init-param>

This will turn off tag-pooling.  You'll also need to clear out
$CATALINA_HOME/work so that the JSP pages get re-compiled.

If you just want it turned off for one context, then you can place the
definition of the jsp servlet in your own web.xml.

If you are using:
  <servlet>
    <servlet-name>myJspPage</servlet-name>
    <jsp-page>myJspPage.jsp</jsp-page>
  </servlet>
then you also need to add the enablePooling init-param to your servlet's
definition.


HISTORY:
1.	Added more robust error handling and the ability to turn it on and
	off with a throwOnException attribute. (All tags)
2.	Added a Column tag for outputting the field names found in a
	Lucene index.
3.	Added a Field tag for retrieving a value for a field in a search
	result either produced by the Column tag or known in advance.
4.	Added new example pages to illustrate how to use the new tags
5.	The Collection tag has been deprecated, use the collection attribute
	of the Search tag instead.