[tw5] Prevent an empty line

2024-03-23 Thread vinvi...@gmail.com
{{!!FieldName1}} {{!!FieldName2}} {{!!FieldName3}} 

shows the values from these fields on one line.

{{!!Fieldname1}} 
{{!!Fieldname2}} 
{{!!Fieldname3}} 

Displays the values of these fields among eachother. But if the field 
{{!!FieldName2}} contains no value, a blank line will be displayed. 


\define listField(prefix:"")
<$list filter="[fields[]prefix[$prefix$]sort[title]]" variable="fieldName">
 <$view field=<>/>

\end
\define listFieldBR(prefix:"")
<$list filter="[fields[]prefix[$prefix$]sort[title]]" variable="fieldName">
 <$view field=<>/>

\end

<> <>
<>
<>
<>
<>
<>

Is also not working.

How can I prevent an empty line if there is no value, and still ensure that 
values are displayed behind or below each other?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/75b955c5-5c04-468c-b8d9-5335c83e429bn%40googlegroups.com.


[tw5] Re: Search in field

2023-07-15 Thread vinvi...@gmail.com
List as link:

<$link to=<> />

Op zaterdag 15 juli 2023 om 12:54:13 UTC+2 schreef vinvi...@gmail.com:

> Hello,
>
>
>
>
>
>
>
>
>
> *<$keyboard key="escape" actions='<$action-setfield 
> $tiddler="$:/temp/demo/qa/search-details" $field="text" 
> $value=""/>'><$edit-text tiddler="$:/temp/demo/qa/search-details" 
> filed=title tag=input default="" placeholder="Search" class="alert 
> alert-info w-100"/><$list 
> filter="[!is[system]search:text[{{]search:title[,]search:title{$:/temp/demo/qa/search-details}]"
>  
> variable=tagname>   <$checkbox tag=<> tiddler=<> 
>  >↑ <>*
>
> Works perfect!
> But how do I modify this code so that I can search in field X of Tiddler 
> XX?
> And how do I display the values from that field as a link?
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/89da7ca8-da58-4782-adc3-3a87e08bcd54n%40googlegroups.com.


[tw5] Search in field

2023-07-15 Thread vinvi...@gmail.com
Hello,









*<$keyboard key="escape" actions='<$action-setfield 
$tiddler="$:/temp/demo/qa/search-details" $field="text" 
$value=""/>'><$edit-text tiddler="$:/temp/demo/qa/search-details" 
filed=title tag=input default="" placeholder="Search" class="alert 
alert-info w-100"/><$list 
filter="[!is[system]search:text[{{]search:title[,]search:title{$:/temp/demo/qa/search-details}]"
 
variable=tagname>   <$checkbox tag=<> tiddler=<> 
 >↑ <>*

Works perfect!
But how do I modify this code so that I can search in field X of Tiddler XX?
And how do I display the values from that field as a link?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c40b47a7-8aa4-4311-983d-1eff2e62845fn%40googlegroups.com.


[tw5] Re: Macro

2023-02-05 Thread vinvi...@gmail.com
Thank you  Eric Shulman, it works.


Op zondag 5 februari 2023 om 17:03:31 UTC+1 schreef Eric Shulman:

> Give this a try:
> ```
> \define checkbox-list(values,fieldname)
> <$list filter="[enlist[$values$]]" variable="thisValue" >
> <$checkbox listField="$fieldname$" checked=<>> 
> <>
> 
> \end
> ```
> Notes:
> * If the `values` list has items that contain double quotes or square 
> brackets, those characters will interfere with the parsing of the `$list` 
> filter syntax.  To avoid this problem, instead of writing 
> `filter="[enlist[$values$]]"`, you can write: 
> `filter="[enlist<__values__>]"`.  see 
> https://tiddlywiki.com/#Macro%20Definitions%20in%20WikiText for more info.
> * Note also that, while brackets (square, angled, or curly) within 
> wikitext syntax are doubled, when used in filter syntax, they are SINGLE 
> (i.e., `[enlist<__values__>]`... NOT `[enlist<<__values__>>]`)
>
> enjoy,
> -e
> On Sunday, February 5, 2023 at 7:24:48 AM UTC-8 vinvi...@gmail.com wrote:
>
>> Hi, I'm trying to make a macro.
>>
>> This is my code so far:
>>
>> \define checkbox-list()<$list variable="LIST-FROM-FIELD" 
>> filter="[list[!!LIST-FROM-FIELD]]"><$checkbox listField="WRITE TO 
>> FIELD" checked=<>> <>
>>
>> It now reads the values from a field and displays them with a checkbox in 
>> front of them. 
>> By checking the checkbox, the corresponding value is written to another 
>> field.
>>
>> I would prefer that when calling the macro I could determine which values 
>> should be displayed 
>> without having to put them in a field. 
>>
>> Something like:
>> <>
>>
>> I've been working on $myvar$. and enlist $mylist$.. I can't figure it out.
>>
>> Is there anyone who can help me with this?
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d03353d3-d0af-4c8c-8877-2fc14488f808n%40googlegroups.com.


[tw5] Macro

2023-02-05 Thread vinvi...@gmail.com
Hi, I'm trying to make a macro.

This is my code so far:

\define checkbox-list()<$list variable="LIST-FROM-FIELD" 
filter="[list[!!LIST-FROM-FIELD]]"><$checkbox listField="WRITE TO 
FIELD" checked=<>> <>

It now reads the values from a field and displays them with a checkbox in 
front of them. 
By checking the checkbox, the corresponding value is written to another 
field.

I would prefer that when calling the macro I could determine which values 
should be displayed 
without having to put them in a field. 

Something like:
<>

I've been working on $myvar$. and enlist $mylist$.. I can't figure it out.

Is there anyone who can help me with this?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5c25cecd-08e1-48ea-9e1a-9332bea5b08an%40googlegroups.com.


[tw5] Tag to current tiddler after selection

2021-08-28 Thread vinvi...@gmail.com
Hello,

The following gives me a list of tiddlers with a checkbox. After selection, 
the tiddler defined in <> is tagged to the selected tiddler.

*<$keyboard key="escape" actions='<$action-setfield 
$tiddler="$:/SearchTiddler" $field="text" $value=""/>'>*
*<$edit-text tiddler="$:/SearchTiddler" filed=title tag=input default="" 
placeholder="Search" class="alert alert-info w-100"/>*
**

*<$list 
filter="[!is[system]search:text[{{]search:title[,]search:title{$:/SearchTiddler}]"
 
variable=tagname>*

*   <$checkbox tag=<> tiddler=<>  > 
<>*
**

But I want to turn this around. I want the selected tiddler to be tagged to 
the tiddler defined in <>

How do I do this?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7adf66a2-4642-43ac-a3e7-821ae13f1857n%40googlegroups.com.


[tw5] List: fieldname = tiddlername currentTiddler

2021-06-12 Thread vinvi...@gmail.com
Hello,

The following is listing the values out of field "*warning*" of tiddler "
*@fields*". The name of the listed field bears the same name as the tiddler 
containing the list-code:

In tiddler warning: 
*<$list 
filter="[list[@fields!!warning]search:title{$:/temp/search@fields}]" 
variable=warning-value>*


I want to transclude this code in different tiddlers.
How do I avoid having to specify the field name every time?
$tiddler="@fields" $field=<>

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/af12dfe6-d97a-46c7-8b9c-211324c2f32bn%40googlegroups.com.


Re: [tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com
Hi Mohammad,

That lists the title of the tiddlers that have the field warning. It should 
list all unique values out of all fields warning.

Op vrijdag 4 juni 2021 om 18:03:26 UTC+2 schreef Mohammad:

> It has nothing to do with tags, just search in "all fields warning" and 
>> add or remove the value in field warning of the current tiddler.
>
>
> Then you need to use 
>
> [all[tiddlers]has:field[warning]]
>
>
> Look at "has operator" on tiddlywiki.com
>
>
>
> Best wishes
> Mohammad
>
>
> On Fri, Jun 4, 2021 at 7:20 PM vinvi...@gmail.com  
> wrote:
>
>>
>> It has nothing to do with tags, just search in "all fields warning" and 
>> add or remove the value in field warning of the current tiddler.
>>
>>
>> Op vrijdag 4 juni 2021 om 15:05:00 UTC+2 schreef Mohammad:
>>
>>> <$list filter="[tags[]!is[system]]" variable=warning-value>
>>>
>>> means list all Non system tags!
>>>
>>>   <$list filter="[tags[]]" variable=warning-value>
>>>
>>>   means list all  tags including systems tags!
>>> <$vars items={{{[get[warning]] }}} >
>>> <]" search:"search:title">>
>>> 
>>>
>>> create a list search lets you to search in the warning field of current 
>>> tiddler
>>>
>>> Best wishes
>>> Mohammad
>>>
>>>
>>> On Fri, Jun 4, 2021 at 4:35 PM vinvi...@gmail.com  
>>> wrote:
>>>
>>>> Thanks Mohammad, 
>>>> what you have done is working. Thank you so much!
>>>>
>>>> Only it does not display the values from the "warning" fields.
>>>>
>>>> By replacing this code:
>>>> <$list filter="[tags[]!is[system]]" variable=warning-value>
>>>> with this:
>>>> <$list filter="[tags:warning[]]" variable=warning-value>
>>>>
>>>> I at least get it working.
>>>>
>>>>
>>>> What I mean by: [tags:warning[]]?
>>>> I honestly have no idea. I've been working on this piece of code for a 
>>>> while and couldn't figure it out. Somehow that got in there and it works.
>>>>
>>>> Maybe you have another suggestion?
>>>>
>>>> Thank you,
>>>>
>>>> Op vrijdag 4 juni 2021 om 13:29:28 UTC+2 schreef Mohammad:
>>>>
>>>>> This second code also search in field warning using Shiraz list-search
>>>>>
>>>>> <$vars items={{{[get[warning]] }}} >
>>>>> <]" search:"search:title">>
>>>>> 
>>>>>
>>>>> <$count filter="[tags[]!is[system]]" />
>>>>>
>>>>> <$list filter="[tags[]!is[system]]" variable=warning-value>
>>>>>
>>>>> <$button type="button" class="btn btn-warning btn-mini" >
>>>>>
>>>>> <$action-listops $field="warning" $subfilter="[]" />
>>>>> {{$:/core/images/new-button}}
>>>>> 
>>>>> <$button type="button" class="btn btn-info btn-mini" >
>>>>> <$action-listops $field="warning" $subfilter="-[]" />
>>>>> {{$:/core/images/delete-button}}
>>>>> 
>>>>> <$text text=<>/>
>>>>> 
>>>>>
>>>>> I modified your filter, as I think yours is not correct!
>>>>>
>>>>>
>>>>> Best wishes
>>>>> Mohammad
>>>>>
>>>>>
>>>>> On Fri, Jun 4, 2021 at 2:11 PM vinvi...@gmail.com  
>>>>> wrote:
>>>>>
>>>>>> Hello,
>>>>>>
>>>>>> To avoid duplications of values in fields warning;
>>>>>> list all unique values from the warning field of all tiddlers with 2 
>>>>>> buttons: Add and Remove. (Add and remove from $(currentTiddler)$ )
>>>>>>
>>>>>>
>>>>>> <$list filter="[tags:warning[]]" variable=warning-value>
>>>>>>
>>>>>> <$button type="button" class="btn btn-secondary btn-mini" >
>>>>>> <$action-listops $field="warning" $subfilter=<>/>
>>>>>> {{$:/core/images/new-button}}
>>>>&

Re: [tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com

It has nothing to do with tags, just search in "all fields warning" and add 
or remove the value in field warning of the current tiddler.


Op vrijdag 4 juni 2021 om 15:05:00 UTC+2 schreef Mohammad:

> <$list filter="[tags[]!is[system]]" variable=warning-value>
>
> means list all Non system tags!
>
>   <$list filter="[tags[]]" variable=warning-value>
>
>   means list all  tags including systems tags!
> <$vars items={{{[get[warning]] }}} >
> <]" search:"search:title">>
> 
>
> create a list search lets you to search in the warning field of current 
> tiddler
>
> Best wishes
> Mohammad
>
>
> On Fri, Jun 4, 2021 at 4:35 PM vinvi...@gmail.com  
> wrote:
>
>> Thanks Mohammad, 
>> what you have done is working. Thank you so much!
>>
>> Only it does not display the values from the "warning" fields.
>>
>> By replacing this code:
>> <$list filter="[tags[]!is[system]]" variable=warning-value>
>> with this:
>> <$list filter="[tags:warning[]]" variable=warning-value>
>>
>> I at least get it working.
>>
>>
>> What I mean by: [tags:warning[]]?
>> I honestly have no idea. I've been working on this piece of code for a 
>> while and couldn't figure it out. Somehow that got in there and it works.
>>
>> Maybe you have another suggestion?
>>
>> Thank you,
>>
>> Op vrijdag 4 juni 2021 om 13:29:28 UTC+2 schreef Mohammad:
>>
>>> This second code also search in field warning using Shiraz list-search
>>>
>>> <$vars items={{{[get[warning]] }}} >
>>> <]" search:"search:title">>
>>> 
>>>
>>> <$count filter="[tags[]!is[system]]" />
>>>
>>> <$list filter="[tags[]!is[system]]" variable=warning-value>
>>>
>>> <$button type="button" class="btn btn-warning btn-mini" >
>>>
>>> <$action-listops $field="warning" $subfilter="[]" />
>>> {{$:/core/images/new-button}}
>>> 
>>> <$button type="button" class="btn btn-info btn-mini" >
>>> <$action-listops $field="warning" $subfilter="-[]" />
>>> {{$:/core/images/delete-button}}
>>> 
>>> <$text text=<>/>
>>> 
>>>
>>> I modified your filter, as I think yours is not correct!
>>>
>>>
>>> Best wishes
>>> Mohammad
>>>
>>>
>>> On Fri, Jun 4, 2021 at 2:11 PM vinvi...@gmail.com  
>>> wrote:
>>>
>>>> Hello,
>>>>
>>>> To avoid duplications of values in fields warning;
>>>> list all unique values from the warning field of all tiddlers with 2 
>>>> buttons: Add and Remove. (Add and remove from $(currentTiddler)$ )
>>>>
>>>>
>>>> <$list filter="[tags:warning[]]" variable=warning-value>
>>>>
>>>> <$button type="button" class="btn btn-secondary btn-mini" >
>>>> <$action-listops $field="warning" $subfilter=<>/>
>>>> {{$:/core/images/new-button}}
>>>> 
>>>> <$button type="button" class="btn btn-secondary btn-mini" >
>>>> <$action-listops $field="warning" $subfilter=<>/>
>>>> {{$:/core/images/delete-button}}
>>>> 
>>>> <>
>>>> 
>>>>
>>>>
>>>> 1) When the value is added to the field, the square brackets are 
>>>> missing. How do I ensure that the value is noted between square brackets?
>>>>
>>>> 2) I am unable to remove the value from the field. 
>>>> $subfilter="-123" is working. But how do I get it to work referring to 
>>>> <>?
>>>>
>>>> 3) It would be totally awesome if I had a search function. By replacing 
>>>> <$list filter with;
>>>>
>>>> <>>> warning">>
>>>>
>>>> Which works fine on its own but I can't get it implemented.
>>>>
>>>>
>>>> Can somebody please help me out?
>>>>
>>>> -- 
>>>>
>>> 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+...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/tiddlywiki/19c9a8cf-efbf-4a6e-bb51-76d6e96c5a14n%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/tiddlywiki/19c9a8cf-efbf-4a6e-bb51-76d6e96c5a14n%40googlegroups.com?utm_medium=email_source=footer>
>>>> .
>>>>
>>> -- 
>> 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+...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/6ad78595-2389-4d2a-9423-af537904700cn%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/tiddlywiki/6ad78595-2389-4d2a-9423-af537904700cn%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b512cc83-33b3-46fd-a729-554d55088ccdn%40googlegroups.com.


Re: [tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com
Thanks Mohammad, 
what you have done is working. Thank you so much!

Only it does not display the values from the "warning" fields.

By replacing this code:
<$list filter="[tags[]!is[system]]" variable=warning-value>
with this:
<$list filter="[tags:warning[]]" variable=warning-value>

I at least get it working.


What I mean by: [tags:warning[]]?
I honestly have no idea. I've been working on this piece of code for a 
while and couldn't figure it out. Somehow that got in there and it works.

Maybe you have another suggestion?

Thank you,

Op vrijdag 4 juni 2021 om 13:29:28 UTC+2 schreef Mohammad:

> This second code also search in field warning using Shiraz list-search
>
> <$vars items={{{[get[warning]] }}} >
> <]" search:"search:title">>
> 
>
> <$count filter="[tags[]!is[system]]" />
>
> <$list filter="[tags[]!is[system]]" variable=warning-value>
>
> <$button type="button" class="btn btn-warning btn-mini" >
>
> <$action-listops $field="warning" $subfilter="[]" />
> {{$:/core/images/new-button}}
> 
> <$button type="button" class="btn btn-info btn-mini" >
> <$action-listops $field="warning" $subfilter="-[]" />
> {{$:/core/images/delete-button}}
> 
> <$text text=<>/>
> 
>
> I modified your filter, as I think yours is not correct!
>
>
> Best wishes
> Mohammad
>
>
> On Fri, Jun 4, 2021 at 2:11 PM vinvi...@gmail.com  
> wrote:
>
>> Hello,
>>
>> To avoid duplications of values in fields warning;
>> list all unique values from the warning field of all tiddlers with 2 
>> buttons: Add and Remove. (Add and remove from $(currentTiddler)$ )
>>
>>
>> <$list filter="[tags:warning[]]" variable=warning-value>
>>
>> <$button type="button" class="btn btn-secondary btn-mini" >
>> <$action-listops $field="warning" $subfilter=<>/>
>> {{$:/core/images/new-button}}
>> 
>> <$button type="button" class="btn btn-secondary btn-mini" >
>> <$action-listops $field="warning" $subfilter=<>/>
>> {{$:/core/images/delete-button}}
>> 
>> <>
>> 
>>
>>
>> 1) When the value is added to the field, the square brackets are missing. 
>> How do I ensure that the value is noted between square brackets?
>>
>> 2) I am unable to remove the value from the field. 
>> $subfilter="-123" is working. But how do I get it to work referring to 
>> <>?
>>
>> 3) It would be totally awesome if I had a search function. By replacing 
>> <$list filter with;
>>
>> <> warning">>
>>
>> Which works fine on its own but I can't get it implemented.
>>
>>
>> Can somebody please help me out?
>>
>> -- 
>>
> 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+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/19c9a8cf-efbf-4a6e-bb51-76d6e96c5a14n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/tiddlywiki/19c9a8cf-efbf-4a6e-bb51-76d6e96c5a14n%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6ad78595-2389-4d2a-9423-af537904700cn%40googlegroups.com.


[tw5] List values and add/remove from field

2021-06-04 Thread vinvi...@gmail.com
Hello,

To avoid duplications of values in fields warning;
list all unique values from the warning field of all tiddlers with 2 
buttons: Add and Remove. (Add and remove from $(currentTiddler)$ )


<$list filter="[tags:warning[]]" variable=warning-value>

<$button type="button" class="btn btn-secondary btn-mini" >
<$action-listops $field="warning" $subfilter=<>/>
{{$:/core/images/new-button}}

<$button type="button" class="btn btn-secondary btn-mini" >
<$action-listops $field="warning" $subfilter=<>/>
{{$:/core/images/delete-button}}

<>



1) When the value is added to the field, the square brackets are missing. 
How do I ensure that the value is noted between square brackets?

2) I am unable to remove the value from the field. 
$subfilter="-123" is working. But how do I get it to work referring to 
<>?

3) It would be totally awesome if I had a search function. By replacing 
<$list filter with;

<>

Which works fine on its own but I can't get it implemented.


Can somebody please help me out?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/19c9a8cf-efbf-4a6e-bb51-76d6e96c5a14n%40googlegroups.com.


[tw5] Count hits in numerical order

2021-03-23 Thread vinvi...@gmail.com
Hello,

List (Unique) text field of tiddlers tagged: "(S)", where all tiddlers with 
tag "(I)" and field: "rate" with value: "2" are tagged to.

<$list filter="[[2]listed[rating]tag[(I)]]">
<$list filter="[all[current]tags[]]+[tag[(S)]] +[limit[1]]">
{{!!text}}




*Each listed (S) tagged tiddler has one or more (I) tagged tiddlers tagged 
to it. *
*How do I use the CountWidget in the example above so that it also counts 
the number of hits?*

*And how do I list the tiddlers in numerical order with the highest number 
on top?*

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/19bfe195-2f46-483c-9107-2a28244a0f75n%40googlegroups.com.


[tw5] Checkbox in front of hits.

2021-03-16 Thread vinvi...@gmail.com
Hello,

The following code displays a list of tiddlers and a checkbox in front of 
them. By clicking the checkbox, the relevant tiddler is tagged to the 
current tiddler.



*\define tagging() $(currentTiddler)$*

*<$list filter="[!is[system]search:text[Specific-template]search:title[,]]" 
variable=tagname>*

*<$checkbox tiddler=<> tag=<> > <>*
**



Meanwhile, the list of tiddlers has grown so long that it is no longer 
workable. I want a search box instead.

*I want to modify the code below from the Shiraz plugin. But don't know how 
to fit;* *<$checkbox tiddler=<> tag=<> > 
<>*  in.




*\define tagging() $(currentTiddler)$*
*\define list-search-checkbox( filter:"[!is[system]]", 
search:"search:title", template:"$:/core/ui/ListItemTemplate",*
* class:"", stateTiddler:"", placeholder:"keywords")*

*<$set name="state" 
filter="[[$:/temp/list-search-checkbox]addsuffix[/$stateTiddler$]addsuffix]">*
*> >*
*<$edit-text tiddler=<> type="search" tag="input" default="" 
placeholder="$placeholder$"/>*
**
*<$reveal state=<> type="match" text="" class=<<__class__>> tag=div>*

*<$list filter="$filter$" template=<<__template__>>/>*
**
*<$reveal state=<> type="nomatch" text="" class=<<__class__>> 
tag=div>*
*<$set name=term tiddler=<> field="text">*

*<$list filter="$filter$+[$search$]" template=<<__template__>>/>*
**
**
**
*\end*

**



Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d9698669-aced-454d-87c6-b1c97ab41248n%40googlegroups.com.


[tw5] Re: What's wrong with this list ..?

2021-03-07 Thread vinvi...@gmail.com
That solved the problem. 

Thank you,





Op zondag 7 maart 2021 om 13:57:30 UTC+1 schreef Soren Bjornstad:

> Looks like you are getting some state tiddlers 
> <https://tiddlywiki.com/#StateMechanism> in your list because some 
> tiddlers that contain commas in their titles need associated state for 
> whatever reason. You can add !is[system] to exclude the state tiddlers, 
> assuming none of the tiddlers you're trying to find are system tiddlers:
>
> \define tagging() $(currentTiddler)$
>
> <$list filter="[!is[system]search:title[,]]" variable=tagname>
> <$checkbox tiddler=<> tag=<> > <>
> 
>
> On Sunday, March 7, 2021 at 3:21:57 AM UTC-6 vinvi...@gmail.com wrote:
>
>>
>> Hello,
>>
>> Can anyone tell me what's wrong with this code?
>>
>>
>> *\define tagging() $(currentTiddler)$*
>>
>>
>>
>> *<$list filter=[search:title[,]] variable=tagname>*
>>
>> *<$checkbox tiddler=<> tag=<> > <>*
>>
>> **
>>
>>
>> It should show a list of all tiddlers that have a comma in the Title. 
>> With a checkbox you can tag these tiddlers to the currentTiddler. It works 
>> fine, only a mess is created at the very bottom of the list.
>>
>> For example *(Ii) Specific-01, *(and a few more tiddlers) is displayed a 
>> second time (at the bottom) in this way: *$:/state/toc/Style/ 
>> <https://groups.google.com/#%24%3A%2Fstate%2Ftoc%2FStyle%2F>(G)/(Ii)/(Ii) 
>> Specific-01,-(CPc) Specific-01,–642288075*
>>
>> What is wrong?
>>
>>
>>  
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b1b39986-9bb5-4834-8c91-00ce221386e7n%40googlegroups.com.


[tw5] What's wrong with this list ..?

2021-03-07 Thread vinvi...@gmail.com

Hello,

Can anyone tell me what's wrong with this code?


*\define tagging() $(currentTiddler)$*



*<$list filter=[search:title[,]] variable=tagname>*

*<$checkbox tiddler=<> tag=<> > <>*

**


It should show a list of all tiddlers that have a comma in the Title. With 
a checkbox you can tag these tiddlers to the currentTiddler. It works fine, 
only a mess is created at the very bottom of the list.

For example *(Ii) Specific-01, *(and a few more tiddlers) is displayed a 
second time (at the bottom) in this way: *$:/state/toc/Style/ 
(G)/(Ii)/(Ii) 
Specific-01,-(CPc) Specific-01,–642288075*

What is wrong?


 

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2dd9394e-d19a-434c-aa55-91faf5488033n%40googlegroups.com.


[tw5] Add a dropdown menu

2021-02-22 Thread vinvi...@gmail.com

This code lists the title of tiddlers tagged with (P) with a checkbox. 
After selection, the relevant tiddler will be tagged to the current tiddler.


\define tagging() $(currentTiddler)$

<$list filter=[tag[(P)]] variable=tagname>

   <$checkbox tiddler=<> tag=<> > <>,



What I want is to select with a dropdown menu what tiddlers titles are 
listed with a chexbox.


<$select tiddler='$:/generated-list-demo-state'>
<$list filter='[tag[(G)]]'>
<$view field='title'/>


<$tiddler tiddler={{$:/generated-list-demo-state}}>
<$transclude mode='block'/>


Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/994f7872-7bf9-40a6-b86e-f6f2087ffbc6n%40googlegroups.com.


[tw5] Fields in a specific order

2021-02-21 Thread vinvi...@gmail.com
Hello,

Does anyone know if there is a way to display custom fields in a particular 
order?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b48faf0f-03f9-439b-9044-60b7d753440fn%40googlegroups.com.


[tw5] Re: List [all[current]tags[]sort[title]has[m]] as a tag with the value from field "m" behind it

2021-02-15 Thread vinvi...@gmail.com
This works. Oh, my.. Seems like I'm starting to understand?  :)) lol

<$list filter="[all[current]tags[]sort[title]has[m]]">
{{||$:/core/ui/TagTemplate}} {{!!m}}


Op maandag 15 februari 2021 om 10:04:06 UTC+1 schreef vinvi...@gmail.com:

> Hello,
>
> Out of all tiddlers where currentTiddler is tagged to: Only list the 
> tiddler that have a field called "m".
>
> Show the title of that tiddler as a tagpill, and behind it the value of 
> field "m".
>
> The code below works but does not show the content of field "m" behind the 
> tagpill.
>
> <$list filter="[all[current]tags[]sort[title]has[m]]" 
> template="$:/core/ui/TagTemplate" storyview="pop">
> {{!!m}}
> 
>
> How do I do that?
>
> Thank you,
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/72a08fa8-3278-40f4-b695-b6eace628a6cn%40googlegroups.com.


[tw5] List [all[current]tags[]sort[title]has[m]] as a tag with the value from field "m" behind it

2021-02-15 Thread vinvi...@gmail.com
Hello,

Out of all tiddlers where currentTiddler is tagged to: Only list the 
tiddler that have a field called "m".

Show the title of that tiddler as a tagpill, and behind it the value of 
field "m".

The code below works but does not show the content of field "m" behind the 
tagpill.

<$list filter="[all[current]tags[]sort[title]has[m]]" 
template="$:/core/ui/TagTemplate" storyview="pop">
{{!!m}}


How do I do that?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ac57ee2b-8eec-48fa-8732-ef2ee053a2efn%40googlegroups.com.


[tw5] Re: List the textfield of tiddlers where the current tiddler is tagged to and have tag: A

2021-02-12 Thread vinvi...@gmail.com
I have found it,

<$list filter="[all[current]tags[]]+[tag[A]]">


<$transclude/>





Op donderdag 11 februari 2021 om 18:41:06 UTC+1 schreef vinvi...@gmail.com:

> Hello,
>
> The following code: Lists the textfield of tiddlers tagged to 
> currentTiddler (Retaining CSS)
>
>
> <$list filter="[all[current]tagging[]]">
> 
> 
> <$transclude/>
> 
> 
>
>
> What I want is to list the textfield of tiddlers where the current tiddler 
> is tagged to and have tag: A  (Keeping the CSS style sheet as in the above 
> code.)
>
> Thank you,
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ab282f5f-bc59-428d-9bfe-d9a4d9183f48n%40googlegroups.com.


[tw5] List the textfield of tiddlers where the current tiddler is tagged to and have tag: A

2021-02-11 Thread vinvi...@gmail.com
Hello,

The following code: Lists the textfield of tiddlers tagged to 
currentTiddler (Retaining CSS)


<$list filter="[all[current]tagging[]]">


<$transclude/>




What I want is to list the textfield of tiddlers where the current tiddler 
is tagged to and have tag: A  (Keeping the CSS style sheet as in the above 
code.)

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/011464dd-0a38-4b37-9243-70b9072cebe7n%40googlegroups.com.


[tw5] Re: Keep the CSS style even while Transcluding

2021-02-06 Thread vinvi...@gmail.com
Hello,


How can I retain the correct colors in this "list-search filter"? :

*<>*

In textfield of: "template/list-search/textfield" : {{!!text}}



Op donderdag 4 februari 2021 om 18:25:13 UTC+1 schreef vinvi...@gmail.com:

> I found it .. Thank you, thank you, thank you. Functions perfectly..
>
> Op donderdag 4 februari 2021 om 18:17:12 UTC+1 schreef vinvi...@gmail.com:
>
>> Thanks Mark S.,
>>
>> I've Tiddler1 with tag (B), and the following code in the text-field is 
>> displayed correctly:
>>
>> <$macrocall $name="details" sum="Header title here" src="""
>> Text here.
>> """ class="alert-"/>
>>
>> If I List / Transclude Tiddler1 into Tiddler2 with te following code:
>>
>> <$list filter="[tag[(B)]]">
>> 
>> 
>> <$transclude mode="block"/>
>> 
>> 
>>
>> Then it will not display correctly, only with the correct colors.
>> (I have added mode="block" which makes it look a little better, but it's 
>> still not right.) 
>>
>> Maybe the other solution you propose will do? 
>> But it is not completely clear to me. Can you give me some explanation 
>> please?
>>
>> Thank you,
>> Op woensdag 3 februari 2021 om 19:46:10 UTC+1 schreef Mark S.:
>>
>>> The transclusion transcludes the contents of the text field -- it 
>>> doesn't know anything about the associated tags.
>>>
>>> To make it behave as if it were in its original context you would have 
>>> to wrap with same classes it would have seen in it's original settings:
>>>
>>> <$list filter="[tag[(B)]]" >
>>> 
>>> 
>>> <$transclude />
>>> 
>>> 
>>>
>>> Alternatively, the contents of the original tiddler could wrap 
>>> themselves in classes in the text. 
>>>
>>> 
>>> Hello. I am <>
>>> 
>>>
>>> This would require you to write an additional CSS selector rule that 
>>> would recognize .alert- [attribute selector] as well as the current 
>>> [attribute selector] .alert .
>>>
>>> [data-tags*="(B)"] .alert- , .alert- [data-tags*="(B)"] { ... }
>>>
>>>
>>>
>>>
>>> On Wednesday, February 3, 2021 at 8:43:50 AM UTC-8 vinvi...@gmail.com 
>>> wrote:
>>>
>>>> Hello,
>>>>
>>>> I've modified my styleSheet $:/plugins/kookma/shiraz/styles/ bs/alerts
>>>>
>>>> *Part of the CSS style:*
>>>>
>>>> /*Was taken from bootstrap 4.1.3*/
>>>> .alert {
>>>>   position: relative;
>>>>   padding: 0.75rem 1.25rem;
>>>>   margin-bottom: 1rem;
>>>>   border: 1px solid transparent;
>>>>   border-radius: 0.25rem;
>>>> }
>>>>
>>>> /*BLUE (PRIMARY)*/
>>>> [data-tags*="(A)"] .alert- {
>>>>   color: #004085;
>>>>   background-color: #cce5ff;
>>>>   border-color: #b8daff;
>>>> }
>>>>
>>>> .alert- hr {
>>>>   border-top-color: #9fcdff;
>>>> }
>>>>
>>>> /*GREEN (SUCCESS)*/
>>>> [data-tags*="(B)"] .alert- {
>>>>   color: #155724;
>>>>   background-color: #d4edda;
>>>>   border-color: #c3e6cb;
>>>> }
>>>>
>>>>
>>>>
>>>> Works fine, but if I {{Transclude}} or {{||Transclude}} tiddler (B) in 
>>>> Tiddler (A) it automatically reads the tag from Tiddler (A). Which causes 
>>>> it to be misrepresented. (Wrong colors) How can I ensure that the correct 
>>>> colors are retained?
>>>>
>>>> Thank you,
>>>>
>>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/94bdb601-1655-4122-941f-ee1201272c6en%40googlegroups.com.


[tw5] Re: Keep the CSS style even while Transcluding

2021-02-04 Thread vinvi...@gmail.com
I found it .. Thank you, thank you, thank you. Functions perfectly..

Op donderdag 4 februari 2021 om 18:17:12 UTC+1 schreef vinvi...@gmail.com:

> Thanks Mark S.,
>
> I've Tiddler1 with tag (B), and the following code in the text-field is 
> displayed correctly:
>
> <$macrocall $name="details" sum="Header title here" src="""
> Text here.
> """ class="alert-"/>
>
> If I List / Transclude Tiddler1 into Tiddler2 with te following code:
>
> <$list filter="[tag[(B)]]">
> 
> 
> <$transclude mode="block"/>
> 
> 
>
> Then it will not display correctly, only with the correct colors.
> (I have added mode="block" which makes it look a little better, but it's 
> still not right.) 
>
> Maybe the other solution you propose will do? 
> But it is not completely clear to me. Can you give me some explanation 
> please?
>
> Thank you,
> Op woensdag 3 februari 2021 om 19:46:10 UTC+1 schreef Mark S.:
>
>> The transclusion transcludes the contents of the text field -- it doesn't 
>> know anything about the associated tags.
>>
>> To make it behave as if it were in its original context you would have to 
>> wrap with same classes it would have seen in it's original settings:
>>
>> <$list filter="[tag[(B)]]" >
>> 
>> 
>> <$transclude />
>> 
>> 
>>
>> Alternatively, the contents of the original tiddler could wrap themselves 
>> in classes in the text. 
>>
>> 
>> Hello. I am <>
>> 
>>
>> This would require you to write an additional CSS selector rule that 
>> would recognize .alert- [attribute selector] as well as the current 
>> [attribute selector] .alert .
>>
>> [data-tags*="(B)"] .alert- , .alert- [data-tags*="(B)"] { ... }
>>
>>
>>
>>
>> On Wednesday, February 3, 2021 at 8:43:50 AM UTC-8 vinvi...@gmail.com 
>> wrote:
>>
>>> Hello,
>>>
>>> I've modified my styleSheet $:/plugins/kookma/shiraz/styles/ bs/alerts
>>>
>>> *Part of the CSS style:*
>>>
>>> /*Was taken from bootstrap 4.1.3*/
>>> .alert {
>>>   position: relative;
>>>   padding: 0.75rem 1.25rem;
>>>   margin-bottom: 1rem;
>>>   border: 1px solid transparent;
>>>   border-radius: 0.25rem;
>>> }
>>>
>>> /*BLUE (PRIMARY)*/
>>> [data-tags*="(A)"] .alert- {
>>>   color: #004085;
>>>   background-color: #cce5ff;
>>>   border-color: #b8daff;
>>> }
>>>
>>> .alert- hr {
>>>   border-top-color: #9fcdff;
>>> }
>>>
>>> /*GREEN (SUCCESS)*/
>>> [data-tags*="(B)"] .alert- {
>>>   color: #155724;
>>>   background-color: #d4edda;
>>>   border-color: #c3e6cb;
>>> }
>>>
>>>
>>>
>>> Works fine, but if I {{Transclude}} or {{||Transclude}} tiddler (B) in 
>>> Tiddler (A) it automatically reads the tag from Tiddler (A). Which causes 
>>> it to be misrepresented. (Wrong colors) How can I ensure that the correct 
>>> colors are retained?
>>>
>>> Thank you,
>>>
>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a156cc45-fbf7-41e1-bb16-6049786ecaebn%40googlegroups.com.


[tw5] Re: Keep the CSS style even while Transcluding

2021-02-04 Thread vinvi...@gmail.com
Thanks Mark S.,

I've Tiddler1 with tag (B), and the following code in the text-field is 
displayed correctly:

<$macrocall $name="details" sum="Header title here" src="""
Text here.
""" class="alert-"/>

If I List / Transclude Tiddler1 into Tiddler2 with te following code:

<$list filter="[tag[(B)]]">


<$transclude mode="block"/>



Then it will not display correctly, only with the correct colors.
(I have added mode="block" which makes it look a little better, but it's 
still not right.) 

Maybe the other solution you propose will do? 
But it is not completely clear to me. Can you give me some explanation 
please?

Thank you,
Op woensdag 3 februari 2021 om 19:46:10 UTC+1 schreef Mark S.:

> The transclusion transcludes the contents of the text field -- it doesn't 
> know anything about the associated tags.
>
> To make it behave as if it were in its original context you would have to 
> wrap with same classes it would have seen in it's original settings:
>
> <$list filter="[tag[(B)]]" >
> 
> 
> <$transclude />
> 
> 
>
> Alternatively, the contents of the original tiddler could wrap themselves 
> in classes in the text. 
>
> 
> Hello. I am <>
> 
>
> This would require you to write an additional CSS selector rule that would 
> recognize .alert- [attribute selector] as well as the current [attribute 
> selector] .alert .
>
> [data-tags*="(B)"] .alert- , .alert- [data-tags*="(B)"] { ... }
>
>
>
>
> On Wednesday, February 3, 2021 at 8:43:50 AM UTC-8 vinvi...@gmail.com 
> wrote:
>
>> Hello,
>>
>> I've modified my styleSheet $:/plugins/kookma/shiraz/styles/ bs/alerts
>>
>> *Part of the CSS style:*
>>
>> /*Was taken from bootstrap 4.1.3*/
>> .alert {
>>   position: relative;
>>   padding: 0.75rem 1.25rem;
>>   margin-bottom: 1rem;
>>   border: 1px solid transparent;
>>   border-radius: 0.25rem;
>> }
>>
>> /*BLUE (PRIMARY)*/
>> [data-tags*="(A)"] .alert- {
>>   color: #004085;
>>   background-color: #cce5ff;
>>   border-color: #b8daff;
>> }
>>
>> .alert- hr {
>>   border-top-color: #9fcdff;
>> }
>>
>> /*GREEN (SUCCESS)*/
>> [data-tags*="(B)"] .alert- {
>>   color: #155724;
>>   background-color: #d4edda;
>>   border-color: #c3e6cb;
>> }
>>
>>
>>
>> Works fine, but if I {{Transclude}} or {{||Transclude}} tiddler (B) in 
>> Tiddler (A) it automatically reads the tag from Tiddler (A). Which causes 
>> it to be misrepresented. (Wrong colors) How can I ensure that the correct 
>> colors are retained?
>>
>> Thank you,
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fc7f2f1f-9fea-46b5-9caf-e58be54bf95cn%40googlegroups.com.


[tw5] Keep the CSS style even while Transcluding

2021-02-03 Thread vinvi...@gmail.com
Hello,

I've modified my styleSheet $:/plugins/kookma/shiraz/styles/ bs/alerts

*Part of the CSS style:*

/*Was taken from bootstrap 4.1.3*/
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/*BLUE (PRIMARY)*/
[data-tags*="(A)"] .alert- {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert- hr {
  border-top-color: #9fcdff;
}

/*GREEN (SUCCESS)*/
[data-tags*="(B)"] .alert- {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}



Works fine, but if I {{Transclude}} or {{||Transclude}} tiddler (B) in 
Tiddler (A) it automatically reads the tag from Tiddler (A). Which causes 
it to be misrepresented. (Wrong colors) How can I ensure that the correct 
colors are retained?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9cd675e7-af46-4bdb-8da3-41e171169c86n%40googlegroups.com.


[tw5] Show title as tagpil in header of slider.

2021-01-21 Thread vinvi...@gmail.com
Hello,

In this code: How can I make the title appear as a tag pill  
{{||$:/core/ui/TagTemplate}}, and the contents of field "title-description" 
behind it?



\define tmpSearchTid() $:/temp/demo/qa/search-slider
\define faqFilter() [tag[G]search:title {$(tmpSearchTid)$}] 
\define revealStateTid() 
$:/state/shiraz/slider-macro/$(currentTiddler)$/$(currentTiddler)$

\define expand-all()
<$list filter=<> >
<$action-setfield $tiddler=<> text="open"/>

\end

\define close-all() <$action-deletetiddler 
$filter="[prefix[$:/state/shiraz/slider-macro/]]"/>


<$keyboard key="escape" actions='<$action-setfield 
$tiddler=<> $field="text" $value=""/>'>
<$edit-text tiddler=<> filed="text" tag=input default="" 
placeholder="Search" class="alert alert-dark w-100"/>

<$button actions=<> class="btn btn-secondary btn-sm">Expand 
all
<$button actions=<>  class="btn btn-secondary btn-sm">Close 
all
<$list filter=<> >
<$macrocall $name=slider label=<> src={{!!text}}
labelClass="alert alert-dark" srcClass="alert alert-dark"/> 




Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ade6b90b-58bb-46bc-a0ca-0437f774dfe6n%40googlegroups.com.


[tw5] Transclude image if Tiddler has tag...

2021-01-19 Thread vinvi...@gmail.com
Hello,

I want to transclude an image in the text field if the tiddler has tag:

Tag "Cold" show image "Blue.png"
Tag "Cool" show image "Aqua.png" "
Tag "Neutral" show image "White.png"
Tag "Warm" show image "Orange.png"
Tag "Hot" show image "Red.png"

How do I do that?
Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b30150c5-f7f5-4cd7-ae79-8ab657c33901n%40googlegroups.com.


[tw5] Re: Adjust color if tiddler has tag

2021-01-11 Thread vinvi...@gmail.com
Sorry, forgot to include the stylesheets,




Tag: $:/tags/Stylesheet
Title: $:/plugins/.mr/shiraz/stylesheet/details

/*details html5 macro*/
details > summary {
  padding: 2px 6px;
  background-color: #efebe9;
  font-weight:500;
  outline:none;
}
details > div {
  background-color: #fffef9;
  padding: 2px 6px;
  margin: 0;
}





Tag: $:/tags/Stylesheet
Title: $:/plugins/kookma/shiraz/styles/details-slider 

/*details html5 macro*/
details > summary {
  padding: 2px 6px;
  font-weight:500;
  outline:none;
}
details > div {
  padding: 2px 6px;
  margin: 0;
}

button .kk-sh-slider svg{
width: 0.8em;
height: 0.8em;
vertical-align: middle;}

 

Op maandag 11 januari 2021 om 11:47:20 UTC+1 schreef vinvi...@gmail.com:

> How do I do this?
>
> 1 Can I refer to a CSS style sheet in the code below?
>
> <$macrocall $name="details" 
> sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} 
> {{||$:/core/ui/TagTemplate}}" src="""
> Text here
> """ status="closed" style="background-color: #; color:aqua;" 
> class="alert-success"/>
>
> 2 Or do I have to make changes to the plugin code?
>
> tag: $:/tags/Macro
> title: $:/plugins/kookma/shiraz/macros/details   --->
>
> \define details(sum:"summary", src:"source", status:"", class:"", style:"")
> 
>  $sum$
>   
>$src$
>   
> 
> \end 
>
> 3 And how do I do that in the "right" way?
>
>
>
>
>
>
>
>
> Op zondag 10 januari 2021 om 17:13:46 UTC+1 schreef PMario:
>
>> Hi, 
>> Try this: 
>> https://tiddlywiki.com/#How%20to%20apply%20custom%20styles:%5B%5BHow%20to%20apply%20custom%20styles%5D%5D%20%5B%5BCustom%20styles%20by%20data-tags%5D%5D
>> -m
>>
>> On Sunday, January 10, 2021 at 4:22:11 PM UTC+1 vinvi...@gmail.com wrote:
>>
>>> I have found this:
>>> How to apply custom styles by tag 
>>> <https://tiddlywiki.com/static/How%2520to%2520apply%2520custom%2520styles%2520by%2520tag.html>
>>>  :  
>>>
>>> https://tiddlywiki.com/static/How%2520to%2520apply%2520custom%2520styles.html
>>>  
>>>
>>> but it says it is deprecated... 
>>>
>>> Op zondag 10 januari 2021 om 11:33:22 UTC+1 schreef vinvi...@gmail.com:
>>>
>>>> Hello,
>>>>
>>>> (Shiraz plugin)
>>>>
>>>> <$macrocall $name="details" 
>>>> sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} 
>>>> {{||$:/core/ui/TagTemplate}}" src="""
>>>> Text here
>>>> """ status="closed" style="background-color: #; color:aqua;" 
>>>> class="alert-success"/>
>>>>
>>>>
>>>> I want to have the color ( color:aqua; ) automatically adjusted if the 
>>>> tiddler has one of the following tags; (Or if a field contains one of the 
>>>> following values.)
>>>>
>>>> Cold = blue
>>>> Cool = aqua
>>>> Neutral = white
>>>> Warm = orange
>>>> Hot = red
>>>>
>>>> Thank you,
>>>>
>>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/90efa0d4-8c55-43a9-9b07-92fb069260a5n%40googlegroups.com.


[tw5] Re: Adjust color if tiddler has tag

2021-01-11 Thread vinvi...@gmail.com
How do I do this?

1 Can I refer to a CSS style sheet in the code below?

<$macrocall $name="details" 
sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} 
{{||$:/core/ui/TagTemplate}}" src="""
Text here
""" status="closed" style="background-color: #; color:aqua;" 
class="alert-success"/>

2 Or do I have to make changes to the plugin code?

tag: $:/tags/Macro
title: $:/plugins/kookma/shiraz/macros/details   --->

\define details(sum:"summary", src:"source", status:"", class:"", style:"")

 $sum$
  
   $src$
  

\end 

3 And how do I do that in the "right" way?








Op zondag 10 januari 2021 om 17:13:46 UTC+1 schreef PMario:

> Hi, 
> Try this: 
> https://tiddlywiki.com/#How%20to%20apply%20custom%20styles:%5B%5BHow%20to%20apply%20custom%20styles%5D%5D%20%5B%5BCustom%20styles%20by%20data-tags%5D%5D
> -m
>
> On Sunday, January 10, 2021 at 4:22:11 PM UTC+1 vinvi...@gmail.com wrote:
>
>> I have found this:
>> How to apply custom styles by tag 
>> <https://tiddlywiki.com/static/How%2520to%2520apply%2520custom%2520styles%2520by%2520tag.html>
>>  :  
>>
>> https://tiddlywiki.com/static/How%2520to%2520apply%2520custom%2520styles.html
>>  
>>
>> but it says it is deprecated... 
>>
>> Op zondag 10 januari 2021 om 11:33:22 UTC+1 schreef vinvi...@gmail.com:
>>
>>> Hello,
>>>
>>> (Shiraz plugin)
>>>
>>> <$macrocall $name="details" 
>>> sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} 
>>> {{||$:/core/ui/TagTemplate}}" src="""
>>> Text here
>>> """ status="closed" style="background-color: #; color:aqua;" 
>>> class="alert-success"/>
>>>
>>>
>>> I want to have the color ( color:aqua; ) automatically adjusted if the 
>>> tiddler has one of the following tags; (Or if a field contains one of the 
>>> following values.)
>>>
>>> Cold = blue
>>> Cool = aqua
>>> Neutral = white
>>> Warm = orange
>>> Hot = red
>>>
>>> Thank you,
>>>
>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cfe8baae-adec-4a11-9d4d-48b73513a484n%40googlegroups.com.


[tw5] Re: Adjust color if tiddler has tag

2021-01-10 Thread vinvi...@gmail.com
I have found this:
How to apply custom styles by tag 
<https://tiddlywiki.com/static/How%2520to%2520apply%2520custom%2520styles%2520by%2520tag.html>
 :  
https://tiddlywiki.com/static/How%2520to%2520apply%2520custom%2520styles.html 

but it says it is deprecated... 

Op zondag 10 januari 2021 om 11:33:22 UTC+1 schreef vinvi...@gmail.com:

> Hello,
>
> (Shiraz plugin)
>
> <$macrocall $name="details" 
> sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} 
> {{||$:/core/ui/TagTemplate}}" src="""
> Text here
> """ status="closed" style="background-color: #; color:aqua;" 
> class="alert-success"/>
>
>
> I want to have the color ( color:aqua; ) automatically adjusted if the 
> tiddler has one of the following tags; (Or if a field contains one of the 
> following values.)
>
> Cold = blue
> Cool = aqua
> Neutral = white
> Warm = orange
> Hot = red
>
> Thank you,
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fc290905-36a4-4a16-aa56-e500f716dc6an%40googlegroups.com.


[tw5] Adjust color if tiddler has tag

2021-01-10 Thread vinvi...@gmail.com
Hello,

(Shiraz plugin)

<$macrocall $name="details" 
sum="{{||$:/plugins/kookma/favorites/viewtoolbar}} 
{{||$:/core/ui/TagTemplate}}" src="""
Text here
""" status="closed" style="background-color: #; color:aqua;" 
class="alert-success"/>


I want to have the color ( color:aqua; ) automatically adjusted if the 
tiddler has one of the following tags; (Or if a field contains one of the 
following values.)

Cold = blue
Cool = aqua
Neutral = white
Warm = orange
Hot = red

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/41d8d5a1-b269-48f0-90c1-02a3fc4ad09dn%40googlegroups.com.


[tw5] Re: Plain text without formatting after: <$list filter=....

2021-01-09 Thread vinvi...@gmail.com
TW Tones..
 
ALL CAPS is like shouting..;
Okay, I'll keep that in mind

.. try this..;
Thank you,
Op vrijdag 8 januari 2021 om 01:15:42 UTC+1 schreef TW Tones:

> Vin..
>
> Just so you know it is convention to use lowercase for variable names, 
> perhaps this is another case where ALL CAPS is like shouting. I suggest 
> using it sparingly.
> I tend to use variable names that obey the ruled for fieldnames see 
> <https://tiddlywiki.com/#TiddlerFields> because then they are always 
> interchangeable. You can store a variables value in a matching field, or 
> set a variable to a fields value.
>
>  The filter you use is realy only setting the current tiddler; so try this
>
> <$tiddler tiddler=<> >
> <$transclude/> 
> 
>
> or
> <$transclude tiddler=<>/>
>
> On Friday, 8 January 2021 at 08:51:22 UTC+11 vinvi...@gmail.com wrote:
>
>> That's what I mean. :) 
>> Thank you, it works fine..
>>
>> Op donderdag 7 januari 2021 om 19:28:43 UTC+1 schreef Soren Bjornstad:
>>
>>> I tried copying and pasting this, and it does not show the result in *plain 
>>> text *(bold, for instance, displays fine). I think what you're 
>>> observing is that the transclusion is displaying in *inline mode*, 
>>> which means that things like section headers and paragraph breaks won't 
>>> show up.
>>>
>>> To get it into *block mode* instead, put a blank line before and after 
>>> {{!!text}}. Another option is to use the $transclude widget instead of 
>>> {{!!text}}, which lets you explicitly specify whether you want it in block 
>>> or inline mode:
>>>
>>> <$list filter=<>>
>>>   <$transclude mode="block"/>
>>> 
>>>
>>> (See also https://tiddlywiki.com/#HTML%20in%20WikiText.)
>>>
>>> On Thursday, January 7, 2021 at 3:51:04 AM UTC-6 vinvi...@gmail.com 
>>> wrote:
>>>
>>>> Hello,
>>>>
>>>> \define LIST-DESCRIPTION() [[$(currentTiddler)$-description]]
>>>>
>>>> <$list filter=<>>
>>>> {{!!text}}
>>>> 
>>>>
>>>>
>>>> The above code works fine but shows the result in plain text. How can I 
>>>> prevent this?
>>>>
>>>> Thank you,
>>>>
>>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2c676fef-d02c-4c94-acaa-9dd0bc345985n%40googlegroups.com.


[tw5] Re: Plain text without formatting after: <$list filter=....

2021-01-07 Thread vinvi...@gmail.com
That's what I mean. :) 
Thank you, it works fine..

Op donderdag 7 januari 2021 om 19:28:43 UTC+1 schreef Soren Bjornstad:

> I tried copying and pasting this, and it does not show the result in *plain 
> text *(bold, for instance, displays fine). I think what you're observing 
> is that the transclusion is displaying in *inline mode*, which means that 
> things like section headers and paragraph breaks won't show up.
>
> To get it into *block mode* instead, put a blank line before and after 
> {{!!text}}. Another option is to use the $transclude widget instead of 
> {{!!text}}, which lets you explicitly specify whether you want it in block 
> or inline mode:
>
> <$list filter=<>>
>   <$transclude mode="block"/>
> 
>
> (See also https://tiddlywiki.com/#HTML%20in%20WikiText.)
>
> On Thursday, January 7, 2021 at 3:51:04 AM UTC-6 vinvi...@gmail.com wrote:
>
>> Hello,
>>
>> \define LIST-DESCRIPTION() [[$(currentTiddler)$-description]]
>>
>> <$list filter=<>>
>> {{!!text}}
>> 
>>
>>
>> The above code works fine but shows the result in plain text. How can I 
>> prevent this?
>>
>> Thank you,
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e202ca07-f093-43c3-a7a2-165d318a67d4n%40googlegroups.com.


[tw5] Prevent a button from overwriting tiddlers.

2021-01-07 Thread vinvi...@gmail.com
Hello,

This button will overwrite an existing tiddler. How do I make sure that if 
the tiddler already exists it is numbered? If "Tiddler1" already exists, it 
becomes "Tiddler2".


\define BUTTON-NAME() Enter >
\define BUTTON-COLOR+SIZE() btn btn-link btn-sm
\define BUTTON-TEXT-COLOR() color:
\define TIDDLER-TITLE() $(currentTiddler)$ SPECIFIC
\define TIDDLER-TEMPLATE() {{||$(currentTiddler)$-SPECIFIC-TEMPLATE}}


<$button type="button" class=<>>
<$set name=mytags filter="[subfilter{!!tiddler-tag-button}]">

<$action-sendmessage $message="tm-new-tiddler"
title=<>
text=<>
load-description-button="{{||Description-button}}"
tags=<>/>

>><>

<>


Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bdeebeea-0ecd-47be-8fd3-1ed7a5b4e5e8n%40googlegroups.com.


[tw5] Plain text without formatting after: <$list filter=....

2021-01-07 Thread vinvi...@gmail.com
Hello,

\define LIST-DESCRIPTION() [[$(currentTiddler)$-description]]

<$list filter=<>>
{{!!text}}



The above code works fine but shows the result in plain text. How can I 
prevent this?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/824ef849-4d50-4e9a-8ddd-6c13f7a5be95n%40googlegroups.com.


Re: [tw5] Button that read tags from a field.

2021-01-02 Thread vinvi...@gmail.com
Thank you!

Op zaterdag 2 januari 2021 om 19:30:13 UTC+1 schreef Xavier:

> Hi,
>
> Sorry I overlooked the need to interpret the currentTiddler variable. In 
> this situation, you need to read your field as a filter rather than a list. 
> Two main ways of doing that:
>
>1. Either you put your button code in a macro so that the 
> $(currentTiddler)$ 
>construct is actually replaced by the title of the current tiddler. 
>Then you can use the subfilter operator, as in :
>\define mybutton()
>
>
>1. 
><$button type="button" class=<>>
>
>
>1. <$set name=mytags filter="[subfilter{!!tiddler-tag}]">
>
>
>1. 
><$action-sendmessage $message="tm-new-tiddler"
>title=<>
>text=<>
>tags=<>/>
>
>
>
>1. >><>
>
>
>
>1. \end
><>
>2. Or you can just replace [[$(currentTiddler)$]] with 
>[] in your field content.  Like so :
><$set name=mytags filter="[subfilter{!!tiddler-tag}]">
>
>
>1. 
><$action-sendmessage $message="tm-new-tiddler"
>title=<>
>text=<>
>tags=<>/>
>
>
>
>1. 
>
> Cheers,
> -- Xavier
>
>
> On Sat, Jan 2, 2021 at 6:01 PM vinvi...@gmail.com  
> wrote:
>
>> Thank you Xavier,
>>
>> Can you tell me how to paste this piece of code into the existing code? 
>> For some reason I am not getting it working.
>>
>> Op zaterdag 2 januari 2021 om 17:19:56 UTC+1 schreef Xavier:
>>
>>> Hi,
>>>
>>> Since the tags field is of the list type, you need to retrieve its 
>>> content either directly from another list-typed field (that is list or 
>>> tags), or indirectly by transforming the string content into a list. 
>>>
>>> In your example, you may achieve this by first setting a variable to a 
>>> filter that converts the content of your tiddler-tag field into a list :
>>>
>>> <$set name=mytags filter="[enlist{!!tiddler-tag}]">
>>> <$action-sendmessage $message="tm-new-tiddler" 
>>> title=<>
>>> text=<>
>>> tags=<>/>
>>> 
>>>
>>> Note the use of the enlist operator to transform a string into a list. 
>>> 5.1.23 just introduced the enlist-input operator, which is handy in 
>>> situations where your initial string comes from a previous filter 
>>> expression.
>>>
>>> Cheers,
>>> -- Xavier
>>>
>>>
>>> On Sat, Jan 2, 2021 at 3:52 PM vinvi...@gmail.com  
>>> wrote:
>>>
>>>> Hello,
>>>>
>>>> I have a button to create a new tiddler.
>>>> With\define TAGS() [[$(currentTiddler)$]] [[Tag 2]] [[Tag 3]],  I 
>>>> can tag the new tiddler.
>>>>
>>>>
>>>> \define BUTTON-NAME() Enter >
>>>> \define BUTTON-COLOR+SIZE() btn btn-link btn-sm
>>>> \define BUTTON-TEXT-COLOR() color:
>>>> \define TIDDLER-TITLE() $(currentTiddler)$ ENTER-SPECIFIC-HERE
>>>> \define TIDDLER-TAGS() [[$(currentTiddler)$]]
>>>> \define TIDDLER-TEMPLATE() {{||$(currentTiddler)$-SPECIFIC-TEMPLATE}}
>>>>
>>>> <$button type="button" class=<>>
>>>> <$action-sendmessage $message="tm-new-tiddler" 
>>>> title=<>
>>>> text=<>
>>>> tags=<>
>>>> />
>>>> >><>
>>>> 
>>>>
>>>>
>>>> What I want is for the button to read the tags from a field;
>>>> tags={{!!tiddler-tag}}
>>>>
>>>> My problem is that [[$(currentTiddler)$]] in a field doesn't work.
>>>>
>>>> How do I make this work?
>>>> Thank you,
>>>>
>>>> -- 
>>>> 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+...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/tiddlywiki/b46bc104-7460-4e0a-9463-b7f90ecc6b85n%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/tiddlywiki/b46bc104-7460-4e0a-9463-b7f90ecc6b85n%40googlegroups.com?utm_medium=email_source=footer>
>>>> .
>>>>
>>> -- 
>> 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+...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/d93bb1c3-1fa8-4cd1-8915-3dbe390c730dn%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/tiddlywiki/d93bb1c3-1fa8-4cd1-8915-3dbe390c730dn%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5d13650f-83d6-4d93-8aee-1b39a65ba620n%40googlegroups.com.


Re: [tw5] Button that read tags from a field.

2021-01-02 Thread vinvi...@gmail.com
Thank you Xavier,

Can you tell me how to paste this piece of code into the existing code? 
For some reason I am not getting it working.

Op zaterdag 2 januari 2021 om 17:19:56 UTC+1 schreef Xavier:

> Hi,
>
> Since the tags field is of the list type, you need to retrieve its 
> content either directly from another list-typed field (that is list or 
> tags), or indirectly by transforming the string content into a list. 
>
> In your example, you may achieve this by first setting a variable to a 
> filter that converts the content of your tiddler-tag field into a list :
>
> <$set name=mytags filter="[enlist{!!tiddler-tag}]">
> <$action-sendmessage $message="tm-new-tiddler" 
> title=<>
> text=<>
> tags=<>/>
> 
>
> Note the use of the enlist operator to transform a string into a list. 
> 5.1.23 just introduced the enlist-input operator, which is handy in 
> situations where your initial string comes from a previous filter 
> expression.
>
> Cheers,
> -- Xavier
>
>
> On Sat, Jan 2, 2021 at 3:52 PM vinvi...@gmail.com  
> wrote:
>
>> Hello,
>>
>> I have a button to create a new tiddler.
>> With\define TAGS() [[$(currentTiddler)$]] [[Tag 2]] [[Tag 3]],  I can 
>> tag the new tiddler.
>>
>>
>> \define BUTTON-NAME() Enter >
>> \define BUTTON-COLOR+SIZE() btn btn-link btn-sm
>> \define BUTTON-TEXT-COLOR() color:
>> \define TIDDLER-TITLE() $(currentTiddler)$ ENTER-SPECIFIC-HERE
>> \define TIDDLER-TAGS() [[$(currentTiddler)$]]
>> \define TIDDLER-TEMPLATE() {{||$(currentTiddler)$-SPECIFIC-TEMPLATE}}
>>
>> <$button type="button" class=<>>
>> <$action-sendmessage $message="tm-new-tiddler" 
>> title=<>
>> text=<>
>> tags=<>
>> />
>> >><>
>> 
>>
>>
>> What I want is for the button to read the tags from a field;
>> tags={{!!tiddler-tag}}
>>
>> My problem is that [[$(currentTiddler)$]] in a field doesn't work.
>>
>> How do I make this work?
>> Thank you,
>>
>> -- 
>> 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+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/b46bc104-7460-4e0a-9463-b7f90ecc6b85n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/tiddlywiki/b46bc104-7460-4e0a-9463-b7f90ecc6b85n%40googlegroups.com?utm_medium=email_source=footer>
>> .
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d93bb1c3-1fa8-4cd1-8915-3dbe390c730dn%40googlegroups.com.


[tw5] Re: Why are the tiddlers not proper sorted?

2021-01-02 Thread vinvi...@gmail.com
Did you save and reload?

Op zaterdag 2 januari 2021 om 15:37:12 UTC+1 schreef 
schlechter...@gmail.com:

> Hello,
>
> I did 'Adding a table of contents to the sidebar' (
> https://tiddlywiki.com/static/Adding%2520a%2520table%2520of%2520contents%2520to%2520the%2520sidebar.html
> )
>
> I created Spotlight 1, Spotlight 2 and Spotlight 10
>
> Result:
> Why is the list not sorted?
>
> Thanks for feedback
> Stefan
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e7775c86-0ed7-4ee5-bd07-c91c869a7b67n%40googlegroups.com.


[tw5] Button that read tags from a field.

2021-01-02 Thread vinvi...@gmail.com
Hello,

I have a button to create a new tiddler.
With\define TAGS() [[$(currentTiddler)$]] [[Tag 2]] [[Tag 3]],  I can 
tag the new tiddler.


\define BUTTON-NAME() Enter >
\define BUTTON-COLOR+SIZE() btn btn-link btn-sm
\define BUTTON-TEXT-COLOR() color:
\define TIDDLER-TITLE() $(currentTiddler)$ ENTER-SPECIFIC-HERE
\define TIDDLER-TAGS() [[$(currentTiddler)$]]
\define TIDDLER-TEMPLATE() {{||$(currentTiddler)$-SPECIFIC-TEMPLATE}}

<$button type="button" class=<>>
<$action-sendmessage $message="tm-new-tiddler" 
title=<>
text=<>
tags=<>
/>
>><>



What I want is for the button to read the tags from a field;
tags={{!!tiddler-tag}}

My problem is that [[$(currentTiddler)$]] in a field doesn't work.

How do I make this work?
Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b46bc104-7460-4e0a-9463-b7f90ecc6b85n%40googlegroups.com.


[tw5] Tagging with drop down menu

2020-12-19 Thread vinvi...@gmail.com
Hello,

I have this button to create a new tiddler:


\define Tags() [[$(currentTiddler)$]] [[(EXTRA-TAG)]]

<$button>
<$action-sendmessage $message="tm-new-tiddler" 
title="TIDDLER-NAME" 
text="TEXT-FIELD-HERE" 
tags=<> 
field="FIELD-TEXT" 
field2="FIELD-TEXT"
/>
''BUTTON-NAME''


This allows me to create a new tiddler that is tagged with the 
CurrentTiddler (and other) and listted with:

<$list filter="[tagtag[(EXTRA-TAG)]]">
{{!!text}}


Works fine. The only problem is:
1 I cannot tag existing tiddlers with it.
2 It can also happen that I create different tiddlers with a different 
spelled title but the same meaning. (Which should be the same tiddler. Eg: 
Plants or Flora.)

What I am thinking of is a Drop down menu that shows all tiddlers with 
specific tag / tags. And that after selection, the tag of the 
CurrentTiddler and any other predefined tags are automatically added to.

I have this code:

Select: <$select tiddler='$:/generated-list-demo-state'>
<$list filter='[tag[(EXTRA-TAG)]]'>
<$view field='title'/>


<$tiddler tiddler={{$:/generated-list-demo-state}}>
<$transclude mode='block'/>



The above code gives a drop down menu showing all tiddlers with tag 
(EXTRA-TAG). After selection, the text field of the selected tiddler will 
be shown below it.

How can I adjust this code so that tiddlers after selection are 
automatically tagged with CurrentTiddler and an extra tag?

Probably someone knows a better solution to my problem?

Thanks,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6dd9a1e4-5469-48fb-ad62-20ebdde12cd7n%40googlegroups.com.


[tw5] Re: WidgetMessage: tm-new-tiddler with auto tagging

2020-12-19 Thread vinvi...@gmail.com
Thanks, this is what it ended up being;


\define Tags() [[$(currentTiddler)$]] [[(EXTRA-TAG)]]

<$button>
<$action-sendmessage $message="tm-new-tiddler" 

title="TIDDLER-NAME" 
text="TEXT-FIELD-HERE" 
tags=<> 
field="FIELD-TEXT" 
field2="FIELD-TEXT"

/>
''BUTTON-NAME''


Op donderdag 17 december 2020 om 03:43:19 UTC+1 schreef TW Tones:

> FYI:
>
> In a button you do not need to use messages or params in the button but 
> can use actions= <> to drive the actions. you can also 
> place actionwidgets inside the button, even wrapping them in lists or 
> conditionally. Use the actionSend message widget etc... Then rather than 
> paramObject param etc.. you can supply the fieldname="value" 
> fieldname1={{transcluded}} fielname2=<> to the action widget.
>
> The term hash map is almost obsolete in tiddlywiki at a wikitext level, so 
> either it should be described or deprecated in the documentation.
>
> Tones
>  
> On Thursday, 17 December 2020 at 04:34:01 UTC+11 Mark S. wrote:
>
>> Looking at the code for the Button widget, I don't see any place where 
>> paramObject  gets populated. I do see it for the send-message widget. So 
>> I'm guessing that you can't use "paramObject" with the button widget 
>> without hacking the button widget code.
>>
>> On Wednesday, December 16, 2020 at 7:52:34 AM UTC-8 mwik...@gmail.com 
>> wrote:
>>
>>> On Wednesday, December 16, 2020 at 11:00:16 AM UTC-4 Mark S. wrote:
>>>
 On Tuesday, December 15, 2020 at 8:10:42 PM UTC-8  wrote:

> I often struggle with filter syntax so thanks for the counter-example 
> as I find those easiest to learn from.
>
> In playing around with it, there is an interesting subtlety with 
> Mark's solution that makes it slightly different/better.
>
>
 I admit my approach is a kludge. It was just submitted as an 
 alternative. It has the advantage of being slightly easier to read. Yours 
 is probably the proper way to do such things.
  

>>>
>>> Looking at the OPs format ... while these other options (sticking things 
>>> in an actions macro in the widget or in the actions= or transcluding a 
>>> filter into the button field= options) are available, could someone 
>>> illuminate the formatting of the "hashmap" that needs to be provided with 
>>> paramObject= if you want to use <$button message="tm-new-tiddler" 
>>> param="Template1Button" paramObject= ...> and try to feed the tags in that 
>>> way using Mark's method? Every message seems to have a paramObject option 
>>> but none of the manual pages have an example of its use.
>>>
>>> Thanks,
>>> /Mike
>>>
>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/81c87413-443e-4127-9ac7-a9edafd28a5an%40googlegroups.com.


[tw5] WidgetMessage: tm-new-tiddler with auto tagging

2020-12-15 Thread vinvi...@gmail.com
Hello,

I am using WidgetMessage: tm-new-tiddler.
https://tiddlywiki.com/static/WidgetMessage%253A%2520tm-new-tiddler.html

I have a Template tiddler called "Template1" with fields, tags etc.
And a tiddler called "Template1Button" with this code:

<$button message="tm-new-tiddler" param="Template1Button">New 
tiddler

I transclude tiddler {{||Template1Button}} in different tiddlers. It all 
works fine so far.

How can I make sure that the newly created tiddler is also automatically 
tagged to the tiddler where the button is transcluded?

So when I click on the transcluded button in Tiddler1 the new tiddler 
should be automatically tagged to Tiddler1. And with Tiddler2 to Tiddler 2 
etc.

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8ac197e0-aed4-422a-9f91-88ddc030466dn%40googlegroups.com.


[tw5] Count tags under the condition of..

2020-12-13 Thread vinvi...@gmail.com
Hello,

This code counts all tags from the current tiddler, but does not count the 
tag "C".

<$count filter="[all[current]tags[]sort[title]] -[[C]]"/> 

But how can I count the number of tags from the current tiddler referring 
to all tiddlers with tag "CP"?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f38945ea-c36c-4151-abf5-8b926cc47362n%40googlegroups.com.


[tw5] Macro

2020-12-04 Thread vinvi...@gmail.com
Hello,

I have a question about creating a macro.
https://tiddlywiki.com/static/Macros%2520in%2520WikiText.html

I have to make a lot of buttons in my wiki and I have this code for a 
button for creating a new tiddler; (It works fine.)

`<$button><$action-sendmessage 
$message="tm-new-tiddler" title=<> 
tags="TAG-NAME-HERE" tags show="TAG-NAME-HERE" text="TEXT-HERE" 
comment="FIELD-COMMENT-HERE"/>''BUTTON-NAME-HERE''`

How do I convert the above code into a macro?

This is my attempt, but I can't get it done:

`\define NEW-TIDDLER(now format:"XXX" 
tags:"XXX" tags show:"XXX" text:"XXX" comment:"XXX")
<$button><$action-sendmessage 
$message="tm-new-tiddler" title=<<$now format:$>> $tags$ $tags show$ $text$ 
$comment$/>''BUTTON-NAME-HERE''
\end

<>`

Thank you,



-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/03c2f1c4-8ee5-4c21-85b5-6c25d70f38bbn%40googlegroups.com.


[tw5] Search tiddler title with tag (I) and show text field.

2020-11-26 Thread vinvi...@gmail.com
Hello,

With the following code I transclude the text field of all tiddlers tagged 
with "(I)":

<$list filter="[tag[(I)]]">{{!!text}}

The following code gives me a searchable list of all tiddlers tagged with 
"(I)": (Shiraz plugin)

<>

I want the text field to be visible of all tiddlers tagged with (I) and not 
the title.
Search in title field / show text field.

How do I do that?


-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3d0534a6-be1f-44ec-9aeb-e8a3ae3e4bffn%40googlegroups.com.


[tw5] Re: Edit shadow tiddler

2020-11-15 Thread vinvi...@gmail.com

Alternate tag fields is what I wrote, GenTags is what I meant..

 With the code below, the tags will appear and work properly. But then I 
miss the input / edit interface.

<$list filter='[tags:ii-tags-special[]]' template="$:/core/ui/TagTemplate" 
storyview="pop"/>

Maybe it is easier to transclude code {{||TiddlerWithCode}}?

Thanks,

Op donderdag 12 november 2020 om 19:04:32 UTC+1 schreef inmy...@gmail.com:

> I haven't worked on the plugin for a while, but the new version is 
> GenTags. I need to put up a demo site for it.
>
> But to answer your question, making the tag pills in the edit interface 
> act like the tags in the normal display interface takes editing more than 
> the code you have written here. I am not sure how much work it would be but 
> it isn't a simple drop-in thing.
>
> For the other question, if you edit a shadow tiddler and save it the 
> changed tiddler overrides the existing one, so yes you can just change the 
> code and save it.
>
> On Wednesday, November 11, 2020 at 3:27:35 PM UTC+1 vinvi...@gmail.com 
> wrote:
>
>> Hello,
>> I am using the plugin "Alternate tag fields".
>>
>> When I paste this code in the text field:
>>
>> <>
>>
>> I get to see tags read from the field: "ii-tags-special" of that tiddler. 
>> The tags appear as a tag pill but without a drop down menu. (Wikified?) How 
>> can I make the drop down menu appear when I click on it?
>>
>> Code from the shadow tiddler 
>>
>> $:/plugins/inmysocks/GenericTagFields/template/EditTemplate/OtherTagFieldsEditTemplate
>>
>>
>>
>> <$list
>> 
>> filter='[prefix[$:/settings/AlternateTagFields/]!hide_in_edit_mode[true]]'
>> variable=SettingsTiddler
>> >
>> <$set
>> name=FieldName
>> filter='[get[fieldname]]'
>> >
>> <$set
>> name=Wikify
>> filter='[get[wikify]]'
>> >
>> <$set
>> name=Label
>> filter='[get[label]]'
>> >
>> <$macrocall
>> $name=EditTagLikeList
>> fieldName=<>
>> label=<>
>> wikify=<>
>> />
>> 
>> 
>> 
>> 
>>
>>
>>
>>
>> How do I adjust the above code? And can I change the code and just save 
>> it?
>>
>> Thank you,
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/276f3ba3-8e01-4b52-bb26-63e4fdd2d851n%40googlegroups.com.


[tw5] Edit shadow tiddler

2020-11-11 Thread vinvi...@gmail.com
Hello,
I am using the plugin "Alternate tag fields".

When I paste this code in the text field:

<>

I get to see tags read from the field: "ii-tags-special" of that tiddler. 
The tags appear as a tag pill but without a drop down menu. (Wikified?) How 
can I make the drop down menu appear when I click on it?

Code from the shadow tiddler 
$:/plugins/inmysocks/GenericTagFields/template/EditTemplate/OtherTagFieldsEditTemplate



<$list

filter='[prefix[$:/settings/AlternateTagFields/]!hide_in_edit_mode[true]]'
variable=SettingsTiddler
>
<$set
name=FieldName
filter='[get[fieldname]]'
>
<$set
name=Wikify
filter='[get[wikify]]'
>
<$set
name=Label
filter='[get[label]]'
>
<$macrocall
$name=EditTagLikeList
fieldName=<>
label=<>
wikify=<>
/>








How do I adjust the above code? And can I change the code and just save it?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3b15a4fd-6f07-49e3-8990-ce90a4ad93a2n%40googlegroups.com.


[tw5] Re: Differentiation

2020-10-26 Thread vinvi...@gmail.com
This is very close to what I'm looking for. 
I'm going to study it. 
Thank you. :)

Op zondag 25 oktober 2020 om 02:29:56 UTC+2 schreef TW Tones:

> Ok,
> Here is a bit of a code dump that you can work through to answer your 
> questions and learn along the way.
> \define custom-tags() (i) (li) (ld) (lp) (lpc) (lt) (D) (B) (C) (E) (F) (H
> ) (N) (P) (S) (T)
> \define show-tags() (i) (li) (D) (ld) (lp)
>
> ;List all custom-tags
> <$list filter=<> >
>
> ;List all custom-tags with tagpill and count of in use
> <$list filter=<> > {{{ [all[current]tagging[]count[]] }}} 
> {{||$:/core/ui/TagTemplate}}, 
>
> ;Tag current tiddler with any of the "custom-tags"
> <$list filter=<> variable=tagname>
><$checkbox tag=<> > <>, 
> 
>
>
> ;Tag any of the "custom-tags" with another tag <>
> :ie select a custom tag to show
> <$list filter=<> variable=tagname>
><$checkbox tiddler=<> tag="show-tags" > < >>, 
> 
>
>
> ;List custom-tags selected with [[show-tags]]
> <$list filter="[[show-tags]tagging[]]">
>
>
> 
>
>
> ;List items tagged with [[(i)]] also `[all[]tag[(i)]]`
> <$list filter="[[(i)]tagging[]]">
>
>
> 
>
>
> ;List all custom-tags one per line as link to create them as a tiddler, eg 
> to give them a description
> <$list filter=<> >
>
>
> 
>
> Regards
> Tones
>
>
> On Sunday, 25 October 2020 00:16:44 UTC+11, vinvi...@gmail.com wrote:
>>
>> Hi TW Tones,
>>
>> I've read that page regarding the checkbox before. I don't understand 
>> anything about it. Something I have no feeling for is coding. Sorry.
>>
>> *I believe someone else has built a solution for an indicator disease or 
>> syndrome in the recent past? *That was me. I'm still working on it.
>> I did my best to make it as clear as possible by visualizing it. I won't 
>> get any further than that. I am a complete dummy when it comes to coding.
>>
>> I try not to get rid of it easily, I've been working with it for 10 
>> weeks. But I can't get it done. So if there is someone who can help me with 
>> this ..
>>
>> As for your advice on the GenTags Plugin earlier: That was very useful 
>> advice. I haven't needed it so far by handily designing the hierarchy. 
>> I'm definitely going to need it in the future.
>>
>> Thanks,
>>
>> Op vrijdag 23 oktober 2020 om 23:10:21 UTC+2 schreef TW Tones:
>>
>>> First thing to note is you are misusing the checkbox, read and use the 
>>> syntax 
>>> here <https://tiddlywiki.com/#CheckboxWidget>
>>>
>>> I believe someone else was building a indicator disease or syndrome 
>>> solution in the recent past.
>>>
>>> Perhaps you would be better designing and sharing the logic with any 
>>> form of pseudocode then letting the community show you the code to do it? 
>>>
>>> I would give you a solution now except it would be some work to reverse 
>>> engineer your attempt, to establish your intent then show you how.
>>>
>>> If you make it easy for me, I will make it easy for you.
>>>
>>> Tones
>>>
>>>
>>>
>>> On Saturday, 24 October 2020 01:19:14 UTC+11, vinvi...@gmail.com wrote:
>>>>
>>>> Hello,
>>>>
>>>> I've used code to be able to visualize it somewhat, but I can't get it 
>>>> to work.
>>>>
>>>> I hope I can clarify it with an image:
>>>>
>>>> [image: Differentiation.png]
>>>> Thank you,
>>>>
>>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/08b48f44-ee73-46d0-b142-8bb5fc4d98f9n%40googlegroups.com.


[tw5] Re: Differentiation

2020-10-24 Thread vinvi...@gmail.com
Hi TW Tones,

I've read that page regarding the checkbox before. I don't understand 
anything about it. Something I have no feeling for is coding. Sorry.

*I believe someone else has built a solution for an indicator disease or 
syndrome in the recent past? *That was me. I'm still working on it.
I did my best to make it as clear as possible by visualizing it. I won't 
get any further than that. I am a complete dummy when it comes to coding.

I try not to get rid of it easily, I've been working with it for 10 weeks. 
But I can't get it done. So if there is someone who can help me with this ..

As for your advice on the GenTags Plugin earlier: That was very useful 
advice. I haven't needed it so far by handily designing the hierarchy. 
I'm definitely going to need it in the future.

Thanks,

Op vrijdag 23 oktober 2020 om 23:10:21 UTC+2 schreef TW Tones:

> First thing to note is you are misusing the checkbox, read and use the syntax 
> here <https://tiddlywiki.com/#CheckboxWidget>
>
> I believe someone else was building a indicator disease or syndrome 
> solution in the recent past.
>
> Perhaps you would be better designing and sharing the logic with any form 
> of pseudocode then letting the community show you the code to do it? 
>
> I would give you a solution now except it would be some work to reverse 
> engineer your attempt, to establish your intent then show you how.
>
> If you make it easy for me, I will make it easy for you.
>
> Tones
>
>
>
> On Saturday, 24 October 2020 01:19:14 UTC+11, vinvi...@gmail.com wrote:
>>
>> Hello,
>>
>> I've used code to be able to visualize it somewhat, but I can't get it to 
>> work.
>>
>> I hope I can clarify it with an image:
>>
>> [image: Differentiation.png]
>> Thank you,
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c26b5b0e-5fd4-4011-a752-073bb46b085cn%40googlegroups.com.


[tw5] Differentiation

2020-10-23 Thread vinvi...@gmail.com
Hello,

I've used code to be able to visualize it somewhat, but I can't get it to 
work.

I hope I can clarify it with an image:

[image: Differentiation.png]
Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1282b630-8824-471b-ac38-3455011e845an%40googlegroups.com.


[tw5] Re: Transclude tiddler title or text field as a "combination".

2020-10-18 Thread vinvi...@gmail.com
Thanks everyone.

*Charlie Veniot*, you hit the nail on the head. Thank you!
It still needs some tweaking, but this is exactly what I mean. (I don't 
mind the table.) 
Thanks again.

Op zaterdag 17 oktober 2020 om 03:50:25 UTC+2 schreef Charlie Veniot:

> I couldn't stop thinking about how I'd go about that, so I decided to 
> scratch the itch and treat this like a "Brain Age" game and happily played.
>
> Well, minus fancy table.  I'm thinking markdown table is not a good idea 
> for this, and (although easy) I wasn't in the mood to play with HTML tables.
>
> For the $hit$ and the giggle$:  Colour Thing 
> <https://intertwingularityslicendice.neocities.org/ColorThing.html>
>
> Have fun and tear it to pieces.  Keep in mind: I'm not yet quite a 
> TiddlyWiki yellow belt, and I also tend to see things in pretty funky ways, 
> so take it all in with a healthy dose of salt !
>
> Cheers !
>
> On Thursday, October 15, 2020 at 6:39:31 AM UTC-3 vinvi...@gmail.com 
> wrote:
>
>> Hi,
>>
>> First of all, thank you,
>>
>> You are both right. I don't mean to lean back and let you do all the work.
>> As for the code: I have no idea. I don't know code and I don"t know what 
>> is a convenient approach is here.
>> Maybe you guys know a better approach? Unfortunately, I can't change the 
>> order of the tags.
>>
>> I will try to get my "problem" clear with colors: (Each color is a 
>> tiddler)
>>
>> There are three basic colors: Red, yellow and blue.
>> And there are three mixing colors: Orange, green and violet.
>> So there are three combinations: Red + yellow = orange / yellow + blue = 
>> green / blue + red = violet.
>>
>> * Orange (tags: COLOR + MIXED COLOR)
>> ** Red (tags: COLOR + BASIC COLOR + ORANGE + VIOLET)
>> ** Yellow (tags: COLOR + BASIC COLOR + ORANGE + GREEN)
>> * Green
>> ** Yellow
>> ** Blue
>> * Violet
>> ** Blue (tags: COLOR + BASIC COLOR + GREEN + VIOLET)
>> ** Red
>>
>> PURPOSE: Show in the "Tiddler Red" all possible color combinations with 
>> the color red in the following way: (See image).
>>
>> [image: red.png]
>> Thank you,
>>
>> Op woensdag 14 oktober 2020 om 22:38:41 UTC+2 schreef Felicia Crow:
>>
>>> Hi,
>>>
>>> Sorry to not be able to answer with a concrete solution, but I am not 
>>> sure I understand the problem correctly, which can totally be my fault for 
>>> missing the obvious.
>>>
>>> Would the output in tiddler 1 for instance be literally a + b or 
>>> whatever is in the text fields of tiddlers a and b combined? So if say 
>>> tiddler a had the text of 'lorem ipsum' and tiddler b contained 'dolor sit 
>>> amet' would you expect to see 'lorem ipsum dolor sit amet' in tiddler 1?
>>>
>>> Maybe you could also give some background on what you are trying to 
>>> achieve with this since this could make your thinking easier to follow, 
>>> maybe lead to other/easier solutions for the same problem.
>>>
>>> Kind Regards,
>>> Felicia
>>>
>>>
>>>
>>> On Tuesday, 13 October 2020 17:45:04 UTC+2, vinvi...@gmail.com wrote:
>>>>
>>>> Hello,
>>>>
>>>> Tiddlers a + b are tagged with tiddler 1.
>>>> Tiddlers a + c + d are tagged with tiddler 2.
>>>> Tiddlers a + b + c + d are tagged with (Ip).
>>>>
>>>> In tiddler (Ip), I want to show ALL letter combinations: (transclude 
>>>> tiddler titles as a link)
>>>> POSSIBLE COMBINATIONS:
>>>> a + b → tiddler 1
>>>> a + c + d → tiddler 2
>>>>
>>>> In tiddler a, I want to show all letter combinations with tiddler a: 
>>>> (transclude tiddler titles as a link)
>>>> POSSIBLE COMBINATIONS:
>>>> a + b → tiddler 1
>>>> a + c + d → tiddler 2
>>>>
>>>> In tiddler b, I want to show all letter combinations with tiddler b: 
>>>> (transclude tiddler titles as a link)
>>>> POSSIBLE COMBINATIONS:
>>>> b + a → tiddler 2
>>>>
>>>> In tiddler 1, I want to show the letter combination: (transclude 
>>>> textfield of tiddlers)
>>>> a + b
>>>>
>>>> In tiddler 2, I want to show the letter combination: (transclude 
>>>> textfield of tiddlers)
>>>> a + c + d
>>>>
>>>> Many thanks,
>>>>
>>>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/20293479-b3bb-46ee-be2c-bcac82e085c5n%40googlegroups.com.


[tw5] Re: Transclude tiddler title or text field as a "combination".

2020-10-15 Thread vinvi...@gmail.com
Hi,

First of all, thank you,

You are both right. I don't mean to lean back and let you do all the work.
As for the code: I have no idea. I don't know code and I don"t know what is 
a convenient approach is here.
Maybe you guys know a better approach? Unfortunately, I can't change the 
order of the tags.

I will try to get my "problem" clear with colors: (Each color is a tiddler)

There are three basic colors: Red, yellow and blue.
And there are three mixing colors: Orange, green and violet.
So there are three combinations: Red + yellow = orange / yellow + blue = 
green / blue + red = violet.

* Orange (tags: COLOR + MIXED COLOR)
** Red (tags: COLOR + BASIC COLOR + ORANGE + VIOLET)
** Yellow (tags: COLOR + BASIC COLOR + ORANGE + GREEN)
* Green
** Yellow
** Blue
* Violet
** Blue (tags: COLOR + BASIC COLOR + GREEN + VIOLET)
** Red

PURPOSE: Show in the "Tiddler Red" all possible color combinations with the 
color red in the following way: (See image).

[image: red.png]
Thank you,

Op woensdag 14 oktober 2020 om 22:38:41 UTC+2 schreef Felicia Crow:

> Hi,
>
> Sorry to not be able to answer with a concrete solution, but I am not sure 
> I understand the problem correctly, which can totally be my fault for 
> missing the obvious.
>
> Would the output in tiddler 1 for instance be literally a + b or whatever 
> is in the text fields of tiddlers a and b combined? So if say tiddler a had 
> the text of 'lorem ipsum' and tiddler b contained 'dolor sit amet' would 
> you expect to see 'lorem ipsum dolor sit amet' in tiddler 1?
>
> Maybe you could also give some background on what you are trying to 
> achieve with this since this could make your thinking easier to follow, 
> maybe lead to other/easier solutions for the same problem.
>
> Kind Regards,
> Felicia
>
>
>
> On Tuesday, 13 October 2020 17:45:04 UTC+2, vinvi...@gmail.com wrote:
>>
>> Hello,
>>
>> Tiddlers a + b are tagged with tiddler 1.
>> Tiddlers a + c + d are tagged with tiddler 2.
>> Tiddlers a + b + c + d are tagged with (Ip).
>>
>> In tiddler (Ip), I want to show ALL letter combinations: (transclude 
>> tiddler titles as a link)
>> POSSIBLE COMBINATIONS:
>> a + b → tiddler 1
>> a + c + d → tiddler 2
>>
>> In tiddler a, I want to show all letter combinations with tiddler a: 
>> (transclude tiddler titles as a link)
>> POSSIBLE COMBINATIONS:
>> a + b → tiddler 1
>> a + c + d → tiddler 2
>>
>> In tiddler b, I want to show all letter combinations with tiddler b: 
>> (transclude tiddler titles as a link)
>> POSSIBLE COMBINATIONS:
>> b + a → tiddler 2
>>
>> In tiddler 1, I want to show the letter combination: (transclude 
>> textfield of tiddlers)
>> a + b
>>
>> In tiddler 2, I want to show the letter combination: (transclude 
>> textfield of tiddlers)
>> a + c + d
>>
>> Many thanks,
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/43c2daeb-1364-462e-ba49-eb1cbf65f629n%40googlegroups.com.


[tw5] Transclude tiddler title or text field as a "combination".

2020-10-13 Thread vinvi...@gmail.com
Hello,

Tiddlers a + b are tagged with tiddler 1.
Tiddlers a + c + d are tagged with tiddler 2.
Tiddlers a + b + c + d are tagged with (Ip).

In tiddler (Ip), I want to show ALL letter combinations: (transclude 
tiddler titles as a link)
POSSIBLE COMBINATIONS:
a + b → tiddler 1
a + c + d → tiddler 2

In tiddler a, I want to show all letter combinations with tiddler a: 
(transclude tiddler titles as a link)
POSSIBLE COMBINATIONS:
a + b → tiddler 1
a + c + d → tiddler 2

In tiddler b, I want to show all letter combinations with tiddler b: 
(transclude tiddler titles as a link)
POSSIBLE COMBINATIONS:
b + a → tiddler 2

In tiddler 1, I want to show the letter combination: (transclude textfield 
of tiddlers)
a + b

In tiddler 2, I want to show the letter combination: (transclude textfield 
of tiddlers)
a + c + d

Many thanks,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f5e6be68-d931-49bd-aa03-21e2889df7ecn%40googlegroups.com.


[tw5] Re: Show content of a field in title

2020-10-04 Thread vinvi...@gmail.com
Thank you, 

Op zaterdag 3 oktober 2020 om 13:40:23 UTC+2 schreef Eric Shulman:

> On Saturday, October 3, 2020 at 2:50:18 AM UTC-7, vinvi...@gmail.com 
> wrote:
>>
>> This shows the contents of a field:
>> {{!! fieldname}}
>>
>> How to display the content of a field in the tiddler title?
>> Can I use a code?
>>
>
> The tiddler title is not just for display.  The most important use of a 
> tiddler title as a UNIQUE identifier for the tiddler.
> The title should *never* include anything that could be a computed piece 
> of text (such as a field reference).
>
> However... if you want to *display* something in place of the title that 
> *does* contain a field reference, then you can use the "caption" field to 
> specify the desired output.
> For example, you could have a caption field that contains: "This is 
> {{!!somefield}}", or even "This is <>"
>
> Then, to substitute the "caption" in the tiddler ViewTemplate, you can 
> edit the $:/core/ui/ViewTemplate/title shadow tiddler, and replace this 
> line:
> <$view field="title"/>
> with:
> <$transclude field="caption"><$view field="title"/>
>
> Note that this has the potential to cause confusion since the "fake title" 
> (caption text) that appears in the tiddler display can be completely 
> different from the actual title field of the tiddler.
> And you can even have more than one tiddler that uses the exact same 
> caption text, and thus will *appear* to have the same "fake title", even 
> though the actual tiddler titles are uniquely different from each other.
>
> Of course, it's up to you to use this modified tiddler display carefully 
> so as not to confuse yourself and especially anyone else that may be 
> viewing your TiddlyWiki.
>
> enjoy,
> -e
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2343e7c1-530d-4a86-bcdc-ce077abdca33n%40googlegroups.com.


[tw5] Show content of a field in title

2020-10-03 Thread vinvi...@gmail.com
Hello,

This shows the contents of a field:
{{!! fieldname}}

How to display the content of a field in the tiddler title?
Can I use a code?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d264ebc8-127f-4591-92cf-89a11fe1f6e5n%40googlegroups.com.


[tw5] Transclude tiddlers textfield by slection

2020-09-20 Thread vinvi...@gmail.com
Hello,

Again I want to accost your immeasurable knowledge..

A simple list of terms with a check box. Selecting one or more of these 
check boxes will display the text field of the tiddlers that have a 
particular tag.

Selecting 'Show all recipes' will transclude the text field of all tiddlers 
tagged R, and selecting 'Show all chefs' will transclude the text field of 
all tiddlers tagged C. Selecting both will transclude the text field of all 
tiddlers tagged R and tiddlers tagged C. (And not ONLY tiddlers wit tag R + 
C.)

I hope I was able to make it clear. A clear explanation is half the battle 
.. :))

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ab1fad36-5d86-4359-a9af-5fdb9007f92bn%40googlegroups.com.


[tw5] Re: Show tags of <> in text field

2020-09-20 Thread vinvi...@gmail.com
Thank you,

Op zaterdag 19 september 2020 om 02:01:31 UTC+2 schreef TW Tones:

> Hi,
>
> Brian's answer produces tag pills which is a useful way to do this. 
>
> However you can also address the tags field directly.
>
> {{!!tags}}
>
> {{{ [enlist{!!tags}] }}}
>
> But you can do more, of course, you always can in tiddlywiki
>
> Tones
> On Saturday, 19 September 2020 at 01:57:30 UTC+10 vinvi...@gmail.com 
> wrote:
>
>> Hello,
>>
>> How do I get the tags from the <> to appear in the text 
>> field?
>>
>> How do I get the tags from the <> to appear in the text 
>> field, except for tag1, tag2  and tag3?
>>
>> Thank you,
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8d6b7073-787e-4693-85bb-80e87713c063n%40googlegroups.com.


[tw5] Re: Show tags of <> in text field

2020-09-18 Thread vinvi...@gmail.com
Thank you. 

Op vrijdag 18 september 2020 om 19:46:20 UTC+2 schreef Brian Radspinner:

> You can try putting this list in the tiddler text:
>
> *<$list filter="[all[current]tags[]sort[title]] -[[tag(s)ToExclude]]" 
> template="$:/core/ui/TagTemplate" storyview="pop"/>*
>
> For easier use, save this to a tiddler with an easy title and transclude 
> this tiddler whenever needed.
>
> On Friday, September 18, 2020 at 8:57:30 AM UTC-7 vinvi...@gmail.com 
> wrote:
>
>> Hello,
>>
>> How do I get the tags from the <> to appear in the text 
>> field?
>>
>> How do I get the tags from the <> to appear in the text 
>> field, except for tag1, tag2  and tag3?
>>
>> Thank you,
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8f65f7b8-36dc-489a-9e23-f4fce4605b52n%40googlegroups.com.


[tw5] Show tags of <> in text field

2020-09-18 Thread vinvi...@gmail.com
Hello,

How do I get the tags from the <> to appear in the text 
field?

How do I get the tags from the <> to appear in the text 
field, except for tag1, tag2  and tag3?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7abafc6d-459f-4d51-89c9-1d2ec6175a81n%40googlegroups.com.


[tw5] Re: Code in code

2020-09-06 Thread vinvi...@gmail.com
Eric, 

I have solved the problem. Have upgraded to a new version of the plugin. 
It's working.

Many thanks for your help


Op zaterdag 5 september 2020 om 22:40:18 UTC+2 schreef Eric Shulman:

> On Saturday, September 5, 2020 at 12:58:44 PM UTC-7, vinvi...@gmail.com 
> wrote:
>>
>> I see what you mean .. Somehow that happened with cut and paste. I don't 
>> have it in my wiki that way.
>> Here's what I've got so far: (The page title will now appear as a link, 
>> the rest still doesn't work.) 
>>
>> <$macrocall $name="details" sum="<$link/>" src="""<> filter:""[tagtag[NAME-OF-TAG]]">>""" class="alert-primary"/>
>>
>
> I see TWO double-quotes immediately after *filter:* ... there should be 
> only one.
>
> -e
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/238943d0-c15c-462a-819d-8af1d6fed230n%40googlegroups.com.


[tw5] Re: Code in code

2020-09-06 Thread vinvi...@gmail.com
Hi Eric Shulman, I see..   Deleted the double quote. Still not working yet. 
Been working on it for hours now, but I can't figure it out. :((


[image: 2020-09-06 (4).png][image: 2020-09-06 (3).png]. 

Op zaterdag 5 september 2020 om 22:40:18 UTC+2 schreef Eric Shulman:

> On Saturday, September 5, 2020 at 12:58:44 PM UTC-7, vinvi...@gmail.com 
> wrote:
>>
>> I see what you mean .. Somehow that happened with cut and paste. I don't 
>> have it in my wiki that way.
>> Here's what I've got so far: (The page title will now appear as a link, 
>> the rest still doesn't work.) 
>>
>> <$macrocall $name="details" sum="<$link/>" src="""<> filter:""[tagtag[NAME-OF-TAG]]">>""" class="alert-primary"/>
>>
>
> I see TWO double-quotes immediately after *filter:* ... there should be 
> only one.
>
> -e
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5a4083d3-f3f1-402f-9938-1af2b9017670n%40googlegroups.com.


[tw5] Re: Code in code

2020-09-05 Thread vinvi...@gmail.com
Thanks,

I see what you mean .. Somehow that happened with cut and paste. I don't 
have it in my wiki that way.
Here's what I've got so far: (The page title will now appear as a link, the 
rest still doesn't work.) 

<$macrocall $name="details" sum="<$link/>" src=""">""" class="alert-primary"/>



Op zaterdag 5 september 2020 om 17:33:05 UTC+2 schreef Eric Shulman:

> On Saturday, September 5, 2020 at 7:42:26 AM UTC-7, Eric Shulman wrote:
>>
>> <$link to=<>><$view field="title"/>
>>
>
> Addendum:
>
> Note that the above syntax can be reduced to just
> <$link/>
> because the to=... parameter defaults to the <> value, and 
> the display content defaults to the title being linked
>
> -e
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d4826379-f905-4c5a-af8c-dbcbd41508c0n%40googlegroups.com.


[tw5] Re: Code in code

2020-09-05 Thread vinvi...@gmail.com
Thank you for your response Eric Shulman.

But unfortunately it doesn't work. Nothing happens. The bar appears but 
there is nothing in it. There must be a flaw in it, but I can't find it. I 
wonder where in the code I can put my text. I have tried in different ways 
to also be able to put my text somewhere but it does not work.

Also the page title appears, but not as a link.
Something like this should happen:
<$ link to = < >> <$ view field = "title" /> 

Can you find out why it doesn't work?

Op vrijdag 4 september 2020 om 22:26:59 UTC+2 schreef Eric Shulman:

> On Friday, September 4, 2020 at 12:58:55 PM UTC-7, vinvi...@gmail.com 
> wrote:
>>
>> I have a piece of code that uses details macro from the Shiraz plugin.
>> This is the piece of code:
>> << details sum: "NameOfCurrentTiddlerHere" "BodyTextHere" class: 
>> "alert-primary" >>
>> It all works fine, but how do I make the current tiddler title appear 
>> *automatically 
>> *with: "NameOfCurrentTiddlerHere" as a *link*?
>>
>> In the place "Body text here" I want a list of links. For this I have the 
>> following code:
>> << list-links filter: "[tag ] + [tag [NameOfTheTag]]" >>
>>
>> The code is correct but if I paste it between the other code it is not 
>> working. How do I do this?
>>
>
> As you have discovered, you can't use macro syntax as parameter values 
> *inside another macro*.
>
> To get around this, you should use the <$macrocall> widget with *named* 
> parameters, like this:
> <$macrocall $name="details" sum=<> src="""< filter:"[tag] + [tag[NameOfTheTag]]">>""" 
> class="alert-primary"/>
> Note that the src parameter value is surrounded by tripled quotes.  This 
> is needed to allow you to use the regular quote character within the 
> parameter value.
>
> Alternatively, if you define a macro to specify the parameter value, you 
> could write it like this:
> \define detailsSrc() <] + 
> [tag[NameOfTheTag]]">>
>
> <$macrocall $name="details" sum=<> src=<> 
> class="alert-primary" />
>
> enjoy,
> -e
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/27fbe342-99ed-4b76-aa4c-3dc665b812d6n%40googlegroups.com.


[tw5] Code in code

2020-09-04 Thread vinvi...@gmail.com
Hello,

I have a piece of code that uses details macro from the Shiraz plugin.
This is the piece of code:

<< details sum: "NameOfCurrentTiddlerHere" "BodyTextHere" class: 
"alert-primary" >>

It all works fine, but how do I make the current tiddler title appear 
*automatically 
*with: "NameOfCurrentTiddlerHere" as a *link*?



In the place "Body text here" I want a list of links. For this I have the 
following code:

<< list-links filter: "[tag ] + [tag [NameOfTheTag]]" >>

The code is correct but if I paste it between the other code it is not 
working. How do I do this?

Thank you,

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/302fedf2-f83d-47a9-aa58-e87d368123acn%40googlegroups.com.