This is what I ended up with; items from project tiddlers that are
labeled with a context like "@computer" get inserted into a table. If
I make them red, they also show up in a tiddler called
HighPriorityActions, using the script I posted earlier. The one
improvement I'd like to make is to parameterize this little script so
I don't have to reproduce a slightly different version of it in each
"@..." tiddler. It would also be nice to make the context labels less
obtrusive in the project tiddlers, but I can live with that, since the
parts I actually scan frequently, the context tiddlers, are spare and
clean.
BTW, I evaluated the d3 and mGTD tiddlywikis, and ended up preferring
my tweaked ancient GTDTW even though the alternatives have many nice
features. My main reason for preferring GTDTW is compactness of
presentation: all the information I need to scan is compressed into a
few places, and I can scan it in a few seconds. I can also print
everything important to a quarter-inch deck of 3x5 cards. I probably
have 200 projects ranging from "fix tile in storeroom" to "learn to
make sushi", and with that many projects, the project and next-action
summaries in d3 and mGTD are unwieldy, IMHO.
<<forEachTiddler
where
'tiddler.tags.contains("project") && tiddler.text.contains("@calls")'
script
'function getActions(s,t){ var r=""; var rarr = s.match(/@calls(.*)/
ig); for(var i = 0; i < rarr.length; i++){var j = rarr[i].search
("@calls"); if(i==0)r+="|[["+t+"]]|";else r+="|~|"; r+=rarr[i].substr(j
+7)+"|\n"; }; return r;}'
write
'getActions(tiddler.text,tiddler.title)'
>>
+++>Shows all lines tagged with "project" containing "@calls"===
<<autoRefresh>>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "GTD
TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---