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

2021-06-04 Thread vinvindtvin
Thank you Oorspronkelijk bericht Van: Mohammad Rahmani Datum: 04-06-21 20:11 (GMT+01:00) Aan: tiddlywiki@googlegroups.com Onderwerp: Re: [tw5] List values and add/remove from field On Fri, Jun 4, 2021 at 9:44 PM vinvi...@gmail.com wrote:Hi Mohammad,That lists the title of t

Re: [tw5] Re: Is there a way to automatically save changes on TiddlyWiki?

2021-06-04 Thread Alessandra Carnevale
Charlie, thank you so much! It works. Mario, this is what it happens, and it happens almost every time; I click on the tiddler that I want to open/edit, then I click on "edit this tiddler", then the whole content of the tiddler that I could have read until that very moment disappears! I am writing

[tw5] A Code Pattern: Batch update of tags on tiddlers

2021-06-04 Thread Charlie Veniot
G'day, I'm refactoring the design on a TiddlyWiki project, and wanted to apply tag changes to batches of tiddlers. In case of any interest, here's the related code pattern: \define doIt() <$list variable="thisTiddler" filter="[tag[A]]"> <$action-setfield $tiddler=<> $field="tags" $value={{{ [t

Re: [tw5] Re: Box Layout Tiddly Wiki

2021-06-04 Thread Charlie Veniot
G'day JD, Try this over in https://tiddlywiki.com/ (creating "A" and "B" tiddlers, and the following in some other tiddler) : {{A||$:/_tw5.com-card-template}} {{B||$:/_tw5.com-card-template}} {{B||$:/_tw5.com-card-template}} {{A||$:/_tw5.com-card-template}} To get the above working in

Re: [tw5] [Help] Color them icons and buttons.

2021-06-04 Thread TW Tones
Álvaro, Very good I think the answer may lay there. The following tagged $:/tags/ViewToolbar proves it works \define icon-color(color) {{$:/core/images/list}} \end <$list filter="red green blue black gray"> <$macrocall $name=icon-color color=<>/> Tones On Thursday, 3 June 2021 at 20:35:40

Re: [tw5] Re: Fun with InfoMechanism

2021-06-04 Thread TW Tones
Mike, It all depends on what you want to do. All the permaview is the generation of a link to open with the current tiddlers in the story view. There are other ways to achieve the same thing. I agree the url should be available somewhere, but I don't think you necessarily need it to do what yo

Re: [tw5] Re: Fun with InfoMechanism

2021-06-04 Thread Michael Wiktowy
Yes. That's what I had mentioned as a potential solution at the bottom but I wonder if $/:Storylist will always be available before the StartupAction triggers. Also, Storylist is not static so you would have to have your action take a snapshot into another tiddler if you wanted to preserve that da

Re: [tw5] Printing A Tiddler

2021-06-04 Thread TW Tones
Steph, If you rely on the view template to display tiddlers it may not be displayed when viewing the tiddler in a new window, which only wikifies the text field. I have made but not formally published open in window for view and edit in new window. I have attached it Have a look inside and yo

[tw5] Re: Fun with InfoMechanism

2021-06-04 Thread TW Tones
Mike, I thought I had seen the full user and permalink entries before but cant now. However by definition the permalink dose open the named tiddlers, so when using a permalink to access a wiki the $:/StoryList list field contains the opened tiddlers. That is perhaps you can retrieve them from

[tw5] Re: Tiddlywiki Can Create Native Presentations in Microsoft PowerPoint, Apple Keynote, and other applications

2021-06-04 Thread PMario
Hi, The biggest problem I see with libraries like this is, that they only work in 1 direction. So if you edit your document in powerpoint, you can't easily convert it back to TW. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscrib

[tw5] Re: Call stack error in tiddly wiki

2021-06-04 Thread PMario
Hi, This seems like you did something like this: Tiddler A tagged with B, Tiddler B tagged with A .. That's a circular relation, which can cause this. ... BUT it shouldn't. There is some protection code in the TOC macro. ... So did you mess with the TOC macro, or which macro did you use? -mar

[tw5] Re: Unable to save or edit the file...Blocked with tiddly wiki with updates

2021-06-04 Thread PMario
Hi, That's not enough information. Please tell us, what you did? -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 tiddlywiki+unsubscr...@googlegroups.com. To

[tw5] Simple authentication options for Bob

2021-06-04 Thread Ed Heil
I just got Bob working on a digital ocean droplet behind an nginx proxy (yay!) and I would like some kind of authentication going on. The "credentials" system which works with basic tiddlywiki would be great. However, when I run it with something like: node ./tiddlywiki.js Wikis/BobWiki/ --

[tw5] Re: radio fields /checkboxes slections are not saved

2021-06-04 Thread paulgilbert2000
it was indeed thanks again Eric for all your help On Friday, June 4, 2021 at 4:53:39 AM UTC+2 Eric Shulman wrote: > On Thursday, June 3, 2021 at 7:18:02 PM UTC-7 mohamed...@hotmail.com > wrote: > >> well i do find the filed changes after saving , but they dont reflect in >> the actual check bo

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

2021-06-04 Thread Mohammad Rahmani
On Fri, Jun 4, 2021 at 9:44 PM vinvi...@gmail.com wrote: > 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. > Right! So it works correctly! Now you need to populate them and display them! The simplest

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 v

[tw5] Re: Create tiddler with tags from variable

2021-06-04 Thread Ed Heil
Mat's initial suggestion worked great. I didn't need this to appear everywhere, or in edit mode. Just in a certain class of tiddlers which are already being displayed through a special template (which is where this button will appear). Thanks, everyone! -- You received this message because

[tw5] Fun with InfoMechanism

2021-06-04 Thread Michael Wiktowy
Hi, I've been looking into the InfoMechanism part of TiddlyWiki as a means of reading variables passed in via URL (for autofilling fields, presetting filters/reports, mode-setting etc.) e.g. https://tiddlywiki.com/?variable=something&another_variable="something else"#InfoMechanism:$:/info/url/

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

2021-06-04 Thread Mohammad Rahmani
> > 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 P

[tw5] Re: Issue with PrintRiver plugin

2021-06-04 Thread BurningTreeC
Hi there, sorry that I've seen this post so late I'll definitively update the PrintRiver plugin and keep it up to date in the future I need some time for that, but maybe the next week or the week after it could be ready Best wishes, BTC steph@gmail.com schrieb am Freitag, 4. Juni 2021 um

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!

[tw5] Re: Issue with PrintRiver plugin

2021-06-04 Thread Steph Butera
I'd like t bump this too -- PrintRiver looked like a great plugin solution to an important problem! On Tuesday, May 25, 2021 at 10:34:04 PM UTC-4 R² wrote: > Hi all, > > Bumping this up as I have the same issue as S². Has anyone found a way > forward or knows how to contact BurningTreeC (as he

Re: [tw5] Printing A Tiddler

2021-06-04 Thread Steph Butera
For me, the "Toolbar > More > Open tiddler in new window" opens a new window that is completely blank. I'm hoping the PrintRiver add-on, or some other add-on solution, will be developed by one of this kind souls in this community! Steph On Thursday, June 3, 2021 at 9:10:38 AM UTC-4 jonligh...

[tw5] Re: Create tiddler with tags from variable

2021-06-04 Thread Mat
iamdar...@gmail.com wrote: > 1) Why am I tagging the Tiddler that has the code with /tags/EditTemplate > and not core/ui/EditTemplate as the others are listed when I'm reordering > the tags? > The $:/tags/EditTemplate is the common tag for all edittemplates. When you click that tag you see all

[tw5] Re: Is there a way to automatically save changes on TiddlyWiki?

2021-06-04 Thread Charlie Veniot
Oh, no worries. I've been busy lately and not paying much attention to the conversations here. I store all of my TiddlyWiki instances in Google Drive. (Aside: I work on the files there and when a file is ready for me to share with the world, if I share that file with the world, I then copy t

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

2021-06-04 Thread Mohammad Rahmani
<$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

[tw5] Re: TiddlyWorldBuilder vs TiddlyRoam

2021-06-04 Thread David Gifford
There is no right answer, there is only the way that feels right to you and gives you a fast, non-tedious, enjoyable workflow based on how your mind works, which may be different from mine. The more you experiment, the more options you will find. The "usual" way in TiddlyWiki is tagging a tiddl

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 ge

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

2021-06-04 Thread Mohammad Rahmani
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" >

Re: [tw5] HttpPlatformHandler 404

2021-06-04 Thread Nathan Hindle
Hi Jeremy, Thank you again for the swift response! ooo, I didn't notice that Twitter article when I was doing some digging. Thank you for providing it Ill keep an eye out on that thread Many thanks again for your assistance, Nathan On Fri, 4 Jun 2021 at 10:17, Jeremy Ruston wrote: > Hi Nath

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

2021-06-04 Thread Mohammad Rahmani
Also what do you mean by this: <$list filter="[tags*:warning*[]]" variable=warning-value> do you mean <$list filter="[tags[]]" variable=warning-value> I have not seen tags that can accept modifiers! Best wishes Mohammad On Fri, Jun 4, 2021 at 2:11 PM vinvi...@gmail.com wrote: > Hello, >

Re: [tw5] Re: German documentation / deutsche Dokumentation

2021-06-04 Thread PMario
On Friday, June 4, 2021 at 1:00:45 PM UTC+2 PMario wrote: > Ich möchte die "user macros" _fbb/ ... so weit wie möglich reduzieren und > die $:/editions/tw5.com/doc-macros > > > übersetzen, wenn nö

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

2021-06-04 Thread Mohammad Rahmani
The below modified code answers your questions 1 and 2. <$list filter="[tags:warning[]]" 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

Re: [tw5] Re: German documentation / deutsche Dokumentation

2021-06-04 Thread PMario
On Thursday, June 3, 2021 at 12:21:54 AM UTC+2 f.brunsb...@gmail.com wrote: Auf dem üblichen Platz (https://fbb.uber.space/otherprj/TiddlyWiki-Doku.html) > habe ich die neue Version hochgeladen. > Die geänderten Tiddler stelle ich hier >

[tw5] Re: [Tutorial] running your own Node.js TW5 on Microsoft Azure for Free

2021-06-04 Thread Stobot
Thanks for this Tony K - I tried to follow this and it ended up not working, but I didn't really need it to work as I have other save options - was just playing, but sounds like a good option. BUT - since Tones mentioned BOB, I wanted to check if anyone somehow got BOB (i.e. MultiUser) working

Re: [tw5] Re: German documentation / deutsche Dokumentation

2021-06-04 Thread PMario
On Thursday, May 20, 2021 at 8:57:15 PM UTC+2 f.brunsb...@gmail.com wrote: > * Welche OS verwendest Du? ... Ich kann eine Beschreibung oder ein Video > zusammen stellen, das zeigt wie man mit nodejs und GitHub arbeiten kann* > Ich arbeite mit Linux. > Welche distro? > Mit Node.js hab ich auc

Re: [tw5] Re: Is there a way to automatically save changes on TiddlyWiki?

2021-06-04 Thread PMario
On Friday, June 4, 2021 at 9:13:12 AM UTC+2 arlandri...@gmail.com wrote: > Another reason why I would like to be as safe as possible using TiddlyWiki > is because sometimes it happens that I want to modifiy a tiddler and the > whole tiddler's component disappears... What do you mean with "tid

[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-secon

Re: [tw5] HttpPlatformHandler 404

2021-06-04 Thread Jeremy Ruston
Hi Nathan, I can confirm that I am no longer able to access https://www.iis.net/downloads/microsoft/httpplatformhandler (For me, it’s timing out rather than a 404) > It looks like this is happening for everyone now: > Cannot download HttpPlatformHandler anymore - Microsoft Q&A >

Re: [tw5] HttpPlatformHandler 404

2021-06-04 Thread Nathan Hindle
Hi Jeremy, Thank you for the reply It looks like this is happening for everyone now: Cannot download HttpPlatformHandler anymore - Microsoft Q&A If you click on any of the download links

Re: [tw5] Re: Is there a way to automatically save changes on TiddlyWiki?

2021-06-04 Thread Alessandra Carnevale
Another reason why I would like to be as safe as possible using TiddlyWiki is because sometimes it happens that I want to modifiy a tiddler and the whole tiddler's component disappears... If I didn't save the original document on Google docs I would have lost all the material on which I have wo