<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib
 PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
 "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">

<taglib>
  <tlib-version>1.0</tlib-version>
  <jsp-version>1.2</jsp-version>
  <short-name>store-page-context</short-name>
  <description>
    An extremely simple tag that simply stores a reference
    to the PageContext object in a PageContext attribute.
    This setting is performed because the JSTL jx library
    makes it easy to access attributes but does not make it
    easy to access scripting variables like request, response,
    pageContext, etc.
    
    From More Servlets and JavaServer Pages,
    http://www.moreservlets.com/.
  </description>
  
  <!-- Define a tag the stores the pageContext attribute. -->
  <tag>
    <name>storePageContext</name>
    <tag-class>
      moreservlets.tags.StorePageContextTag
    </tag-class>
    <body-content>empty</body-content>
    <description>Store PageContext in attribute.</description>
  </tag>      
</taglib>
