Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 16761 invoked from network); 27 Dec 2008 17:13:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Dec 2008 17:13:09 -0000 Received: (qmail 96521 invoked by uid 500); 27 Dec 2008 17:13:09 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 96467 invoked by uid 500); 27 Dec 2008 17:13:08 -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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 96456 invoked by uid 99); 27 Dec 2008 17:13:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Dec 2008 09:13:08 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Dec 2008 17:13:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ECF6623888E6; Sat, 27 Dec 2008 09:12:45 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r729643 - /httpd/mod_mbox/trunk/module-2.0/mod_mbox_sitemap.c Date: Sat, 27 Dec 2008 17:12:45 -0000 To: cvs@httpd.apache.org From: pquerna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081227171245.ECF6623888E6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: pquerna Date: Sat Dec 27 09:12:45 2008 New Revision: 729643 URL: http://svn.apache.org/viewvc?rev=729643&view=rev Log: Wrap all URLs to messages in a CDATA, so we don't need to go down the path of proper entity encoding (I hate xml). Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox_sitemap.c Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox_sitemap.c URL: http://svn.apache.org/viewvc/httpd/mod_mbox/trunk/module-2.0/mod_mbox_sitemap.c?rev=729643&r1=729642&r2=729643&view=diff ============================================================================== --- httpd/mod_mbox/trunk/module-2.0/mod_mbox_sitemap.c (original) +++ httpd/mod_mbox/trunk/module-2.0/mod_mbox_sitemap.c Sat Dec 27 09:12:45 2008 @@ -74,7 +74,7 @@ ap_rputs("\n", r); - ap_rprintf(r, "%s%s/%s\n", + ap_rprintf(r, "\n", ap_construct_url(tpool, r->uri, r), mboxfile, URI_ESCAPE_OR_BLANK(tpool, m->msgID));