[tw] Re: [TWC] new tiddlers creation from type list

2014-06-15 Thread julien23
Hi All It finally works with [[FetNewHere]] forEachTiddler where 'tiddler.tags.contains(twTypes)' write ' newJournal title:$1__0MM_0DD_0hh_0mm_0ss focus:%22title%22 text:{{ store.getTiddlerText(\+tiddler.title+Template\)}} label: +tiddler.title+ [[+tiddler.title+]]

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-14 Thread julien bouchez
Hi all I made the title space free and removed unecessary %22 at the end forEachTiddler where 'tiddler.tags.contains(twTypes)' write ' newJournal title:$1__0MM_0DD_0hh_0mm_0ss focus:%22title%22 text:{{ store.getTiddlerText(%22+tiddler.title+Template%22)/}/} label:

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-14 Thread Eric Shulman
text {{store.getTiddlerText(ConstantsTemplate)/}/} I am allmost there... I just can't figure out how to have this store to work. Try changing /}/} to just }} -e -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-14 Thread julien23
Hi Eric I have already tried ...Template%22)}} according to whatever's saying but I get the red new... Error in macro newJournal Error in macro newJournal Error in macro newJournal Error in macro newJournal Error in macro newJournal Error in macro newJournal Error in macro newJournal

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-14 Thread Eric Shulman
On Saturday, June 14, 2014 2:57:03 AM UTC-7, julien23 wrote: I have already tried ...Template%22)}} according to whatever's saying but I get the red new... Error in macro newJournal Error in macro newJournal Error in macro newJournal Error in macro newJournal Error in macro newJournal

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-13 Thread Eric Shulman
On Friday, June 13, 2014 10:41:56 AM UTC-7, julien bouchez wrote: [[FetNewHere]] forEachTiddler where 'tiddler.tags.contains(twTypes)' write ' newJournal title:$1 _0MM_0DD_0hh_0mm_0ss focus:title text:{{store.getTiddlerText(+tiddler.title+Template)/}/} label:+tiddler.title+

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-13 Thread whatever
Hey! For one, you need to escape the literal quotation marks inside fET: 'newJournal title:\$1 _0MM_0DD_0hh_0mm_0ss\ focus:\title\ text:{{store.getTiddlerText(\+tiddler.title+\)}} label:\+tiddler.title+\ [[+tiddler.title+]] [[$2]]//' I left out the Template bit at the end, not sure if

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-13 Thread julien bouchez
Eric, thank you for the = %22 I knew I was messing with double quote but did no know how to google for equivalence... in [[testTiddled]] I get : newJournal title:%22testTiddler _0MM_0DD_0hh_0mm_0ss%22 focus:%22title%22 text:store.getTiddlerText(%22CompanyTemplate%22)/}/}

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-13 Thread julien bouchez
Hi all mistake at the end : \\' would work fine Thank you all Julien On Friday, June 13, 2014 9:46:50 PM UTC+2, julien bouchez wrote: Eric, thank you for the = %22 I knew I was messing with double quote but did no know how to google for equivalence... in [[testTiddled]] I get :

[tw] Re: [TWC] new tiddlers creation from type list

2014-06-13 Thread julien bouchez
...still have a problem ... it makes tiddlers like this : Constants @ testTiddler title %22testTiddler tags _0MM_0DD_0hh_0mm_0ss%22 Constants testTiddler %22 text {{store.getTiddlerText(ConstantsTemplate)/}/} ... still looking at it On Friday, June 13, 2014 9:54:33 PM UTC+2, julien