diff options
| author | Paul Joseph Davis <davisp@apache.org> | 2011-01-11 01:23:37 +0000 |
|---|---|---|
| committer | Paul Joseph Davis <davisp@apache.org> | 2011-01-11 01:23:37 +0000 |
| commit | 89d5db841148b829a49dec2d8de7f6f2ff50945c (patch) | |
| tree | ada709aec011100889f72b57f8a6948d622108d8 /share/www/database.html | |
| parent | 79bea41bac270c6105427e5680f4b9716d8fd411 (diff) | |
| parent | 6ce291d3d3ccac65c082c787e9540fd187c225be (diff) | |
Tagging 1.0.2
git-svn-id: https://svn.apache.org/repos/asf/couchdb/tags/1.0.2@1057433 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/database.html')
| -rw-r--r-- | share/www/database.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/share/www/database.html b/share/www/database.html index 2802ad78..9a9f121e 100644 --- a/share/www/database.html +++ b/share/www/database.html @@ -40,6 +40,10 @@ specific language governing permissions and limitations under the License. $("h1 strong").text(page.db.name); var viewPath = page.viewName || "_all_docs"; if (viewPath != "_temp_view" && viewPath != "_design_docs") { + viewPath = $.map(viewPath.split("/"), function (part) { + return encodeURIComponent(part); + }).join("/"); + $("h1 a.raw").attr("href", "/" + encodeURIComponent(page.db.name) + "/" + viewPath); } |
