Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 59084 invoked from network); 19 Nov 2010 13:26:52 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 19 Nov 2010 13:26:52 -0000 Received: (qmail 78796 invoked by uid 500); 19 Nov 2010 13:27:24 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 78670 invoked by uid 500); 19 Nov 2010 13:27:23 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 78663 invoked by uid 99); 19 Nov 2010 13:27:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Nov 2010 13:27:23 +0000 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; Fri, 19 Nov 2010 13:27:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0595423889DD; Fri, 19 Nov 2010 13:26:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r1036832 - in /couchdb/trunk: THANKS share/www/database.html share/www/document.html Date: Fri, 19 Nov 2010 13:26:04 -0000 To: commits@couchdb.apache.org From: jan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101119132605.0595423889DD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jan Date: Fri Nov 19 13:26:04 2010 New Revision: 1036832 URL: http://svn.apache.org/viewvc?rev=1036832&view=rev Log: Undo overzealous escaping. Patch by Gabriel Farrell. Closes COUCHDB-948. Modified: couchdb/trunk/THANKS couchdb/trunk/share/www/database.html couchdb/trunk/share/www/document.html Modified: couchdb/trunk/THANKS URL: http://svn.apache.org/viewvc/couchdb/trunk/THANKS?rev=1036832&r1=1036831&r2=1036832&view=diff ============================================================================== --- couchdb/trunk/THANKS (original) +++ couchdb/trunk/THANKS Fri Nov 19 13:26:04 2010 @@ -73,5 +73,6 @@ suggesting improvements or submitting ch * Juuso Väänänen * Jeff Zellner * Benjamin Young + * Gabriel Farrell For a list of authors see the `AUTHORS` file. Modified: couchdb/trunk/share/www/database.html URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/database.html?rev=1036832&r1=1036831&r2=1036832&view=diff ============================================================================== --- couchdb/trunk/share/www/database.html [utf-8] (original) +++ couchdb/trunk/share/www/database.html [utf-8] Fri Nov 19 13:26:04 2010 @@ -37,7 +37,7 @@ specific language governing permissions $(function() { if (page.redirecting) return; - $("h1 strong").html('' + page.db.name + ''); + $("h1 strong").text(page.db.name); var viewPath = page.viewName || "_all_docs"; if (viewPath != "_temp_view" && viewPath != "_design_docs") { $("h1 a.raw").attr("href", "/" + encodeURIComponent(page.db.name) + Modified: couchdb/trunk/share/www/document.html URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/document.html?rev=1036832&r1=1036831&r2=1036832&view=diff ============================================================================== --- couchdb/trunk/share/www/document.html [utf-8] (original) +++ couchdb/trunk/share/www/document.html [utf-8] Fri Nov 19 13:26:04 2010 @@ -42,9 +42,9 @@ specific language governing permissions }); $(function() { - $("h1 a.dbname").text(encodeURIComponent(page.dbName)) + $("h1 a.dbname").text(page.dbName) .attr("href", "database.html?" + encodeURIComponent(page.db.name)); - $("h1 strong").text(encodeURIComponent(page.docId).replace(/%2[Ff]/, "/")); + $("h1 strong").text(page.docId); $("h1 a.raw").attr("href", "/" + encodeURIComponent(page.db.name) + "/" + encodeURIComponent(page.docId)); page.updateFieldListing();