Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 59157 invoked from network); 1 Nov 2003 23:00:27 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 1 Nov 2003 23:00:27 -0000 Received: (qmail 70693 invoked by uid 500); 1 Nov 2003 23:00:13 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 70514 invoked by uid 500); 1 Nov 2003 23:00:12 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 70501 invoked by uid 500); 1 Nov 2003 23:00:12 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 70498 invoked from network); 1 Nov 2003 23:00:12 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 1 Nov 2003 23:00:12 -0000 Received: (qmail 59132 invoked by uid 1569); 1 Nov 2003 23:00:25 -0000 Date: 1 Nov 2003 23:00:25 -0000 Message-ID: <20031101230025.59131.qmail@minotaur.apache.org> From: nd@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/generators mod_autoindex.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N nd 2003/11/01 15:00:25 Modified: . CHANGES modules/generators mod_autoindex.c Log: Don't omit the initial if SuppressIcon is set. Submitted by: Jesse Tie-Ten-Quee PR: 21668 Revision Changes Path 1.1306 +3 -0 httpd-2.0/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/httpd-2.0/CHANGES,v retrieving revision 1.1305 retrieving revision 1.1306 diff -u -u -r1.1305 -r1.1306 --- CHANGES 1 Nov 2003 22:29:42 -0000 1.1305 +++ CHANGES 1 Nov 2003 23:00:24 -0000 1.1306 @@ -2,6 +2,9 @@ [Remove entries to the current 2.0 section below, when backported] + *) mod_autoindex: Don't omit the start tag if the SuppressIcon + option is set. PR 21668. [Jesse Tie-Ten-Quee ] + *) mod_autoindex / core: Don't fail to show filenames containing special characters like '%'. PR 13598. [Andr� Malo] 1.123 +2 -1 httpd-2.0/modules/generators/mod_autoindex.c Index: mod_autoindex.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/generators/mod_autoindex.c,v retrieving revision 1.122 retrieving revision 1.123 diff -u -u -r1.122 -r1.123 --- mod_autoindex.c 1 Nov 2003 22:06:28 -0000 1.122 +++ mod_autoindex.c 1 Nov 2003 23:00:25 -0000 1.123 @@ -1648,8 +1648,9 @@ } if (autoindex_opts & TABLE_INDEXING) { + ap_rputs("", r); if (!(autoindex_opts & SUPPRESS_ICON)) { - ap_rputs("", r); + ap_rputs("", r); if (autoindex_opts & ICONS_ARE_LINKS) { ap_rvputs(r, "", NULL); }