From: markt Date: Tue, 9 Mar 2010 15:44:30 +0000 (+0000) Subject: Re-org some JSPs X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=dcfa21c70357af1caca706be199202a2f7a95317;p=tomcat7.0 Re-org some JSPs git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@920926 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/org/apache/el/TestELInJsp.java b/test/org/apache/el/TestELInJsp.java index 5d704fb7e..8e25d0072 100644 --- a/test/org/apache/el/TestELInJsp.java +++ b/test/org/apache/el/TestELInJsp.java @@ -107,7 +107,7 @@ public class TestELInJsp extends TomcatBaseTest { tomcat.start(); ByteChunk res = getUrl("http://localhost:" + getPort() + - "/test/bug45427.jsp"); + "/test/bug45nnn/bug45427.jsp"); String result = res.toString(); // Warning: JSP attribute escaping != Java String escaping @@ -142,7 +142,7 @@ public class TestELInJsp extends TomcatBaseTest { tomcat.start(); ByteChunk res = getUrl("http://localhost:" + getPort() + - "/test/bug45451a.jsp"); + "/test/bug45nnn/bug45451a.jsp"); String result = res.toString(); // Warning: JSP attribute escaping != Java String escaping @@ -151,7 +151,7 @@ public class TestELInJsp extends TomcatBaseTest { assertEcho(result, "02-\\'hello world\\'"); assertEcho(result, "03-\\'hello world\\'"); - res = getUrl("http://localhost:" + getPort() + "/test/bug45451b.jsp"); + res = getUrl("http://localhost:" + getPort() + "/test/bug45nnn/bug45451b.jsp"); result = res.toString(); // Warning: JSP attribute escaping != Java String escaping // Warning: Attributes are always unescaped before passing to the EL @@ -171,7 +171,7 @@ public class TestELInJsp extends TomcatBaseTest { assertEcho(result, "12-\\#{1+1}"); assertEcho(result, "13-\\\\2"); - res = getUrl("http://localhost:" + getPort() + "/test/bug45451c.jsp"); + res = getUrl("http://localhost:" + getPort() + "/test/bug45nnn/bug45451c.jsp"); result = res.toString(); // Warning: JSP attribute escaping != Java String escaping // TODO - Currently we allow a single unescaped \ in attribute values @@ -191,7 +191,7 @@ public class TestELInJsp extends TomcatBaseTest { assertEcho(result, "12-\\\\#{1+1}"); assertEcho(result, "13-\\\\#{1+1}"); - res = getUrl("http://localhost:" + getPort() + "/test/bug45451d.jspx"); + res = getUrl("http://localhost:" + getPort() + "/test/bug45nnn/bug45451d.jspx"); result = res.toString(); // Warning: JSP attribute escaping != Java String escaping // \\ Is *not* an escape sequence in XML attributes @@ -210,7 +210,7 @@ public class TestELInJsp extends TomcatBaseTest { assertEcho(result, "12-\\\\#{1+1}"); assertEcho(result, "13-\\\\\\#{1+1}"); - res = getUrl("http://localhost:" + getPort() + "/test/bug45451e.jsp"); + res = getUrl("http://localhost:" + getPort() + "/test/bug45nnn/bug45451e.jsp"); result = res.toString(); // Warning: JSP attribute escaping != Java String escaping // Warning: Attributes are always unescaped before passing to the EL @@ -242,7 +242,7 @@ public class TestELInJsp extends TomcatBaseTest { tomcat.start(); ByteChunk res = getUrl("http://localhost:" + getPort() + - "/test/bug45511.jsp"); + "/test/bug45nnn/bug45511.jsp"); String result = res.toString(); assertEcho(result, "00-true"); diff --git a/test/org/apache/jasper/compiler/TestGenerator.java b/test/org/apache/jasper/compiler/TestGenerator.java index 78c5856c3..d8c6070a6 100644 --- a/test/org/apache/jasper/compiler/TestGenerator.java +++ b/test/org/apache/jasper/compiler/TestGenerator.java @@ -37,7 +37,7 @@ public class TestGenerator extends TomcatBaseTest { tomcat.start(); ByteChunk res = getUrl("http://localhost:" + getPort() + - "/test/bug45015a.jsp"); + "/test/bug45nnn/bug45015a.jsp"); String result = res.toString(); // Beware of the differences between escaping in JSP attributes and @@ -66,7 +66,7 @@ public class TestGenerator extends TomcatBaseTest { Exception e = null; try { - getUrl("http://localhost:" + getPort() + "/test/bug45015b.jsp"); + getUrl("http://localhost:" + getPort() + "/test/bug45nnn/bug45015b.jsp"); } catch (IOException ioe) { e = ioe; } diff --git a/test/webapp-3.0/bug45015a.jsp b/test/webapp-3.0/bug45015a.jsp deleted file mode 100644 index 3d85ba424..000000000 --- a/test/webapp-3.0/bug45015a.jsp +++ /dev/null @@ -1,32 +0,0 @@ -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> - - Bug 45015 test case A - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/webapp-3.0/bug45015b.jsp b/test/webapp-3.0/bug45015b.jsp deleted file mode 100644 index a032a1109..000000000 --- a/test/webapp-3.0/bug45015b.jsp +++ /dev/null @@ -1,23 +0,0 @@ -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> - - Bug 45015 test case B - - - - \ No newline at end of file diff --git a/test/webapp-3.0/bug45427.jsp b/test/webapp-3.0/bug45427.jsp deleted file mode 100644 index 41cd19ba8..000000000 --- a/test/webapp-3.0/bug45427.jsp +++ /dev/null @@ -1,41 +0,0 @@ -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> - - Bug 45427 test case - -

00-${'hello world'}

-

01-${'hello \'world'}

-

02-${'hello "world'}

-

03-${"hello world"}

-

04-${"hello 'world"}

-

05-${"hello \"world"}

- - - - - - - - - - - - - - - \ No newline at end of file diff --git a/test/webapp-3.0/bug45451.jspf b/test/webapp-3.0/bug45451.jspf deleted file mode 100644 index e4483e366..000000000 --- a/test/webapp-3.0/bug45451.jspf +++ /dev/null @@ -1,35 +0,0 @@ -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> -

00-${1+1}

-

01-\${1+1}

-

02-\\${1+1}

-

03-\\\${1+1}

- - - - - - - - - - - - - - - diff --git a/test/webapp-3.0/bug45451a.jsp b/test/webapp-3.0/bug45451a.jsp deleted file mode 100644 index f3a67f4d9..000000000 --- a/test/webapp-3.0/bug45451a.jsp +++ /dev/null @@ -1,26 +0,0 @@ -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> - - Bug 45451 test case - - - - - - - \ No newline at end of file diff --git a/test/webapp-3.0/bug45451b.jsp b/test/webapp-3.0/bug45451b.jsp deleted file mode 100644 index 3f3e1664b..000000000 --- a/test/webapp-3.0/bug45451b.jsp +++ /dev/null @@ -1,19 +0,0 @@ -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> -<%@page isELIgnored="false" %> -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%@ include file="bug45451.jspf" %> diff --git a/test/webapp-3.0/bug45451c.jsp b/test/webapp-3.0/bug45451c.jsp deleted file mode 100644 index 38324a3aa..000000000 --- a/test/webapp-3.0/bug45451c.jsp +++ /dev/null @@ -1,19 +0,0 @@ -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> -<%@page isELIgnored="true" deferredSyntaxAllowedAsLiteral="true" %> -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%@ include file="bug45451.jspf" %> diff --git a/test/webapp-3.0/bug45451d.jspx b/test/webapp-3.0/bug45451d.jspx deleted file mode 100644 index 5a0039f75..000000000 --- a/test/webapp-3.0/bug45451d.jspx +++ /dev/null @@ -1,40 +0,0 @@ - - - - - -

00-${1+1}

-

01-\${1+1}

-

02-\\${1+1}

-

03-\\\${1+1}

- - - - - - - - - - - - -
\ No newline at end of file diff --git a/test/webapp-3.0/bug45451e.jsp b/test/webapp-3.0/bug45451e.jsp deleted file mode 100644 index b181d136c..000000000 --- a/test/webapp-3.0/bug45451e.jsp +++ /dev/null @@ -1,19 +0,0 @@ -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> -<%@page deferredSyntaxAllowedAsLiteral="true" %> -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%@ include file="bug45451.jspf" %> diff --git a/test/webapp-3.0/bug45511.jsp b/test/webapp-3.0/bug45511.jsp deleted file mode 100644 index 6279eba72..000000000 --- a/test/webapp-3.0/bug45511.jsp +++ /dev/null @@ -1,24 +0,0 @@ -<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> -<%-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---%> - - Bug 45511 test case - - - - - \ No newline at end of file diff --git a/test/webapp-3.0/bug45nnn/bug45015a.jsp b/test/webapp-3.0/bug45nnn/bug45015a.jsp new file mode 100644 index 000000000..3d85ba424 --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45015a.jsp @@ -0,0 +1,32 @@ +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> + + Bug 45015 test case A + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/webapp-3.0/bug45nnn/bug45015b.jsp b/test/webapp-3.0/bug45nnn/bug45015b.jsp new file mode 100644 index 000000000..a032a1109 --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45015b.jsp @@ -0,0 +1,23 @@ +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> + + Bug 45015 test case B + + + + \ No newline at end of file diff --git a/test/webapp-3.0/bug45nnn/bug45427.jsp b/test/webapp-3.0/bug45nnn/bug45427.jsp new file mode 100644 index 000000000..41cd19ba8 --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45427.jsp @@ -0,0 +1,41 @@ +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> + + Bug 45427 test case + +

00-${'hello world'}

+

01-${'hello \'world'}

+

02-${'hello "world'}

+

03-${"hello world"}

+

04-${"hello 'world"}

+

05-${"hello \"world"}

+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/webapp-3.0/bug45nnn/bug45451.jspf b/test/webapp-3.0/bug45nnn/bug45451.jspf new file mode 100644 index 000000000..e4483e366 --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45451.jspf @@ -0,0 +1,35 @@ +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> +

00-${1+1}

+

01-\${1+1}

+

02-\\${1+1}

+

03-\\\${1+1}

+ + + + + + + + + + + + + + + diff --git a/test/webapp-3.0/bug45nnn/bug45451a.jsp b/test/webapp-3.0/bug45nnn/bug45451a.jsp new file mode 100644 index 000000000..f3a67f4d9 --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45451a.jsp @@ -0,0 +1,26 @@ +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> + + Bug 45451 test case + + + + + + + \ No newline at end of file diff --git a/test/webapp-3.0/bug45nnn/bug45451b.jsp b/test/webapp-3.0/bug45nnn/bug45451b.jsp new file mode 100644 index 000000000..3f3e1664b --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45451b.jsp @@ -0,0 +1,19 @@ +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> +<%@page isELIgnored="false" %> +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%@ include file="bug45451.jspf" %> diff --git a/test/webapp-3.0/bug45nnn/bug45451c.jsp b/test/webapp-3.0/bug45nnn/bug45451c.jsp new file mode 100644 index 000000000..38324a3aa --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45451c.jsp @@ -0,0 +1,19 @@ +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> +<%@page isELIgnored="true" deferredSyntaxAllowedAsLiteral="true" %> +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%@ include file="bug45451.jspf" %> diff --git a/test/webapp-3.0/bug45nnn/bug45451d.jspx b/test/webapp-3.0/bug45nnn/bug45451d.jspx new file mode 100644 index 000000000..5a0039f75 --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45451d.jspx @@ -0,0 +1,40 @@ + + + + + +

00-${1+1}

+

01-\${1+1}

+

02-\\${1+1}

+

03-\\\${1+1}

+ + + + + + + + + + + + +
\ No newline at end of file diff --git a/test/webapp-3.0/bug45nnn/bug45451e.jsp b/test/webapp-3.0/bug45nnn/bug45451e.jsp new file mode 100644 index 000000000..b181d136c --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45451e.jsp @@ -0,0 +1,19 @@ +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> +<%@page deferredSyntaxAllowedAsLiteral="true" %> +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%@ include file="bug45451.jspf" %> diff --git a/test/webapp-3.0/bug45nnn/bug45511.jsp b/test/webapp-3.0/bug45nnn/bug45511.jsp new file mode 100644 index 000000000..6279eba72 --- /dev/null +++ b/test/webapp-3.0/bug45nnn/bug45511.jsp @@ -0,0 +1,24 @@ +<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> +<%-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--%> + + Bug 45511 test case + + + + + \ No newline at end of file