source: nutchez-0.1/tomcat/webapps/examples/WEB-INF/jsp/debug-taglib.tld @ 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.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1" ?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4  contributor license agreements.  See the NOTICE file distributed with
5  this work for additional information regarding copyright ownership.
6  The ASF licenses this file to You under the Apache License, Version 2.0
7  (the "License"); you may not use this file except in compliance with
8  the License.  You may obtain a copy of the License at
9
10      http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17-->
18<!DOCTYPE taglib
19        PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
20  "http://java.sun.com/j2ee/dtd/web-jsptaglibrary_1_2.dtd">
21
22<!-- a tag library descriptor -->
23
24<taglib>
25  <tlib-version>1.0</tlib-version>
26  <jsp-version>1.2</jsp-version>
27  <short-name>debug</short-name>
28  <uri>http://jakarta.apache.org/tomcat/debug-taglib</uri>
29  <description>
30    This tag library defines no tags.  Instead, its purpose is encapsulated
31    in the TagLibraryValidator implementation that simply outputs the XML
32    version of a JSP page to standard output, whenever this tag library is
33    referenced in a "taglib" directive in a JSP page.
34  </description>
35  <validator>
36    <validator-class>validators.DebugValidator</validator-class>
37  </validator>
38
39  <!-- This is a dummy tag solely to satisfy DTD requirements --> 
40  <tag>
41    <name>log</name>
42    <tag-class>examples.LogTag</tag-class>
43    <body-content>TAGDEPENDENT</body-content>
44    <description>
45  Perform a server side action; Log the message.
46    </description>
47    <attribute>
48  <name>toBrowser</name>
49  <required>false</required>
50    </attribute>
51  </tag>
52 
53
54</taglib>
Note: See TracBrowser for help on using the repository browser.