Re: [tw5] Re: Looping through tagging hierarchy to bulk update a field

2021-03-02 Thread Pall Sigurdsson
Works like a charm! Many many thanks! I had no idea that a macro could be called from within itself and that this would be safe. Should I leave the closing in the changeVisibility as it is or change it to ? I doesn't appear to make any difference. Best regards, Pall On Wed, 3 Mar 2021 at

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Hylke W. van Dijk
> regexp : (\[A-Z\]+(?=\[0-9\]+))|(\[0-9\]+(?=\[A-Z\]+)) Sorry, but escaping the regular expression does not work. I did not watch teh result carefully enough, I guess I was too pleased that the JavaScript did not crash. Escaping the blockquotes ([]) does not crashes the engine, but also the

[tw5] Re: Athens: a VC backed, open-source Roam competitor

2021-03-02 Thread Ed Heil
"you can't really make these apps with JavaScript" News to me! On Tuesday, March 2, 2021 at 4:25:58 PM UTC-5 dieg...@gmail.com wrote: > > Hello all, > > A YC (venture capital firm) backed open-source Roam alternative launched > today on HackerNews: > >

[tw5] Re: Macro: How convert wikified macro output as a "List"

2021-03-02 Thread Mohamed Amin
Actually I used the following to keep Macro parameter "locally" \define prepEnlisting(nlst) $nlst$ \end \define myBooks(category lang) <$list filter="[all[tiddlers]tag[$category$]tag[$lang$]]" variable="macO"> <$macrocall $name="prepEnlisting" nlst=<> /> \end <$wikify name="wkfd"

[tw5] Re: Macro: How convert wikified macro output as a "List"

2021-03-02 Thread Mohamed Amin
Ok, I figured it out (Thanks BTC ) \define prepEnlisting(nlst) $(macO)$ \end \define myBooks(category lang) <$list filter="[all[tiddlers]tag[$category$]tag[$lang$]]" variable="macO"> <> \end <$wikify name="wkfd"

Re: [tw5] Re: Two requests for Toggle!

2021-03-02 Thread strikke...@gmail.com
Maybe I should mention that I reused the buttons: $:/core/ui/Buttons/theme, $:/core/ui/Buttons/storyview and $:/core/ui/Buttons/palette for the aesthetics section. Now that we can do all the other stuff from the same place. Birthe onsdag den 3. marts 2021 kl. 01.39.07 UTC+1 skrev

[tw5] Re: Reminder: 2click2edit - Convert to Triple Click

2021-03-02 Thread clutterstack
Thanks for that reminder, Diego. I disabled the plugin a while back and have been putting off converting it. Now I have that wrinkle fixed! That will be much nicer. Cheers, Chris On Tuesday, March 2, 2021 at 10:35:06 AM UTC-5 strikke...@gmail.com wrote: > Thank you so much for your clear

Re: [tw5] Re: Two requests for Toggle!

2021-03-02 Thread strikke...@gmail.com
David, Even better - as I wrote I tried the long title earlier today. Now I found that you have nailed that problem in your latest incarnation. Birthe onsdag den 3. marts 2021 kl. 01.24.46 UTC+1 skrev David Gifford: > Birthe, Could you include an image of what is happening when editing with >

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Mat
> > remains the <$set name="setref" ...> and <$vars varsref={{{ ... }}} > > unexplained. > I agree, I can't get it to work in your demo either. I suggest you starta a new thread with this issue only and a permalink to the demo tiddler etc. <:-) -- You received this message because you are

Re: [tw5] Re: Two requests for Toggle!

2021-03-02 Thread David Gifford
Birthe, Could you include an image of what is happening when editing with a long title? On Tue, Mar 2, 2021 at 6:21 PM strikke...@gmail.com < strikkeglad...@gmail.com> wrote: > Dave, > Earlier today I tried to edit a plugin tiddler with a rather long title.. > In fact the title nearly covered

[tw5] Re: Two requests for Toggle!

2021-03-02 Thread strikke...@gmail.com
Dave, Earlier today I tried to edit a plugin tiddler with a rather long title.. In fact the title nearly covered the tiddler controls. The problems gets worse if the size is toggled (Bigger). I have tried to find out why the more drop-down behaves like you describe. I have the tiddler controls

Re: [tw5] Re: Looping through tagging hierarchy to bulk update a field

2021-03-02 Thread Mat
\define change-inner(tid) <$list filter="""[tag[$tid$]tag[task]]"""> <$action-setfield task_visibility="$(taskVisibilityValue)$" /> <$macrocall $name=change-inner tid=<>/> \end \define changeVisibility() <$vars taskVisibilityValue={{!!task_visibility}}> <$list

[tw5] Re: Fiddlywiki still around?

2021-03-02 Thread strikke...@gmail.com
Are you asking about this https://way.net/FiddlyWiki/FiddlyWiki.html#CurrentVersion ? if so it is rather old, but I do remember it. Birthe onsdag den 3. marts 2021 kl. 00.42.09 UTC+1 skrev ooc...@gmail.com: > Is fiddlywiki still around? I logged onto the site and it seems > interesting

[tw5] Two requests for Toggle!

2021-03-02 Thread David Gifford
Hi everyone There are still two nagging things I want fixed for my Toggle! plugin, but I don't know how to do either. 1. I made progress on adding the viewtoolbars even when there is no visible sidebar. Thanks to a suggestion from Birthe, I used the sidecontrols plugin and modified it in a

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Hylke W. van Dijk
Escaping the [] does the trick in the regular expression. I just gave it a try and the macro that previously crashed the JavaScript engine now works regexp : (\[A-Z\]+(?=\[0-9\]+))|(\[0-9\]+(?=\[A-Z\]+)) remains the <$set name="setref" ...> and <$vars varsref={{{ ... }}} > unexplained. It is

[tw5] Re: What is the best way to approach tweaking shadow tiddlers?

2021-03-02 Thread si
@Mat That looks like a great idea, I gave it a thumbs up. On Tuesday, 2 March 2021 at 20:57:22 UTC Mat wrote: > I posted Indicate overwrites that need attention from updates #5518 > a few days ago. It > outlines an approach that would

[tw5] Re: Fiddlywiki still around?

2021-03-02 Thread Mat
link? On Wednesday, March 3, 2021 at 12:42:09 AM UTC+1 ooc...@gmail.com wrote: > Is fiddlywiki still around? I logged onto the site and it seems > interesting albeit outdated I think. I wonder what makes it a writing wiki? > > OOC > -- You received this message because you are subscribed to

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Mat
> > The comma is part of the search-replace filter operator syntax > That was *very *valuable for me to learn - thanx! <:-) -- 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

[tw5] Fiddlywiki still around?

2021-03-02 Thread OOC
Is fiddlywiki still around? I logged onto the site and it seems interesting albeit outdated I think. I wonder what makes it a writing wiki? OOC -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Mat
> > ad 1 > Escaping the regexp might be a solution. But how? I mean in a regular > expression [a-z] is different from \[a-z\]. > Unsure how to escape the regular expression. It might be a greediness / > look-ahead problem. > OK, this is not my domain but I think maybe the \ character is

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Hylke W. van Dijk
The comma is part of the search-replace filter operator syntax https://tiddlywiki.com/#search-replace%20Operator -hw On Wednesday, March 3, 2021 at 12:31:26 AM UTC+1 Hylke W. van Dijk wrote: > > Spot on! > > The triple quotes, which I came across, but did not understand. And which > I did

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Hylke W. van Dijk
Spot on! The triple quotes, which I came across, but did not understand. And which I did not try before. -hw On Wednesday, March 3, 2021 at 12:27:24 AM UTC+1 Hylke W. van Dijk wrote: > Thanks Mat, > > ad 1 > Escaping the regexp might be a solution. But how? I mean in a regular > expression

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Mat
<$set name="setref" filter="[split[,]search-replace:g:regexp,[$1,$1]]" > Maybe I've missed some late dev but that comma is not something I'm familiar with syntactically. Ref . (And, as noted, please triple quotes around that filter.) <:-)

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Hylke W. van Dijk
Thanks Mat, ad 1 Escaping the regexp might be a solution. But how? I mean in a regular expression [a-z] is different from \[a-z\]. Unsure how to escape the regular expression. It might be a greediness / look-ahead problem. ad 2 No luck here, tried it. If I remember correctly <<__x__>> sort of

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Mat
OK, so judging from your neat writeup in Passing Macro Parameters with Slashes I'd say it *is *syntactical errors. This: x=$p$ definitely rubs the wrong way. It will work for very "simple" arguments

Re: [tw5] Re: Looping through tagging hierarchy to bulk update a field

2021-03-02 Thread Pall Sigurdsson
Hi, Here is a tiddlyhost site with the problem I was trying to explain above: palltest.tiddlyhost.comI I hope it's clearer now what I'm trying to achieve. I set it up with a reset button so the field of all tiddlers can be reset after every failed attempt to solve

[tw5] Re: Athens: a VC backed, open-source Roam competitor

2021-03-02 Thread David Gifford
Roam was helpful to me to see the potential of bi-directional links, which TiddlyWiki has had for a long time. They were just hidden in a tab of the info area under the more menu. So I created TiddlyBlink early 2020, then Stroll, to imitate Roam's way of displaying them. And the relink plugin

[tw5] Re: Ran into some macro development subtleties

2021-03-02 Thread Mat
WOW! To say the least. (And incidentally I'm working on a distantly related thing). Regarding your problems here are some first guesses: >regexp="([A-Z]+(?=[0-9]+))|([0-9]+(?=[A-Z]+))" >and filter="[splitregexpreverse[]]" Maybe you need to escape the square brackets? ><> fails. I See if

[tw5] Re: was MPTW ever updated to the newest version?

2021-03-02 Thread strikke...@gmail.com
Tony, Hm. Nice to know. Maybe I will be able to some day, hopefully without using hours or days. Birthe tirsdag den 2. marts 2021 kl. 21.15.12 UTC+1 skrev TW Tones: > Birthe, > > I totally support Mats position on MPTW and tagglytagging. When moving to > TW5 I too felt as "S." asked, but MPTW

[tw5] Re: Athens: a VC backed, open-source Roam competitor

2021-03-02 Thread 'Mark S.' via TiddlyWiki
I feel like bidirectional links are over-rated. Everyone is looking for a magic bullet that will allow you to save info and never have to be organized. We need a database to keep track of all the roam competitors. I just remembered, that an early version of web-linking incorporated the idea

[tw5] Re: Field Search

2021-03-02 Thread PMario
On Tuesday, March 2, 2021 at 3:01:27 PM UTC+1 ludwa6 wrote: > Thanks @PMario, for the detailed explainer; this gives me a lot to chew > on, as i am now working my way up the steep part of the learning curve > about search tools, custom fields and filters. Fun stuff indeed! > Yea, TW has a

[tw5] Athens: a VC backed, open-source Roam competitor

2021-03-02 Thread dieg...@gmail.com
Hello all, A YC (venture capital firm) backed open-source Roam alternative launched today on HackerNews: https://news.ycombinator.com/item?id=26316793 Some relevant parts of the announcement (my opinion only): - Athens is an open-source and local-first alternative to Roam Research.

[tw5] Ran into some macro development subtleties

2021-03-02 Thread Hylke W. van Dijk
Good day, Triggered by the announcement of Tamasha I decided to dig into TW5 some more. Therefore I created a --javascript free -- plugin for easy import and display of spreadsheet data, or more generally dataframes. Along the way I ran into some subtleties / miscomprehensions of the

[tw5] Re: What is the best way to approach tweaking shadow tiddlers?

2021-03-02 Thread Mat
I posted Indicate overwrites that need attention from updates #5518 a few days ago. It outlines an approach that would simplify handling of overwrites. Give it a thumbs up if you agree with it. <:-) On Tuesday, March 2, 2021 at 9:34:57

[tw5] Re: Idea: typed links

2021-03-02 Thread TW Tones
Soren, A Quick answer is to create tiddler for the relationship between two tiddlers, link to that relationship, which subsequently links to the related tiddler. Once the relationship tiddler exists exists it is simply a matter of tagging it with Mention or "relationship". The relationship

[tw5] Re: What is the best way to approach tweaking shadow tiddlers?

2021-03-02 Thread TW Tones
All, I think we are missing something here, with the new layout switch cloning the required tiddlers for new layout, and modifying the equivalent to $:/core/ui/ViewTemplate/body to do the desired behavior. The underlying tiddlers will update in the core, and returning to the default layout

[tw5] Re: was MPTW ever updated to the newest version?

2021-03-02 Thread TW Tones
Birthe, I totally support Mats position on MPTW and tagglytagging. When moving to TW5 I too felt as "S." asked, but MPTW actually becomes almost irrelevant with TW5, Regards Tony On Saturday, 27 February 2021 at 15:39:13 UTC+11 strikke...@gmail.com wrote: > @Mat, > Is that really true? Did

[tw5] Re: When "sameday" seems to mean "yesterday"

2021-03-02 Thread Jack Baty
I'll try the offset, thanks. I'd be happy with a string match on "20210302*", too though, as that's always the day I'm looking for. Half the reason I got out of development was to avoid dealing with timezones :) On Tuesday, March 2, 2021 at 1:18:08 PM UTC-5 Mark S. wrote: > If

[tw5] A revelation

2021-03-02 Thread TiddlyTweeter
My general attitude to TiddlyWiki is that is incarnates the soul of Blake's Albion. -- 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

Re: [tw5] Can tag adding trigger field creation?

2021-03-02 Thread Javier Eduardo Rojas Romero
On Sun, Jan 24, 2021 at 05:48:10AM -0800, Misterel85 wrote: > So, here's what I would like: > >1. I create an activity tiddler. >2. I create the corresponding generic source tag tiddler(s) if they >don't already exist. Ex. a tiddler tag whose text field holds info about a >

Re: [tw5] Need help getting rid of iframe

2021-03-02 Thread Robert Payne
Matt, it does not make it possible to view files that are separate from the TW file. On Monday, March 1, 2021 at 4:41:37 PM UTC-5 Mat wrote: > Robert, would this by any chance make it possible to view files that are > separate from the TW file, and have the seen content *interact *with the >

[tw5] Re: When "sameday" seems to mean "yesterday"

2021-03-02 Thread 'Mark S.' via TiddlyWiki
the > `sameday` operator. > > Here's the filter I'm working on: > > ``` > <$list filter="[sameday:created[20210302]!is[system]!tag[Journal]]" > > {{||$:/core/ui/ViewTemplate/body}} > > ``` > > I would expect to see tiddlers I created on 2021-03-0

[tw5] Re: Filter to display "subdirectories" of the input tiddler?

2021-03-02 Thread si
Hi Eskha thanks for the reply. Unfortunately that's not quite what I was asking. The filter has to take the title as an input, it can't be used as a parameter. Take a look at Soren's comment as he explains it better than I can, or maybe look at the Tidgraph docs to see how it works:

[tw5] Re: Field Search

2021-03-02 Thread Ste
@TiddlyTweeter Pray you never meet my students On Tuesday, 2 March 2021 at 15:04:04 UTC TiddlyTweeter wrote: > I am always amazed at the *Patience of Programmers *to lay out *yet again > *what they bone-know. > > That was good! V. helpful to the questioner. > > It would drive me *mad*

[tw5] When "sameday" seems to mean "yesterday"

2021-03-02 Thread Jack Baty
I'm guessing this is related to timezone/display issues I've seen mentioned elsewhere, but there's something I don't understand about the `sameday` operator. Here's the filter I'm working on: ``` <$list filter="[sameday:created[20210302]!is[system]!tag[Journal]]" > {{||$:/core

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread Mohammad Rahmani
On Tue, Mar 2, 2021 at 8:06 PM Eric Shulman wrote: > On Tuesday, March 2, 2021 at 7:58:34 AM UTC-8 Eskha wrote: > >> Is there any way to use the released 5.1.23 version instead of the >> prerelease one? >> > > 1) Locate and edit this shadow tiddler: *$:/config/OfficialPluginLibrary* > 2) Change

Re: [tw5] Remove Specific content for export

2021-03-02 Thread Mohammad Rahmani
While Mat response is the best to try! but you may be interested to use the Commander (https://kookma.github.io/TW-Commander) For example look at https://kookma.github.io/TW-Commander/#%24%3A%2FCommander and type [tag[doc]] you can selectively exclude some results, add more results by adding

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread Eric Shulman
On Tuesday, March 2, 2021 at 7:58:34 AM UTC-8 Eskha wrote: > Is there any way to use the released 5.1.23 version instead of the > prerelease one? > 1) Locate and edit this shadow tiddler: *$:/config/OfficialPluginLibrary* 2) Change the value in the URL field to:

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread Mohammad Rahmani
Eskha, to correct my previous post Please open the *tiddlywiki.com * and not https://tiddlywiki.com/prerelease/ then drag and drop https://tiddlywiki.com/#%24%3A%2Fconfig%2FOfficialPluginLibrary into your Tiddlywiki (prerelease) In the TW-Script (it uses

[tw5] Re: [Demo] Inspect macro definitions

2021-03-02 Thread clutterstack
Thanks, David. On Sunday, February 28, 2021 at 6:09:13 PM UTC-5 David Gifford wrote: > Added this to the toolmap, both in the "Understanding TiddlyWiki" section > and the "Advanced / developer" section > > On Friday, February 26, 2021 at 2:17:25 PM UTC-6 clutterstack wrote: > >> Hi all, >> >> I

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread Mohammad Rahmani
Eskha, To have a working plugin library in prerelease see the instruction in TW-Scripts https://kookma.github.io/TW-Scripts/#Plugins%20Library%20Prerelease Best wishes Mohammad On Tue, Mar 2, 2021 at 7:28 PM Eskha wrote: > That make sense. > > Is there any way to use the released 5.1.23

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread Eskha
That make sense. Is there any way to use the released 5.1.23 version instead of the prerelease one? Eskha Le mardi 2 mars 2021 à 16:09:55 UTC+1, strikke...@gmail.com a écrit : > Eskha, > If you look athttps://tiddlywiki.com/prerelease/empty.html You will also > find the plgin library empty.

Re: [tw5] Re: Differences between Muuri Touch and Muuri Storyview?

2021-03-02 Thread BurningTreeC
Hello all, the difference between MuuriTouch and the Muuri StoryView is indeed that the latter is the newest, simplified version and the one that should be preferred by users I chose to simplify it because TiddlyWiki offers so many ways to hack the interface by itself that I felt that anything

[tw5] Re: Remove Specific content for export

2021-03-02 Thread Mat
Hi Ed. In advanced search (the Filter tab) you can set a filter and export the results. Maybe that can help, as long as you can define the filter. <:-) On Tuesday, March 2, 2021 at 4:34:05 PM UTC+1 Ed Dixon wrote: > I am sure there is a filter of some kind I should be able to come up with >

[tw5] Re: Reminder: 2click2edit - Convert to Triple Click

2021-03-02 Thread strikke...@gmail.com
Thank you so much for your clear instruction. It works wonder. Birthe tirsdag den 2. marts 2021 kl. 16.19.59 UTC+1 skrev dieg...@gmail.com: > Hello all, > > I originally posted about this here > , > but thought it was worth

[tw5] Remove Specific content for export

2021-03-02 Thread Ed Dixon
I am sure there is a filter of some kind I should be able to come up with here but need a quick soltion and have learned to check this forum first rather than trying to recreate the wheel and my brain damage does not lend itself so well to doing this type of thing anymore anyway. I have a ton

[tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread dieg...@gmail.com
Birthe - Ive started a new thread on this tip to not derail David's thread. On Monday, March 1, 2021 at 9:39:32 PM UTC-6 strikke...@gmail.com wrote: > @David > I used https://szenio.de/Grid/#%24%3A%2Fplugins%2FJJ%2Fsidecontrols, to > have the tiddler controls vertical i the right side. Changed

[tw5] Reminder: 2click2edit - Convert to Triple Click

2021-03-02 Thread dieg...@gmail.com
Hello all, I originally posted about this here , but thought it was worth sharing again. You can easily edit Danielo's excellent 2click2edit plugin to make it triple-click to edit by doing the following: If you just

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread strikke...@gmail.com
Eskha, If you look athttps://tiddlywiki.com/prerelease/empty.html You will also find the plgin library empty. Birthe tirsdag den 2. marts 2021 kl. 15.51.16 UTC+1 skrev Eskha: > Hello Simon, > > Thank you for creating Tiddlyhost. > > It seems that the plugin library does not work: when

[tw5] Re: Field Search

2021-03-02 Thread TiddlyTweeter
I am always amazed at the *Patience of Programmers *to lay out *yet again *what they bone-know. That was good! V. helpful to the questioner. It would drive me *mad* having to do that *everyday*. TT On Tuesday, 2 March 2021 at 14:03:18 UTC+1 PMario wrote: > On Tuesday, March 2, 2021 at

[tw5] Re: Filter to display "subdirectories" of the input tiddler?

2021-03-02 Thread Eskha
Hello si, Not sure if I have well understood what you wan to achieve. Wouldn't the following call do the job? <$list filter="[prefixsort[title]]" template="$:/core/ui/ListItemTemplate"/> (You can change the template or use the <$list ...> ... syntax if you prefer.) Best regards, Eskha Le

[tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread David Gifford
Okay, I am so close I can taste it! https://giffmex.org/experiments/toggleplus.html Thanks to Birthe, I used the sidecontrols plugin. But I have made some adjustments and will have to rename it and include it in the plugin later. The hovering toolbars look great, and appear on hovering

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread Eskha
Hello Simon, Thank you for creating Tiddlyhost. It seems that the plugin library does not work: when selecting "Get more plugins" then " open plugin library" all the tabs are displaying (0) elements. Best regards, Eskha Le mardi 2 mars 2021 à 14:06:48 UTC+1, PMario a écrit : > On Tuesday,

Re: [tw5] Re: Differences between Muuri Touch and Muuri Storyview?

2021-03-02 Thread TiddlyTweeter
Ciao rayv...@gmail.com I added a Discussion thread at Muuri HQ on GitHub with YOUR concern. That is the right place to get real answers to your Muuri initiation problems, I think. Best wishes TT On

Re: [tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread Mohammad Rahmani
On Tue, Mar 2, 2021 at 4:55 PM David Gifford wrote: > @Mohammad - if it can be done to TiddlyWiki, it probably already exists in > kookma... > @David, but you make things useful and popular! Stroll is one example! ;-) :-) > > @Mat: I think the answer is, I will need to create a separate

[tw5] Macro: How convert wikified macro output as a "List"

2021-03-02 Thread Mohamed Amin
Hi All, I've a set of tiddlers represent my books/novels, and I'm using the following Macro to filter my books by their "Category" and "Language" : \define myBooks(category lang) <$list filter="[all[tiddlers]tag[$category$]tag[$lang$]]"/> \end and when I run <> I got a "LIST" of my "English

[tw5] Re: Field Search

2021-03-02 Thread ludwa6
Thanks @PMario, for the detailed explainer; this gives me a lot to chew on, as i am now working my way up the steep part of the learning curve about search tools, custom fields and filters. Fun stuff indeed! On Tuesday, March 2, 2021 at 1:03:18 PM UTC PMario wrote: > On Tuesday, March 2, 2021

Re: [tw5] Re: Differences between Muuri Touch and Muuri Storyview?

2021-03-02 Thread Ray Vermey
Is there someone who would be willing to take me by the hand on how to setup the Muuri plugin? I installed it and i can now drag tiddlers around but how i can add tiddlers to a grid is completely unclear to me... The Muuri view is also chosen Something i miss obviously but i dont know how...

[tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread strikke...@gmail.com
As mentioned above, I use Jans sidecontrols plugin. It consists of a ViewTemplate, EditTemplate and a stylesheet tiddler.[image: Skærmbillede på 2021-03-02 04-43-52.png] But the size and place is the same, no matter title, titlesize, or frame. Birthe tirsdag den 2. marts 2021 kl. 14.42.14 UTC+1

Re: [tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread David Gifford
@Mat, Yes I understand, but as birthe noted (it was indeed an FYI), when the titlebar is hidden in Toggle!, the toolbars won't become visible on hover. So we need something else to toggle. And it is when the titlebar is intentionally hidden that we most need this feature of hovering to view the

[tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread Mat
David Gifford wrote: > @Mat: I think the answer is, I will need to create a separate tiddler with > the viewtoolbar elements in it, wrap it in a special class, and make that > class visible in the top right corner of the tiddler on hovering anywhere > in a tiddler. That will involve layers of

[tw5] Re: Differences between Muuri Touch and Muuri Storyview?

2021-03-02 Thread TiddlyTweeter
Ciao Sapphireslinger, TBH, I'm not sure. I have TESTED, over time, 4, yes FOUR, versions of Muuri. ALL worked. Over time the interface got simpler, maybe because the options needed to be more matched to what most people would take-to quickly? I don't know. IMO, BTC, has not received enough

[tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread David Gifford
@Mohammad - if it can be done to TiddlyWiki, it probably already exists in kookma... @Mat: I think the answer is, I will need to create a separate tiddler with the viewtoolbar elements in it, wrap it in a special class, and make that class visible in the top right corner of the tiddler on

[tw5] Re: Sequential tiddlers

2021-03-02 Thread PMario
@Merv, Did you test the "demo"? Would it work for you? @all What do you think? On Sunday, February 28, 2021 at 3:23:21 PM UTC+1 PMario wrote: > A working demo you can play with: >

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread PMario
On Tuesday, March 2, 2021 at 2:01:53 PM UTC+1 Sapphireslinger wrote: > SimonBaird, > > Thank you for creating Tiddlyhost! > +1 -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from

[tw5] Re: Field Search

2021-03-02 Thread PMario
Hi folks I needed to delete 2 posts, because the images haven't been there. -mario -- 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

[tw5] Re: Field Search

2021-03-02 Thread PMario
On Tuesday, March 2, 2021 at 1:56:48 PM UTC+1 PMario wrote: Hi Walt, The "tabs" are added to the search result dropdown and to the "Standard" AdvancedSearch tab. This mechanism is built into TW standard. [image: field-search-01.gif] >On Tuesday, March 2, 2021 at 8:10:18 AM UTC+1 ludwa6

Re: [tw5] Re: Announcing Tiddlyhost.com

2021-03-02 Thread Sapphireslinger
Mohammad, Wow! That is awesomely simple! Thank you! Reminds me of the time I asked how to delete the old version of a plugin before updating it and was told just to drag in the updated plugin and it would overwrite the old. (facepalm) Amazing! I didn't realize one could do entire Tiddlywikis

[tw5] Re: Field Search

2021-03-02 Thread PMario
On Tuesday, March 2, 2021 at 1:56:48 PM UTC+1 PMario wrote: Hi Walt, The "tabs" are added to the search result dropdown and to the "Standard" AdvancedSearch tab. This mechanism is built into TW standard. >On Tuesday, March 2, 2021 at 8:10:18 AM UTC+1 ludwa6 wrote: >Looking for a way to

[tw5] Re: Field Search

2021-03-02 Thread PMario
Hi Walt, The "tabs" are added to the search result dropdown and to the "Standard" AdvancedSearch tab. This mechanism is built into TW standard. On Tuesday, March 2, 2021 at 8:10:18 AM UTC+1 ludwa6 wrote: > Looking for a way to search across fields other than Title or Text, i was > inspired

[tw5] Re: Differences between Muuri Touch and Muuri Storyview?

2021-03-02 Thread Ste
I THINK (and could well be wrong...) Muuri story view is a second attempt building on the experience of the first and so is probably the one to use. I think I have that the correct way round! On Tuesday, 2 March 2021 at 03:47:17 UTC Sapphireslinger wrote: > ... and is one of them better than

[tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread Mat
David Gifford wrote: > Hi Mat, this snippet hides the controls in edittemplate, thus not allowing > me to save, close or delete tiddlers. I had to use the filter tab of > advanced search to delete it. > OK, it should be .tc-tiddler-view-frame .tc-tiddler-controls {visibility:hidden;}

[tw5] Re: [Plugin announcement]: Toggle! (formerly CleanTids)

2021-03-02 Thread Mat
strikke...@gmail.com wrote: > @Mat, > Your solution works very well until the tiddler title is hidden, then we > miss the tiddler controls. > Are you requesting that or is it just a FYI to me? <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

Re: [tw5] Re: Looping through tagging hierarchy to bulk update a field

2021-03-02 Thread Pall Sigurdsson
Yes, it's only fair that I'll do that work :) Thanks for the time you have spent on this so far. I'm planning to set something up soon on Tiddlyhost and will reply back when it's ready. // Pall On Tue, 2 Mar 2021 at 01:06, Mat wrote: > I suggest you set up a demo on tiddlyhost.com . If anyone

Re: [tw5] Field Search

2021-03-02 Thread ludwa6
Thanks @arunn (and @Tobi) : This one works great! /walt On Tuesday, March 2, 2021 at 8:00:18 AM UTC arunn...@gmail.com wrote: > Try this one by tobibeer. > http://tobibeer.github.io/tb5/#Searching%20In%20Tiddler%20Fields > > Add to your TW file by drag and drop. Tag it with

Re: [tw5] Field Search

2021-03-02 Thread arun babu
Try this one by tobibeer. http://tobibeer.github.io/tb5/#Searching%20In%20Tiddler%20Fields Add to your TW file by drag and drop. Tag it with $:/tags/AdvancedSearch to add as a extra tab in advanced search. On Tue, Mar 2, 2021 at 12:40 PM ludwa6 wrote: > Looking for a way to search across