Re: [tw5] How to do plugin translations

2019-05-13 Thread Flibbles
Your macro is definitely a solution to the problem. I'm just inquiring about what the ultimate solution will end up becoming. -Flibbles On Monday, May 13, 2019 at 12:44:54 AM UTC-4, SylvainComte wrote: > > Hello, > > You may find this thread on tiddlywikidev useful: > > https://gro

Re: [tw5] How to do plugin translations

2019-05-14 Thread Flibbles
, but the second makes more sense if you consider that plugin translations would be separate from the plugins, and it seems like it may be more appropriate for a final solution. -Flibbles On Tuesday, May 14, 2019 at 10:49:40 AM UTC-4, SylvainComte wrote: > > Just to be complete about this, see

Re: [tw5] How to do plugin translations

2019-05-12 Thread Flibbles
o sticking to coding conventions perfectly. Thanks, -Flibbles On Tuesday, November 20, 2018 at 4:36:35 AM UTC-5, Jeremy Ruston wrote: > > Hi Ilya > > I am completely lost with plugin translations. > > > The core doesn’t currently support translations for plugins, I’m afraid.

[tw5] Tiddlers starting with '+' or '-' might as well be illegal.

2019-07-09 Thread Flibbles
n they put that in the setting, it doesn't work, because the instructions don't mention that dashes would need to be wrapped. Tiddlywiki already prohibits brackets. Why not this too? -Flibbles -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" g

[tw5] Re: Tiddlers starting with '+' or '-' might as well be illegal.

2019-07-09 Thread Flibbles
UTC-4, TonyM wrote: > > Fibbles > > I think as a rule we try and keep the available characters we can use in > tittles as broad as possible. > > Any way, I will leave it to the developers to comment. > > Regards > Tony > > On Tuesday, July 9, 2019 at 5:37:12 PM

[tw5] Re: Tiddlers starting with '+' or '-' might as well be illegal.

2019-07-09 Thread Flibbles
gt; > On Tuesday, July 9, 2019 at 4:03:27 PM UTC+10, Flibbles wrote: >> >> I'm writing plugins, and for a while, I was working under the assumption >> that lists are just a subset of filters, which is super convenient in many >> cases. >> >> tiddlerA tid

[tw5] Re: [TW5] Improving tiddler renaming behaviour

2019-08-22 Thread Flibbles
@TonyM, I'm not sure what you mean for having a plugin for deleting tiddlers. If I have a tiddler with text: ``` Welcome to my project. Please be sure to visit the [[gift shop|Giftshop]]. ``` If I remove the tiddler "Giftshop", What does this become? On Wednesday, August 21, 2019 at 6:01:49 PM

[tw5] Re: Multi-value fields

2019-08-25 Thread Flibbles
What @TonyM said. Just store colors in a field as space separated, like: "red black brown". List and enlist can separate them out just fine. ``` <$list filter="[list[Cardinal!!colour]]" /> <$list filter="[enlist{Cardinal!!colour}]" /> ``` both output ``` red black brown ``` Values with a space

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-03 Thread Flibbles
, such as changing a list field title to `*title ]] with brackets*`). I'm concerned with making that space too crowded. But it may still be worth while. -Flibbles -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this grou

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-03 Thread Flibbles
On Sunday, September 1, 2019 at 7:27:19 PM UTC-7, Flibbles wrote: >> >> I present Relink <https://flibbles.github.io/tw5-relink/>! >> >> It relinks fields, links, WikiLinks, widgets, transclusions, lists, and >> filters. It's highly customizable, but it will als

[tw5] Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-01 Thread Flibbles
eature. It was *hard as crap*! There are so many edge cases! I'm sure more will still crop up. Demo page here <https://flibbles.github.io/tw5-relink/>. Source code here <https://github.com/flibbles/tw5-relink>. I would absolutely love to get some feedback. I really hope this helps

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-02 Thread Flibbles
I hope Relink works out for you. Let me know if you have any problems with it, and you should change your name. There aren't enough toy dogs in programming. -Flibbles On Monday, September 2, 2019 at 10:19:35 AM UTC-4, David Gifford wrote: > > I don't know what I like more, the awesome

[tw5] Re: [TW5] Improving tiddler renaming behaviour

2019-08-21 Thread Flibbles
For anyone who's interested in a more comprehensive way of renaming, I've published a plugin here: https://github.com/flibbles/tw5-relink This allows updating of specific syntax patterns in text, filters, as well as custom fields. And whether those fields are lists, filters, or singular

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-16 Thread Flibbles
r the user edits, so that plugins could introduce their own tiddlers to be exempt from relinking. Am I understanding you correctly? -Flibbles On Sunday, September 15, 2019 at 11:58:48 PM UTC-4, TonyM wrote: > > Fibbles, > > I was impressed with the potential of relink and received a

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-16 Thread Flibbles
ore likely say the solution would be to improve Relink's hackability, so we can make a mod for your specific case, but your case does sound super specific. (Or maybe it isn't. I haven't gotten much feedback from anyone yet.) -Flibbles -- You received this message because you are subscribed to

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-17 Thread Flibbles
or shouldn't work its magic. Although it does sound like you're working with a case where there are multiple users, and authorization schemes. If that's the case, I'll make sure Relink is hackable enough that your desired behavior is obtainable with a single system tiddler or so. -Flibbles On Monday

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-07 Thread Flibbles
$tiddler=<> /> Which is technically just making a new tiddler, and deleting another. Action-setfield doesn't call the renaming hooks. If it were instead, <$action-sendmessage $message="tm-rename-tiddler" from=<> to=<> /> Then it should all work together. -Fl

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-06 Thread Flibbles
Version 1.5 released. Macro parameter relinking is now supported. It comes with its own whitelist. (e.g. <> or <$macrocall $name=myMacro param="tiddlerNameToRelink" />) Now Relink can rename any kind of WikiText pattern. Also, bugfixes. -Flibbles On Sunday, September

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-07 Thread Flibbles
suggest making an issue in Kookma github page <https://github.com/kookma/TW-Commander> and copy and paste my last two posts. -Flibbles On Saturday, September 7, 2019 at 9:19:01 AM UTC-4, Mohammad wrote: > > Hi Flibbles > Thank you for update! > Yes, Tiddler Commander is a pure

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-07 Thread Flibbles
Hey @Mohammad, didn't realize you were Kookma. Does this not work? <$action-sendmessage $message="tm-rename-tiddler" from=<> to=<> /> This works for me. I posted that previously in the same response where I posted what lines would need to be changed. Perha

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-07 Thread Flibbles
No, it doesn't. It's a core feature <https://tiddlywiki.com/#%24%3A%2Fcore%2Fmodules%2Fwidgets%2Fnavigator.js>. -Flibbles On Saturday, September 7, 2019 at 11:03:39 AM UTC-4, Mohammad wrote: > > Hey Flibbles, > > No problem :-) > > So, does this new *tm-rename-tid

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-20 Thread Flibbles
Yes. This problem is coming from Relink. I was unaware that IE11 doesn't allow backtick syntax. I will have that fixed tomorrow. Too much to do tonight. Thank you for reporting this issue. I've created a bug report for it here <https://github.com/flibbles/tw5-relink/issues/9>. I'll be p

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2019-09-21 Thread Flibbles
@CJ Veniot: I think Relink supports IE11 now <https://github.com/flibbles/tw5-relink/issues/9>. I wasn't able to get it to crash anymore while using that browser (but there may be something hidden you'll encounter some day. If you do, let me know) @TonyM: I've got basic support for ch

[tw5] Re: Advanced search - filter expressions: how do I force a particular tiddler to appear at the top when exporting to a static page?

2019-10-04 Thread Flibbles
with [[In conclusion]is[tiddler]] instead, which just prevents the filter from appending a non-existent title. -Flibbles On Friday, October 4, 2019 at 1:38:12 AM UTC-4, Suzanne McHale wrote: > > The first one seems to work, thanks! It also avoids the issue of that > tiddler being repeated in the [!

[tw5] Re: Advanced search - filter expressions: how do I force a particular tiddler to appear at the top when exporting to a static page?

2019-10-05 Thread Flibbles
]] [[Program tips]] +[putfirst[]] [tags[]!is[system]sort[title]] [[contents]] If what you already have works, then it works. I just did this mostly for my own amusement, and thought I'd share. -Flibbles On Saturday, October 5, 2019 at 1:00:49 AM UTC-4, Suzanne McHale wrote: > > Hi, that di

[tw5] Re: Query: Would it be possible to make a "filter builder?"

2019-10-05 Thread Flibbles
In response to your message in that other thread, I'm having trouble visualizing how a dialog or a wizard could help in building filters. Like, maybe something with arrows, or something that provides interactive completion, like as you type in an operand, it gives operand documentation. That's

[tw5] Re: Advanced search - filter expressions: how do I force a particular tiddler to appear at the top when exporting to a static page?

2019-10-03 Thread Flibbles
Maybe I'm late to the party, but the following seem to work too: [!is[system]sort[title]] [[Program Tips]] +[putfirst[]] or this goofy one: [!is[system]sort[title]move:-100[Program Tips]] I'd go with the first. On Wednesday, October 2, 2019 at 12:25:11 AM UTC-4, Suzanne McHale wrote: > >

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-03-14 Thread Flibbles
I guess your full solution may be: \define link-to-tiddler() [[ tiddler_name ]] <$macrocall $name="details" sum=<> src={{ tiddler_name }} /> Hope this helps. Flibbles On Saturday, March 14, 2020 at 9:16:35 PM UTC-4, Rahul Kashyap wrote: > > Dear Flibbles, > > Thanks a lot

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-03-14 Thread Flibbles
uot;="details_for_tiddler" and "parameter"="tiddler". After you add, the type would default to "title", which is what you want. -Flibbles On Saturday, March 14, 2020 at 9:52:51 PM UTC-4, Flibbles wrote: > > Sooo, this is a strange case. What's happening

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-03-14 Thread Flibbles
kitext", then macro parameters can be treated as such, as well as fields, widget attributes, and list operators. This'll take me a several days to properly code. My workarounds will work in the meantime. On Saturday, March 14, 2020 at 9:59:02 PM UTC-4, Flibbles wrote: > > Hold

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-04-13 Thread Flibbles
@Peter Buyze: I'm glad! It definitely is a needed feature for large projects. I built it out of need. @Lin Onetwo: I think this was probably meant for Kookma? Other people are welcome into include Relink in bundles, but I haven't the ability to do so myself. -Flibbles On Sunday, April 12

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-04-10 Thread Flibbles
Rahul Kashyap & Kalcifer Kandari, Macro parameters can now be configured to relink as wikitext as of v1.8.0, released tonight. Enjoy! Flibbles On Saturday, March 14, 2020 at 9:16:35 PM UTC-4, Rahul Kashyap wrote: > > Dear Flibbles, > > Thanks a lot for this plugin. This give

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-04-23 Thread Flibbles
lishes everything it could accomplish. -Flibbles On Monday, April 13, 2020 at 6:06:57 PM UTC-4, Flibbles wrote: > > @Peter Buyze: I'm glad! It definitely is a needed feature for large > projects. I built it out of need. > > @Lin Onetwo: I think this was probably meant for Ko

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-04-24 Thread Flibbles
, Mohammad wrote: > > Hi Filbbles, > Thank you for update. A minor comment: the plugin size seems +150kB > is this the minimum size? > > --Mohammad > > On Friday, April 24, 2020 at 8:30:37 AM UTC+4:30, Flibbles wrote: >> >> *New Feature!* >> >> The \

Re: [tw5] Re: XML plugin for Tiddlywiki??

2020-04-30 Thread Flibbles
myFile##xpath/indexer}} be a thing, but I'd need to work with Jermolene about making the textReferences more extensible first. I'm really looking for any feedback at all, from anyone. I'd like this to gel as much as possible to Tiddlywiki methods. -Flibbles On Tuesday, April 28, 2020 a

[tw5] XML plugin for Tiddlywiki??

2020-04-27 Thread Flibbles
40% towards having my own plugin, but I’m really surprised that this kind of stuff doesn’t already exist. I’ve searched. Am I overlooking something? -Flibbles -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from

Re: [tw5] Re: XML plugin for Tiddlywiki??

2020-05-01 Thread Flibbles
ou have? Also, I think I'll probably change the widget to <$xpath> too. Not many Tiddlywiki users know what xpath is, but it's more apropos than <$xml>. -Flibbles Are you able to send me what you have? On Friday, May 1, 2020 at 5:57:12 AM UTC-4, Xavier Cazin wrote: > > Hi Flibb

Re: [tw5] Re: XML plugin for Tiddlywiki??

2020-05-01 Thread Flibbles
is make it so any undeclared prefix can act as the default namespace, but I get the sense that's not an expected practice. -Flibbles -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving e

Re: [tw5] Re: XML plugin for Tiddlywiki??

2020-05-03 Thread Flibbles
he queries (I... I really don't want to do this. This is one step below reimplementing XPath for myself.) I'll continue to look into ways to improve default namespace support; I'll try scrubbing namespaces from the DOM again, but for now, the current implementation may be what we get. -Flibb

Re: [tw5] Re: XML plugin for Tiddlywiki??

2020-05-02 Thread Flibbles
Now that I better understand namespaces, being explicit with all namespaces in an XPath query actually makes sense to me. No ambiguity. Queries can traverse documents with a litany of changing namespace scopes. -Flibbles -- You received this message because you are subscribed to the Google G

[tw5] Re: XML plugin for Tiddlywiki??

2020-05-02 Thread Flibbles
Tony: That'd be great. I built this so XML could act like super-data-tiddlers. So that's what it's mostly good at solving right now. But I'd love it if this plugin became the answer for other problem, though I may need more feedback on such use-cases to determine how to elaborate tw5-xml.

[tw5] Re: XML plugin for Tiddlywiki??

2020-04-27 Thread Flibbles
something like that. Dunno who'd use it. On Monday, April 27, 2020 at 9:02:59 PM UTC-4, TonyM wrote: > > Flibbles, > > Given xml tags act like custom html tags I would think it may be possible > to use css and the display but it appears the correct way is xslt > > > https:/

Re: [tw5] Re: XML plugin for Tiddlywiki??

2020-05-10 Thread Flibbles
get/filter like this? The demo site is better filled out, and has examples of this new widget. <https://flibbles.github.io/tw5-xml/> -Flibbles -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this grou

[tw5] Re: Personal News

2020-05-18 Thread Flibbles
Look forward to hearing from you after you're through it. Good luck. -Flibbles -- 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 tiddlywik

[tw5] Re: [Plugin] XML for Tiddlywiki!! Import, parse, render, and more!

2020-05-14 Thread Flibbles
Eshka, I found some projects suffering similar problems, and I think I may have fixed it. Go head and try again. -Flibbles On Thursday, May 14, 2020 at 8:11:51 AM UTC-4, Flibbles wrote: > > Eshka, could you please tell me what browser you're using? > > Unfortunately, due t

[tw5] Re: [Plugin] XML for Tiddlywiki!! Import, parse, render, and more!

2020-05-14 Thread Flibbles
Eshka, could you please tell me what browser you're using? Unfortunately, due to the nature of this plugin, there will be some cross-platform issues I need to resolve. Every browser implements xmldom it's own way. -Flibbles On Thursday, May 14, 2020 at 7:59:50 AM UTC-4, Eskha wrote: > >

Re: [tw5] Re: XML plugin for Tiddlywiki??

2020-05-13 Thread Flibbles
craped HTML. -Flibbles -- 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

[tw5] [Plugin] XML for Tiddlywiki!! Import, parse, render, and more!

2020-05-13 Thread Flibbles
Name:* tw5-xml* Version: *1.0.0* Demo: https://flibbles.github.io/tw5-xml/ Source: https://github.com/flibbles/tw5-xml Check it out! <https://flibbles.github.io/tw5-xml/> It lets you: - Import and export XML, including bundled XML archives including multiple tiddlers. - It rende

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-03-23 Thread Flibbles
UTC-4, Kalcifer Kandari wrote: > > Looking forward to this. Once macro parameters are recognised, renaming a > tiddler will go from taking me 10 minutes to taking 0 minutes. > > Kalcifer > > On Sunday, March 15, 2020 at 2:13:51 AM UTC, Flibbles wrote: >> >> Ac

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-03-23 Thread Flibbles
rs are recognised, renaming a >> tiddler will go from taking me 10 minutes to taking 0 minutes. >> >> Kalcifer >> >> On Sunday, March 15, 2020 at 2:13:51 AM UTC, Flibbles wrote: >>> >>> Actually, scratch everything I said. It should be possible fo

[tw5] Re: Creating tiddlers and programmatically modifying them?

2020-03-23 Thread Flibbles
w letter" /> \end <$set name="title" value="New Letter"> <$set name="name" value="Wilson"> <$set name="pet" value="snuffles"> <> This will create a new tiddler. with a variable title, name, and pet.

[tw5] Re: Creating tiddlers and programmatically modifying them?

2020-03-24 Thread Flibbles
> > I have just realized this won't work in the tiddler I create needs to > contain a define > \define code-tiddler() $(name)$ > > There are many applications it will, but perhaps not this one. > > Regards > Tony > > > On Tuesday, March 24, 2020 at 1:19:05 P

[tw5] Re: [Plugin] XML for Tiddlywiki!! Import, parse, render, and more!

2020-05-19 Thread Flibbles
Please let me know if there are any tool or abilities you feel this plugin is lacking for working with xml. I'd like this plugin to have all the basic tools someone would need. For one, I'm thinking of adding an <> macro which will behave like XSLT's apply-templates, only tiddlywiki style. --

[tw5] Re: Relink doesn't always work

2020-05-26 Thread Flibbles
I'm going through and addressing all discussions about Relink. This is fixed now in latest versions. I'm 80% sure you're the person who submitted the bug report. -Flibbles On Thursday, April 16, 2020 at 4:02:47 AM UTC-4, Peter Buyze wrote: > > I love this plug-in, and have had good expe

[tw5] Re: freelinks and relink??

2020-05-26 Thread Flibbles
The way I'd do it is to create a child-plugin which users can optionally install. I just finished creating very nifty child-plugin support for Relink in order to optionally support Markdown, and I've been sifting through the discussions looking for places to use it. It's my new favorite toy

[tw5] Re: Relink, and setting up button widgets for modals

2020-05-26 Thread Flibbles
I'm going back and addressing all discussions about Relink. <$Button param /> is something Relink won't handle by default, because param could be anything, not just a title. However, if you only ever use it as a title, you can add <$button param> to the Relink whitelist as a title, and then

[tw5] Re: freelinks and relink??

2020-05-26 Thread Flibbles
Sorry, I completely missed this. I don't normally sift through this group unless I want something. This integration actually wouldn't be that hard. I might make it in a week or so. Currently, I'm really burned out after having added markdown support. On Monday, April 20, 2020 at 5:49:31 AM

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
@Saq Imtiaz: I think we just experienced a race condition with responding to Kleinfelter. Same answer asynchronously. @Kleinfelter: As for the paragraph break, turns out that's actually how Remarkable rolls. It treats all the content in as a block. BUT, I got good results by adding the

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
Sorry. Make that this: .tc-tiddler-preview li > :first-child, .tc-tiddler-body li > :first-child { display: inline } If you do anything like * list items With multiple lines Like this * Or even * Multiple list Just make sure it's producing what you expect. -- You received this

[tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
I'm not able to replicate this problem. The only file trying to load tw5-markdown/highlight.js is tw5-markdown/wrapper.js. If you remove the plugin altogether, it should allow your server to boot. (Just a quick note though. If migrating becomes too much of an issue, relink-markdown will work

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
of bullet lists. Each bullet *should* be "text >here" but it is "text here". This makes bullet > lists >take up too much space. Could be a deal-killer. > > > On Wed, May 27, 2020 at 12:09 PM Flibbles > wrote: > >> I'm not able to replicate this pr

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
\rules is pretty poorly documented, but here's the best I can give you . That's what documenation exists, the list of rules, and the relevant

[tw5] Re: Understanding "Installing custom plugins on Node.js"

2020-05-27 Thread Flibbles
For the second method, your project directory will have stuff laid out like this: ``` tiddlywiki.info tiddlers/{all my tiddlers} plugins/pluginName/plugin.info plugins/pluginName/(other plugin stuff} ``` If you have your project set up like this, then your tiddlywiki server will have

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
No problem. I was the one who convinced you to move to tiddlywiki/markdown.I might as well make sure it works for 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

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
That would do it. I'm glad it's working out for you now. :) -- 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

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
Odd. It's working for me. Are you certain you actually removed the .txt file extension? My operating system only pretended to when I first tried it just now. If you search for "wrapper" in your tiddlywiki, and you get a tiddler with a title that has a filepath relative to your operating

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
Also, I've put more effort into it and have created the version of wrapper which is better tested, and supports hardbreak (putting spaces at the end of lines to force a linebreak). This is the one I'll be submitting in my PR. -- You received this message because you are subscribed to the

Re: [tw5] Re: Plugin Hotel California - Can't Disable Plugin

2020-05-27 Thread Flibbles
This is because there's a bug in tiddlywiki/markdown where it's not properly respecting the *$:/config/markdown/breaks* tiddler. I'll submit a PR later today, but it'll probably take a while before it gets into master. Jermolene is still recovering. In the meantime, attached is a

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-05-25 Thread Flibbles
led), what needs updating, and then update with a single click. It's super slick, guys. For real! But probably not worth all the work it took. -Flibbles -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and s

[tw5] Re: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
[enlist{!!list}] does work. ...also [list[]] Surprised nobody mentioned that. For your linking to a file, make sure you can open "file:///d:\моясукапапка\" directly in your browser, such as by dragging that file onto a new tab. The link supplied from that is the href you should be using for

[tw5] Re: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
[list[]] works replacing [enlist{!!list}] in everyone else's examples. So the easiest way to print the list of the current tiddler is: {{{ [list[]] }}} As for your unicode directory name, I don't know what to tell you. I can't replicate the issue. Every single combination of escaped,

[tw5] Re: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
Like link: ...??? I don't get what you're asking for. If you have your macro separated the way you say you do, then it should already be wrapped in elements. Maybe if you show me what you have? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw5] Re: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
Like... this...? \define mylinks() links: <$list filter="[list[]]"><$link/>, \end This is my content <> Just including a space between the macro and your body would start a new paragraph. Or are you saying you want that macro to automatically render at the bottom of every tiddler or

[tw5] Re: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
Oh. So this: \define mylinks() links:<$list filter="[list[]]"><$link/>, \end This is my content <> -- 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: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
O... okay. But it already should have been... I guess I'm glad you've got something working for you though. Good luck! -- 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

[tw5] Re: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
[image: newline needed.png] -- 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: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
Or this? \define mylinks() links:<$list filter="[list[]]"><$link/>, \end On Thursday, May 28, 2020 at 4:08:06 PM UTC-4, Flibbles wrote: > > Oh. So this?: > > links:<$list filter="[list[]]"><$link/>, > -- You received this message b

[tw5] Re: Show items added in the list field of the current tiddler

2020-05-28 Thread Flibbles
Not quite sure what you mean. You want the last item in the list to be displayed separately? So... \define mylinks() links: <$list filter="[list[]butlast[]]"><$link/>, <$list filter="[list[]last[]]">and <$link/> \end What kind of output are you trying to get? -- You received this message

[tw5] Re: Rename tiddlers to datetime IDs (unique identifier)

2020-12-15 Thread Flibbles
I don't normally hang around in the Google group, so I didn't see this until now. I read what you wrote several times but I'm still not clear on what Relink is doing wrong, or what it's supposed to be doing but isn't. You don't still need help, do you? -Flibbles On Thursday, October 22, 2020

[tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-12-15 Thread Flibbles
allows for custom rename rules based on filters, as well as rules introduced by 3rd party plugins. Currently, the only built in rule is the directory tree one. I couldn't think of any others that people would generally want. If you know of any, let me know. -Flibbles On Monday, May 25, 2020 at 11

[tw5] Re: Query: Plugin Libraries? Who has them?

2020-12-15 Thread Flibbles
On Friday, July 31, 2020 at 3:24:13 PM UTC-4 TiddlyTweeter wrote: > Ciao PMario > > Fibbles plugin Library has dependencies as it invokes language tiddlers > you need RELINK for already to show. If you try invoke it without that > you'll get blanks. > Knowing that you can install the plugin

[tw5] Re: Use Relink to rename similar tiddlers

2020-12-15 Thread Flibbles
I am here to say that Relink can now handle this very case. Introducing Relink-Titles It's a supplemental Relink plugin that allows for title updating of any directory-nested tiddlers. And also any custom filter rules, or rules

[tw5] Re: Noteself - Tiddlers disappearing on other devices. What am I missing?

2020-12-15 Thread Flibbles
I know I'm late to the party here, but are you using lazy tiddler loading? It has a few issues that can cause tiddler bodies be deleted. On Thursday, July 2, 2020 at 9:49:11 AM UTC-4 Sean Carter wrote: > I'm using Tiddlywiki with Noteself for automatic saving in addition to a > few other

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-12-15 Thread Flibbles
> it is a confusing concept. > > > Best wishes > Mohammad > > > On Wed, Dec 16, 2020 at 4:24 AM Flibbles wrote: > >> For those who may be interested, many people requested that Relink be >> able to handle renaming titles of nested directory tiddlers associated

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2020-12-16 Thread Flibbles
Yes. The parent-plugin field is present on both of Relink's supplemental plugins. On Thursday, December 17, 2020 at 12:45:13 AM UTC-5 Mohammad wrote: > Flibbles, > Have you tried the parent-plugin field to distribute subplugin of relink > as its children? > Take a lo

Re: [tw5] [Plugin] Presenting TW5-Uglify! Plugin compression the TiddlyWIki way!

2021-01-20 Thread Flibbles
ely this problem only happens once per browser session, since results are cached, and it doesn't occur with NodeJS implementations. Otherwise, glad you like it! -Flibbles On Wednesday, January 20, 2021 at 8:48:28 AM UTC-5 TiddlyTweeter wrote: > *Side thoughts on text/wikitext uglifi

[tw5] Re: [Plugin] Presenting TW5-Uglify! Plugin compression the TiddlyWIki way!

2021-01-20 Thread Flibbles
I don't think so. I'm not sure what that is, and I can't find it in the core. Uglify works by hijacking the View Widget, which is used for all plugin writing during saves. It's not great, but it's what I found works. If there's a better way, I'd gladly change it over. On Wednesday, January 20,

[tw5] Re: Are there any hacks for getting backlinks for soft links?

2021-01-15 Thread Flibbles
If you're just trying to get a list of backlinks to look at, I might recommend the Relink plugin. It adds a special References tab to the TiddlyInfo panel. Once rememberq is properly configured, which would be something like `\relink rememberq question:wikitext answer:wikitext` or something

[tw5] [Plugin] Presenting TW5-Uglify! Plugin compression the TiddlyWIki way!

2021-01-19 Thread Flibbles
. Then go ahead. Check it out. Here's the demo site. <https://flibbles.github.io/tw5-uglify/> And here's the github page <https://github.com/flibbles/tw5-uglify>. Let me know what you all think. -- You received this message because you are subscribed to the Google Groups "

Re: [tw5] [Plugin] Presenting TW5-Uglify! Plugin compression the TiddlyWIki way!

2021-01-19 Thread Flibbles
tricky. Unlike javascript, wikitext is dependent on white space. Definitely not sure if I could reduce them by over 60% like you're suggesting though, unless you're thinking of stream compression, but that'd be outside the scope of this plugin. -Flibbles On Tuesday, January 19, 2021 at 10:37:19 PM

Re: [tw5] [Plugin] Presenting TW5-Uglify! Plugin compression the TiddlyWIki way!

2021-06-20 Thread Flibbles
u can see the uglify tiddlywiki.info file for an example of how to generate a tiddlywiki file without certain plugins or files. In Uglify's case, it creates one without the jasmine plugin, or any tiddlers with the "Test/' prefix. -Flibbles On Saturday, June 19, 2021 at 6:21:39 AM UTC-4 Jan wrote:

Re: [tw5] [Plugin] Presenting TW5-Uglify! Plugin compression the TiddlyWIki way!

2021-06-18 Thread Flibbles
probably best done by the user. If they are serving versions of a tiddler where they want certain plugins excluded, they'd could use the publishFilter. A slightly elaborate tiddly-filter could exclude all deactivated plugins. Hope this helps! -Flibbles On Friday, June 18, 2021 at 6

Re: [tw5] Re: Relink Plugin Performance

2021-07-02 Thread Flibbles
d to scrap a ton of old optimizations I had, but I got the indexing working as best I could to compensate. -Flibbles On Monday, June 7, 2021 at 12:40:04 AM UTC-4 PMario wrote: > On Monday, June 7, 2021 at 6:26:01 AM UTC+2 History Buff wrote: > >> Thanks. That explains it. I’m assu

Re: [tw5] Re: A weird request

2021-07-02 Thread Flibbles
Hey. I'm unsure why Relink isn't able to address this. It should be able to rename, AND it should be able to show you all references where that macro is used. Are you saying that the macro argument to mapline isn't getting relinked? I'm looking at your showModal(tid) that you posted. That

Re: [tw5] Re: A weird request

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

[tw5] Re: Does Relink add a new filter operator?

2021-07-10 Thread Flibbles
to be a demand for them. -Flibbles On Wednesday, July 7, 2021 at 11:02:42 AM UTC-4 Si wrote: > Thanks David, that's very handy. > > On Wednesday, 7 July 2021 at 13:47:57 UTC+1 David Gifford wrote: > >> Yes, this is a nice new way of filtering lists. >> >> Try <$

[tw5] Re: Markdown usage

2021-04-30 Thread Flibbles
1. The markdown way to link to other tiddlers is: [Caption for link](#TiddlerName) If your tiddler has spaces, it needs escaping. [Caption to link](#Tiddler%20Name) 2. Calling macros works just fine in Markdown text (as long as it's an inline call). If you want to declare

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2021-03-23 Thread Flibbles
Not sure I understand. Relink isn't integrated with any package managers like npm. To install Relink under Node.JS, you'd download the source from github, and the github page <https://github.com/flibbles/tw5-relink> has instructions on how to install. On Wednesday, March 24, 2021 at 1:15

Re: [tw5] Re: Presenting: a plugin which automatically relinks renamed tiddlers

2021-03-23 Thread Flibbles
ithub.io/tw5-relink/#Migration%20to%20V2>. better yet, reach out to me, because I can probably migrate your modules in about 10 seconds. Anyway! Hope you all enjoy. This version of Relink will save you seconds. *Seconds*! -Flibbles On Thursday, December 17, 2020 at 1:03:51 AM UTC-5 Flibbles wro

[tw5] Re: rQuickTid vs Relink: buggy cloning instead of renaming

2021-02-23 Thread Flibbles
Clone? So is this the "Reuse content" button in the tiny rQuickTid window? (I've never used, or even heard of, rQuickTid, so you'll need to bear with me.) On Tuesday, February 23, 2021 at 11:21:54 AM UTC-5 bartosz.w...@gmail.com wrote: > Hello there. > > I started using rQuickTid

  1   2   >