webdav servlet in commons?

2005-03-31 Thread Bill Keese
Regarding:
http://archives.devshed.com/m/200412-5091/WebDAV-servelt-in-commons

I too would like to have a webdav servlet in commons. Since our product
releases against multiple containers (not only Tomcat), I can't use the
webdav servlet in Tomcat. (Or at the very least I'd feel a little
strange including that whole JAR file as part of my distribution.)

Besides a class that maps to the file system, I'd also like "a simple
API to map WebDAV to your system and thus people could very easily add
basic WebDAV features to their application."

Bill

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

Re: [lang] WordWrapUtils

2003-11-18 Thread Bill Keese
By the way, are the people involved in WordWrapUtils aware of ICU's 
(http://oss.software.ibm.com/icu/) code to do this?  (LineBreakIterator, 
etc.).

 



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


Re: cvs commit: jakarta-commons/jelly build-all.xml build-legacy.xmlbuild.xml

2003-09-03 Thread Bill Keese
Did you remove the build scripts from the jelly-tag-libs (http, xml,
etc.) directories too?


[EMAIL PROTECTED] wrote:

proyal  2003/09/03 18:57:15

  Removed: jellybuild-all.xml build-legacy.xml build.xml
  Log:
  Remove ant build scripts since they are not maintained

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



  



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



[jelly] PATCH - threads / context not set

2003-06-06 Thread Bill Keese
This fixes the bug where the context variable is not accessible from
threads.  Inside a threads:thread call you can't do things like
${context.getVariable(foo)}

init() correctly sets the "context" variable, but it is erased by the
setVariables() call.  So I think this (or something similar) is an
appropriate fix.

Bill

Index: JellyContext.java
===
RCS file:
/home/cvspublic/jakarta-commons/jelly/src/java/org/apache/commons/jelly/Jell
yContext.java,v
retrieving revision 1.42
diff -u -r1.42 JellyContext.java
--- JellyContext.java 7 Mar 2003 13:17:54 - 1.42
+++ JellyContext.java 6 Jun 2003 01:53:19 -
@@ -324,6 +324,7 @@

 public void setVariables(Map variables) {
 this.variables = variables;
+this.variables.put("context", this);
 }

 /**

[jelly] PATCH: HTTP multi-part mime post

2003-06-06 Thread Bill Keese
This patch adds the tag http:mppost to allow multi-part mime message post.

$ cvs diff -u httptaglibrary.java
Index: HttpTagLibrary.java
===
RCS file:
/home/cvspublic/jakarta-commons/jelly/jelly-tags/http/src/java/org/apache/co
mmons/jelly/tags/http/HttpTagLibrary.java,v
retrieving revision 1.3
diff -u -r1.3 HttpTagLibrary.java
--- HttpTagLibrary.java 23 Oct 2002 16:35:35 -  1.3
+++ HttpTagLibrary.java 6 Jun 2003 02:00:25 -
@@ -80,6 +80,7 @@
 registerTag("session", SessionTag.class);
 registerTag("get", GetTag.class);
 registerTag("post", PostTag.class);
+registerTag("mppost", MPPostTag.class);
 registerTag("delete", DeleteTag.class);
 registerTag("head", HeadTag.class);
 registerTag("options", OptionsTag.class);

=
New file: MPPostTag.java

/*
 * $Header:
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/Post
Tag.java,v 1.4 2002/07/14 16:41:38 dion Exp $
 * $Revision: 1.4 $
 * $Date: 2002/07/14 16:41:38 $
 *
 * 
 *
 * The Apache Software License, Version 1.1
 *
 * Copyright (c) 2002 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 end-user documentation included with the redistribution, if
 *any, must include the following acknowlegement:
 *   "This product includes software developed by the
 *Apache Software Foundation (http://www.apache.org/)."
 *Alternately, this acknowlegement may appear in the software itself,
 *if and wherever such third-party acknowlegements normally appear.
 *
 * 4. The names "The Jakarta Project", "Commons", and "Apache Software
 *Foundation" must not be used to endorse or promote products derived
 *from this software without prior written permission. For written
 *permission, please contact [EMAIL PROTECTED]
 *
 * 5. Products derived from this software may not be called "Apache"
 *nor may "Apache" appear in their names without prior written
 *permission of the Apache Group.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * 
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * http://www.apache.org/.
 *
 */

package org.apache.commons.jelly.tags.http;

import java.net.MalformedURLException;
import org.apache.commons.httpclient.HttpMethod;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.MultipartPostMethod;


/**
 * A Multipart MIME message post
 *
 * This tag should contain one or more lt;parametergt; tags, to
 * specify the multiple parts of the message
 *
 * Example:
 *   lt;mppost uri="http://localhost?doit"gt;
 *   lt;parameter name="user"gt;Fredlt;/parametergt;
 *   lt;parameter name="data"gt;This is the second part of the
messagelt;/parametergt;
 *   lt;/mppostgt;
 *
 * (The syntax is the same as the lt;getgt; and lt;postgt; tags)
 *
 * @author a href="ma