View | Details | Raw Unified | Return to bug 52634
Collapse All | Expand All

(-)a/webapps/examples/jsp/jsp2/el/implicit-objects.jsp (-1 / +1 lines)
Lines 24-30 Link Here
24
    <h1>JSP 2.0 Expression Language - Implicit Objects</h1>
24
    <h1>JSP 2.0 Expression Language - Implicit Objects</h1>
25
    <hr>
25
    <hr>
26
    This example illustrates some of the implicit objects available
26
    This example illustrates some of the implicit objects available
27
    in the Expression Lanaguage.  The following implicit objects are
27
    in the Expression Language.  The following implicit objects are
28
    available (not all illustrated here):
28
    available (not all illustrated here):
29
    <ul>
29
    <ul>
30
      <li>pageContext - the PageContext object</li>
30
      <li>pageContext - the PageContext object</li>
(-)a/webapps/examples/jsp/tagplugin/howto.html (-1 / +1 lines)
Lines 21-27 Link Here
21
  <body>
21
  <body>
22
    <h2>How to write tag plugins</h2>
22
    <h2>How to write tag plugins</h2>
23
    <p>
23
    <p>
24
      To write a plugin, you'll need to download the source for Tomcat 5.
24
      To write a plugin, you'll need to download the source for Tomcat.
25
      There are two steps:
25
      There are two steps:
26
    <ol>
26
    <ol>
27
      <li>
27
      <li>
(-)a/webapps/examples/jsp/tagplugin/notes.html (-3 / +3 lines)
Lines 21-37 Link Here
21
  <body>
21
  <body>
22
    <h2>Tag Plugins: Introductory Notes</h2>
22
    <h2>Tag Plugins: Introductory Notes</h2>
23
    <p>
23
    <p>
24
      Tomcat 5 provides a framework for implementing tag plugins.  The
24
      Tomcat provides a framework for implementing tag plugins.  The
25
      plugins instruct Jasper, at translation time, to replace tag handler
25
      plugins instruct Jasper, at translation time, to replace tag handler
26
      calls with Java scriptlets.
26
      calls with Java scriptlets.
27
      The framework allows tag library authors to implement plugins for
27
      The framework allows tag library authors to implement plugins for
28
      their tags.
28
      their tags.
29
    </p>
29
    </p>
30
    <p>
30
    <p>
31
      Tomcat 5 is released with plugins for several JSTL tags.  Note
31
      Tomcat is released with plugins for several JSTL tags.  Note
32
      that these plugins work with JSTL 1.1 as well as JSTL 1.0, though
32
      that these plugins work with JSTL 1.1 as well as JSTL 1.0, though
33
      the examples uses JSTL 1.1 and JSP 2.0.
33
      the examples uses JSTL 1.1 and JSP 2.0.
34
      These plugins are not complete (for instance, some item types not
34
      These plugins are not complete (for instance, some item types are not
35
      handled in &lt;c:if>).
35
      handled in &lt;c:if>).
36
      They do serve as examples to show plugins in action (just
36
      They do serve as examples to show plugins in action (just
37
      examine the generated Java files), and how they can be implemented.
37
      examine the generated Java files), and how they can be implemented.

Return to bug 52634