Add some todos
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/217dce09
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/217dce09
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/217dce09
Branch: refs/heads/fauxton
Commit: 217dce09dd4349acf81b417589633d25ec6bd541
Parents: b8fde1d
Author: Simon Metson <simon+github@cloudant.com>
Authored: Fri Jan 25 23:27:42 2013 +0100
Committer: Simon Metson <simon+github@cloudant.com>
Committed: Sat Jan 26 16:36:17 2013 +0100
----------------------------------------------------------------------
src/fauxton/TODO.md | 26 +++++++++++++++
.../app/addons/logs/templates/dashboard.html | 2 +
src/fauxton/app/addons/logs/templates/sidebar.html | 2 +
3 files changed, 30 insertions(+), 0 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/couchdb/blob/217dce09/src/fauxton/TODO.md
----------------------------------------------------------------------
diff --git a/src/fauxton/TODO.md b/src/fauxton/TODO.md
new file mode 100644
index 0000000..3c1b85b
--- /dev/null
+++ b/src/fauxton/TODO.md
@@ -0,0 +1,26 @@
+# Fauxton todo
+In no particular order
+
+- [ ] docco docs
+- [ ] user management
+- [ ] view options
+- [ ] view editor
+- [ ] visual view builder
+- [ ] new db as modal
+- [ ] new view button
+- [ ] show design docs only
+- [ ] fix delete doc button UI bug
+- [ ] delete multiple docs via _bulk_docs
+- [ ] show change events in database view
+- [ ] pouchdb addon
+- [ ] bespoke bootstrap style
+- [ ] responsive interface
+- [ ] sticky subnav for some UI components on _all_docs
+- [ ] "show me" button in API bar doesn't
+- [ ] edit index button doesn't
+- [ ] replicate UI
+- [ ] delete database
+- [ ] format dates better (e.g. in logs plugin)
+- [ ] format log entry better
+- [ ] filter logs by method
+- [ ] restore unfiltered data in logs UI
http://git-wip-us.apache.org/repos/asf/couchdb/blob/217dce09/src/fauxton/app/addons/logs/templates/dashboard.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/logs/templates/dashboard.html b/src/fauxton/app/addons/logs/templates/dashboard.html
index dddad9a..951e1ba 100644
--- a/src/fauxton/app/addons/logs/templates/dashboard.html
+++ b/src/fauxton/app/addons/logs/templates/dashboard.html
@@ -13,6 +13,7 @@
<% _.each(logs, function (log) { %>
<tr class="<%= log.log_level %>">
<td>
+ <!-- TODO: better format the date -->
<%= log.date.replace(/ /g,'') %>
</td>
<td>
@@ -22,6 +23,7 @@
<%= _.escape(log.pid) %>
</td>
<td>
+ <!-- TODO: split the line, maybe put method in it's own column -->
<%= _.escape(log.args) %>
</td>
</tr>
http://git-wip-us.apache.org/repos/asf/couchdb/blob/217dce09/src/fauxton/app/addons/logs/templates/sidebar.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/logs/templates/sidebar.html b/src/fauxton/app/addons/logs/templates/sidebar.html
index bae2020..d54f796 100644
--- a/src/fauxton/app/addons/logs/templates/sidebar.html
+++ b/src/fauxton/app/addons/logs/templates/sidebar.html
@@ -3,6 +3,8 @@
<fieldset>
<legend>Log Filter</legend>
<input type="text" name="filter" placeholder="Type a filter to sort the logs by">
+ <!-- TODO: filter by method -->
+ <!-- TODO: correct removed filter behaviour -->
<button type="submit" class="btn">Filter</button>
<span class="help-block"> <h6> Eg. debug or <1.4.1> or any regex
</h6> </span>
</fieldset>
|