You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2014/10/31 17:02:44 UTC

couchdb commit: updated refs/heads/1.x.x to ee0742c

Repository: couchdb
Updated Branches:
  refs/heads/1.x.x 01c60f183 -> ee0742c50


Show decoded database names in the recently used list

Patch made by @janl for COUCHDB-1275.


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/ee0742c5
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/ee0742c5
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/ee0742c5

Branch: refs/heads/1.x.x
Commit: ee0742c502751b32bbb55fd8f685262fe87bc1ad
Parents: 01c60f1
Author: Alexander Shorin <kx...@apache.org>
Authored: Fri Oct 31 19:00:59 2014 +0300
Committer: Alexander Shorin <kx...@apache.org>
Committed: Fri Oct 31 19:00:59 2014 +0300

----------------------------------------------------------------------
 share/www/script/futon.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/ee0742c5/share/www/script/futon.js
----------------------------------------------------------------------
diff --git a/share/www/script/futon.js b/share/www/script/futon.js
index 409becc..0723839 100644
--- a/share/www/script/futon.js
+++ b/share/www/script/futon.js
@@ -335,7 +335,7 @@ function $$(node) {
           name = encodeURIComponent(name);
           $("#dbs").append("<li>" +
             "<button class='remove' title='Remove from list' value='" + name + "'></button>" +
-            "<a href='database.html?" + name + "' title='" + name + "'>" + name +
+            "<a href='database.html?" + name + "' title='" + name + "'>" + decodeURIComponent(name) +
             "</a></li>");
         }
       });