[tw] Re: fET inside a fET : syntax around %1

2010-12-16 Thread Måns
Hi Julien23

 tiddler FetLauchingGrouped with: {{tiddler.title}}

 [[FetLauchingGrouped]]
 forEachTiddler
     where
         'tiddler.tags.contains(Sorties)  !
 tiddler.tags.contains(attachment)'
     sortBy
         tiddler.modified
         descending
    write
  '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
 FetDefinitionTagsText with: %1 |Sortie|+tiddler.title+|$))'



 [[FetDefinitionTagsText]]
 forEachTiddler
     where
         'tiddler.tags.contains($1)  tiddler.text.contains($2)
  !tiddler.tags.contains(attachment)'
     sortBy
         tiddler.modified
         descending
    write
  '((index == 0) ?  : \n)+*[[+tiddler.title+|+tiddler.title
 +]]'

Why not:
tiddler FetLauchingGrouped
[[FetLauchingGrouped]]
forEachTiddler
where
'tiddler.tags.contains(Sorties)  !
tiddler.tags.contains(attachment)'
sortBy
tiddler.modified
descending
   write
 '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
FetDefinitionTagsText with:{{tiddler.title}} |Sortie|+tiddler.title+|
$))'

[[FetDefinitionTagsText]]
forEachTiddler
where
'tiddler.tags.contains($1)  tiddler.text.contains($2)
 !tiddler.tags.contains(attachment)'
sortBy
tiddler.modified
descending
   write
 '((index == 0) ?  : \n)+*[[+tiddler.title+|+tiddler.title
+]]'

??

Cheers Måns Mårtensson

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



[tw] Re: fET inside a fET : syntax around %1

2010-12-16 Thread julien23
It works

thanks a lot

On Dec 16, 7:47 pm, Måns humam...@gmail.com wrote:
 Hi Julien23



  tiddler FetLauchingGrouped with: {{tiddler.title}}

  [[FetLauchingGrouped]]
  forEachTiddler
      where
          'tiddler.tags.contains(Sorties)  !
  tiddler.tags.contains(attachment)'
      sortBy
          tiddler.modified
          descending
     write
   '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
  FetDefinitionTagsText with: %1 |Sortie|+tiddler.title+|$))'

  [[FetDefinitionTagsText]]
  forEachTiddler
      where
          'tiddler.tags.contains($1)  tiddler.text.contains($2)
   !tiddler.tags.contains(attachment)'
      sortBy
          tiddler.modified
          descending
     write
   '((index == 0) ?  : \n)+*[[+tiddler.title+|+tiddler.title
  +]]'

 Why not:
 tiddler FetLauchingGrouped
 [[FetLauchingGrouped]]
 forEachTiddler
     where
         'tiddler.tags.contains(Sorties)  !
 tiddler.tags.contains(attachment)'
     sortBy
         tiddler.modified
         descending
    write
  '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
 FetDefinitionTagsText with:{{tiddler.title}} |Sortie|+tiddler.title+|
 $))'

 [[FetDefinitionTagsText]]
 forEachTiddler
     where
         'tiddler.tags.contains($1)  tiddler.text.contains($2)
  !tiddler.tags.contains(attachment)'
     sortBy
         tiddler.modified
         descending
    write
  '((index == 0) ?  : \n)+*[[+tiddler.title+|+tiddler.title
 +]]'

 ??

 Cheers Måns Mårtensson

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



[tw] Re: fET inside a fET : syntax around %1

2010-12-15 Thread Kriss
try this:

 '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
FetDefinitionTagsText with:[[Sortie]] [[+tiddler.title+]] $))'



On 15 dec, 12:26, julien23 jbouc...@capsule-ea.fr wrote:
 I call a two layered fET with the command here below, but I think I am
 doing something wrong around the syntax of %1 in
 [[FetLauchingGrouped]] ... I have tried all '  [[ {{ possibles :D

 Could you please give me a hand ?

 Thanks

 tiddler FetLauchingGrouped with: {{tiddler.title}}

 [[FetLauchingGrouped]]
 forEachTiddler
     where
         'tiddler.tags.contains(Sorties)  !
 tiddler.tags.contains(attachment)'
     sortBy
         tiddler.modified
         descending
    write
  '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
 FetDefinitionTagsText with: %1 |Sortie|+tiddler.title+|$))'



 [[FetDefinitionTagsText]]
 forEachTiddler
     where
         'tiddler.tags.contains($1)  tiddler.text.contains($2)
  !tiddler.tags.contains(attachment)'
     sortBy
         tiddler.modified
         descending
    write
  '((index == 0) ?  : \n)+*[[+tiddler.title+|+tiddler.title
 +]]'



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



[tw] Re: fET inside a fET : syntax around %1

2010-12-15 Thread julien23
thanks for helpping

the

|Sortie|+tiddler.title+|

thing works fine, my problem is with

%1

that should filter tiddlers tagged with the original tiddler's name

tiddler FetLauchingGrouped with: {{tiddler.title}}

but does not :-(

I suspect it should be written

'%1' or {%1} or whatever  [[

but I cant't fifure out which one I sould be using ...

On Dec 16, 8:34 am, Kriss bipah...@gmail.com wrote:
 try this:

  '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
 FetDefinitionTagsText with:[[Sortie]] [[+tiddler.title+]] $))'

 On 15 dec, 12:26, julien23 jbouc...@capsule-ea.fr wrote:

  I call a two layered fET with the command here below, but I think I am
  doing something wrong around the syntax of %1 in
  [[FetLauchingGrouped]] ... I have tried all '  [[ {{ possibles :D

  Could you please give me a hand ?

  Thanks

  tiddler FetLauchingGrouped with: {{tiddler.title}}

  [[FetLauchingGrouped]]
  forEachTiddler
      where
          'tiddler.tags.contains(Sorties)  !
  tiddler.tags.contains(attachment)'
      sortBy
          tiddler.modified
          descending
     write
   '((index == 0) ?  : \n)+*+tiddler.title+\n tiddler
  FetDefinitionTagsText with: %1 |Sortie|+tiddler.title+|$))'

  [[FetDefinitionTagsText]]
  forEachTiddler
      where
          'tiddler.tags.contains($1)  tiddler.text.contains($2)
   !tiddler.tags.contains(attachment)'
      sortBy
          tiddler.modified
          descending
     write
   '((index == 0) ?  : \n)+*[[+tiddler.title+|+tiddler.title
  +]]'



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