[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread julien23
Hi whatever Sorry for long silence ... I slightly modified your script to match my taxonomy script var skills = store.getTaggedTiddlers(*Skills*); //Get skill tiddlers var here = story.findContainingTiddler(place); //Determine place if (here) { var tid =

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Stephan Hradek
$list filter=[[Paul]tags[]] +[tag[Skills]] $view field=title/ /$list -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Eric Shulman
On Tuesday, October 7, 2014 5:01:50 AM UTC-7, Stephan Hradek wrote: $list filter=[[Paul]tags[]] +[tag[Skills]] $view field=title/ /$list This solution is for TW5. The question was specifically for TWClassic. However, it does demonstrate how powerful the new TiddlyWiki filter syntax is!

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Eric Shulman
On Tuesday, October 7, 2014 4:26:09 AM UTC-7, julien23 wrote: var title = $1; //Calling tiddler's title And to call it from [Paul] with tiddler PeopleSkillsScript with: {{tiddler.title}} But I get : ReferenceError: Paul is not defined Can you please help me further ? You need to put

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread Stephan Hradek
Am Dienstag, 7. Oktober 2014 14:08:26 UTC+2 schrieb Eric Shulman: This solution is for TW5. The question was specifically for TWClassic. However, it does demonstrate how powerful the new TiddlyWiki filter syntax is! Now that you say it… ;) -- You received this message because you

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread julien23
Hi all Eric, Thank you I have abounded your tip jar as usual Stephan, I do love TW5, but it took me so much time to build my system with TWC, I can't imagine to migrate ... too bad! Regards Julien On Tuesday, October 7, 2014 2:18:10 PM UTC+2, Stephan Hradek wrote: Am Dienstag, 7.

[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-09-12 Thread whatever
Hey! Try the following: script var skills = store.getTaggedTiddlers(skill); //Get skill tiddlers var here = story.findContainingTiddler(place); //Determine place if (here) { var tid = store.getTiddler(here.getAttribute(tiddler)); //Get this tiddler } var title = tid.title; //This tiddler's title