[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread DemoniWaari
Yeah that's true, I completely forgot about that. In the end it's maybe one more keystroke extra, I wonder how hard it would be to make it so that when I tab to try and select the tiddler I want it would skip the two buttons on the right of the text field and straight go to the list below? That'

[tw5] JavaScript Macro Does Not Process Escape Characters Correctly

2019-03-04 Thread Mohammad
If in a browser console (FF and Chrome, press F12 and see the console) enter the below JavaScript code it will work a= "One" b="Two" s="\n" y=a + s +b then you get a="One" "One" b="Two" "Two" s="\n" " " a+s+b "One Two" Note the two line text in the output. That means the "\n" treated as a l

Re: [tw5] Re: Section Names using ID for internal Links

2019-03-04 Thread S. S.
Tony, Yes, I believe you are right. Having some method, limited though it may be, may be enough for most all needs. I imagine one only needs in-tiddler links for specific purposes, not for general use everywhere. Once a few dozen tiddlers are open, one is often beyond the normal use pattern of

[tw5] Re: CSV Import

2019-03-04 Thread SteveH
Hi there, I've just tried the unpacker. Firstly, I used CSV Export to export a couple of tiddlers, then dragged and dropped the CSV file, and imported it. Rather than end up with a couple of new tiddlers a new 'combined' tiddler was created. The plugin documentation says 'simply drag a vali

[tw5] Re: CSV Import

2019-03-04 Thread TonyM
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 post to this group, send email to tiddlywiki@googlegroups.com

[tw5] Re: CSV Import

2019-03-04 Thread Joshua Fontany
Evan built one a while back: https://evanbalster.com/tiddlywiki/csv_unpack.html On Monday, March 4, 2019 at 3:41:29 PM UTC-8, TonyM wrote: > > Folks, > > I note the addition of a CSV Parser in TW5.1.18 which includes the > csvtiddlers macro for exporting. > > Is there a new or existing method to

Re: [tw5] Re: Section Names using ID for internal Links

2019-03-04 Thread TonyM
S S, One day we may find the ultimate answer, perhaps with unique automatically generated IDs however as long as we place the instructions and caveats around it your method is likely to suite 80% of cases. Using tiddlers and lists and other methods is often sufficient, however in the case of m

Re: [tw5] Re: Section Names using ID for internal Links

2019-03-04 Thread S. S.
Hi Mario, Thanks for the feedback. I had forgotten to test the CTRL click on the links. I will mention that as a side effect. What is interesting in doing this is that it brings to light an issue not talked about before. Many have been asking for internal links within a tiddler, but we can see

Re: [tw5] Re: Section Names using ID for internal Links

2019-03-04 Thread S. S.
Thanks for the feedback Thomas. My primary interest when writing the tiddler was getting a draft copy of the documentation out. I did not do much testing, something that definitely needs to be done. I don't have easy access to many browsers or O/Ss. Still, I purposely crafted the 6 links at the

[tw5] CSV Import

2019-03-04 Thread TonyM
Folks, I note the addition of a CSV Parser in TW5.1.18 which includes the csvtiddlers macro for exporting. Is there a new or existing method to import csv files and generate tiddlers ? I know there is the excel handling tool but wondering if there is a simpler title - tiddler and all columns

[tw5] Re: The Trash bin idea

2019-03-04 Thread TonyM
Joshua, Decode sounds like good idea but can we use a variation of the import mechanisium to extract tiddlers because this can also handle overwrites. Regards Tony -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group a

[tw5] Re: The Trash bin idea

2019-03-04 Thread Joshua Fontany
This is an interesting idea, and one that users expect from their OS interactions. The [encodetiddler[]] filter from my JsonMangler plugin will allow you to store and retrieve full tiddlers in another Json data tiddler without having to change any of the tags, etc. As long as the target Json ti

[tw5] Re: Anybody experiencing a "fork" in Quine storage?

2019-03-04 Thread Alfonso Arciniega
JW, I have tested this issue using Quine / iPhone XS / MacOS High Sierra 10.13.6 / TiddlyDesktop 0.0.13. Quine is working fine to me. However, the issue you described could happen if you save your TW before you accept the changes in your tiddler. Make sure you accepted all changes in all your

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
Exactly right. On Monday, 4 March 2019 22:29:16 UTC+1, Mohammad wrote: > > Yes, I got it. I am experimenting to see how resolve the issue. > The same is true for tab character \t > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe fr

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread Mohammad
Yes, I got it. I am experimenting to see how resolve the issue. The same is true for tab character \t --Mohammad On Tuesday, March 5, 2019 at 12:48:57 AM UTC+3:30, @TiddlyTweeter wrote: > > Mohammad > > The issue is simply that we can get the MATCH well. But on REPLACE we > might need to INSERT

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
Mohammad The issue is simply that we can get the MATCH well. But on REPLACE we might need to INSERT additional things that MATCH did not find. Hope this is clear! Josiah On Monday, 4 March 2019 21:54:46 UTC+1, Mohammad wrote: > > Hi Josiah, > Seems it is true, have a look at > > https://www.r

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
Great site. Jan Goyvearts is one of my favourite programmers. He is the KING of Regular Expressions. On Monday, 4 March 2019 21:54:46 UTC+1, Mohammad wrote: > > Hi Josiah, > Seems it is true, have a look at > > https://www.regular-expressions.in

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread Mohammad
Hi Josiah, Seems it is true, have a look at https://www.regular-expressions.info/replacenonprint.html --Mohammad -- 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 t

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
The issue in the case is the Replace, not the Match. Its about ADDITIONAL INSERT of "\nl" that the JS won't natively provide Hope this is clear! Josiah On Monday, 4 March 2019 21:18:50 UTC+1, Mohammad wrote: > > Hello Josiah, > Thank you for your comments! > SNR2 simply use the JS replace func

[tw5] Re: The Trash bin idea

2019-03-04 Thread Mohammad
Hi Thomas, Good point! Yes, I think it works on all system tags like $:/tags/Macro. Thank you Mohammad On Monday, March 4, 2019 at 11:44:56 PM UTC+3:30, Thomas Elmiger wrote: > > Hi Mohammad > > Would renaming tags be an option? > > $:/tags/Stylesheet => $:/trash/$:/tags/Stylesheet > > Just a

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread Mohammad
Hello Josiah, Thank you for your comments! SNR2 simply use the JS replace function. So, everything is possible with JS replace theoretically should be possible with SNR2. By the way I will investigate the case! --Mohammad On Monday, March 4, 2019 at 11:06:10 PM UTC+3:30, @TiddlyTweeter wrote:

[tw5] Re: The Trash bin idea

2019-03-04 Thread Thomas Elmiger
Hi Mohammad Would renaming tags be an option? $:/tags/Stylesheet => $:/trash/$:/tags/Stylesheet Just a thought Thomas -- 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 e

Re: [tw5] Re: Section Names using ID for internal Links

2019-03-04 Thread Thomas Elmiger
Hi, is this tested on Android? On my phone, navigating to https://00ss.github.io/documentation/tiddlywiki.html#Internal%20Links%20using%20HTML and clicking the ID links does rarely lead to the right position in the document. (It did once, I think, but not reproduceable.) Android 9, Chrome/Oper

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
This is a footnote. Just FYI. Regular Expressions are one of the few things I understand well. So IF anything I write about them seems difficult to understand please ask for clarification. Best wishes Josiah -- You received this message because you are subscribed to the Google Groups "Tiddl

Re: [tw5] <$select> and Web accessibility

2019-03-04 Thread steve
Thanks, Jeremy. Will test and let you know, but it works on the pre-release site. I update our wiki and send it off to be inspected :) //steve. On Monday, March 4, 2019 at 7:25:44 AM UTC-5, Jeremy Ruston wrote: > > I think we really need to add a tooltip attribute to the <$select> widget. > I'll

[tw5] Re: Porting some nice palettes to tiddlywiki

2019-03-04 Thread Mohammad
Great Job BTC, I believe user interface (themes, pallets, UI elements) is an area of huge opportunity to work and develop. --Mohammad On Monday, March 4, 2019 at 8:29:36 PM UTC+3:30, BurningTreeC wrote: > > Hi there, > > I'm currently porting two/three color palettes to the tiddlywiki core,

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
An issue ... Take this case ... [image: {4FE0AE98-959D-41B0-AC8D-E1450D37143C}.png.jpg] This replaces tags with ```. The issue is to also add newlines before and after the backticks. As far as I can see the only way to get newlines into the replace pattern is via using a Capturing Group. Bu

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
Ciao Mohammad I have a few requests and comments. I'll write them in separate posts. First, can both the Search & Replace boxes be made a lot WIDER? Some regex get long! Best wishes Josiah -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To uns

[tw5] Porting some nice palettes to tiddlywiki

2019-03-04 Thread BurningTreeC
Hi there, I'm currently porting two/three color palettes to the tiddlywiki core, one is already on the current prerelease page (with some updates missing), it's called "Nord" - a pretty popular color-palette (https://github.com/arcticicestudio/nord) with themes available for codemirror and hig

[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread Watt
Nice! Thanks PMario. -- 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 post to this group, send email to tiddlywiki@googl

[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread PMario
Hi, If you open tiddlywiki.com, create a new tiddler and hit: -L for create link, you can start typing Hello and you'll probably get what you want. IMO no need for plugins. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

Re: [tw5] Re: Section Names using ID for internal Links

2019-03-04 Thread PMario
Hi, The biggest problem, I see, with this mechanism is, that anchor IDs must be unique. If you open a new tiddler and insert this: {{Section Names using ID for internal Links}} you'll have a problem. The whole anchoring thing is in an undefined state now. So if the user clicks a link it may

[tw5] Re: Quinoid 0.0.7alpha - Sharing. Auto-loading.

2019-03-04 Thread @TiddlyTweeter
Fully agree. I think the long-press is good. Re greying--it never occurred to me :-) Best wishes Josiah On Sunday, 3 March 2019 18:58:12 UTC+1, Mark S. wrote: > > The Brw and Clp give visual reminders of which items have been selected > for browsing or as clipboards. I greyed them out to indic

Re: [tw5] Re: Section Names using ID for internal Links

2019-03-04 Thread S. S.
In response to the Github Issue noted below, I have made a FIRST DRAFT of : Internal Links using HTML Attaching a reference copy here as well. Comments would be greatly appreciated. Thanks On Saturday, March 2

Re: [tw5] <$select> and Web accessibility

2019-03-04 Thread Jeremy Ruston
> I think we really need to add a tooltip attribute to the <$select> widget. > I'll look at it as soon as I can (unless any other developers want to have a > go at a PR?), I’ve added the “tooltip” attribute to the select widget: https://github.com/Jermolene/TiddlyWiki5/commit/477c41f84304ed8324

[tw5] Re: <$select> and Web accessibility

2019-03-04 Thread Thomas Elmiger
Hi all, My proposal would be to wrap the select in a *visible *label-tag: This select widget displays a list of the tags in this wiki <$select tiddler=<> default='HelloThere'> <$list filter='[all[shadows+tiddlers]tags[]sort[title]]'> >><$view field='title'/> Accessibility concerns: -

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread Mohammad
Hi Josiah Many thanks. I will upload a new update. I fixed the issue. I appreciate your time for evaluating the code and welcome your write up. Best Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and sto

[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread DemoniWaari
I need to check that out. Yeah it might not be but I'll take a gander around if there is a way. If not, then I might make a thread about it. Thanks. On Monday, March 4, 2019 at 1:51:08 PM UTC+2, Watt wrote: > > Mohammad's 'SNR:search and replace in tiddlers' might do it > retrospectively? I don

[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread Watt
Mohammad's 'SNR:search and replace in tiddlers' might do it retrospectively? I don't think autocomplete in the way you describe is currently available but they love a challenge on this forum. Maybe start a new thread? -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread DemoniWaari
PERFECT! Thank you, it was not nearly as complicated as I thought. On Monday, March 4, 2019 at 1:17:27 PM UTC+2, Watt wrote: > > Hi demon > > You're not alone in your code mirror confusion. This worked for me; > > Go to Control panel, plugins, get more plugins, open library (while > online), scro

[tw5] Re: SNR: Search and Replace in Tiddler Fields

2019-03-04 Thread @TiddlyTweeter
Ciao Mohammad I studied it more. You CAN use it to match > but you need the search entry to be wrapped in quote-marks. Similarly if you want to find double quote marks " you need to wrap them in quote marks of a different type. To make best use of this powerful tool I think it needs user instr

[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread Watt
Hi demon You're not alone in your code mirror confusion. This worked for me; Go to Control panel, plugins, get more plugins, open library (while online), scroll down and you'll see the basic code mirror plugin, which I assume you've installed already, and saved and reloaded your wiki. If you ha

[tw5] Re: Confused about CodeMirror plugins

2019-03-04 Thread PMario
Hi, You may try this edition. https://tiddlywiki.com/plugins/tiddlywiki/codemirror/ and start from there. -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 tidd

[tw5] Confused about CodeMirror plugins

2019-03-04 Thread DemoniWaari
So I noticed that the CodeMirror plugins would have an auto-completion feature which I would like to have. Unfortunately, I am lost on how to actually use it. In many releases the codemirror stuff is mentioned (e.g. 5.1.16 https://tiddlywiki.com/prerelease/static/Release%25205.1.16.html) but I

Re: [tw5] Re: <$select> and Web accessibility

2019-03-04 Thread Jeremy Ruston
I think we really need to add a tooltip attribute to the <$select> widget. I'll look at it as soon as I can (unless any other developers want to have a go at a PR?), Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 3 Mar 2019, at 23:23, st...@sunypoly.edu wr