Hi,
@Tony: I think, my english is not good enough to really understand, what you want from me and what is pseudocode.
Maybe, I understood just a little bit, that you want, that I mark some words with colours? I try to write my questions as clearly as possible- for me.
I am sorry, that you spend time for analysing and explaining.
And hope and thank all, if you still help me with questions- also if they are not very clear for you.
@Mark: That works fine :-)
And i managed, to make another list filter by myself- yeah ;-) This one:
This lists all tested recipes, in which are fruits or fats:
<$list filter="[tag[fruit]tagging[]tag[tested]] [tag[fat]tagging[]tag[tested]] +[sort[title]]" emptyMessage="None" >
<div style="margin-left:2em;">
<li><$link><<currentTiddler>></$link></li></div>
</$list>
Now, I tried to make a list, which lists all untested recipes, in which are fruits which are also in tested recipes.
For example: A
recipe called "
dessert", that is tagged with "
tested"
and tagged with "
apple"
and tagged with "
orange".
And a recipe called "drink", that is tagged with "untested" and tagged with "orange".
And a recipe called "icecream", that is tagged with "untested" and tagged with "pineapple".
In this example the list should show only the recipe "drink", because it is tagged with "untested" and "orange" and there is also a tested recipe, which is tagged with orange.
For the first I tried it with only fruits with
<$list filter="[tag[fruit]tagging[]tag[tested]] +[tag[fruit]tagging[]tag[untested]] +[sort[title]]" >
and with
<$list filter="[tag[fruit]tagging[]tag[tested]tag[untested]] +[sort[title]]" >
But both didn't work. I do not have more ideas, how to solve that.
Do you have an idea??
I hope, my question is very clear...
Surya