Re: [tw5] Disable drop zone

2020-03-20 Thread Jeremy Ruston
I’ve made an update so that disabling drag and drop also disables drag and drop within the draggable list widgets: https://github.com/Jermolene/TiddlyWiki5/commit/cb52d709c2177561a0de8fc808ae2f8f6853a011

Re: [tw5] Editor toolbar button that toggles a tag?

2020-03-20 Thread Jeremy Ruston
If you were able to just use the existing tagging mechanism to toggle the “rtl” tag then all you need is the following text in a stylesheet tiddler tagged $:/tags/Stylesheet: \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline macrocallblock

Re: [tw5] Editing tid files directly

2020-03-18 Thread Jeremy Ruston
Hi Haakon The reason that TW5 didn’t include bidirectional sync with the filesystem originally is that when TW5 was created Node.js was very new and the file system watching APIs didn’t work properly across all platforms. Since then, a more subtle obstacle to implementing the feature has been

Re: [tw5] Announcing new "Menu Bar" plugin

2020-03-16 Thread Jeremy Ruston
Hi Mohammad > With the current top menubar, the print page does shows the top menu bar in > every page! Thanks, I’d missed that. > I do not recommend to resolve this issue on its own. I think it has to be solved on its own; all the visual components of a theme need to be aware of printing

Re: [tw5] Disable drop zone

2020-03-15 Thread Jeremy Ruston
Hi Mohammad I’ve been meaning to do something about that, and have now added a hidden setting to disable the dropzone: https://github.com/Jermolene/TiddlyWiki5/commit/bc687e57834efa312cca126af222613ef241c585

Re: [tw5] Announcing new "Menu Bar" plugin

2020-03-14 Thread Jeremy Ruston
Hi A Gloom The menu bar plugin disables the two core tiddlers that display the top left bar and the top right bar because the core CSS clashes with the menu bar, and the elements themselves are not in the right place in the DOM tree to be part of the menu bar. So instead, there are two

Re: [tw5] Re: Have you seen my tiddlers (hiding not lost)

2020-03-14 Thread Jeremy Ruston
Hi Donald Perhaps the setting is the "default-tiddler-location" field of tiddlywiki.files: https://tiddlywiki.com/#tiddlywiki.info%20Files It behaves much as you describe, forcing changed tiddlers to be written to a different directory. Best wishes Jeremy -- Jeremy

Re: [tw5] Wikified macro notation suggestion

2020-03-12 Thread Jeremy Ruston
content. I’ve definitely already got the message that you want to be able design custom markup :) Best wishes Jeremy > > > Regards > Tony > > > On Thursday, March 12, 2020 at 4:53:02 AM UTC+11, Jeremy Ruston wrote: > Here’s a simple example of using the wikify widget: &g

Re: [tw5] Wikified macro notation suggestion

2020-03-11 Thread Jeremy Ruston
ood > contribution and others may also show alternative ways to achieve the same > thing. > There are a few cases where construction of filters before use would get > around other limitations or the need for nested filters. > I am also starting to configure some longer filters as global

Re: [tw5] How to disable lazy loading for specific tiddler

2020-03-11 Thread Jeremy Ruston
are changing in v5.1.22: there’s now a “_is_skinny” field to mark tiddlers that are skinny, making it much easier to avoid accidental triggers. Best wishes Jeremy. > > Best regards, > iilyak > > On 8 March 2020 10:16:44 GMT-07:00, Jeremy Ruston > wrote: > Hi Ilya > >> I

Re: [tw5] Announcement: TW5-powered ebooks

2020-03-11 Thread Jeremy Ruston
> On 11 Mar 2020, at 17:27, Mohammad wrote: > > The links do not work. Please check! (seems the : cause the problem) Urgh. I think Google Groups is trying to be clever and applying urldecode to the permalink. Meanwhile, you can find both plugins in Control Panel in the “Plugins” tab. Best

Re: [tw5] Announcement: TW5-powered ebooks

2020-03-11 Thread Jeremy Ruston
This has been a really fun project to work on, and many thanks to Xavier for making it happen. And a huge shout for JDs outstanding visual design work on the project. At the beginning I was actually rather pessimistic about the feasibility of the central challenge of seamlessly scrolling

Re: [tw5] Download just a tiddler from a TW?

2020-03-09 Thread Jeremy Ruston
Hi Mat > On 9 Mar 2020, at 20:23, Mat wrote: > > If this were possible, it would be trivial for anyone to make a plugin library It’s already pretty trivial to make a plugin library under Node.js, are you talking about making a plugin library with the standalone file configuration? If so,

Re: [tw5] Wikified macro notation suggestion

2020-03-09 Thread Jeremy Ruston
Hi Stobot > I don't know if anyone else builds things like I do - with a ton of dynamic > tables and branched lookups, but I use this pattern all the time: > > \define macrotobuildfilter() ... > > <$wikify name="macrotobuildfilterwiki" text=<>> > > <$list filter=<>> > ... > > > > > That's

Re: [tw5] Distinguishing Native Shadow Tiddlers from Overwritten Shadow Tiddlers (for Styling)

2020-03-09 Thread Jeremy Ruston
Hi Scott It’s an oversight that there wasn’t a way to style overridden shadow tiddlers. I’ve added a tc-tiddler-overridden-shadow for the upcoming v5.1.22 release: https://github.com/Jermolene/TiddlyWiki5/commit/ae9ce4f01c6048aeb5604a93b57c2f3e4f959162 It’ll take about 10 minutes to build and

Re: [tw5] TW on iOS

2020-03-09 Thread Jeremy Ruston
Hi Ed Chris Hunt is now working on Quine 2, which is built around the new iOS 11 and 13 file APIs, much as you suggest. There’s a TestFlight beta, more details in Quine’s own Google Group here: https://groups.google.com/forum/#!topic/quine-app/p9HHP8G-37A

Re: [tw5] How to see statistics for this group or for TiddlyWiki?

2020-03-08 Thread Jeremy Ruston
Hi MarkOn 7 Mar 2020, at 17:08, 'Mark S.' via TiddlyWiki wrote:Isn't google analytics embedded in TiddlyWiki.com ? I can see it was there at vsn 5.1.14. Maybe subsequently removed?I removed Google Analytics when GDPR came in. I’d been running it since the early days

Re: [tw5] Adding Prefixes/suffixes to a block transclusion

2020-03-08 Thread Jeremy Ruston
Hi Mat > This, and Reeces other similar "block issues" caused from transclusion > blockmode, are interesting. Maybe the transclusionwidget should have a class > attribute? The transclude widget doesn’t generate any DOM elements itself, and so there would be nowhere to attach the class. But

Re: [tw5] Adding Prefixes/suffixes to a block transclusion

2020-03-08 Thread Jeremy Ruston
Hi Reece It may be worth trying to use CSS float: left to position the prefix? Best wishes Jeremy > On 8 Mar 2020, at 03:31, Reece Shaw wrote: > > Hello all, > > Currently I am using transclusions in block mode to create some text blocks > from a data tiddler. Ideally, to display the data

Re: [tw5] SVG animation with JavaScript

2020-03-08 Thread Jeremy Ruston
Hi Thomas > On 8 Mar 2020, at 10:32, Thomas Elmiger wrote: > > Hi Diego, > > The attached tid file contains my new splashscreen including an SVG graphic. > Basically, it seems to work on https://tid.li/tw5/apps/svg.html – but I still > have questions myself: > > - The animation is not

Re: [tw5] Tiddler Templates

2020-03-08 Thread Jeremy Ruston
> LOL! No-refresh bugs seem to be my thing lately! Thanks for digging them up, they can be quite mindbending to work on! Best wishes Jeremy -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

Re: [tw5] batch import/load images without filepath in title

2020-03-08 Thread Jeremy Ruston
Hi Donald One way to achieve this would be to move your images folder into your wiki, and then create a tiddlywiki.files file to control how the image files are handled: https://tiddlywiki.com/#tiddlywiki.files%20Files The example there is for

Re: [tw5] How to disable lazy loading for specific tiddler

2020-03-08 Thread Jeremy Ruston
Hi Ilya > I noticed a strange problem while developing a plugin. The plugin doesn't > work correctly on nodejs if plugin displays some content via PageTemplate > based on filter. Because the tiddlers of the plugin lazy loaded, Tiddlywiki > has no way of knowing that filter need to be executed.

Re: [tw5] Tiddler Templates

2020-03-08 Thread Jeremy Ruston
Hi Mat You’ve found a subtle bug with the button widget that was causing it to not refresh when the “actions” attribute value changes. It’s fixed here: https://github.com/Jermolene/TiddlyWiki5/commit/665b63ec38b75dfe62009d2f5514682de60e953f

Re: [tw5] A Plugin Store

2020-03-07 Thread Jeremy Ruston
TiddlyWiki 5 already has a plugin library that has been open to contributions for many years. However, we have found that plugin authors prefer to publish plugins with their own infrastructure so that they have more control. There might be improvements to the infrastructure that would make it

Re: [tw5] Transclude widget and block mode

2020-03-06 Thread Jeremy Ruston
Hi Reece I think that the transclusion is likely to be generating a tag around the content “One”, and if so it could be the margin of that P tag that you’re seeing. Could you post a demo to tiddlyspot? Best wishes Jeremy > On 6 Mar 2020, at 05:21, Reece Shaw wrote: > > Hello all, > > I

Re: [tw5] is this a bug? empty index and is[blank] operator

2020-03-04 Thread Jeremy Ruston
llback value: [getindex[xx]else[defaultvalue]match[targetvalue]] Best wishes Jeremy > > { > "xx": "", > "yy": "hello" > } > > > Best wishes > --Mohammad > > On Wednesday, March 4, 2020 at 2:47:14 PM UTC+3:

Re: [tw5] Free on-line store on tiddlyspot.com DEMO

2020-03-04 Thread Jeremy Ruston
Hi Sini-Kit Indeed, my congratulations to you, and also to your wife for her beautiful paintings and inspiring talent. Looking back in the archives, you joined the group back in 2014, and I think you have been pursuing your vision for an online store made with TiddlyWiki and Google Sheets

Re: [tw5] is this a bug? empty index and is[blank] operator

2020-03-04 Thread Jeremy Ruston
> So, > One should be very cautious to use is[blank]! As Mark points out, the subtlety is that it checks for a zero length string, rather than checking for a missing result. I’m not sure “blank” was necessarily the best word to have chosen; we could always introduce an alias if there’s a

Re: [tw5] Webserver API question: GET tiddlers based on filter

2020-03-03 Thread Jeremy Ruston
Hi vpl The upcoming v5.1.22 release will include a new “filter” parameter on the GET /recipes/default/tiddlers.json API. For the moment you’ll have to do the filtering on the client side. Alternatively, you could make a system tiddler that gives you the data you need when rendered via the get

Re: [tw5] Presenting: EditorMagic - the editor as an assistant

2020-03-03 Thread Jeremy Ruston
Hi Mat I really like this for a several reasons: * Despite its limitations you’ve made enough of it to clearly communicate your underlying vision, and give people an opportunity to see what it feels like * It helps to identify the primitives we might need to make a “production” version * It’s

Re: [tw5] Re: Andy Matuschak's new notetaking app

2020-03-02 Thread Jeremy Ruston
I meant to add that I've corresponded with Michael a few times over the years, and I know that he's followed TiddlyWIki for many years. I don't know Andy directly but I'd be pretty confident that he'd be aware of TiddlyWiki, and hopefully learned from it. Best wishes Jeremy -- Jeremy Ruston

Re: [tw5] Re: Andy Matuschak's new notetaking app

2020-03-02 Thread Jeremy Ruston
ce does that beautifully. It's a shame it doesn't work well on phone-sized screens, though. Meanwhile, BurningTreeC's work with Hammer.js to make touch interfaces shows that it's not too hard to add these gestures to present day TW5. Best wishes Jeremy > > Best wishes > TT > >

Re: [tw5] Upgrade to 5.1.21 looses links in the maps

2020-03-02 Thread Jeremy Ruston
Hi Willem This is a known bug in v5.1.21, and it's fixed in the upcoming v5.1.22 Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 29 Feb 2020, at 18:08, Willem Vriezen wrote: > >  > I try to upgrade from version 5.1.18 and see most of my links

Re: [tw5] About importing multiple image tiddlers at once

2020-03-02 Thread Jeremy Ruston
Hi Mark > On my windows setup, the image names start with ../ , which would put them in > a folder above the current directory. They have to be > hand-edited to remove the ../. (v. 0.0.13) I'd be grateful if you could file an issue on GitHub for this, thanks. Best wishes Jeremy > > Thanks!

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-29 Thread Jeremy Ruston
Hi Ton > On 29 Feb 2020, at 15:31, Jeremy Ruston wrote: > >> See attached No_sidebar_button.png >> >> On your screenshot the chevron is visible next to the search bar. On my >> image no chevron is visible (I made a screen shot of the whole menu bar in >&g

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-29 Thread Jeremy Ruston
Hi Ton > We do have several full blown toolbars (Edit, Editor, Page and View toolbar) > with complete configuration options via Contropl Panel > Appearance > > Toolbars. > Top Left bar and Top Right Bar did not have these complete configuration > options and I expexted they would be added at a

Re: [tw5] About importing multiple image tiddlers at once

2020-02-29 Thread Jeremy Ruston
Hi Mat > On 29 Feb 2020, at 13:45, Mat wrote: > > Jeremy Ruston wrote: >> >> Does anyone know if it is reasonable to request that DnD from an OS window >> into an editor should give a list of file paths? Or is there some "obvious" >> reason

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-29 Thread Jeremy Ruston
> On 29 Feb 2020, at 12:16, BurningTreeC wrote: > > Can't we just set the top value of the titles to something like 25px through > a plugin stylesheet? Yes, that’s one solution, but the trouble is that the height of the menubar is actually dynamic (e.g. it can wrap to two lines), and so I’m

Re: [tw5] About importing multiple image tiddlers at once

2020-02-29 Thread Jeremy Ruston
> > Does anyone know if it is reasonable to request that DnD from an OS window > into an editor should give a list of file paths? Or is there some "obvious" > reason why this doesn't already work? Is it purely a browser issue? Or maybe > it does work in other OS'es than Windows? This comes up

Re: [tw5] Does ActionListopsWidget not support the $timestamp attribute?

2020-02-29 Thread Jeremy Ruston
Hi Hubert The tiddler $:/config/TimestampDisable is not a shadow tiddler from the core plugin (see below), instead it is created when either of the associated UI buttons are clicked. We use the term “hidden settings” for configuration options that don’t provide a user interface; in this case

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-29 Thread Jeremy Ruston
Hi A Gloom > On 29 Feb 2020, at 04:09, A Gloom wrote: > > >.< now you make it after I prefected my topbar : D but good idea m/ I'm > >confident will have something that will help my design >> << (you should > >understand-- I did it my way and ain't abandoning it so quickly after all > >the

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-29 Thread Jeremy Ruston
5800ba536c5fe8ef2e5>), > but can be defined in the palette editor by adding the entries > menubar-foreground and menubar-background to the current palette. > > Okay. > >> 7. Way to go, nice new feature for TW. > > Thanks! > > Best wishes > > Je

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-29 Thread Jeremy Ruston
Hi Tony > Here my ignorance is exposed but highlights a need to document such > possibilities and "how to" for common or garden users. Indeed, it would be good to have more of that material in the docs. > If there is a class name or style sheet entry great, but a configurable value > as an

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-28 Thread Jeremy Ruston
feature for TW. Thanks! Best wishes Jeremy > > > On Friday, February 28, 2020 at 10:41:39 AM UTC-6, Jeremy Ruston wrote: > I’ve committed the first version of a new “Menu Bar” plugin, and would > welcome thoughts and feedback. > > The main features are: > > * Supports s

Re: [tw5] Announcing new "Menu Bar" plugin

2020-02-28 Thread Jeremy Ruston
Hi Tony > I have recently being working on both tiddlywiki and other websites and > specifically global fixed headers. I also use a site builder which provides > some settings tiddlywiki's page layout could do with. For example if we could > set the space at the top in or under a heading that

Re: [tw5] Re: Is there a way to create link link CamelCase but with dash in it?

2020-02-26 Thread Jeremy Ruston
Hi Mario I haven't been able to test it, but you should be able to accomplish this with a simple module that overrides $tw.config.textPrimitives.wikiLink (see $:/core/modules/config.js) Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 25 Feb 2020, at 17

Re: [tw5] Version Controlling the Wiki: Isomorphic Git

2020-02-26 Thread Jeremy Ruston
for a way to store content that works across the browser, Node.js and serverless cloud services and gives us features like revision handling and merging changes from multiple sources. Best wishes Jeremy. -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 26 Feb 2020, at 12

Re: [tw5] TiddlyWiki on HackADay.com

2020-02-19 Thread Jeremy Ruston
Yes, this is a great discussion, and very helpful. Please don’t be afraid to chime in, this is an important decision and it would be great to have the broadest possible feedback. Best wishes Jeremy > On 19 Feb 2020, at 18:57, Julio Peña wrote: > > Hello all, > > RE @Eric's post

Re: [tw5] Re: TiddlyWiki on HackADay.com

2020-02-17 Thread Jeremy Ruston
Hi Mario > Please don't. IMO foo and bar are some of the most terrible placeholder > variable names in computer history. see: https://en.wikipedia.org/wiki/Foobar Sorry for the confusion. I’m using foobar and card as placeholders, and not suggesting that they be the new terms. > > Hmmm.

Re: [tw5] Re: TiddlyWiki on HackADay.com

2020-02-17 Thread Jeremy Ruston
new name? (We wouldn't want to have to change it again) * Should we seek to keep things simple by choosing a name that retains the TW initials? Best wishes Jeremy Best wishes -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 17 Feb 2020, at 15:53, 'Mark S.' via TiddlyWiki &g

Re: [tw5] Create a link to static tw.com showing arbitrary tiddler combos?

2020-02-17 Thread Jeremy Ruston
Hi Mat I think there might be two problems here: * The widget examples are currently displayed as a separate tiddler from the widget docs. This could be fixed by transcluding the examples automatically * The widget examples use an interactive “try it” button which doesn’t work in the static

Re: [tw5] Create a link to static tw.com showing arbitrary tiddler combos?

2020-02-13 Thread Jeremy Ruston
Hi Mat > On 12 Feb 2020, at 20:38, Mat wrote: > > TW enables creating static wikis and we have the examples with all tiddlers > statically open and a static with > only a few tiddlers open (the default > tids) and

Re: [tw5] Operator that supports filters wihout formatting as link

2020-02-13 Thread Jeremy Ruston
Hi Mat > On 12 Feb 2020, at 01:24, Mat wrote: > > I'm about to go sleep so this is a bit sloppy: There’s actually a correction to make; it might be worth updating your original post to make sure future searchers don’t get led astray. > Or the WikifyWidget which takes a lot of memory so don't

Re: [tw5] Query On "Insertion Point Location" in single file TW

2020-02-13 Thread Jeremy Ruston
Hi Josiah Just a thought, but in order to test the validity of the generated HTML file you might try importing it into another wiki as well as just loading it into a browser. The tiddlers are ready by two different mechansms in those cases, so it will help to shake out any incompatibilities.

Re: [tw5] Making it easier to share demos/snippets in Google Groups

2020-02-05 Thread Jeremy Ruston
y, February 6, 2020 at 9:39:56 AM UTC+11, Jeremy Ruston wrote: >> As is typical when we try to bend the edges of what browsers are supposed to >> do, it seems that links of this size won’t work correctly everywhere under >> all circumstances, and so we probably need to be s

Re: [tw5] Making it easier to share demos/snippets in Google Groups

2020-02-05 Thread Jeremy Ruston
As is typical when we try to bend the edges of what browsers are supposed to do, it seems that links of this size won’t work correctly everywhere under all circumstances, and so we probably need to be systematic in finding the places where we can safely use them. > On 4 Feb 2020, at 16:55,

Re: [tw5] Ноw to convert

2020-02-05 Thread Jeremy Ruston
Hi Siny-Kit The element widget (which is responsible for rendering plain HTML elements) does indeed neuter script elements. The usual workaround is to arrange your templates so you can generate your script tag as plain text. For example, $:/core/templates/javascript-tiddler uses this

Re: [tw5] [data tiddlers] dealing with ":" (from <>)

2020-02-05 Thread Jeremy Ruston
> On 5 Feb 2020, at 10:05, HC Haase wrote: > > "data tiddlers won't be worked on" does that mean that dictionary tiddlers > should be avoided?? as I understand it, the json can do the same as the > dictionary and more, so I don't see the need for the dictionary type. But > then again I

Re: [tw5] Making it easier to share demos/snippets in Google Groups

2020-02-04 Thread Jeremy Ruston
brief return is a vast flood of Good Stuff, none of which > is organised enough for me to know what is what later. > > Just saying--this is a continuing frustration. > > I do NOT think we have solved our informational issues here. > > 2 cents in passing > Josiah > &g

Re: [tw5] Re: Making it easier to share demos/snippets in Google Groups

2020-02-03 Thread Jeremy Ruston
Hi Tony > I imagin we could also use this to provide the loaded url to our own wikis > even only localy accessible. I'm not sure what you mean here. Given a link to our new /share.html# with the JSON appended, the easiest route to get those tiddlers into ones own wiki would be to open the

Re: [tw5] Re: Making it easier to share demos/snippets in Google Groups

2020-02-02 Thread Jeremy Ruston
I put together a working prototype yesterday, and it does indeed work fine (I've tested it on 80KB+ JSON files of tiddlers). I'm away from my computer now but I'll post it tomorrow. It will be a separate edition at a new /share.html URL. Best wishes Jeremy. -- Jeremy Ruston jer

Re: [tw5] Making it easier to share demos/snippets in Google Groups

2020-02-01 Thread Jeremy Ruston
Hi Tony > On 1 Feb 2020, at 13:20, TonyM wrote: > > I am also keen to make an easy way to publish a set of tiddlers as a > bookmarklet as well. My quick config to customise tiddlywiki.com > is my goto tool. The advantage being if you like say > a button in a gg post

Re: [tw5] Making it easier to share demos/snippets in Google Groups

2020-02-01 Thread Jeremy Ruston
; put the required safety into our work > but we should not cautious that much, if so, then the first source of risk > is Microsoft Windows itself, this forum, gmail and ... > > So, keep it simple! > > > --Mohammad > > On Saturday, February 1, 2020 at 1:51:00 PM UTC+3:30,

[tw5] Making it easier to share demos/snippets in Google Groups

2020-02-01 Thread Jeremy Ruston
There’s an interesting discussion about simplifying sharing demos/snippets on Google Groups over on a thread of Tony’s: https://groups.google.com/d/msgid/tiddlywiki/42db53e3-e372-4005-8ea1-32f409d6963d%40googlegroups.com

Re: [tw5] Is GitHub useful for TW5? (philosophy)

2020-01-30 Thread Jeremy Ruston
Hi Mark > On 30 Jan 2020, at 16:52, 'Mark S.' via TiddlyWiki > wrote: > > The saver does work, but you have to be sure to fill in the "path" field even > if you are using the root directory. For the root, use "/". This is unclear > in the instructions. I’ve pushed an update that defaults

Re: [tw5] The best example on-line TW you have seen?

2020-01-30 Thread Jeremy Ruston
Perthaps somebody with the necessary GitHub skills could volunteer to add these examples to the showcase on tiddlywiki.com ? https://tiddlywiki.com/#:[tag[Examples]] Many thanks, Jeremy > On 27 Jan 2020, at 02:12, Mohammad

Re: [tw5] TiddlyWiki support multi-user privilege

2020-01-30 Thread Jeremy Ruston
Hi Peter > I'm talking about read only. > I'd like to share tiddlywiki on a network folder and only 1 user need to be > able to edit the wiki and other user only to read. > > thanks in advance. The core supports that configuration. First set up user accounts in a csv file as described here:

Re: [tw5] How to hide creation date/time shown on page?

2020-01-29 Thread Jeremy Ruston
> I would like to see what appears in the subtitle to become tag driven so you > can easily add and remove items with a system tag. > > Hard to understand your question. (Are words missing?) I think that Tony is suggesting a new tag $:/tags/TiddlerSubtitle for controlling which elements are

Re: [tw5] Error shows once in a while any ideas?

2020-01-29 Thread Jeremy Ruston
Hi itsjeremy That error code 0 usually means that there was a connection problem trying to reach the server. I sometimes see it when a computer has gone to sleep when the page is the active browser tab. There are some upcoming changes to the client-server configuration which includes trapping

Re: [tw5] Query On "Insertion Point Location" in single file TW

2020-01-28 Thread Jeremy Ruston
Hi Josiah When the TW5 core code needs to read the tiddlers from a TW HTML file, it looks for the string: The individual tiddler DIVs immediately follow, terminated by . You can use the same marker for inserting tiddlers but they will be overridden by any other tiddlers with the same title

Re: [tw5] Default tiddlers do not reload. Bug?

2020-01-27 Thread Jeremy Ruston
Jeremy > On 27 Jan 2020, at 10:30, Mohammad wrote: > > Hi Jeremy, > This issue also occurred with fresh empty.html > > Please also see > https://groups.google.com/d/msg/tiddlywiki/C1-ag-4m_-s/PA5wdQ8AAgAJ > > --Mohammad > > On Thursday, September 5, 2019 at 5

[tw5] Re: zoomin story view: is this a bug? or this is the normal behaviour

2020-01-27 Thread Jeremy Ruston
I think this is fixed here: https://github.com/Jermolene/TiddlyWiki5/commit/29461403ed5868500ac8e9917e1428a5809ed0d3 Please give the prerelease a try, Best wishes Jeremy On Monday, January 27, 2020 at 6:15:43 AM UTC, Mohammad wrote: > > >1. open https://tiddlywiki.com/prerelease/ >2.

Re: [tw5] focus=yes in edit widget causes input to be selected

2020-01-27 Thread Jeremy Ruston
Hi Xavier I think this is the venerable problem of the focus/selection not being retained over a refresh cycle. The only way to avoid it at present is to ensure that the edit-text widget doesn’t get refreshed. Best wishes Jeremy. > On 27 Jan 2020, at 16:50, Xavier Cazin wrote: > > Hello

Re: [tw5] ImageMap no longer working

2020-01-27 Thread Jeremy Ruston
Hi Drevarr I think this may be fixed by the latest update. Please could you give it a try at https://tiddlywiki.com/prerelease Many thanks, Jeremy. > On 26 Jan 2020, at 23:00, Drevarr the Old wrote: > > > > Working in 5.1.13 >

Re: [tw5] Bug in TW 5.1.21 tiddler title disappear after # if we use "Include the target tiddle"r in "Navigation Address Bar "

2020-01-27 Thread Jeremy Ruston
Hi Siniy-Kit Good catch! This was quite a tricky one to track down, but I think it’s now fixed: https://github.com/Jermolene/TiddlyWiki5/commit/29461403ed5868500ac8e9917e1428a5809ed0d3 There will be a

Re: [tw5] Configure '$:/config/FileSystemPaths' to save to a folder based on a field

2020-01-22 Thread Jeremy Ruston
in! > > > > On Wednesday, January 22, 2020 at 3:04:15 PM UTC+1, Jeremy Ruston wrote: > Hi Sininho > >> should be saved at test/New Tiddler.tid >> >> Is it possible? I don't know much about filters, but I tried the following >> line and it did not work:

Re: [tw5] Configure '$:/config/FileSystemPaths' to save to a folder based on a field

2020-01-22 Thread Jeremy Ruston
Hi Sininho > should be saved at test/New Tiddler.tid > > Is it possible? I don't know much about filters, but I tried the following > line and it did not work: > > [has[saveto]addprefix[/]addprefix{!!saveto}] > > I am thankful for any help! The catch is the the variable “currentTiddler” is

Re: [tw5] A Tiddler cover the whole story-river

2020-01-22 Thread Jeremy Ruston
Hi Mohammad It seems that in presentation mode you’re using CSS to expand tiddlers in the story river so that they fill the whole browser window. The complications you’re running into are perhaps primarily because the story river CSS is subtly different in zoomin story view, but in general

Re: [tw5] Re: Extracting tiddlers as HTML

2020-01-20 Thread Jeremy Ruston
Hi Tony > I wonder if it would be hard to add a "copy to clipboard icon" to the export > tiddlers buttons, such that rather than save to file we could save to the > clipboard, such as html in the Original request. This would allow tiddlywiki > html to be cut and pasted into tiddlers or website

Re: [tw5] Single Tiddler Mode: Bring it up again

2020-01-18 Thread Jeremy Ruston
Hi Mohammad I think that's just that the zoomin storyview renders the new tiddler offscreen before it is animated into view. Best wishes Jeremy -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 18 Jan 2020, at 08:02, Mohammad wrote: > >  > Hi again Jeremy, >

Re: [tw5] Single Tiddler Mode: Bring it up again

2020-01-17 Thread Jeremy Ruston
mad Rahmani wrote: > > Many thanks Jeremy! > In my Windows machines (laptop, and a widescreen desktop) I see this issue > (flickering and small appearance of both scrollbars). > > > > Best wishes > Mohammad > > > On Fri, Jan 17, 2020 at 6:09 PM Jeremy Ruston

Re: [tw5] Single Tiddler Mode: Bring it up again

2020-01-17 Thread Jeremy Ruston
is issue won’t be affected by the single tiddler mode changes. Best wishes Jeremy. > > > Best wishes > Mohammad > > > On Fri, Jan 17, 2020 at 4:47 PM Jeremy Ruston <mailto:jeremy.rus...@gmail.com>> wrote: > Hi Mohammad > >> Is there any c

Re: [tw5] New feature: TW 5.1.22 and supports for webm and ogg

2020-01-17 Thread Jeremy Ruston
ki.com/prerelease/ and tried to view > that .webm tiddler, I was shown garbage. > > So I'm not sure what is going on here. > > On Tuesday, January 14, 2020 at 11:53:28 AM UTC-5, Jeremy Ruston wrote: > To clarify, the only change in v5.1.22 is that these file extensions are &

Re: [tw5] Single Tiddler Mode: Bring it up again

2020-01-17 Thread Jeremy Ruston
Hi Chuck, No. There are more details in the PR, but this is basically about fixing some issues with the zoomin storyview; to casual users there’s not much difference. Best wishes Jeremy. > On 17 Jan 2020, at 12:38, Chuck R. wrote: > > By "single user tiddler" do we mean when we give a link

Re: [tw5] Single Tiddler Mode: Bring it up again

2020-01-17 Thread Jeremy Ruston
Hi Mohammad > Is there any chance to have a look at this PR and bring us the real single > tiddler mode. I had rather forgotten about it. I had a look over the PR, and updated it with the latest changes from “master”. As the discussion shows, it is not ready to merge, but doesn’t need much

Re: [tw5] Text-slicer plugin not working correctly?

2020-01-17 Thread Jeremy Ruston
Hi Jon > I've been playing around with the Text slicer plug-in and noticed that the > option to produce "One tiddler per heading, threaded (HTML)" doesn't produce > the table of contents correctly. The ! is shown next to each heading in the > TOC and the heading font size is applied to the

Re: [tw5] Icon in caption of Stamp

2020-01-16 Thread Jeremy Ruston
Hi Markus > that sounds great. > For me, this increases the clarity a lot. Another feature could be the > grouping of the stamps by tabs or headings. Yes indeed, one could make it an expandable/collapsible hierarchical catalogue along the lines of the table of contents. > I'm not a great

Re: [tw5] Icon in caption of Stamp

2020-01-15 Thread Jeremy Ruston
Hi Markus Putting '{{$:/core/images/spiral}} description’ in the caption field should in fact work, and it’s a bug that it doesn’t. The problem lies in the template $:/core/ui/EditorToolbar/stamp-dropdown which builds the dropdown for the stamp tool. To display the description of each stamp

Re: [tw5] plugin Generator (single file wikis) RFC

2020-01-14 Thread Jeremy Ruston
Hi Mario > On 14 Jan 2020, at 18:14, PMario wrote: > > The problem with the existing import process is relatively deeply berried in > the core. If the import mechanism "deactivates" a tiddler its content is > physically deleted. So if you re-enable the checkbox _nothing_ happens. .. > That's

Re: [tw5] New feature: TW 5.1.22 and supports for webm and ogg

2020-01-14 Thread Jeremy Ruston
To clarify, the only change in v5.1.22 is that these file extensions are recognised as video and audio files. Whether anything useful happens when displaying them depends on the browser support for those formats. Best wishes Jeremy > On 14 Jan 2020, at 12:02, Chuck R. wrote: > > > > Ok,

Re: [tw5] How to put tiddler`s title to of static HTML exported page?

2020-01-14 Thread Jeremy Ruston
Hi Siniy-Kit > Hi! When I make export of my tiddler to static HTML, the title of this page > is the title of my tiddlywiki. So i have many static pages with the same > titles. > I want to put to {{!!title}} of this static pages title of > my current tiddler Is it possible? How are you

Re: [tw5] Re: Link to top of called tiddler

2020-01-13 Thread Jeremy Ruston
rom several oddities such as this. The default "classic" storyview has more conventional behaviour. Best wishes Jeremy. -- Jeremy Ruston jer...@jermolene.com https://jermolene.com > On 13 Jan 2020, at 15:44, Jacques Turbé wrote: > >  > Hurrah for your rightaway understanding, Springer : y

Re: [tw5] Bug in building a single-file HTML using CLI

2020-01-10 Thread Jeremy Ruston
Hi Oleg > The command-line script used for building a single-file HTML wiki is as > follows: > > xcopy /s/i/q %TW_DIR%\*.* %TMP_DIR% > > tiddlywiki %TMP_DIR% --savetiddlers %IMG_FILTER% %HTML_IMAGES_DIR% > tiddlywiki %TMP_DIR% --setfield %IMG_FILTER% _canonical_uri >

Re: [tw5] Fields: system fields and user fields

2020-01-07 Thread Jeremy Ruston
Hi Mohammad > Is there any way to distinguish between user field and system field? No. But the set of system fields is essentially fixed and so can be hard coded something like this: <$list filter="[tag[x]fields[]] -text -title -modified -modifier -color -tags -list> Best wishes Jeremy.

Re: [tw5] Fields should have definitions

2020-01-06 Thread Jeremy Ruston
Hi Bimlas > I think that besides being able to read these settings, they should be > adjustable. For example, if I want to use a custom macro instead of > "<>", which can open all tiddlers, I simply replace the template in the > "tags" field definition with a macro I want. It sounds like

Re: [tw5] How to remove from <$view tiddler="1111" field="text" format="htmlwikified"/> ?

2020-01-05 Thread Jeremy Ruston
Hi Siniy-Kit > Hi! I open empty Tiddlywiki and create new tiddler '' with text My > div > then I create new tiddler with text <$view tiddler="" field="text" > format="htmlwikified"/> and see this result > > My div > > How to remove from this result? The view widget

Re: [tw5] Why RedirectMacro was the best thing ever, and a TW5 solution would be amazing

2020-01-05 Thread Jeremy Ruston
11:57, TiddlyTweeter wrote: > > Ciao Jeremy > > Jeremy Ruston wrote: > > TT wrote: 2 - Could there be a toggle to switch "freelinking" on and > off? > > We could make a page control button for it (like the timestamp toggle), but > we’d need some

Re: [tw5] Multi User Summary

2020-01-05 Thread Jeremy Ruston
Hi Stobot As Mark mentioned, for the last couple of years I’ve been offering an online multiuser TiddlyWiki hosting service called Xememex as part of my commercial services through https://federatial.com/ . Most of what I do is bespoke software development to adapt TW5

Re: [tw5] Why RedirectMacro was the best thing ever, and a TW5 solution would be amazing

2020-01-05 Thread Jeremy Ruston
Hi Tony Eric’s explanation is correct. I understand that that is not the meaning that you intended to convey, hence bringing it to your attention. Apologies for derailing the discussion. Best wishes Jeremy. > On 5 Jan 2020, at 09:11, Eric Shulman wrote: > > Finally, your concern about my

<    1   2   3   4   5   6   7   8   9   10   >