Re: WebDav MOVE/COPY between servers

2008-07-21 Thread Rafał
This version of path support COPY resources to remote servers with respect to Overwrite header. TODO: support MOVE TODO: support collections Tysiące pomysłów na urządzanie domu, mieszkania, ogrodu w jednym miejscu! Zobacz jak mógłbyś

Re: WebDav MOVE/COPY between servers

2008-07-18 Thread Rafał
If people *really* think that this functionality is needed, My boss think ;) And I agree with him ;) than re-using COPY seems to make more sense (we could define a new variant that takes a Source header instead of the currently mandatory Destination header). I've attached a path thats allows

Re: WebDav MOVE/COPY between servers

2008-07-17 Thread Julian Reschke
Rafa%u0142 wrote: Hello! I've done first part of the job - there is now a FETCH method that works in that way: FETCH /destination/path HTTP/1.1 Source: http://webdav.example.com/webdav-resource-to-fetch ... I'm not sure it's a good idea to define a new method for that. If people *really*

Re: WebDav MOVE/COPY between servers

2008-07-17 Thread Rafał
Dnia 17-07-2008 o godz. 9:14 Julian Reschke napisał(a): Rafał wrote: Hello! I've done first part of the job - there is now a FETCH method that works in that way: FETCH /destination/path HTTP/1.1 Source: http://webdav.example.com/webdav-resource-to-fetch ... I'm not sure it's

Re: WebDav MOVE/COPY between servers

2008-07-17 Thread Rafał
But now I know apache and mod_dav better that a week ago, so I'll check if it is possible to reuse COPY method with Destination header. It is possible, but I cannot find a function that tells me if a char * value represents current hostname/ip address so I could tell when to use remote or

Re: WebDav MOVE/COPY between servers

2008-07-16 Thread Rafa%u0142
Hello! I've done first part of the job - there is now a FETCH method that works in that way: FETCH /destination/path HTTP/1.1 Source: http://webdav.example.com/webdav-resource-to-fetch It fetches resource http://webdav.example.com/webdav-resource-to-fetch (with GET method) and stores it in

Re: WebDav MOVE/COPY between servers

2008-07-03 Thread Julian Reschke
Rafa%u0142 wrote: Hello. My name is Rafał Malinowski. I want (really, I have to) add one feature to WebDav: support for MOVE/COPY with remote servers as 'Destination'. Why? Do you have any clients that would use it? As I looked into code and into specification such thing is allowed, but

Re: WebDav MOVE/COPY between servers

2008-07-03 Thread Rafa%u0142
Dnia 3-07-2008 o godz. 13:22 Julian Reschke napisał(a): Rafał wrote: Hello. My name is Rafał Malinowski. I want (really, I have to) add one feature to WebDav: support for MOVE/COPY with remote servers as 'Destination'. Why? Do you have any clients that would use it? I will use telnet.

Re: WebDav MOVE/COPY between servers

2008-07-03 Thread Julian Reschke
Rafa%u0142 wrote: Dnia 3-07-2008 o godz. 13:22 Julian Reschke napisał(a): Rafał wrote: Hello. My name is Rafał Malinowski. I want (really, I have to) add one feature to WebDav: support for MOVE/COPY with remote servers as 'Destination'. Why? Do you have any clients that would use it? I

Re: WebDav MOVE/COPY between servers

2008-07-02 Thread Johnny Kewl
- Original Message - From: Rafa%u0142 [EMAIL PROTECTED] To: dev@httpd.apache.org Sent: Wednesday, July 02, 2008 1:22 AM Subject: WebDav MOVE/COPY between servers Hello. My name is Rafał Malinowski. I want (really, I have to) add one feature to WebDav: support for MOVE/COPY

Re: WebDav MOVE/COPY between servers

2008-07-02 Thread Rafa%u0142
I imagine most will allow copying to and from local file systems... so you on your way. My purpose is to get rid of it in some cases. For example: I have my client system, and 2 webdav servers (dav1, dav2). I want to be able to copy/move files between dav1 and dav2 without copying them first

Re: WebDav MOVE/COPY between servers

2008-07-02 Thread Jorge Schrauwen
Hi, Something like FXP (for ftp server) for WebDav would indeed be nice. Although if you are looking to syncronize servers (not sure you are though) rsync may be a better way. Jorge On 7/2/08, Rafa%u0142 [EMAIL PROTECTED] wrote: I imagine most will allow copying to and from local file

Re: WebDav MOVE/COPY between servers

2008-07-02 Thread Johnny Kewl
- Original Message - From: Rafa%u0142 [EMAIL PROTECTED] To: dev dev@httpd.apache.org Sent: Wednesday, July 02, 2008 1:33 PM Subject: Re: WebDav MOVE/COPY between servers I imagine most will allow copying to and from local file systems... so you on your way. My purpose is to get

WebDav MOVE/COPY between servers

2008-07-01 Thread Rafa%u0142
Hello. My name is Rafał Malinowski. I want (really, I have to) add one feature to WebDav: support for MOVE/COPY with remote servers as 'Destination'. As I looked into code and into specification such thing is allowed, but not implemented yet. I hope I'll have it done with some help from this