remove traces of JSP
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@770 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
8f3e89e664
commit
81f7794b7a
|
@ -1,28 +0,0 @@
|
||||||
<?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>acme</short-name>
|
|
||||||
<uri>http://www.acme.com/taglib</uri>
|
|
||||||
<description>taglib example</description>
|
|
||||||
<listener>
|
|
||||||
<listener-class>com.acme.TagListener</listener-class>
|
|
||||||
</listener>
|
|
||||||
|
|
||||||
<tag>
|
|
||||||
<name>date</name>
|
|
||||||
<tag-class>com.acme.DateTag</tag-class>
|
|
||||||
<body-content>TAGDEPENDENT</body-content>
|
|
||||||
<description>Display Date</description>
|
|
||||||
<attribute>
|
|
||||||
<name>tz</name>
|
|
||||||
<required>false</required>
|
|
||||||
</attribute>
|
|
||||||
</tag>
|
|
||||||
|
|
||||||
</taglib>
|
|
|
@ -1,35 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
|
||||||
|
|
||||||
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
|
|
||||||
version="2.0">
|
|
||||||
<description>Acme JSP2 tags</description>
|
|
||||||
<tlib-version>1.0</tlib-version>
|
|
||||||
<short-name>acme2</short-name>
|
|
||||||
<uri>http://www.acme.com/taglib2</uri>
|
|
||||||
<tag>
|
|
||||||
<description>Simple Date formatting</description>
|
|
||||||
<name>date2</name>
|
|
||||||
<tag-class>com.acme.Date2Tag</tag-class>
|
|
||||||
<body-content>scriptless</body-content>
|
|
||||||
<variable>
|
|
||||||
<description>Day of the Month</description>
|
|
||||||
<name-given>day</name-given>
|
|
||||||
</variable>
|
|
||||||
<variable>
|
|
||||||
<description>Month of the Year</description>
|
|
||||||
<name-given>month</name-given>
|
|
||||||
</variable>
|
|
||||||
<variable>
|
|
||||||
<description>Year</description>
|
|
||||||
<name-given>year</name-given>
|
|
||||||
</variable>
|
|
||||||
<attribute>
|
|
||||||
<name>format</name>
|
|
||||||
<required>true</required>
|
|
||||||
<rtexprvalue>true</rtexprvalue>
|
|
||||||
</attribute>
|
|
||||||
</tag>
|
|
||||||
</taglib>
|
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
/panel.tag/1.1/Sat Nov 8 22:30:42 2003//
|
|
||||||
D
|
|
|
@ -1 +0,0 @@
|
||||||
core/training/osJ2eeWebTraining/exercises/webappsrc/day2jsp/WEB-INF/tags
|
|
|
@ -1 +0,0 @@
|
||||||
:ext:jules@cvs.coredevelopers.net:/cvsroot
|
|
|
@ -1,17 +0,0 @@
|
||||||
<%--
|
|
||||||
- Copyright (c) 2002 The Apache Software Foundation. All rights
|
|
||||||
- reserved.
|
|
||||||
--%>
|
|
||||||
<%@ attribute name="color" %>
|
|
||||||
<%@ attribute name="bgcolor" %>
|
|
||||||
<%@ attribute name="title" %>
|
|
||||||
<table border="1" bgcolor="${color}">
|
|
||||||
<tr>
|
|
||||||
<td><b>${title}</b></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td bgcolor="${bgcolor}">
|
|
||||||
<jsp:doBody/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
Loading…
Reference in New Issue