Hi all,

If you want a nice way to view all your Journal entries which fits in
well with mGSD, create a Tiddler called "My Journal" (or whatever
you'd like), and put the following in it:

<<newJournal "YYYY/0MM/0DD - hh:0mm" Journal noNotes hideTags>>

<<mgtdList title:'My Journal Entries'
  startTag:Journal
  dontShowEmpty:no
  global:yes
  sort:-modified
  ignoreRealm:yes
  view:TiddlerText
>>

Tag it with "view" to hide the tags, and stick it in your
DefaultTiddlers list so it comes up each time you load your TW (or you
might forget it's there!)

If you're not using my mGSDProjectStatusUpdatesPlugin (which you can
get at http://thinkcreatesolve.biz/mGSDEnhancements.html ) you'll need
to put this in a Tiddler tagged systemConfig:

merge(Tiddler.prototype,{
  //TiddlerText with contents - additional to core TiddlerViewMethods
tiddler
  render_TiddlerText: function() {
    var showControl= "";
    var mydisplayType = "";
    var tid_length="";
    mydisplayType += store.getTiddlerText(this.title);
    tid_length +=mydisplayType;
    if (tid_length !="null") {showControl += '+++<<tiddler [[%0]]>>===
\n<hr/>\n'; }

    return this.renderUtil(
      '{{action{'+
      '<<deleteTiddler [[%0]]>>'+
      '&nbsp; [[%0]]&nbsp;%1 '+
      '}}}',
      [
        this.title,
        showControl.format([this.title])
      ]
    );
  },
});

Note, the above uses the excellent NestedSlidersPlugin. If you don't
have *that*, you can use a flatter layout with this instead:

merge(Tiddler.prototype,{
  //TiddlerText with contents - additional to core TiddlerViewMethods
tiddler
  render_TiddlerText: function() {
    var showControl= "";
    var mydisplayType = "";
    var tid_length="";
    mydisplayType += store.getTiddlerText(this.title);
    tid_length +=mydisplayType;
    if (tid_length !="null") {showControl += '<<tiddler [[%0]]>>\n<hr/>
\n'; }

    return this.renderUtil(
      '{{action{'+
      '&nbsp; [[%0]] '+
      '<<deleteTiddler [[%0]]>>'+
      '\n'+
      '}}} %1',
      [
        this.title,
        showControl.format([this.title])
      ]
    );
  },
});

Either way, it's a nice way to view your Journal!

Cheers,
David Szego

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

Reply via email to