[Fwd: [PATCH] jakarta-servletapi-5 schema update]

2004-06-15 Thread Yuta Yoshida
forgot to attach...
sorry,
Yutaka Yoshida
Sun Microsystems, Inc.
 Original Message 
Subject: [PATCH] jakarta-servletapi-5 schema update
Date: Tue, 15 Jun 2004 14:56:09 -0700
From: Yuta Yoshida <[EMAIL PROTECTED]>
Organization: Sun Microsystems
To: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Hi,
The attached file is to update the web-app_2_4.xsd according
to the JSR154 maintenance release.
jsr154/src/share/dtd/web-app_2_4.xsd
  o The restriction facet of mime-typeType should be updated
from:-

to:-

thank you,
Yutaka Yoshida
Sun Microsystems, Inc.

Index: jsr154/src/share/dtd/web-app_2_4.xsd
===
RCS file: /home/cvspublic/jakarta-servletapi-5/jsr154/src/share/dtd/web-app_2_4.xsd,v
retrieving revision 1.13
diff -u -r1.13 web-app_2_4.xsd
--- jsr154/src/share/dtd/web-app_2_4.xsd18 Mar 2004 16:40:34 -  1.13
+++ jsr154/src/share/dtd/web-app_2_4.xsd15 Jun 2004 18:10:29 -
@@ -30,7 +30,7 @@
   
 
 
-  Copyright 2002 Sun Microsystems, Inc., 901 San Antonio
+  Copyright 2004 Sun Microsystems, Inc., 901 San Antonio
   Road, Palo Alto, California 94303, U.S.A. All rights
   reserved.
 
@@ -804,7 +804,7 @@
 
 
   
-   
+   
   
 
   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

[PATCH] jakarta-servletapi-5 schema update

2004-06-15 Thread Yuta Yoshida
Hi,

The attached file is to update the web-app_2_4.xsd according
to the JSR154 maintenance release.

jsr154/src/share/dtd/web-app_2_4.xsd

  o The restriction facet of mime-typeType should be updated
from:-

to:-


thank you,
Yutaka Yoshida
Sun Microsystems, Inc.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [PATCH] jakarta-servletapi-5: fix description

2003-10-29 Thread Yuta Yoshida
The attached file is to update the
servlet2.4 deployment descriptor schema
jsr154/src/share/dtd/web-app_2_4.xsd
Update the 'year' in the copyright
thank you,
yutaka yoshida
Sun Microsystems, Inc.
Index: jsr154/src/share/dtd/web-app_2_4.xsd
===
RCS file: /home/cvspublic/jakarta-servletapi-5/jsr154/src/share/dtd/web-app_2_4.xsd,v
retrieving revision 1.12
diff -u -r1.12 web-app_2_4.xsd
--- jsr154/src/share/dtd/web-app_2_4.xsd26 Aug 2003 21:38:09 -  1.12
+++ jsr154/src/share/dtd/web-app_2_4.xsd30 Oct 2003 03:26:18 -
@@ -8,14 +8,14 @@
version="2.4">
   
 
-  %W% %E%
+  @(#)web-app_2_4.xsds 1.60 03/08/26
 
   
 
   
 
 
-  Copyright 2002 Sun Microsystems, Inc., 901 San Antonio
+  Copyright 2003 Sun Microsystems, Inc., 901 San Antonio
   Road, Palo Alto, California 94303, U.S.A. All rights
   reserved.
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

[PATCH] jakarta-servletapi-5: fix description

2003-09-30 Thread Yuta Yoshida
Hi,

The attached file is to update the servlet2.4 API.

jsr154/src/share/javax/servlet/ServletRequest.java
Fix the confusing description in getServerName()
and getServerPort() - change "host header" to
"host header value".
thank you,
yutaka yoshida
Sun Microsystems, Inc.
Index: jsr154/src/share/javax/servlet/ServletRequest.java
===
RCS file: 
/home/cvspublic/jakarta-servletapi-5/jsr154/src/share/javax/servlet/ServletRequest.java,v
retrieving revision 1.8
diff -u -r1.8 ServletRequest.java
--- jsr154/src/share/javax/servlet/ServletRequest.java  30 Sep 2003 19:49:00 - 
 1.8
+++ jsr154/src/share/javax/servlet/ServletRequest.java  1 Oct 2003 00:52:29 -
@@ -351,7 +351,7 @@
 /**
  * Returns the host name of the server to which the request was sent.
  * It is the value of the part before ":" in the Host
- * header, if any, or the resolved server name, or the server IP address.
+ * header value, if any, or the resolved server name, or the server IP address.
  *
  * @return a String containing the name 
  * of the server
@@ -365,7 +365,7 @@
 /**
  * Returns the port number to which the request was sent.
  * It is the value of the part after ":" in the Host
- * header, if any, or the server port where the client connection
+ * header value, if any, or the server port where the client connection
  * was accepted on.
  *
  * @return an integer specifying the port number

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

[PATCH] jakarta-servletapi-5: API update

2003-09-18 Thread Yuta Yoshida
Hi,

The attached file is to update the Servlet 2.4 API.
Changes are synchronizing with the latest specification
and fixing a typo and a bad indentation. All semantics
stay the same.

o Fix typo and indentation:
jsr154/src/share/javax/servlet/Filter.java
jsr154/src/share/javax/servlet/FilterChain.java
jsr154/src/share/javax/servlet/GenericServlet.java
jsr154/src/share/javax/servlet/ServletContext.java
jsr154/src/share/javax/servlet/ServletContextAttributeEvent.java
jsr154/src/share/javax/servlet/ServletContextAttributeListener.java
jsr154/src/share/javax/servlet/ServletContextEvent.java
jsr154/src/share/javax/servlet/ServletOutputStream.java
jsr154/src/share/javax/servlet/ServletRequest.java
jsr154/src/share/javax/servlet/ServletResponse.java
jsr154/src/share/javax/servlet/http/HttpServletRequest.java
jsr154/src/share/javax/servlet/http/HttpServletResponse.java
jsr154/src/share/javax/servlet/http/HttpSession.java
jsr154/src/share/javax/servlet/http/HttpSessionBindingEvent.java
o Synchronize with the spec:
jsr154/src/share/javax/servlet/ServletContextListener.java
jsr154/src/share/javax/servlet/ServletRequestAttributeEvent.java
jsr154/src/share/javax/servlet/ServletRequestAttributeListener.java
jsr154/src/share/javax/servlet/ServletRequestEvent.java
jsr154/src/share/javax/servlet/ServletRequestListener.java
==
Thank you,
Yutaka Yoshida
Sun Microsystems


Index: jsr154/src/share/javax/servlet/Filter.java
===
RCS file: 
/home/cvspublic/jakarta-servletapi-5/jsr154/src/share/javax/servlet/Filter.java,v
retrieving revision 1.2
diff -u -r1.2 Filter.java
--- jsr154/src/share/javax/servlet/Filter.java  18 Aug 2003 16:50:33 -  1.2
+++ jsr154/src/share/javax/servlet/Filter.java  18 Sep 2003 23:34:58 -
@@ -114,7 +114,7 @@
* filter content or headers for output filtering 
* 4. a) Either invoke the next entity in the chain using the 
FilterChain object (chain.doFilter()),
** 4. b) or not pass on the request/response pair to the next 
entity in the filter chain to block the request processing
-   ** 5. Directly set headers on the response after invocation of the next entity 
in ther filter chain.
+   ** 5. Directly set headers on the response after invocation of the next entity 
in the filter chain.
**/
 public void doFilter ( ServletRequest request, ServletResponse response, 
FilterChain chain ) throws IOException, ServletException;
 
Index: jsr154/src/share/javax/servlet/FilterChain.java
===
RCS file: 
/home/cvspublic/jakarta-servletapi-5/jsr154/src/share/javax/servlet/FilterChain.java,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 FilterChain.java
--- jsr154/src/share/javax/servlet/FilterChain.java 13 Aug 2002 16:21:42 - 
 1.1.1.1
+++ jsr154/src/share/javax/servlet/FilterChain.java 18 Sep 2003 23:34:58 -
@@ -66,7 +66,7 @@
 * A FilterChain is an object provided by the servlet container to the developer
 * giving a view into the invocation chain of a filtered request for a resource. 
Filters
 * use the FilterChain to invoke the next filter in the chain, or if the calling 
filter
-* is the last filter in the chain, to invoke the rosource at the end of the chain.
+* is the last filter in the chain, to invoke the resource at the end of the chain.
 *
 * @see Filter
 * @since Servlet 2.3
Index: jsr154/src/share/javax/servlet/GenericServlet.java
===
RCS file: 
/home/cvspublic/jakarta-servletapi-5/jsr154/src/share/javax/servlet/GenericServlet.java,v
retrieving revision 1.2
diff -u -r1.2 GenericServlet.java
--- jsr154/src/share/javax/servlet/GenericServlet.java  11 Jan 2003 00:26:02 - 
 1.2
+++ jsr154/src/share/javax/servlet/GenericServlet.java  18 Sep 2003 23:34:58 -
@@ -136,7 +136,7 @@
  * of the initialization parameter
  *
  * @return String  a String containing the value
- * of the initalization parameter
+ * of the initialization parameter
  *
  */ 
 
Index: jsr154/src/share/javax/servlet/ServletContext.java
===
RCS file: 
/home/cvspublic/jakarta-servletapi-5/jsr154/src/share/javax/servlet/ServletContext.java,v
retrieving revision 1.5
diff -u -r1.5 ServletContext.java
--- jsr154/src/share/javax/servlet/ServletContext.java  2 Sep 2003 21:14:10 -  
 1.5
+++ jsr154/src/share/javax/servlet/ServletContext.java  18 Sep 2003 23:34:58 -
@@ -674,7 +674,7 @@
 public void removeAttribute(String name);
 
 /**
- * Returns the name of this web application correponding to this ServletContext 
as specified in the deploym