You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by bu...@apache.org on 2006/05/05 23:47:36 UTC

DO NOT REPLY [Bug 39497] New: - WebdavResource.listWebdavResources() decodes "+" (plus) incorrectly.

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39497>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39497

           Summary: WebdavResource.listWebdavResources() decodes "+" (plus)
                    incorrectly.
           Product: Slide
           Version: Nightly
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: WebDAV client
        AssignedTo: slide-dev@jakarta.apache.org
        ReportedBy: jnorris10@gmail.com


If a resource is read (PROPFIND) with includes a plus sign, it gets decoded to a
space.

to reproduce simply call listWebdavResources() on a resource which includes an
item with a '+' and it will come back as a space.

ie:

String newDirectory = "test-1.0+1";
webdavResource.mkcolMethod(newDirectory);
WebdavResource[] resources = webdavResource.listWebdavResources(); 
for (WebdavResource resource : resources)
{
  System.out.println(">>> '" + resource.getPath() + "'");
}

Output:
>>> 'test-1.0 1'

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: slide-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-dev-help@jakarta.apache.org


DO NOT REPLY [Bug 39497] - WebdavResource.listWebdavResources() decodes "+" (plus) incorrectly.

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39497>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39497


jnorris10@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




------- Additional Comments From jnorris10@gmail.com  2006-05-12 03:43 -------
It turns out that this bug was also complicating matters:
http://issues.apache.org/bugzilla/show_bug.cgi?id=39564

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: slide-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-dev-help@jakarta.apache.org


DO NOT REPLY [Bug 39497] - WebdavResource.listWebdavResources() decodes "+" (plus) incorrectly.

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=39497>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=39497





------- Additional Comments From jnorris10@gmail.com  2006-05-10 20:34 -------
I think this bug is invalid.

Using Apache 2.2.0 w/mod_dav returns the following PROPFIND for the file
"test+test":

<href>/webdav/test+test/</href>

With slide server 2.1 it returns the following:

<href>/webdav/test%2Btest/</href>

So, this appears to be a problem with incorrect encoding with the apache dav
server (I'm not completely sure what the exact rules are for servers encoding
paths).

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: slide-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-dev-help@jakarta.apache.org