[tw5] Re: tm-delete?

2018-12-02 Thread Dave
Thank you Mark! :) -- 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

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Evan, This is revised version of range.js based on your formula plugin. It seems it can handle all cases. I am not a JS programmer so it may need to clean up and improve for performance. Please have a look and let me know your opinion. Best Mohammad -- You received this message because you

[tw5] Re: Transclude a variable number of filters

2018-12-02 Thread Evan Balster
Sorry, I've realized there's a simpler and more efficient solution than what I suggested there. It's: <$list filter=<> > {{!!title}} Testable in Formulas wiki: <$list filter=<> > {{!!title}} On Sunday, December 2, 2018 at 10:44:01 PM UTC-6, Evan Balster wrote: > > Hello, h0p3 — > > In

[tw5] Re: Transclude a variable number of filters

2018-12-02 Thread Evan Balster
Hello, h0p3 — In case the wikify approach proves to be a little too complex, I will suggest you might be able to construct and run filters a little more concisely with my Formula plugin ! I wrote it to make more advanced calculations easier to

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Evan, If we check the direction in switch case, then there is no need to correct for it in // May need to count backwards // var direction = ((endb then step=-1 Mohammad -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Hello Evan, Many thanks for your clarification! Formula plugin is a very useful tool and I am using it. Yes, I expect a programmer range like Python. What do you think if we make the below change in range.js code! I revised it in Formula plugin

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Evan Balster
Hello, Mohammad, BurningTreeC, everybody — I'm the author of the range filter. The long and short of it is, this is not a "programmer's range" like a for-loop in C. This is a "layman's range" which uses natural numbers by default, includes the end-value, and counts from begin to end. The

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
@Mark That's right! But the code is error prone! If you change the begin end by mistake it still works! My sygesstion is range[a,b], if a< b then step=1 range[a,b], if a>b then step=-1 range[a,b,c], if a0 otherwise empty list range [a,b,c] if a a>b then c<0 otherwise empty list The python

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread PMario
hi, The editor box shadow and the rounded corners really hurt!!! If we really want to keep it, we need to make it configurable AND switch off by default. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

[tw5] Re: tm-delete?

2018-12-02 Thread 'Mark S.' via TiddlyWiki
With the "is[current]" bit, it looks like you're trying to make view template for the button. But since every single tiddler already has a delete button, I'm not sure what the point it. As a view template, this works: <$list filter="[is[current]has[due]]"> <$button message="tm-delete-tiddler"

[tw5] tm-delete?

2018-12-02 Thread Dave
I want to be able to (for some tiddlers) be able to delete them without going into edit mode with something like this: <$fieldmangler><$list filter="[is[current]has[due]]" variable=null> <$button message="tm-delete" tooltip="delete" class="tc-tag-label tc-btn-invisible"> - delete but

Re: [tw5] KaTeX update

2018-12-02 Thread Bob Flandard
Hello Jeremy, Thank you, Thank you! All the best, Bob -- 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

[tw5] Autocollaps tocP categories

2018-12-02 Thread Magnus
Hello, I was wondering if it is possible to auto-collapse open categories in the Marios tocP-macro (https://wikilabs.github.io/editions/tocP/) when you click on another. I have 800 *links* in 40 or 50 subcategories, making a very long list if everything is open category (TOC link: no)

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread 'Mark S.' via TiddlyWiki
This <$list filter="[range[10,1,-0.1]]"/> works. This also counts down: <$list filter="[range[10,1,0.1]]"/> So the code appears to figure out which way you want to count based on whether start is greater than end, and uses the absolute value of the step. -- Mark On Sunday, December 2,

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Thank you Simon! But you can not have negative step from 1 to 10 and again you get 1,2,3 I read the Evans formula and range code and it seems TW5.1.18 uses the same code from Evans! Evans code can be found here:

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Many thanks Simon! Yes, it gives a new taste! The important thing is I can customize it! Thank you for all your efforts. /Mohammad On Sunday, December 2, 2018 at 9:36:15 PM UTC+3:30, BurningTreeC wrote: > > @Mohammad, that's a change I proposed, I found the old editor look is ugly > ... but I

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread BurningTreeC
@Mohammad, here are the docs: https://tiddlywiki.com/prerelease/#range%20Operator On Sunday, December 2, 2018 at 6:32:49 PM UTC+1, Mohammad wrote: > > Many thanks for all your efforts Jeremy! > > One question: > > {{{ [range[1,10,-2]] }}} > > > returns 1357 while it is expected to return empty

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread BurningTreeC
@Mohammad, that's a change I proposed, I found the old editor look is ugly ... but I made a PR to give it its previous background color. removing the box-shadow from the editor is just .tc-tiddler-frame.tc-tiddler-edit-frame iframe.tc-edit-texteditor { box-shadow: none; } to remove the

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
The text area and preview seems have a new look! Is it customizable? if I wish to use the previous styles in 5.1.17! 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

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Mohammad
Many thanks for all your efforts Jeremy! One question: {{{ [range[1,10,-2]] }}} returns 1357 while it is expected to return empty list! Note to the negative step! Is this intentionally set to have such output? Also {{{ [range[10,4,2]] }}} returns 10864 I appreciate to clarify this!

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Jeremy Ruston
Hi Stef Thank you, I’ve hopefully fixed that here: https://github.com/Jermolene/build.jermolene.github.io/commit/1271dd152e67b049d124bad693c6278523f2c391 There’ll be a new build available in a few minutes for you to try, Best wishes Jeremy. > On 2 Dec 2018, at 16:22, stef...@gmail.com wrote:

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread stefct4
Hi Jeremy, On Sunday, December 2, 2018 at 5:05:01 PM UTC+1, Jeremy Ruston wrote: > > > I’m hoping to release v5.1.18 tomorrow, 3rd December, so this is one last > request to give the latest version as much testing as you can: > Great! The "Export Tiddler" feature seems to work properly now.

[tw5] Re: [More Secure Than Other Clouds] A Tiddly Thought

2018-12-02 Thread @TiddlyTweeter
This post was blocked on the GG email version of it. If you get the email version did you get this one? J. On Sunday, 2 December 2018 16:58:48 UTC+1, @TiddlyTweeter wrote: > > Cloud storage is potentially problematic. A major issue is how secure they > really are. On the one hand user lax

Re: [tw5] Final checks for v5.1.18

2018-12-02 Thread Jeremy Ruston
Many thanks to everyone for your feedback. There’s been a whirlwind of activity over the last week, with quite a few tweaks and fixes merged. I’m hoping to release v5.1.18 tomorrow, 3rd December, so this is one last request to give the latest version as much testing as you can:

[tw5] Re: local video with thumbnail macro

2018-12-02 Thread Mohammad
Nice work Greg! Thank you for sharing! Best -- 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

[tw5] Re: XML in TiddlyWiki

2018-12-02 Thread @TiddlyTweeter
TonyM This also might enable easier import of TIDDLYTOOLMAP to TW. TiddlyToolmap has OPML export that is pseudo XML. ??? J. x TonyM wrote: > > You may be aware that xml uses a simple system for representing data eg > 0 and it can be nested > > > -- You received this message because you

[tw5] Re: XML in TiddlyWiki

2018-12-02 Thread @TiddlyTweeter
TonyM Just wondering IF this could fit with the the XLSX plugin in some way? https://tiddlywiki.com/editions/xlsx-utils/ J. TonyM wrote: > > You may be aware that xml uses a simple system for representing data eg > 0 and it can be nested (see tasks/task below) > -- You received this

[tw5] Re: CSS Scrollbar settings start working with FF64

2018-12-02 Thread @TiddlyTweeter
Molto benissimo! Grazie per il testa a testa! PMario wrote: > > FireFox 64 starts to support CSS style settings for Scrollbars! \o/ > > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from

[tw5] Re: local video with thumbnail macro

2018-12-02 Thread Greg Davis
Stefan, you're most welcome. Glad you got it workiing. Enjoy TiddlyWiki, Greg -- 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: Dynaview and header behavior: Hide on scrolldown Show on scroll up.

2018-12-02 Thread Jan
Hi Simon, Thanks, I uploaded the correct version http://szenio.de/dyna/Titlebar.html Meanwhile I did an experiment with your Hammerwidgets that I would like to show you. http://szenio.de/hammer/ It is turning all fields prefixed move_ into movable content with a litte extension of your

[tw5] Re: CSS Scrollbar settings start working with FF64

2018-12-02 Thread PMario
typo fixed This also works for FF63 if you enter: about:config and set the variable: layout.css.scrollbar-width.enabled to true -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

[tw5] CSS Scrollbar settings start working with FF64

2018-12-02 Thread PMario
Hi, FireFox 64 starts to support CSS style settings for Scrollbars! \o/ see: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Scrollbars So if you create a stylesheet eg: scrollbarStyles with this content. .tc-sidebar-scrollable:hover { scrollbar-width: unset; } html,