Ok, that was stupid. If you type 'journal' and a tiddler into the search engine, you can find all the related journals. No need for any additional tags.
Sometimes I surpass myself. Jon On Wed, May 20, 2009 at 5:07 PM, Jonathan El-Bizri <[email protected]> wrote: > The 'New Journal' button is nifty, and I use it a great deal. However, > I found opening up multiple journal entries for review to be a chore > (especially with a slow running mGTD :/). So, I added the tag > 'LogFile' to the 'New Journal' button code, and now typing in a > tiddler along with the word LogFile brings all the journal entries in > the search bar, where I can open them all at once. > > For those that haven't poked around the code yet, the 'New Journal' > button is made by the NewHerePlugin. Here is the entire code of that > tiddler, so what I did was clear: > > /*** > |Name:|NewHerePlugin| > |Description:|Creates the new here and new journal macros| > |Version:|3.0 ($Rev: 3861 $)| > |Date:|$Date: 2008-03-08 10:53:09 +1000 (Sat, 08 Mar 2008) $| > |Source:|http://mptw.tiddlyspot.com/#NewHerePlugin| > |Author:|Simon Baird <[email protected]>| > |License|http://mptw.tiddlyspot.com/#TheBSDLicense| > ***/ > //{{{ > merge(config.macros, { > newHere: { > handler: > function(place,macroName,params,wikifier,paramString,tiddler) { > wikify("<<newTiddler "+paramString+" > tag:[["+tiddler.title+"]]>>",place,null,tiddler); > } > }, > newJournalHere: { > handler: > function(place,macroName,params,wikifier,paramString,tiddler) { > wikify("<<newJournal "+paramString+" > tag:[["+tiddler.title+"]] > LogFile >>",place,null,tiddler); > } > } > }); > > //}}} > > All I added was the extra tag 'LogFile'. Baby step. I'm sure someone > out there can think of other places where and extra tag or two might > be a good thing to have. > > The next step, I assume would be to add a 'open all logs' button to > the tiddlers, though that might get burdensome. Perhaps a "open last x > logs/open all logs" drop down would be better. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
