cziegeler 02/02/04 05:10:03 Modified: src/java/org/apache/cocoon/environment/commandline AbstractCommandLineEnvironment.java CommandLineRequest.java CommandLineResponse.java CommandLineSession.java CommandlineContext.java FileSavingEnvironment.java LinkSamplingEnvironment.java src/java/org/apache/cocoon/environment/http HttpContext.java HttpCookie.java HttpEnvironment.java HttpResponse.java HttpSession.java RequestWrapper22.java RequestWrapper23.java RequestWrapperMaybeUpload22.java RequestWrapperMaybeUpload23.java src/java/org/apache/cocoon/i18n I18nUtils.java Log: Start unifying cvs infos Revision Changes Path 1.5 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/AbstractCommandLineEnvironment.java Index: AbstractCommandLineEnvironment.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/AbstractCommandLineEnvironment.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- AbstractCommandLineEnvironment.java 4 Feb 2002 09:45:07 -0000 1.4 +++ AbstractCommandLineEnvironment.java 4 Feb 2002 13:10:03 -0000 1.5 @@ -74,7 +74,7 @@ * This environment is used to save the requested file to disk. * * @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a> - * @version CVS $Revision: 1.4 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: AbstractCommandLineEnvironment.java,v 1.5 2002/02/04 13:10:03 cziegeler Exp $ */ public abstract class AbstractCommandLineEnvironment 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandLineRequest.java Index: CommandLineRequest.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandLineRequest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- CommandLineRequest.java 4 Feb 2002 09:45:07 -0000 1.2 +++ CommandLineRequest.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -68,7 +68,7 @@ * * @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a> * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: CommandLineRequest.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ /* 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandLineResponse.java Index: CommandLineResponse.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandLineResponse.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- CommandLineResponse.java 4 Feb 2002 09:45:07 -0000 1.2 +++ CommandLineResponse.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -64,7 +64,7 @@ * Creates a specific servlet response simulation from command line usage. * * @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: CommandLineResponse.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public class CommandLineResponse implements Response { 1.4 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandLineSession.java Index: CommandLineSession.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandLineSession.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CommandLineSession.java 4 Feb 2002 09:45:07 -0000 1.3 +++ CommandLineSession.java 4 Feb 2002 13:10:03 -0000 1.4 @@ -65,7 +65,7 @@ * Command-line version of Http Session. * * @author <a href="mailto:[EMAIL PROTECTED]">Vadim Gritsenko</a> - * @version CVS $Revision: 1.3 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: CommandLineSession.java,v 1.4 2002/02/04 13:10:03 cziegeler Exp $ */ public final class CommandLineSession implements Session { 1.5 +8 -6 xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandlineContext.java Index: CommandlineContext.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/CommandlineContext.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- CommandlineContext.java 29 Jan 2002 20:05:27 -0000 1.4 +++ CommandlineContext.java 4 Feb 2002 13:10:03 -0000 1.5 @@ -22,13 +22,15 @@ /** * * Implements the {@link org.apache.cocoon.environment.Context} interface + * @author ? + * @version CVS $Id: CommandlineContext.java,v 1.5 2002/02/04 13:10:03 cziegeler Exp $ */ public class CommandlineContext extends AbstractLoggable implements Context { /** The context directory path*/ private String contextDir; - + /** The context attributes */ private Map attributes; @@ -55,14 +57,14 @@ } this.attributes.put(name, value); } - + public void removeAttribute(String name) { if (getLogger().isDebugEnabled()) { getLogger().debug("CommandlineContext: removeAttribute=" + name); } this.attributes.remove(name); } - + public Enumeration getAttributeNames() { if (getLogger().isDebugEnabled()) { getLogger().debug("CommandlineContext: getAttributeNames"); @@ -95,14 +97,14 @@ //return servletContext.getMimeType(file); return null; } - + public String getInitParameter(String name) { getLogger().debug("CommandlineContext: getInitParameter=" + name); return null; } - public InputStream getResourceAsStream(String path){ + public InputStream getResourceAsStream(String path){ getLogger().debug("CommandlineContext: getResourceAsStream "+path); - return null; + return null; } } 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/FileSavingEnvironment.java Index: FileSavingEnvironment.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/FileSavingEnvironment.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- FileSavingEnvironment.java 4 Feb 2002 09:45:07 -0000 1.2 +++ FileSavingEnvironment.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -67,7 +67,7 @@ * This environment is used to save the requested file to disk. * * @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: FileSavingEnvironment.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public class FileSavingEnvironment extends AbstractCommandLineEnvironment { 1.5 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/LinkSamplingEnvironment.java Index: LinkSamplingEnvironment.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/commandline/LinkSamplingEnvironment.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- LinkSamplingEnvironment.java 4 Feb 2002 09:45:07 -0000 1.4 +++ LinkSamplingEnvironment.java 4 Feb 2002 13:10:03 -0000 1.5 @@ -67,7 +67,7 @@ * This environment is sample the links of the resource. * * @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a> - * @version CVS $Revision: 1.4 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: LinkSamplingEnvironment.java,v 1.5 2002/02/04 13:10:03 cziegeler Exp $ */ public class LinkSamplingEnvironment extends AbstractCommandLineEnvironment 1.6 +2 -0 xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpContext.java Index: HttpContext.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpContext.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- HttpContext.java 4 Feb 2002 09:45:07 -0000 1.5 +++ HttpContext.java 4 Feb 2002 13:10:03 -0000 1.6 @@ -65,6 +65,8 @@ /** * * Implements the {@link org.apache.cocoon.environment.Context} interface + * @author ? + * @version CVS $Id: HttpContext.java,v 1.6 2002/02/04 13:10:03 cziegeler Exp $ */ public class HttpContext implements Context { 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpCookie.java Index: HttpCookie.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpCookie.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- HttpCookie.java 4 Feb 2002 09:45:07 -0000 1.2 +++ HttpCookie.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -92,7 +92,7 @@ * * * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: HttpCookie.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ * */ 1.4 +4 -0 xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpEnvironment.java Index: HttpEnvironment.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpEnvironment.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- HttpEnvironment.java 4 Feb 2002 09:45:07 -0000 1.3 +++ HttpEnvironment.java 4 Feb 2002 13:10:03 -0000 1.4 @@ -68,6 +68,10 @@ import java.net.MalformedURLException; import java.net.URL; +/** + * @author ? + * @version CVS $Id: HttpEnvironment.java,v 1.4 2002/02/04 13:10:03 cziegeler Exp $ + */ public class HttpEnvironment extends AbstractEnvironment implements Redirector { public static final String HTTP_REQUEST_OBJECT = "httprequest"; 1.3 +2 -0 xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpResponse.java Index: HttpResponse.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpResponse.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- HttpResponse.java 4 Feb 2002 09:45:07 -0000 1.2 +++ HttpResponse.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -68,6 +68,8 @@ * Implements the {@link HttpServletResponse} interface to provide HTTP-specific * functionality in sending a response. For example, it has methods * to access HTTP headers and cookies. + * @author ? + * @version CVS $Id: HttpResponse.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public class HttpResponse implements Response { 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpSession.java Index: HttpSession.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/HttpSession.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- HttpSession.java 4 Feb 2002 09:45:07 -0000 1.2 +++ HttpSession.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -84,7 +84,7 @@ * will not be directly visible in another. * * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: HttpSession.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ * */ 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapper22.java Index: RequestWrapper22.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapper22.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RequestWrapper22.java 4 Feb 2002 09:45:07 -0000 1.2 +++ RequestWrapper22.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -64,7 +64,7 @@ * to provide request information for HTTP servlets. * * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: RequestWrapper22.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public final class RequestWrapper { 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapper23.java Index: RequestWrapper23.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapper23.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RequestWrapper23.java 4 Feb 2002 09:45:07 -0000 1.2 +++ RequestWrapper23.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -64,7 +64,7 @@ * to provide request information for HTTP servlets. * * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: RequestWrapper23.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public final class RequestWrapper { 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapperMaybeUpload22.java Index: RequestWrapperMaybeUpload22.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapperMaybeUpload22.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RequestWrapperMaybeUpload22.java 4 Feb 2002 09:45:07 -0000 1.2 +++ RequestWrapperMaybeUpload22.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -66,7 +66,7 @@ * to provide request information for HTTP servlets. * * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: RequestWrapperMaybeUpload22.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public final class RequestWrapper extends MaybeUploadRequestWrapper { 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapperMaybeUpload23.java Index: RequestWrapperMaybeUpload23.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/environment/http/RequestWrapperMaybeUpload23.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RequestWrapperMaybeUpload23.java 4 Feb 2002 09:45:07 -0000 1.2 +++ RequestWrapperMaybeUpload23.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -67,7 +67,7 @@ * to provide request information for HTTP servlets. * * @author <a href="mailto:[EMAIL PROTECTED]">Carsten Ziegeler</a> - * @version CVS $Revision: 1.2 $ $Date: 2002/02/04 09:45:07 $ + * @version CVS $Id: RequestWrapperMaybeUpload23.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public final class RequestWrapper extends MaybeUploadRequestWrapper implements HttpServletRequest { 1.3 +1 -1 xml-cocoon2/src/java/org/apache/cocoon/i18n/I18nUtils.java Index: I18nUtils.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/i18n/I18nUtils.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- I18nUtils.java 4 Feb 2002 09:51:21 -0000 1.2 +++ I18nUtils.java 4 Feb 2002 13:10:03 -0000 1.3 @@ -62,7 +62,7 @@ * Contains static methods only. * * @author <a href="mailto:[EMAIL PROTECTED]">Konstantin Piroumian</a> - * @version 1.0 + * @version CVS $Id: I18nUtils.java,v 1.3 2002/02/04 13:10:03 cziegeler Exp $ */ public class I18nUtils {
---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]