cvs commit: jakarta-tomcat/proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/util/net StreamHandlerFactory.java

2004-02-25 Thread billbarker
billbarker2004/02/25 22:37:28

  Modified:proposals/Log4jHelper build.xml
   proposals/Log4jHelper/WEB-INF interceptors.xml
   
proposals/Log4jHelper/WEB-INF/classes/org/apache/tomcat/modules/loggers/log4j
CRS.java Log4jHelper.java
   proposals/PasswordPrompter build.xml
   proposals/PasswordPrompter/WEB-INF interceptors.xml
   
proposals/PasswordPrompter/WEB-INF/classes/org/apache/tomcat/modules/config
PasswordPrompter.java
   proposals/PasswordPrompter/WEB-INF/classes/org/apache/tomcat/util/io
Prompter.java PrompterException.java
   proposals/StreamHandler build.xml
   proposals/StreamHandler/WEB-INF interceptors.xml
   proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/modules/config
StreamHandler.java
   proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/util/net
StreamHandlerFactory.java
  Log:
  Update to the Apache License v2.0.
  
  Revision  ChangesPath
  1.2   +15 -0 jakarta-tomcat/proposals/Log4jHelper/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/proposals/Log4jHelper/build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build.xml 7 Apr 2003 00:29:22 -   1.1
  +++ build.xml 26 Feb 2004 06:37:28 -  1.2
  @@ -1,4 +1,19 @@
   ?xml version=1.0? 
  +!--
  +   Copyright 2001-2004 The Apache Software Foundation
  + 
  +   Licensed 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.
  +--
   project name=Log4jHelper default=main basedir=.
   
 !-- Compilation properties --
  
  
  
  1.2   +15 -0 jakarta-tomcat/proposals/Log4jHelper/WEB-INF/interceptors.xml
  
  Index: interceptors.xml
  ===
  RCS file: /home/cvs/jakarta-tomcat/proposals/Log4jHelper/WEB-INF/interceptors.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- interceptors.xml  7 Apr 2003 00:29:22 -   1.1
  +++ interceptors.xml  26 Feb 2004 06:37:28 -  1.2
  @@ -1,4 +1,19 @@
   ?xml version=1.0 encoding=UTF-8?
  +!--
  +   Copyright 2001-2004 The Apache Software Foundation
  + 
  +   Licensed 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.
  +--
   Server
   module name=Log4jHelper 
javaClass=org.apache.tomcat.modules.loggers.log4j.Log4jHelper /
  
  
  
  1.3   +13 -55
jakarta-tomcat/proposals/Log4jHelper/WEB-INF/classes/org/apache/tomcat/modules/loggers/log4j/CRS.java
  
  Index: CRS.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat/proposals/Log4jHelper/WEB-INF/classes/org/apache/tomcat/modules/loggers/log4j/CRS.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- CRS.java  29 Sep 2003 07:39:48 -  1.2
  +++ CRS.java  26 Feb 2004 06:37:28 -  1.3
  @@ -1,61 +1,19 @@
   /*
  - * 
  - *
  - * The Apache Software License, Version 1.1
  - *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  - * reserved.
  - *
  - * Redistribution and use in source and binary forms, with or without
  - * modification, are permitted provided that the following conditions
  - * are met:
  - *
  - * 1. Redistributions of source code must retain the above copyright
  - *notice, this list of conditions and the following disclaimer.
  - *
  - * 2. Redistributions in binary form must reproduce the above copyright
  - *notice, this list of conditions and the following disclaimer in
  - *the documentation and/or other materials provided with the
  - *distribution.
  - *
  - * 3. The 

cvs commit: jakarta-tomcat/proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/util/net StreamHandlerFactory.java

2002-01-11 Thread billbarker

billbarker02/01/11 23:08:40

  Added:   proposals/StreamHandler build.xml
   proposals/StreamHandler/WEB-INF interceptors.xml
   proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/modules/config
StreamHandler.java
   proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/util/net
StreamHandlerFactory.java
  Log:
  Restoring StreamHandler functionality as a module.
  
  This does basically the same thing that was previously hard-coded into the Tomcat 
API.  The only difference is that it is now optional.  SOAP users et. al. only need to 
install the StreamHandler.war file in the modules directory to get the new behavior.
  
  Revision  ChangesPath
  1.2   +82 -0 jakarta-tomcat/proposals/StreamHandler/build.xml
  
  
  
  
  1.2   +8 -0  jakarta-tomcat/proposals/StreamHandler/WEB-INF/interceptors.xml
  
  
  
  
  1.2   +147 -0
jakarta-tomcat/proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/modules/config/StreamHandler.java
  
  
  
  
  1.2   +164 -0
jakarta-tomcat/proposals/StreamHandler/WEB-INF/classes/org/apache/tomcat/util/net/StreamHandlerFactory.java
  
  
  
  

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