source: nutchez-0.1/tomcat/webapps/examples/jsp/tagplugin/notes.html @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 1.6 KB
Line 
1<!--
2 Licensed to the Apache Software Foundation (ASF) under one or more
3  contributor license agreements.  See the NOTICE file distributed with
4  this work for additional information regarding copyright ownership.
5  The ASF licenses this file to You under the Apache License, Version 2.0
6  (the "License"); you may not use this file except in compliance with
7  the License.  You may obtain a copy of the License at
8
9      http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16-->
17<html>
18  <head>
19    <title>Tag Plugin Introduction</title>
20    <h2>Tag Plugins: Introductory Notes</h2>
21    <p>
22      Tomcat 5 provides a framework for implementing tag plugins.  The
23      plugins instruct Jasper, at translation time, to replace tag handler
24      calls with Java scriptlets.
25      The framework allows tag library authors to implement plugins for
26      their tags.
27    </p>
28    <p>
29      Tomcat 5 is released with plugins for several JSTL tags.  Note
30      that these plugins work with JSTL 1.1 as well as JSTL 1.0, though
31      the examples uses JSTL 1.1 and JSP 2.0. 
32      These plugins are not complete (for instance, some item types not
33      handled in &lt;c:if>).
34      They do serve as examples to show plugins in action (just
35      examine the generated Java files), and how they can be implemented.
36    </p>
37  </head>
38</html>
39
Note: See TracBrowser for help on using the repository browser.