summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuelockwood <deathbear@apache.org>2014-01-08 16:45:15 -0500
committersuelockwood <deathbear@apache.org>2014-01-08 16:45:15 -0500
commitd13bff47c46d891a07e47c4f792d215a07bba9d8 (patch)
tree8fb48ddeb6206a1930cda07ac81cde9b004b7eb6
parente272cbe29e5ab10c0f29892dd5f8079dd992680d (diff)
downloadcouchdb-d13bff47c46d891a07e47c4f792d215a07bba9d8.tar.gz
Fix Makefile
Fix include_docs checked.
-rw-r--r--src/Makefile.am1
-rw-r--r--src/fauxton/app/modules/documents/views.js2
-rw-r--r--src/fauxton/app/templates/databases/item.html2
-rw-r--r--src/fauxton/app/templates/documents/sidebar.html2
4 files changed, 3 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 378f82b1e..12c4fe30c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -133,7 +133,6 @@ FAUXTON_FILES = \
fauxton/app/templates/databases/item.html \
fauxton/app/templates/databases/list.html \
fauxton/app/templates/databases/newdatabase.html \
- fauxton/app/templates/databases/sidebar.html \
fauxton/app/templates/documents/all_docs_item.html \
fauxton/app/templates/documents/all_docs_list.html \
fauxton/app/templates/documents/changes.html \
diff --git a/src/fauxton/app/modules/documents/views.js b/src/fauxton/app/modules/documents/views.js
index 0c75b8198..1642f1f62 100644
--- a/src/fauxton/app/modules/documents/views.js
+++ b/src/fauxton/app/modules/documents/views.js
@@ -1116,7 +1116,7 @@ function(app, FauxtonAPI, Components, Documents, Databases, pouchdb, resizeColum
}
break;
case "include_docs":
- break;
+ break;
}
},
diff --git a/src/fauxton/app/templates/databases/item.html b/src/fauxton/app/templates/databases/item.html
index a3712d41e..e2f80712f 100644
--- a/src/fauxton/app/templates/databases/item.html
+++ b/src/fauxton/app/templates/databases/item.html
@@ -13,7 +13,7 @@ the License.
-->
<td>
- <a href="#/database/<%=encoded%>/_all_docs?limit=<%=docLimit%>&include_docs=false"><%= database.get("name") %></a>
+ <a href="#/database/<%=encoded%>/_all_docs?limit=<%=docLimit%>"><%= database.get("name") %></a>
</td>
<td><%= database.status.humanSize() %></td>
<td><%= database.status.numDocs() %></td>
diff --git a/src/fauxton/app/templates/documents/sidebar.html b/src/fauxton/app/templates/documents/sidebar.html
index edf3f1638..8a73ae9a3 100644
--- a/src/fauxton/app/templates/documents/sidebar.html
+++ b/src/fauxton/app/templates/documents/sidebar.html
@@ -55,7 +55,7 @@ the License.
<nav>
<ul class="nav nav-list">
- <li class="active"><a id="all-docs" href="#<%= database.url('index') %>?limit=<%= docLimit %>&include_docs=false" class="toggle-view"> All documents</a></li>
+ <li class="active"><a id="all-docs" href="#<%= database.url('index') %>?limit=<%= docLimit %>" class="toggle-view"> All documents</a></li>
<li><a id="design-docs" href='#<%= database.url("index") %>?limit=<%= docLimit %>&startkey="_design"&endkey="_e"' class="toggle-view"> All design docs</a></li>
</ul>
<ul class="nav nav-list views">