[tw5] Re: Import Tiddlers without clicking-and-dragging?

2020-05-17 Thread TonyM
Importing .tid or .json files containing tiddler(s) As per Reet Or use the Page Control Buttons > import to select the tid file or json file and import. Dragging and dropping plugins is not always correct on node/server versions. The untitled tiddler usually appears if you ctrl-ins or ctrl-v

[tw5] Re: How can I change css attributes once a button is pressed?

2020-05-17 Thread Mat
Another approach would be to create a stylesheet tiddler with all the to-be-invidible classes defined, i.e tags: $:/tags/Stylesheet type: text/css text: .class1, .class2, .class3, . { display:none; } And then use a button to toggle the "$:/tags/Stylesheet"-tag on this stylesheet:

[tw5] Re: How can I change css attributes once a button is pressed?

2020-05-17 Thread Jakob
This is really clever. Thanks a lot! Am Sonntag, 17. Mai 2020 10:07:36 UTC+2 schrieb BurningTreeC: > > Hi Jakob, > > you could create a toggle button like this: > > <$button><$list filter="[[$:/state/invisible]is[missing]] > [{$:/state/invisible}match[show]] " emptyMessage=""" >

[tw5] Re: TW5 home button?

2020-05-17 Thread 'Jakob Schwichtenberg' via TiddlyWiki
Where do I need to add this code Home to make the home button work? Simply putting it into a tiddler yields a button that does nothing. Am Sonntag, 3. November 2013 22:23:58 UTC+1 schrieb David Gifford: > > Any way to do a home button for TW5? That is, when you click on the > SiteTitle, all

[tw5] Re: Import Tiddlers without clicking-and-dragging?

2020-05-17 Thread Reet Pandher
Export the desired tiddler to a .json file and drag and drop the .json file into the wiki. On Sunday, May 17, 2020 at 10:36:41 AM UTC+5:30, Vaughn Papenhausen wrote: > > While trying to install a couple of plugins, I discovered that dragging > tiddlers to a wiki doesn't work as expected in

[tw5] Re: [Question] can I split a tiddler by lines?

2020-05-17 Thread TonyM
Tony K, I have not seen an answer to your second question, however I too would be keen to know, I wonder if we can use a html or css entity for new line? Or ascii or something. LF 10 line feed CR 13 carriage return Tony On Sunday, 17 May 2020 14:14:05 UTC+10, Tony K wrote: > > oh thank you

[tw5] Re: How can I change css attributes once a button is pressed?

2020-05-17 Thread BurningTreeC
Hi Jakob, you could create a toggle button like this: <$button><$list filter="[[$:/state/invisible]is[missing]] [{$:/state/invisible}match[show]] " emptyMessage=""" <$action-setfield $tiddler="$:/state/invisible" text="show"/>SHOW """> <$action-setfield $tiddler="$:/state/invisible"

[tw5] Re: TW5 home button?

2020-05-17 Thread Birthe C
Jakob, In the sidebar the tools tab you can find a home button. Check to show. Clicking the button will open your default tiddlers. Birthe -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] How can I change css attributes once a button is pressed?

2020-05-17 Thread 'Jakob Schwichtenberg' via TiddlyWiki
I want to include a simple button that controls certain css aspects. For example, when the button is clicked, all elements with a specific css class should be made invisible or visble. How is this possible in TiddlyWiki? Using standard JavaScript I would add a html button: Toggle Elements

[tw5] Re: TW5 home button?

2020-05-17 Thread PMario
hi, Because of security reasons TW doesn't allow to execute js code like thils. htm code will be sanitized, -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 it, send an email to

[tw5] Re: TW5 home button?

2020-05-17 Thread Mat
Jakob that code doesn't work because it is javascript which is disabled in TW. Instead, you'd use a ButtonWidget and ActionNavigateWidget like described here . Instead of hard coding titles there could be a ListWidget inside the button

[tw5] Re: TW5: just a <> search box

2020-05-17 Thread Geoff Tothill
Hi Jed / Dave, Sorry to resurrect this old thread, but its in regard to your code that allows a search box to be placed in a tiddler, which is very useful. I have installed your macro and all works as expected except for the number of matches indicator. I'm assuming it takes its value from

[tw5] Re: [Presenting]: STROLL official rollout!

2020-05-17 Thread Reet Pandher
*[[Feature Request]]* If possible please add a collapse button for *Highlights in Context* option. 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

[tw5] Re: [Plugin] Daily Notes - Interstitial Journaling plugin TiddilyWiki

2020-05-17 Thread Riz
Hi, links to demo seems dead? -- 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

[tw5] Re: Errors when importing tiddlers

2020-05-17 Thread Jed Carty
Do the imported tiddlers have a field or _canonical_uri field? What you are describing is what happens when you import media files that get saved on the server. I am not sure what else would cause that. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] Re: [question] multi-value index DataTiddler

2020-05-17 Thread 'Mark S.' via TiddlyWiki
The datatiddler tools we're given only go one level deep. So to encode more than one thing per index you'd need to perhaps pack everything into a string with a designated separator, and then unpack it later as needed. But in reality, if you find that you're needing to put lots of stuff into a

Re: [tw5] Re: Export All

2020-05-17 Thread john mcginnis
Lumos, Your suggestion worked perfectly. Thanks! John McGinnis On Sun, May 17, 2020 at 11:10 AM Lumos wrote: > Hey John, > > Whenever you export using advanced search with a filter expression, the > order of the tiddlers in the resulting static page will match the order > shown as search

[tw5] Re: TW5: just a <> search box

2020-05-17 Thread Mat
Geoff Tothill wrote: > > I made the change and this seems to give me 1 as the count despite the > number of actual results returned :-( > Doing this on tiddlywiki.com I get the result *17*: title: foo text: important title: test text: \define aaa() <$set name="resultCount" value={{{

Re: [tw5] Re: TW5 home button?

2020-05-17 Thread David Gifford
Ho Jakob, I don't know where you got that home button, but it has tw- prefixes, which years ago were changed to tc- prefixes. So it is probably just a really old button. Try inserting {{$:/core/ui/Buttons/home }} On Sun, May 17,

Re: [tw5] Re: [Presenting]: STROLL official rollout!

2020-05-17 Thread Nick
I fixed this by starting with empty node TW5, drag+drop Stroll from giffmex, drag and drop 4 bits of TiddlyMap. Then go to More > Shadow tiddlers > *$:/plugins/felixhayashi/tiddlymap/hook/editor* and click to open it. Edit it, and add \define lingo-base() $:/language/ThemeTweaks/ <$select

[tw5] Re: Export All

2020-05-17 Thread Lumos
Hey John, Whenever you export using advanced search with a filter expression, the order of the tiddlers in the resulting static page will match the order shown as search results. To order a small number of tiddlers in a specific manner, you can feed them as separate lists: [[Introduction]]

[tw5] Re: [question] multi-value index DataTiddler

2020-05-17 Thread Tony K
Thank you Mark for always answering me :) I am not really talking about "multi-level" but rather "multi-value" I am looking at them as a way to manage lists instead of fields e.g list1: item1-item2-iteme etc... On Sunday, May 17, 2020 at 7:16:23 PM UTC+3, Mark S. wrote: > > The datatiddler

[tw5] Re: TW5: just a <> search box

2020-05-17 Thread Geoff Tothill
Thanks Matt, Much appreciated. My mistake somewhere. I will revisit this afternoon. Have a good afternoon, Geoff. On Sunday, May 17, 2020 at 1:25:18 PM UTC+1, Mat wrote: > > Geoff Tothill wrote: >> >> I made the change and this seems to give me 1 as the count despite the >> number of actual

[tw5] [newbie] Setting up sync/saving

2020-05-17 Thread Flan Mou
Hi all, Aspiring Roam refugee here, trying to get started with TiddlyWiki and specifically Stroll. I'm a bit confused with my sync and saving options. My use case is that I need sync between computers (and mobile). I managed to set up to push to Github repo and that works. When I hit the

[tw5] List filter needed

2020-05-17 Thread David Gifford
Hi all What list filter would I use to produce a list of tiddlers with no links in them? -- 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: [Presenting]: STROLL official rollout!

2020-05-17 Thread Nick
Loving Stroll + TiddlyMap. I would really like to use Codemirror and Markdown, but then I apparently lose the link autocompletion - or has someone found a way of making all this work? Thanks Nick On Thursday, 7 May 2020 16:04:17 UTC+1, David Gifford wrote: > > Hi everyone > > Stroll is a

[tw5] [question] multi-value index DataTiddler

2020-05-17 Thread Tony K
is there a way to save a list in a DataTiddler? and to add/remove elements to that list? it might be an obvious question but I didn't figure it out thanks for the help -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw5] Re: Workflow and files to automatically create new tiddlers in response to new files: A reference management example

2020-05-17 Thread Rahul Kashyap
Hello everyone, @Diego: I wasn't aware of your script but, came up with another using python -- https://github.com/rahulkashyap411/tw_scripts.git It also contains a link to the tiddler and a hidden note section where you can store your

[tw5] Re: [Plugin] Daily Notes - Interstitial Journaling plugin TiddilyWiki

2020-05-17 Thread Tony K
fixed thanks for letting me know On Sunday, May 17, 2020 at 5:22:52 PM UTC+3, Riz wrote: > > Hi, links to demo seems dead? -- 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

[tw5] Re: TW5: just a <> search box

2020-05-17 Thread Mat
Geoff Since that was written, new filter ops have been added, including the count[] filter op. I think the following should work: <$set name="resultCount" value={{{ > [!is[system]search{$(searchTiddler)$}count[]] }}} > > <:-) > -- You received this message because you are subscribed to the

[tw5] reference Manager usage

2020-05-17 Thread Sinan Caliskan
Hi there i am new to *TiddlyWiki. * *My aim is to save my notes on **TiddlyWiki. And then write my articles (like on word or libreoffice ) on **TiddlyWiki. I am using zotero. I installed refnote plugin, find macro. Textsclice plugin . But i dont know how to use them. Is there any video or

[tw5] Re: TW5: just a <> search box

2020-05-17 Thread Geoff Tothill
Thanks Matt, I made the change and this seems to give me 1 as the count despite the number of actual results returned :-( Thanks for looking that this, G On Sunday, May 17, 2020 at 11:58:36 AM UTC+1, Mat wrote: > > Geoff > > Since that was written, new filter ops have been added, including

Re: [tw5] Re: TW5 home button?

2020-05-17 Thread Birthe C
WidgetMessage: tm-home -- 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] Re: [Presenting]: STROLL official rollout!

2020-05-17 Thread David Gifford
oops, sorry I forgot to delete my email signature section before hitting send, I know some people get offended by that. On Sun, May 17, 2020 at 9:15 AM David Gifford wrote: > Okay, I will add that next week. Good suggestion, thanks! > > David Gifford > Mexico team leader, Mexico City > >

Re: [tw5] Re: [Presenting]: STROLL official rollout!

2020-05-17 Thread David Gifford
Yes, see https://giffmex.org/stroll/stroll.html, new Troubleshooting tab. On Sun, May 17, 2020 at 9:34 AM Nick wrote: > Loving Stroll + TiddlyMap. I would really like to use Codemirror and > Markdown, but then I apparently lose the link autocompletion - or has > someone found a way of making

[tw5] Re: List filter needed

2020-05-17 Thread 'Mark S.' via TiddlyWiki
Since there's no "haslink" operator, I don't think it can be done with just a simple filter. Here's what seems to work: \define unlinked-tiddlers() <$vars lb="" rb=""> <$list filter="[all[tiddlers]]"> <$list filter="[all[current]links[]limit[1]]" variable="dummy" emptyMessage ={{{

[tw5] Re: [Question] Is there a way to limit number of backup files with TiddlyDesktop?

2020-05-17 Thread Boris Kalinin
Thank you very much, Reet! воскресенье, 17 мая 2020 г., 7:52:29 UTC+5 пользователь Reet Pandher написал: > > I don't think it'll be added. > Read an old comment from the dev here: > https://github.com/Jermolene/TiddlyDesktop/issues/58#issuecomment-103140483 > > You will have to manage it

Re: [tw5] Re: [Presenting]: STROLL official rollout!

2020-05-17 Thread David Gifford
Okay, I will add that next week. Good suggestion, thanks! David Gifford Mexico team leader, Mexico City *Resonate Global Mission* *Engaging People. Embracing Christ.* A Ministry of the Christian Reformed Church resonateglobalmission.org On Sun, May 17, 2020 at 9:14 AM Reet Pandher wrote: >

[tw5] Re: [Presenting]: STROLL official rollout!

2020-05-17 Thread Saq Imtiaz
@Nick: this in conjunction with the Codemirror and Markdown plugins might do the trick: https://groups.google.com/d/msg/tiddlywikidev/UdkxNiqJ-mA/rD4KWSn4AwAJ On Sunday, May 17, 2020 at 4:34:25 PM UTC+2, Nick wrote: > > Loving Stroll + TiddlyMap. I would really like to use Codemirror and >

[tw5] Re: Export All

2020-05-17 Thread john mcginnis
TonyM, The export all that I refer to is located on the sidebar 'Tools' tab. I have three tiddlers: Introduction Example Screens Exercise I want them in exactly that order when I use the 'export all' tool to a static html page. The export works fine but the static page output it is never in

[tw5] Re: Sticky titles get hidden by the menu bar plugin

2020-05-17 Thread Steven Schneider
Very helpful, thanks. Two questions: 1. How would I move the title to the very top of the tiddler, so that when scrolling there is no text scrolled above the tiddler title. 2. Why would I change this tiddler, when I am using a theme different than vanilla? I love the menubar, but it does

[tw5] Re: TiddlyWiki and Git

2020-05-17 Thread Rahul Kashyap
Hi Diego, I have seen exactly same implementation of TW but, only for single-user mode. Unfortunately, I can't find it again. Does anyone know if it has been removed or, was just an implementation in older TW. Best, -Rahul On Thursday, December 7, 2017 at 6:16:13 PM UTC-5, Diego Mesa

[tw5] Re: [Question] can I split a tiddler by lines?

2020-05-17 Thread Tony K
Thanks Tony I really wish someone can shed light on 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

[tw5] Re: [question] multi-value index DataTiddler

2020-05-17 Thread 'Mark S.' via TiddlyWiki
You can use the action-listops widget. So if you have a data tiddler "MyDataTiddler" set up, you can use this: <$button> <$action-listops $tiddler="MyDataTiddler" $index="myindex" $subfilter="[list[$:/StoryList]]"/> Add Items Be aware that if you don't set MyDataTiddler in advance,

[tw5] Flatten a nested list?

2020-05-17 Thread Mat
I want a flat list of all the tiddlers in the inner list so I can pick out a title with e.g nth[3]. How? The following doesn't work but illustrates the problem: \define all() <$list filter="[tag[foo]]"> <$list filter="[tag{!!title}]"> \end <$set name=a value=<>> {{{ [enlistnth[3]] }}}

[tw5] Question on "sort by date"

2020-05-17 Thread 'BirgitB' via TiddlyWiki
Hi there, I am new to this group and let me warn you right away: My coding skills are limited to copying code somebody tells me to use. I can read and understand HTML and CSS to a certain extent, but that's all. I started using TiddlyWiki about 3 weeks ago and I am really impressed by this

Re: [tw5] Re: List filter needed

2020-05-17 Thread David Gifford
Don't assume anything...what I need is for making sure I have added links to parent categories in all topic tiddlers, in my personal system. So I need a list of tiddlers with no links in them in the text field. On Sun, May 17, 2020, 1:19 PM Mat wrote: > Mark S. wrote: >> >> How do you get ??

[tw5] Re: Question on "sort by date"

2020-05-17 Thread 'BirgitB' via TiddlyWiki
Thank you, Riz, inspired by your suggestions I found this information: https://tiddlywiki.com/prerelease/static/How%2520to%2520change%2520the%2520sort%2520order%2520of%2520sub-branches%2520in%2520a%2520TOC%2520macro.html How to change the sort order of sub-branches in a TOC macro Unfortunately,

[tw5] Re: Don't call attention to TWC

2020-05-17 Thread Mat
Thanks for reply guys. Alfonso Arciniega wrote: > > plugins that don't exist in TW5 (again, so far). > Which ones, if you don't mind me asking? Magnus wrote: > TiddlyLockPlugin :) I had never heard of this but found it directly with google. Interesting but I'm pretty sure Bob features this.

Re: [tw5] Re: List filter needed

2020-05-17 Thread David Gifford
And thanks Mark, I will try your solution in a little while. On Sun, May 17, 2020, 2:23 PM David Gifford wrote: > Don't assume anything...what I need is for making sure I have added links > to parent categories in all topic tiddlers, in my personal system. So I > need a list of tiddlers with no

[tw5] Re: List filter needed

2020-05-17 Thread 'Mark S.' via TiddlyWiki
That would be, "All tiddlers with no backlinks to them." So I guess the question is what the question is. On Sunday, May 17, 2020 at 11:19:47 AM UTC-7, Mat wrote: > > Mark S. wrote: >> >> How do you get ?? >> > > My assumption is that David wants all titles that are not backlinks > (whatever

[tw5] Question on "sort by date"

2020-05-17 Thread Riz
There is no out of the box way to do this. Pat best someone could write a macro that will be a workaround, or a JavaScript filter specifically for this purpose. If you have only started, shifting the naming scheme to -MM-DD would be a good idea. If you don't want to do that, you can

[tw5] Re: [Presenting]: STROLL official rollout!

2020-05-17 Thread Nick
Thanks this works really well. On Sunday, 17 May 2020 15:36:51 UTC+1, Saq Imtiaz wrote: > > @Nick: this in conjunction with the Codemirror and Markdown plugins might > do the trick: > https://groups.google.com/d/msg/tiddlywikidev/UdkxNiqJ-mA/rD4KWSn4AwAJ > > > > On Sunday, May 17, 2020 at

[tw5] Re: Flatten a nested list?

2020-05-17 Thread Mat
Mark S. wrote: > > Possibly by using some form of Wikify instead of Set. > Thanks. I tried that but it removes the brackets from titles with spaces so they're not identifiable anymore... I can imagine it would be possible with something that adds brackets as prefixes and suffixes but it's just

[tw5] Re: List filter needed

2020-05-17 Thread 'Mark S.' via TiddlyWiki
How do you get ?? On Sunday, May 17, 2020 at 10:18:37 AM UTC-7, Mat wrote: > > I don't quite understand Marks solution so maybe that one is better, or > just maybe it is exactly what I'm proposing here: I'd think the easier > strategy would be to filter *all *tiddlers and then remove the ones

[tw5] Re: Don't call attention to TWC

2020-05-17 Thread Alfonso Arciniega
Hi Mat, One reason: I have several TWC's that cannot be upgraded/transferred/modified to, to TW5 (so far). These are highly functional/highly customized with plugins that don't exist in TW5 (again, so far). Let's go to an analogy: TWC is like a very good small car while TW5 is like a sports

[tw5] Re: List filter needed

2020-05-17 Thread si
I think this is what Mat was getting at: <$list filter="[all[tiddlers]] -[all[tiddlers]backlinks[]]"> <> On Sunday, 17 May 2020 14:52:31 UTC+1, David Gifford wrote: > > Hi all > > What list filter would I use to produce a list of tiddlers with no links > in them? > -- You received this

[tw5] Re: Don't call attention to TWC

2020-05-17 Thread Magnus
> > Before I pass on to the other side, please tell me... why would you want > to use TWC instead of TW5 other than the argument that it would be messy to > convert it? What about the defective cars > ? > TiddlyLockPlugin

[tw5] Re: List filter needed

2020-05-17 Thread Mat
I don't quite understand Marks solution so maybe that one is better, or just maybe it is exactly what I'm proposing here: I'd think the easier strategy would be to filter *all *tiddlers and then remove the ones that *do *have links to them. I believe you've solved the latter in your previous

[tw5] Re: [Question] can I split a tiddler by lines?

2020-05-17 Thread 'Mark S.' via TiddlyWiki
I don't think it is possible with the current operators and widgets. I think it would take a javascript macro to do the substitution. On Saturday, May 16, 2020 at 9:14:05 PM UTC-7, Tony K wrote: > > oh thank you Mark, I should have asked days ago > > a follow-up question please, is there a way

[tw5] Re: List filter needed

2020-05-17 Thread Mat
Mark S. wrote: > > How do you get ?? > My assumption is that David wants all titles that are not backlinks (whatever is included in that term), and I believe he has solved how to get all backlinks. So I just mean "all tiddlers minus all backlinks". Maybe I misunderstood. <:-) -- You

Re: [tw5] Re: List filter needed

2020-05-17 Thread David Gifford
Ah, now I understand. I was thinking backwards. Thanks! On Sun, May 17, 2020, 3:27 PM si wrote: > I believe Mat is correct here. Backlinks are just tiddlers that link to a > particular tiddler. If you return the backlinks for *all* tiddlers, you > just get every tiddler that contains a link. >

[tw5] Re: Question on "sort by date"

2020-05-17 Thread Mat
I agree with Riz; it would be much better if you changed your naming convention. It is *possible *to create a custom solution for it but it is just not a good idea because it would either be overly complicated or, if solved more lazily, it would be error prone. It is problematic to identify

[tw5] Re: Flatten a nested list?

2020-05-17 Thread 'Mark S.' via TiddlyWiki
Possibly by using some form of Wikify instead of Set. On Sunday, May 17, 2020 at 11:17:22 AM UTC-7, Mat wrote: > > I want a flat list of all the tiddlers in the inner list so I can pick out > a title with e.g nth[3]. How? > The following doesn't work but illustrates the problem: > > \define

[tw5] Re: Block Quote changes

2020-05-17 Thread Martin Griewel
Hi, thank you for the link to the documentation of the intended change. I will fix my Stylesheet now to show the same result with as with before. Regards Martin Am Samstag, 16. Mai 2020 18:00:50 UTC+2 schrieb PMario: > > Hi > > > test > > creates > > <<< > test > <<< > > creates a > >

[tw5] Re: [question] multi-value index DataTiddler

2020-05-17 Thread Tony K
interesting Now I need to figure out how to retrieve it as a list On Sunday, May 17, 2020 at 8:59:18 PM UTC+3, Mark S. wrote: > > You can use the action-listops widget. > > So if you have a data tiddler "MyDataTiddler" set up, you can use this: > > <$button> > <$action-listops

[tw5] Re: Import Tiddlers without clicking-and-dragging?

2020-05-17 Thread Vaughn Papenhausen
Thanks both of you! That worked like a charm On Sunday, May 17, 2020 at 2:26:46 AM UTC-4, TonyM wrote: > > Importing .tid or .json files containing tiddler(s) > > As per Reet Or use the Page Control Buttons > import to select the tid > file or json file and import. > > Dragging and dropping

[tw5] Re: List filter needed

2020-05-17 Thread si
I believe Mat is correct here. Backlinks are just tiddlers that link to a particular tiddler. If you return the backlinks for *all* tiddlers, you just get every tiddler that contains a link. [all[tiddlers]] -[all[tiddlers]backlinks[]] = all tiddlers that are not backlinks = all tiddlers that

[tw5] Re: [Plugin] TWCrossLinks

2020-05-17 Thread Scott Kingery
Hi Tony, I'm still thinking this through. Your UI is a good solution and probably better than lumping it all together. It is really all about how you organize your wiki. I've been using tags and table-of-contents to organize my notes. Coming from Evernote or OneNote or even paper you have that

[tw5] Re: Don't call attention to TWC

2020-05-17 Thread Magnus
Yes, that is not possible, the IT-guys (and women) won´t allow it :D Den söndag 17 maj 2020 kl. 23:18:54 UTC+2 skrev Mat: > > Thanks for reply guys. > > Alfonso Arciniega wrote: >> >> plugins that don't exist in TW5 (again, so far). >> > > Which ones, if you don't mind me asking? > > Magnus

[tw5] Re: Redesign of TiddlyWiki

2020-05-17 Thread Riz
Status? -- 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

[tw5] Re: Rethinking tiddlywiki.com

2020-05-17 Thread Reet Pandher
I am completely new to TiddlyWiki and i would like to share my experience on accessibility of TW to the general non-coder populace. If it wasn't for this guy's tutorials i would have never gotten into TiddlyWiki. I tried

[tw5] Re: Question on "sort by date"

2020-05-17 Thread TonyM
I would suggest using a separate independent and full date field (Serial). If you know you will want to sort by dd.mm (very strange to me) then at the time you create the tiddler, accept the value of new date field and simultaneously add dd.mm to another field by which to sort in the future.

[tw5] Re: [question] multi-value index DataTiddler

2020-05-17 Thread TonyM
Tony K First retrieve is as record via index then enlist it to extract the titles. Tony On Monday, May 18, 2020 at 4:07:10 AM UTC+10, Tony K wrote: > > interesting > > Now I need to figure out how to retrieve it as a list > > On Sunday, May 17, 2020 at 8:59:18 PM UTC+3, Mark S. wrote: >>

Re: [tw5] Re: List filter needed

2020-05-17 Thread David Gifford
Thanks everyone...and then when I went to implement, I found that I had already done it (or found it) recently, but had forgotten already, and hadn't made the solution very visible in my wiki. Sorry to waste your time! Here is what I had: <$list filter="[!is[system]sort[title]]"> <$list

[tw5] Re: [Plugin] TWCrossLinks

2020-05-17 Thread Scott Kingery
Actually, the performance is ok. I rebuilt my wiki and it seems better. I think it might have been some extra code in there. After testing for a bit I did make a small change to the freelinks tab code. I was seeing results where the word wasn't necessarily by itself it would return in results.

[tw5] Re: [Question] can I split a tiddler by lines?

2020-05-17 Thread TonyM
Mark, Yes perhaps this is true, but the current edit widgets, and the core editor all accept the and imbed line feed in text area fields. Somehow we need to get this to occur in demand, I wonder if a regex could extract it from a known tiddler an store it in a variable we can append later?

[tw5] Re: [Question] can I split a tiddler by lines?

2020-05-17 Thread Eric Shulman
On Saturday, May 16, 2020 at 1:38:03 PM UTC-7, Tony K wrote: > > I'm unable to find the delimiter equivalent to \n in TW5 > > Assuming I have a tiddler and I want to parse it line by line. Is it > doable? > Here's a little example: <$vars lf=" "> line count=<$count

[tw5] Re: Tiddlyshow v3.0 beta 2: Major improvement

2020-05-17 Thread springer
Mohammad and all, Reviving an old thread here about Tiddlyshow (such great things floating around!). Wondering whether there is (or could be) any mechanism to enable Tiddlyshow to advance automatically through a (large, filter-based) set of tiddlers, and to embed audio files into each

Re: [tw5] Re: List filter needed

2020-05-17 Thread TonyM
David, Reflecting on this thread, I was thinking are you looking for tiddlers that are not "referenced" in your wiki; I thought perhaps a more general test may be; [all[tiddlers]] -[all[tiddlers]links[]] But then looking at my own reference wiki I could even *exclude tiddlers that have tags*

[tw5] Re: Flatten a nested list?

2020-05-17 Thread Eric Shulman
On Sunday, May 17, 2020 at 3:59:16 PM UTC-7, TonyM wrote: > > I expect Eric or Jeremy could answer this in a moment but the fact we > three, Mat, Mark S and TonyM struggle with it for get newby's > > On Monday, 18 May 2020 07:38:33 UTC+10, Mat wrote: > >> Mark S. wrote: >>> >>> Possibly by

[tw5] Question for long time TiddlyWiki users

2020-05-17 Thread Reet Pandher
Have you tried the encryption feature of the tiddlywiki? If yes then has it been reliable for you? Reliable as in Has it caused any sort of corruption or loss of data even when you know your password? Does it work properly even when you have large amounts of data stored in it? Thanks! -- You

[tw5] Re: Flatten a nested list?

2020-05-17 Thread TonyM
Mat, In this case I may be tempted to use the kin filter as it is in part designed for this situation. I have played with wikify and the set widgets select parameter with no answer so far, but I have a clear memory of a solution to this. I will continue to investigate. However I will add

[tw5] Tiddlyshow (or similar) with timed auto advance among large set of tiddlers?

2020-05-17 Thread springer
Another clue as to how to auto-advance a TW audio-visual slideshow might be here: http://vertical.tiddlyspot.com/ -- a link that came up in these forums around TalkyTalk (

Re: [tw5] Re: Don't call attention to TWC

2020-05-17 Thread 'Peter Buyze' via TiddlyWiki
@Magnus: so because some IT guys/gals in some company won't allow you to use what you could/should be using an obsolete version should be maintained and get attention? Wow. 18 May 2020, 01:18 by magnus.ev...@gmail.com: > Yes, that is not possible, the IT-guys (and women) won´t allow it :D > >

Re: [tw5] Re: Rethinking tiddlywiki.com

2020-05-17 Thread 'Peter Buyze' via TiddlyWiki
@ Reet: good point. I am also a newbie and the way I got started is also by running into those same guy's tutorials by accident too. A pity nobody made some follow-up ones. 18 May 2020, 06:05 by reet11pand...@gmail.com: > I am completely new to TiddlyWiki and i would like to share my

[tw5] Re: Tiddlyshow v3.0 beta 2: Major improvement

2020-05-17 Thread Mohammad
Hi Springer I am not sure if I can do it easily with Tiddlyshow easily as 1. there is no timer mechanism in TW (one solution may be using Jed Carty plugins) 2. there is no mechanism to find when the audio is finished to advance to next slide but I would be happy to release a new

[tw5] Re: [question] multi-value index DataTiddler

2020-05-17 Thread Tony K
Great thanks for the tip On Monday, May 18, 2020 at 2:33:22 AM UTC+3, TonyM wrote: > > Tony K > > First retrieve is as record via index then enlist it to extract the titles. > > Tony > > On Monday, May 18, 2020 at 4:07:10 AM UTC+10, Tony K wrote: >> >> interesting >> >> Now I need to figure

[tw5] Re: [Question] can I split a tiddler by lines?

2020-05-17 Thread Tony K
Eric this is genius it actually solves my second question :o) thank you On Monday, May 18, 2020 at 3:24:00 AM UTC+3, Eric Shulman wrote: > > On Saturday, May 16, 2020 at 1:38:03 PM UTC-7, Tony K wrote: >> >> I'm unable to find the delimiter equivalent to \n in TW5 >> >> Assuming I have a

Re: [tw5] Re: Don't call attention to TWC

2020-05-17 Thread Eric Shulman
On Sunday, May 17, 2020 at 9:10:33 PM UTC-7, Peter Buyze wrote: > > @Magnus: so because some IT guys/gals in some company won't allow you to > use what you could/should be using an obsolete version should be maintained > and get attention? Wow. > Peter: A few things for you to consider: *