Return-Path: Mailing-List: contact watchdog-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list watchdog-dev@jakarta.apache.org Received: (qmail 8635 invoked by uid 500); 4 Oct 2000 00:04:53 -0000 Delivered-To: apmail-jakarta-watchdog-4.0-cvs@apache.org Received: (qmail 8632 invoked by uid 1193); 4 Oct 2000 00:04:52 -0000 Date: 4 Oct 2000 00:04:52 -0000 Message-ID: <20001004000452.8631.qmail@locus.apache.org> From: santosh@locus.apache.org To: jakarta-watchdog-4.0-cvs@apache.org Subject: cvs commit: jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language included.jsp includedJava.jsp negativeLangAny.jsp negativeLangIncludeAny.jsp negativeLangIncludeJava.jsp negativeLangJava.jsp negativeNonJava.jsp positiveLang.jsp santosh 00/10/03 17:04:51 Added: src/server/jsp-tests/jsp/core_syntax/directives/page/language included.jsp includedJava.jsp negativeLangAny.jsp negativeLangIncludeAny.jsp negativeLangIncludeJava.jsp negativeLangJava.jsp negativeNonJava.jsp positiveLang.jsp Log: watchdog 4.0 Revision Changes Path 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/included.jsp Index: included.jsp =================================================================== included <%@ page language="javascript" %> <% out.println("hello from included"); %> 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/includedJava.jsp Index: includedJava.jsp =================================================================== includedJava <%@ page language="java" %> <% out.println("hello from includedJava"); %> 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/negativeLangAny.jsp Index: negativeLangAny.jsp =================================================================== negativeLangAny <% /** Name: NegativeLangAny Description:Create two jsp directives with the language attribute set to "java" in the first case and anything other than "java" in the second. Result: Fatal translation error **/ %> <%@ page language="java" errorpage="myerror.jsp" %> <%@ page language="javascript" %> hello 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/negativeLangIncludeAny.jsp Index: negativeLangIncludeAny.jsp =================================================================== negativeLangIncludeAny <% /** Name: negativeLangIncludeAny Description: Create a page with the language attribute set to "java" and with an include attribute. The included page should have a jsp directive with language attribute not set to java. Result: Fatal translation error **/ %> <%@ page language="java" %> <% out.println("hello"); %> <%@ include file="included.jsp" %> 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/negativeLangIncludeJava.jsp Index: negativeLangIncludeJava.jsp =================================================================== negativeLangIncludeJava <% /** Name: negativeLangIncludeJava Description: Create a page with the language attribute set to java and with an include attribute. The included page should have a jsp directive with language attribute set to java. Result:Fatal translation error **/ %> <%@ page language="java" %> <% out.println("hello"); %> <%@ include file="includedJava.jsp" %> 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/negativeLangJava.jsp Index: negativeLangJava.jsp =================================================================== negativeLangJava <% /** Name:negativeLangJava Description: Create two jsp directives on the same page with language attribute set to "java" in both cases Result:Fatal translation error **/ %> <%@ page language="java" %> <%@ page language="java" %> hello 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/negativeNonJava.jsp Index: negativeNonJava.jsp =================================================================== negativeNonJava <% /** Name: negativeNonJava Description:Create a page with a scriptlet (before a jsp directive). then put a jsp directive after the scriptlet with the language not set to java Result: fatal translation error **/ %> <% out.println("hello"); %> <%@ page language="javascript" %> hello 1.1 jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/language/positiveLang.jsp Index: positiveLang.jsp =================================================================== positiveLang <% /** Name: positiveLang Description:Use a jsp attribute in a page with the language attribute set to "java". Result:No error should be returned **/ %> <%@ page language="java" %> hello