[tw5] Re: I'll be starting my own TiddlyWiki documentation project sometime in the new year

2023-01-10 Thread Charlie Veniot
I will be excluding things from my documentation that I consider flawed.

For example: the transclude widget.

Say I have "Main" tiddler with the following text:

```
<$transclude tiddler="Source Tiddler"/>

{{Source Tiddler}}

{{ || Source Tiddler}}
```

"Source Tiddler" has the text:

```
{{!!title}}
```

The transclude widget does not display the content of Source Tiddler.  The 
transclude widget actually displays "Main" tiddler using "Source Tiddler" 
as a template.

i.e.

```
<$transclude tiddler="Source Tiddler"/>
```
is the same as
```
{{ || Source Tiddler}}
```

So I will banish that from my documentation and, eventually, banish that 
from all my TiddlyWiki instances.
On Tuesday, January 10, 2023 at 6:50:31 PM UTC-4 Charlie Veniot wrote:

> First little bit: 
> https://tiddlywiki-programming.neocities.org/Charlie_TwDocumentation#WikiText
>
> On Monday, December 19, 2022 at 8:51:40 PM UTC-4 Charlie Veniot wrote:
>
>> Definitely not trying to create something like Grok.  It is great, we 
>> don't need anything else trying to be good like it is.
>>
>> Nah, I'm looking for something that is more of documentation to follow 
>> while doing exercises to apply what is being learned.
>>
>> I'll be using TW 5.2.3 as my baseline.  I'm not interested in 5.2.4 or 
>> any of the other new stuff coming down the pipes.
>>
>> In fact, I'll be cutting out of my documentation any TiddlyWiki features 
>> that I find unhelpful.  I'm no fan of multiple ways of doing things.  And 
>> I'll be using lingo that I find easier to understand/relate.
>>
>> If you are interested, even if just for the giggles, get a hold of me.
>>
>> The start of what I have in mind: 
>> https://docs.google.com/drawings/d/1OkkZf43qaF0Zqgpe6anJx89Idx0FIhZjXs_aQ0mKsfk/edit?usp=sharing
>>
>>
>>

-- 
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/536806af-e003-4c96-b984-fc4009d2d6can%40googlegroups.com.


[tw5] Re: I'll be starting my own TiddlyWiki documentation project sometime in the new year

2023-01-10 Thread Charlie Veniot
First little 
bit: 
https://tiddlywiki-programming.neocities.org/Charlie_TwDocumentation#WikiText

On Monday, December 19, 2022 at 8:51:40 PM UTC-4 Charlie Veniot wrote:

> Definitely not trying to create something like Grok.  It is great, we 
> don't need anything else trying to be good like it is.
>
> Nah, I'm looking for something that is more of documentation to follow 
> while doing exercises to apply what is being learned.
>
> I'll be using TW 5.2.3 as my baseline.  I'm not interested in 5.2.4 or any 
> of the other new stuff coming down the pipes.
>
> In fact, I'll be cutting out of my documentation any TiddlyWiki features 
> that I find unhelpful.  I'm no fan of multiple ways of doing things.  And 
> I'll be using lingo that I find easier to understand/relate.
>
> If you are interested, even if just for the giggles, get a hold of me.
>
> The start of what I have in mind: 
> https://docs.google.com/drawings/d/1OkkZf43qaF0Zqgpe6anJx89Idx0FIhZjXs_aQ0mKsfk/edit?usp=sharing
>
>
>

-- 
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/1eea3a3a-e250-4e53-8222-157622d1c2ccn%40googlegroups.com.


[tw5] Re: How to permanently exclude tiddler with a certain field from standard search ?

2023-01-10 Thread Lawine P
Thank you, it's working !
I finally understand that field can be used to define a function too haha. 
I tried to attribute something to first-search-filter but didn't understand 
how it's worked.
Thank to your simple and easy explanation, I finally made it.

Have a nice day 
Le mardi 10 janvier 2023 à 14:03:59 UTC+1, springer a écrit :

> Try this. (It may not be the most elegant, in terms of coding, but it's an 
> easy and safe tweak to do.)
>
> Using Advanced Search, find the system tiddler with this 
> title: $:/core/ui/DefaultSearchResultList
>
> Make a copy (clone) of it, changing the title at the end to something 
> you'll recognize. (That way, you're not directly over-writing the default 
> version.)
>
> In the cloned copy, don't touch the main text body at all. Just change 
> three fields (ignoring back-tick marks, if they show up for you):
>
> `first-search-filter` edit to 
> `[!is[system]!has[parent]search:titlesort[title]limit[250]]`
> `second-search-filter` edit to 
> `[!is[system]!has[parent]searchsort[title]limit[250]]`
> `caption` edit to `top-level` (or whatever you like, to clarify the 
> doesn't-have-parent concept)
>
> What these edits do is just to add the string `!has[parent]` within the 
> search filters, to exclude tiddlers with content in the parent field.
>
> One last step, with that system tiddler in view mode, is to click on the 
> $:/tags/SearchResults tag-pill to get the dropdown of search-result 
> templates, and rearrange the order of the search result types, so that the 
> new custom search you prefer is listed at top.
>
> Come back if any of that does not seem straightforward!
>
> -Springer
> On Sunday, January 8, 2023 at 4:22:05 PM UTC-5 cassandr...@gmail.com 
> wrote:
>
>>
>> Sorry I should've have say that I have little to no background in 
>> informatic or coding. I already searched on my own on the official 
>> tiddlywiki (and saw the link listed here) and searched online if someone 
>> has a problem similar to mine.
>> I kind of understand what is explained in the official wiki but not 
>> enough to know where to put the condition.
>> My actual capabilities are limited to finding a problem similar to mine 
>> and just tweak it enough to match what I intend to do right now 
>> Le samedi 7 janvier 2023 à 17:13:19 UTC+1, Télumire a écrit :
>>
>>> See https://tiddlywiki.com/#Customising%20search%20results
>>>
>>> On Saturday, 7 January 2023 at 16:48:41 UTC+1 cassandr...@gmail.com 
>>> wrote:
>>>
 Hello everybody,

 I'm using the plugin "Streams" for one of my tiddlywiki.
 For now, the only but big downside is that the standard search bar is 
 useless as I have a lot of tiddlers with more or less the same name.
 I just want to search for the original tiddler who has no field name 
 parent in it.
 So I'm currently searching how to add a "!has[parent]" filter on the 
 standard search bar but frankly, I'm stuck on which shadow tiddler I need 
 to modify.

 Can you help me ?

 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/e8deccf8-8402-4d01-acb8-d6fc53a306e2n%40googlegroups.com.


[tw5] Re: How to permanently exclude tiddler with a certain field from standard search ?

2023-01-10 Thread springer
Try this. (It may not be the most elegant, in terms of coding, but it's an 
easy and safe tweak to do.)

Using Advanced Search, find the system tiddler with this 
title: $:/core/ui/DefaultSearchResultList

Make a copy (clone) of it, changing the title at the end to something 
you'll recognize. (That way, you're not directly over-writing the default 
version.)

In the cloned copy, don't touch the main text body at all. Just change 
three fields (ignoring back-tick marks, if they show up for you):

`first-search-filter` edit to 
`[!is[system]!has[parent]search:titlesort[title]limit[250]]`
`second-search-filter` edit to 
`[!is[system]!has[parent]searchsort[title]limit[250]]`
`caption` edit to `top-level` (or whatever you like, to clarify the 
doesn't-have-parent concept)

What these edits do is just to add the string `!has[parent]` within the 
search filters, to exclude tiddlers with content in the parent field.

One last step, with that system tiddler in view mode, is to click on the 
$:/tags/SearchResults tag-pill to get the dropdown of search-result 
templates, and rearrange the order of the search result types, so that the 
new custom search you prefer is listed at top.

Come back if any of that does not seem straightforward!

-Springer
On Sunday, January 8, 2023 at 4:22:05 PM UTC-5 cassandr...@gmail.com wrote:

>
> Sorry I should've have say that I have little to no background in 
> informatic or coding. I already searched on my own on the official 
> tiddlywiki (and saw the link listed here) and searched online if someone 
> has a problem similar to mine.
> I kind of understand what is explained in the official wiki but not enough 
> to know where to put the condition.
> My actual capabilities are limited to finding a problem similar to mine 
> and just tweak it enough to match what I intend to do right now 
> Le samedi 7 janvier 2023 à 17:13:19 UTC+1, Télumire a écrit :
>
>> See https://tiddlywiki.com/#Customising%20search%20results
>>
>> On Saturday, 7 January 2023 at 16:48:41 UTC+1 cassandr...@gmail.com 
>> wrote:
>>
>>> Hello everybody,
>>>
>>> I'm using the plugin "Streams" for one of my tiddlywiki.
>>> For now, the only but big downside is that the standard search bar is 
>>> useless as I have a lot of tiddlers with more or less the same name.
>>> I just want to search for the original tiddler who has no field name 
>>> parent in it.
>>> So I'm currently searching how to add a "!has[parent]" filter on the 
>>> standard search bar but frankly, I'm stuck on which shadow tiddler I need 
>>> to modify.
>>>
>>> Can you help me ?
>>>
>>> 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/3cb211fc-da57-4281-8dff-c01c89eb48f5n%40googlegroups.com.