]> granicus.if.org Git - apache/commitdiff
Describe the proxy_ftp changes:
authorMartin Kraemer <martin@apache.org>
Wed, 30 Jan 2002 15:12:57 +0000 (15:12 +0000)
committerMartin Kraemer <martin@apache.org>
Wed, 30 Jan 2002 15:12:57 +0000 (15:12 +0000)
FTP directory listings are now always retrieved in ASCII mode.
The FTP proxy properly escapes URI's and HTML in the generated
listing, and escapes the path components when talking to the FTP
server. It is now possible to browse the root directory by using
a url like:   ftp://user@host/%2f/ (ported from apache_1.3.24)
Also, the last path component may contain wildcard characters
'*' and '?', and if they do, a directory listing is created instead
of a file retrieval. Example: ftp://user@host/httpd/server/*.c

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93109 13f79535-47bb-0310-9956-ffa450edef68

CHANGES

diff --git a/CHANGES b/CHANGES
index daba118f8f4271ccc6a0142e4c9de7cea93c2630..24f15a19da08110ae4ba38ecee21191790906919 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,15 @@
 Changes with Apache 2.0.31-dev
 
+  *) FTP directory listings are now always retrieved in ASCII mode.
+     The FTP proxy properly escapes URI's and HTML in the generated
+     listing, and escapes the path components when talking to the FTP
+     server. It is now possible to browse the root directory by using
+     a url like:   ftp://user@host/%2f/ (ported from apache_1.3.24)
+     Also, the last path component may contain wildcard characters
+     '*' and '?', and if they do, a directory listing is created instead
+     of a file retrieval. Example: ftp://user@host/httpd/server/*.c
+     [Martin Kraemer]
+
   *) Added single-listener unserialized accept support to the
      worker MPM [Brian Pane]