debug-taglib.tld
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  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.       http://www.apache.org/licenses/LICENSE-2.0
  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. -->
  16. <!DOCTYPE taglib
  17.         PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
  18. "http://java.sun.com/j2ee/dtd/web-jsptaglibrary_1_2.dtd">
  19. <!-- a tag library descriptor -->
  20. <taglib>
  21.   <tlib-version>1.0</tlib-version>
  22.   <jsp-version>1.2</jsp-version>
  23.   <short-name>debug</short-name>
  24.   <uri>http://jakarta.apache.org/tomcat/debug-taglib</uri>
  25.   <description>
  26.     This tag library defines no tags.  Instead, its purpose is encapsulated
  27.     in the TagLibraryValidator implementation that simply outputs the XML
  28.     version of a JSP page to standard output, whenever this tag library is
  29.     referenced in a "taglib" directive in a JSP page.
  30.   </description>
  31.   <validator>
  32.     <validator-class>validators.DebugValidator</validator-class>
  33.   </validator>
  34.   <!-- This is a dummy tag solely to satisfy DTD requirements -->  
  35.   <tag>
  36.     <name>log</name>
  37.     <tag-class>examples.LogTag</tag-class>
  38.     <body-content>TAGDEPENDENT</body-content>
  39.     <description>
  40. Perform a server side action; Log the message.
  41.     </description>
  42.     <attribute>
  43. <name>toBrowser</name>
  44. <required>false</required>
  45.     </attribute>
  46.   </tag>
  47.   
  48. </taglib>