- From: Melvin Carvalho <melvincarvalho@gmail.com>
- Date: Sun, 28 Oct 2012 22:19:04 +0100
- To: public-rww <public-rww@w3.org>
- Message-ID: <CAKaEYhJp0P2BuLLSCd6aAPo0T7_DC2YFUvqD=warMPOX7+tYVw@mail.gmail.com>
On 28 October 2012 16:34, Melvin Carvalho <melvincarvalho@gmail.com> wrote:
> Just wanted to give a heads up of a very early version of Nathan's task
> board app. I'm now using this all the time:
>
> a lightweight clientside todo list app using localStorage - HTML5 + JS -
> demo at http://webr3.org/apps/play/todo/
>
> - double enter when editing to create a new item
> - star for urgent, exclamation for important, auto score and color
> coding based on priority
> - tick to mark an item as complete, and x to remove the an item
> - drag and drop to reorder items
> - multiple columns with editable labels
> - create new tags at the top left, add them to items with the tag
> button drop down, remove a tag from an item by clicking it.
> - focus button to give focus to the item you're currently doing.
> - don't worry about saving, it's all done automatically every time a
> state changes
>
> To clear and start again, just do localStorage.removeItem('todo') in the
> console of your browser.
>
> Code is at:
>
> https://github.com/webr3/todo
>
> Currently operates on localStorage but can also persist data remotely to
> the web:nte
>
Also related is kingsley's version
https://plus.google.com/112399767740508618350/posts/iJMj2n9GZMM
>
> TO SAVE
>
> ======
>
> Helper function: https://gist.github.com/3968713
>
> var url = "http://todo.data.fm/foo" // where you want to store your todos
> putFile(url, '<#1> <#todo> "'+ escape(localStorage.todo) +'" .')
>
> TO LOAD
> =======
>
> var url = "http://todo.data.fm/foo" // where you want to store your todos
> $.getJSON(url + '.json', function(data) { s =
> (unescape(JSON.stringify(data[url + '#1'][url + '#todo'][0]['value']))) ;
> window.localStorage.todo = s.substring( 1, s.length-1); } )
>
> Then refresh the page
>
> Am quite excited about this app, into a global task tabulator. Including
> the tabulator issue pane. Rich content. Payments. Global Search.
> OmniOutliner & much more. Think minority report as the UI [1]
>
> [1] https://www.youtube.com/watch?v=F_O5PHdHA8U
>
>
Received on Sunday, 28 October 2012 21:19:33 UTC