[tw5] Re: How do I pass data to a list?

2021-07-03 Thread Eric Shulman
On Saturday, July 3, 2021 at 5:27:37 PM UTC-7 miket...@gmail.com wrote: > <$list filter="[tag[{{!!*target*}}]]"> In filter syntax, *square brackets* surrounding the operand indicate that the operand is a *literal text value*. When using a* field reference*, omit the square brackets and use

[tw5] How do I pass data to a list?

2021-07-03 Thread Mike Andyl
I want to select a tag, and pass its name to the button for processing. I use a field for this. <$select field="*target*" default='(none)'> (none) <$list filter="[all[tiddlers]tags[]sort[title]]"> >><$view field="title"/> <$button> open filtered tiddlers [tag[{{!!*target*}}]] <$list

[tw5] Re: Menubar Customization / Sticky Titles

2021-07-03 Thread Mike Andyl
How did you solve this problem? I also ran into it and I haven’t gotten anything good yet. The panel overlaps the buttons I want. https://i.imgur.com/86gVY7s.jpg понедельник, 1 июня 2020 г. в 13:54:53 UTC+3, Stobot: > Birthe - thanks, the padding setting you suggested worked great. > -- You

Re: [tw5] Re: A weird request

2021-07-03 Thread David Gifford
Okay, here you go, an empty template with basic instructions and examples and a way to download. Mileage may vary on the CSS. https://giffmex.org/experiments/topicmaps.template.html. Try it and tell me what you think. On Saturday, July 3, 2021 at 12:10:05 PM UTC-5 David Gifford wrote: > No

Re: [tw5] Re: A weird request

2021-07-03 Thread David Gifford
No whittling needed. My actual view template is a list-search, so I can search and filter results. I will put up a sample file in a moment. On Sat, Jul 3, 2021 at 11:11 AM Charlie Veniot wrote: > With some fancy footwork, maybe a little extra filtering can whittle down > the results to the

[tw5] Re: Problem with TiddlyWiki 5 after importing EverNote.

2021-07-03 Thread 'Mark S.' via TiddlyWiki
Keep in mind that those instructions assume that you have tiddlywiki on node.js installed globally. Here's a script/command line example: tiddlywiki --load tw-with-images.html \ --output test4 \ --savetiddlers [is[image]] images \ --setfield [is[image]] "_canonical_uri" \

Re: [tw5] Re: A weird request

2021-07-03 Thread Charlie Veniot
With some fancy footwork, maybe a little extra filtering can whittle down the results to the sweet spot, so that all are not included. Something to figure out on a case-by-case basis? On Saturday, July 3, 2021 at 11:36:45 AM UTC-3 Flibbles wrote: > I was just about to remark to the same

[tw5] Re: How do I clear a text field?

2021-07-03 Thread Soren Bjornstad
I wonder if your shell is trying to interpret the [is[image]] as a glob and passing a bad filter to TiddlyWiki – have you tried putting that parameter in quotes? (It appears to work right in Bash, but not sure what shell you're using.) Also, can you run other commands against *mynewwiki*

[tw5] Re: List with tags and links to topics

2021-07-03 Thread Soren Bjornstad
Generally, the only time you should use an tag in TiddlyWiki is for external links. Otherwise, <$link> makes more sense, as this handles some functionality for you, like adding the # and applying appropriate styles if the tiddler is missing, a shadow tiddler, etc. As for why what you did

Re: [tw5] Re: A weird request

2021-07-03 Thread David Gifford
Hey everyone, thanks!!! That works great. World domination is in reach! I may never need to bother anyone at the Google forum again. Thanks again! On Sat, Jul 3, 2021 at 9:36 AM Flibbles wrote: > I was just about to remark to the same effect. Backreferences only > includes links with string

[tw5] Re: List with tags and links to topics

2021-07-03 Thread amreus
Could use a link widget... ** *<$list filter="[tag[Features]sort[title]]"><$link/>{{||$:/core/ui/ViewTemplate/tags}}* On Saturday, July 3, 2021 at 11:18:15 AM UTC-4 miket...@gmail.com wrote: > I love this kind of list I found in the documentation. > https://i.imgur.com/4Hh7Rcs.jpg > > >

[tw5] List with tags and links to topics

2021-07-03 Thread Mike Andyl
I love this kind of list I found in the documentation. https://i.imgur.com/4Hh7Rcs.jpg *<$list filter="[tag[Features]sort[title]]"><>{{||$:/core/ui/ViewTemplate/tags}}* But I want to be able to click on the headings to navigate. And it just doesn't work (only Camel case on example). I

[tw5] Re: How do I send a newline character from a button?

2021-07-03 Thread Mike Andyl
Thanks a lot, I wouldn't have checked it myself! )) суббота, 3 июля 2021 г. в 17:37:31 UTC+3, Eric Shulman: > On Saturday, July 3, 2021 at 6:08:35 AM UTC-7 miket...@gmail.com wrote: > >> Let's say I have a code for a button: >> <$button> >> <$action-sendmessage $message="tm-new-tiddler" >>

Re: [tw5] Re: A weird request

2021-07-03 Thread Charlie Veniot
Arg, forgot to include link to related conversation: Get backlinks from fields On Saturday, July 3, 2021 at 11:33:29 AM UTC-3 Charlie Veniot wrote: > On Saturday, July 3, 2021 at 11:24:56 AM UTC-3 David Gifford wrote: > >

Re: [tw5] Re: A weird request

2021-07-03 Thread Charlie Veniot
On Saturday, July 3, 2021 at 11:24:56 AM UTC-3 David Gifford wrote: > Here is an example: Open Acts exegesis > . If > you click the link in that tiddler to go to >

[tw5] Re: How do I send a newline character from a button?

2021-07-03 Thread Eric Shulman
On Saturday, July 3, 2021 at 6:08:35 AM UTC-7 miket...@gmail.com wrote: > Let's say I have a code for a button: > <$button> > <$action-sendmessage $message="tm-new-tiddler" > text='Line 1 Line 2' > /> > New > > How can I split the lines so that in the editor they would be in a couple > of

Re: [tw5] Re: A weird request

2021-07-03 Thread Flibbles
I was just about to remark to the same effect. Backreferences only includes links with string values, nothing else. But Relink has something a little more powerful. You have a tiddler "$:/.giffmex/ViewTemplate/Backlinks", If you change its contents to: <> Then it will include all the

Re: [tw5] Re: A weird request

2021-07-03 Thread David Gifford
Hi Tones and Flibbles, thanks again for coming to the rescue. 1. Flibbles, thanks for that snippet. It works great! Now when I rename a tiddler, the macro gets renamed too. 2. Also, I was wrong about searching, or at least it works now. If I search for "Subtiddler", which is referenced in my

[tw5] Re: How do I send a newline character from a button?

2021-07-03 Thread Mike Andyl
No, this is for the finished text, but I need it for the editor. суббота, 3 июля 2021 г. в 16:24:05 UTC+3, Siniy-Kit: > Line 1 Line 2 > > суббота, 3 июля 2021 г. в 16:08:35 UTC+3, miket...@gmail.com: > >> Let's say I have a code for a button: >> <$button> >> <$action-sendmessage

Re: [tw5] Tiddlywiki is the best instrument for making on-line collections!

2021-07-03 Thread Mohammad Rahmani
Hi Siniy-kit, It is good to hear from you! I recommend preparing a small tutorial that lets interested people use your JS code with their Tiddlywiki! Perhaps an online repo could be better. Best wishes Mohammad On Sat, Jul 3, 2021 at 4:50 PM Siniy-Kit wrote: > Hi. Years ago I wrote a little

[tw5] Re: How do I send a newline character from a button?

2021-07-03 Thread Siniy-Kit
Line 1 Line 2 суббота, 3 июля 2021 г. в 16:08:35 UTC+3, miket...@gmail.com: > Let's say I have a code for a button: > <$button> > <$action-sendmessage $message="tm-new-tiddler" > text='Line 1 Line 2' > /> > New > > > How can I split the lines so that in the editor they would be in a couple >

[tw5] How do I send a newline character from a button?

2021-07-03 Thread Mike Andyl
Let's say I have a code for a button: <$button> <$action-sendmessage $message="tm-new-tiddler" text='Line 1 Line 2' /> New How can I split the lines so that in the editor they would be in a couple of lines, and not one? Line 1 Line 2 Similar to "/r/n" -- You received this message because

[tw5] How to read field data for a button?

2021-07-03 Thread Mike Andyl
After Evernote I have many fields for url records "*source-url*". I want to make a button to launch this address. But how do you pass the value *source-url* to *param *for the button? <$button message="tm-open-external-window" *param*="https://tiddlywiki.com; > Open ~TiddlyWiki - Button Of

[tw5] Tiddlywiki is the best instrument for making on-line collections!

2021-07-03 Thread Siniy-Kit
Hi. Years ago I wrote a little javascript to teach my empty tiddlywiki.html download data from googlespreadsheet by id and work like a little on-line store with cart and on-line paying by cards. So people can make copy of my googlespeadsheet template put their data to it and "open" their

[tw5] Re: Problem with TiddlyWiki 5 after importing EverNote.

2021-07-03 Thread Mike Andyl
Can't do it, the instruction doesn't work https://groups.google.com/g/tiddlywiki/c/PueCb0KGmvM суббота, 3 июля 2021 г. в 04:05:56 UTC+3, Mark S.: > If you scroll down on that tiddler the section *Creating external images > under Node.js *explains how you can export all your images into a >

[tw5] Re: Streams : "strange behaviour" when transcluding a root tiddler

2021-07-03 Thread ludwa6
That's an interesting UseCase, @FrD -and a powerful affordance, @Saq. Love it! Puts me to wonder (not exactly on-topic, but related): is there some such simple script i could plug into a tiddler to display a list of all the other tiddlers that have any n>0 number of nodes (i.e. Streams)

Re: [tw5] Re: Shiraz list-content (experimental)

2021-07-03 Thread Mohammad Rahmani
Hi Mark, It is here https://kookma.github.io/TW-Shiraz/#Tutorial%20List%20and%20Search It is stable and you can use it in your project! I recommend using Shiraz instead of extracting part of it! Best wishes Mohammad On Sat, Jul 3, 2021 at 12:00 AM Mark wrote: > Hi Mohammad, > > I could