[tw] Re: Help: Simple task management

2012-01-12 Thread Pedro Maia
Hi Måns,

Thanks for your help. It works like a charm. 

I'm impressed with the Tiddlywiki's power. I'm using it as a personal 
notebook and as GTD system (mGSD). It's quite easy to input information. I 
didn't test how I'm going to retrieve it, but I think it will be easy.

Thanks again,

Pedro


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/c15feX7EzJUJ.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Help: Simple task management

2012-01-12 Thread Pedro Maia
Hi Tobias,

Thanks for the tip.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/TghcJ9U3Gc8J.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Help: Simple task management

2012-01-11 Thread Måns
Hi Pedro

 What I need is a way to to create new tiddlers that already has a tag Inbox
 (like journal). Also I would need a tiddler called Inbox that shows all the
 other tiddlers with the inbox tag with a checkbox. When the checkbox is
 marked the tiddler would go to a trash tiddler.

 It's possible to accomplish this without the need to write code?

Yes it is:

Install one plugin:

http://www.tiddlytools.com/#TrashPlugin

1) Create a newTiddler button which creates new tiddlers tagged with
inbox:
newTiddler label: new inbox tiddler tag:inbox

2) Create a tiddler called Inbox and write:
list filter [tag[inbox]] template:Inbox##template/%
!template
view title linktoolbar deleteTiddler
!end %/

Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Help: Simple task management

2012-01-11 Thread Måns
QED: http://indboks.tiddlyspot.com/

On 11 Jan., 21:39, Måns humam...@gmail.com wrote:
 Hi Pedro

  What I need is a way to to create new tiddlers that already has a tag Inbox
  (like journal). Also I would need a tiddler called Inbox that shows all the
  other tiddlers with the inbox tag with a checkbox. When the checkbox is
  marked the tiddler would go to a trash tiddler.

  It's possible to accomplish this without the need to write code?

 Yes it is:

 Install one plugin:

 http://www.tiddlytools.com/#TrashPlugin

 1) Create a newTiddler button which creates new tiddlers tagged with
 inbox:
 newTiddler label: new inbox tiddler tag:inbox

 2) Create a tiddler called Inbox and write:
 list filter [tag[inbox]] template:Inbox##template/%
 !template
 view title linktoolbar deleteTiddler
 !end %/

 Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Help: Simple task management

2012-01-11 Thread Måns
There's one problem though...
We need extra filters which aren't available from the TW core if we
want to filter out tiddler tagged with trash from the Inbox list
eg.:

All tiddlers tagged with inbox and *not* trash
list filter [tag[inbox]][notag[trash]] template:Inbox##template/%
!template
view title linktoolbar deleteTiddler
!end %/

I guess Eric's MatchTagsPlugin will do the trick (with a slightly
different syntax*)-
Jon's ExtraFiltersPlugin - the second filter is *only* available if
your TW is hosted on TiddlySpace, because it depends on other
TiddlySpace specific plugins...

* Note I've installed Eric's MatchTagsPlugin and changed the example
to this:

list filter [tag[inbox AND (NOT Trash)]]
template:Inbox##template/%
!template
view title linktoolbar deleteTiddler
!end %/

Hope this helps...

Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Help: Simple task management

2012-01-11 Thread Måns
Same thing on TiddlySpace (when including Jon's filters - and not
Eric's MatchtagsPlugin):
http://inbox.tiddlyspace.com/tiddlers.wiki

Code:
list filter [tag[inbox]][notag[Trash]] template:Inbox##template/
%
!template
view title linktoolbar deleteTiddler
!end %/

Cheers Måns Mårtensson

On 11 Jan., 22:17, Måns humam...@gmail.com wrote:
 There's one problem though...
 We need extra filters which aren't available from the TW core if we
 want to filter out tiddler tagged with trash from the Inbox list
 eg.:

 All tiddlers tagged with inbox and *not* trash
 list filter [tag[inbox]][notag[trash]] template:Inbox##template/%
 !template
 view title linktoolbar deleteTiddler
 !end %/

 I guess Eric's MatchTagsPlugin will do the trick (with a slightly
 different syntax*)-
 Jon's ExtraFiltersPlugin - the second filter is *only* available if
 your TW is hosted on TiddlySpace, because it depends on other
 TiddlySpace specific plugins...

 * Note I've installed Eric's MatchTagsPlugin and changed the example
 to this:

 list filter [tag[inbox AND (NOT Trash)]]
 template:Inbox##template/%
 !template
 view title linktoolbar deleteTiddler
 !end %/

 Hope this helps...

 Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: Help: Simple task management

2012-01-11 Thread Måns
Arrgh - Just discovered that you *have* to click save changes when
you have clicked empty trash .
I'm afraid TrashPlugin is (slightly) incompatible with
TiddlySpace 


On 11 Jan., 22:50, Måns humam...@gmail.com wrote:
 Same thing on TiddlySpace (when including Jon's filters - and not
 Eric's MatchtagsPlugin):http://inbox.tiddlyspace.com/tiddlers.wiki

 Code:
 list filter [tag[inbox]][notag[Trash]] template:Inbox##template/
 %
 !template
 view title linktoolbar deleteTiddler
 !end %/

 Cheers Måns Mårtensson

 On 11 Jan., 22:17, Måns humam...@gmail.com wrote:







  There's one problem though...
  We need extra filters which aren't available from the TW core if we
  want to filter out tiddler tagged with trash from the Inbox list
  eg.:

  All tiddlers tagged with inbox and *not* trash
  list filter [tag[inbox]][notag[trash]] template:Inbox##template/%
  !template
  view title linktoolbar deleteTiddler
  !end %/

  I guess Eric's MatchTagsPlugin will do the trick (with a slightly
  different syntax*)-
  Jon's ExtraFiltersPlugin - the second filter is *only* available if
  your TW is hosted on TiddlySpace, because it depends on other
  TiddlySpace specific plugins...

  * Note I've installed Eric's MatchTagsPlugin and changed the example
  to this:

  list filter [tag[inbox AND (NOT Trash)]]
  template:Inbox##template/%
  !template
  view title linktoolbar deleteTiddler
  !end %/

  Hope this helps...

  Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.