[tw5] Re: Filter based on integer field values less than or equal to

2020-12-02 Thread TW Tones
Joshua, Can we say the new filter operator is specifically a "title Filter", although it is true titles can be many things including non existent, or literal values. Regards Tones On Thursday, 3 December 2020 at 13:23:44 UTC+11 joshua@gmail.com wrote: > You will be able to do this with

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread TW Tones
Mark, I have followed your code through, More testing but it seems to all make sense to me now, It would be great if we could turn such code into a hierarchy chart that also recognised the list re-iterations. The information is all there so automation would be possible. In this case I can use

[tw5] Re: Using TiddlyWiki for fact-based information modelling and database engineering ???

2020-12-02 Thread TW Tones
Bob, Very interesting. I can see plenty of ways to implement and automate the data model but need to digest the the meaning of each element and how to support discovery. Are there any examples or databases using this method we could get an example of? I have a few ex-CSIRO's staff in my

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread TW Tones
Testing, Nice work, It takes a bit to follow the code, but I am sure I will learn something, thanks so much. You may see it in a Unicode database soon. Tones On Thursday, 3 December 2020 at 16:53:47 UTC+11 Mark S. wrote: > Here's a recursive version that that can be any length of hex.

[tw5] Re: Step through a list of tiddlers using shortcut keys - the focus is lost

2020-12-02 Thread Mohammad
HI Saq, Many thanks for your solution. Works great! In my original code I used $vars + filter {{{}}} instead of $wikify but it also does not work see \define stateTid() tt \define myTag() HelloThere \define next() <$action-setfield $tiddler=<> text=<> /> \define previous()

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread 'Mark S.' via TiddlyWiki
Here's a recursive version that that can be any length of hex. Lightly tested. Hopefully it's working OK. \define hex2dec2(byte,mult:1) <$vars

[tw5] Re: TW-Shiraz plugin 2.1.2: Stable release

2020-12-02 Thread Mohammad
Springer, There is two points here to note 1. If the table is sorted using tiddler name this may cause by adding a new row you may loose focus as new table entry causes a dynamic sort (so pay attention to this) 2. The clone feature of core navigate to new tiddler, so you need to have your own

[tw5] Re: Using TiddlyWiki for fact-based information modelling and database engineering ???

2020-12-02 Thread Bob Jansen
Colleagues, all this thinking started by Charlie's initial posting, has led me to begin building a simple TW utilising the Toulmin Argument Model for representing links and associations between TW tiddlers. This is something I have been planning to do for some time, now that I am 'retired' I

[tw5] Re: Fields other than the default text field being able to be treated also as a textarea?

2020-12-02 Thread Cade Roux
Thanks, I will check that out once we get through this current release. We started with TW just being a great way to output a single HTML file of data dictionary/build status/testing results to be shared and approved instead of Word/Excel document artifacts. But we treated it as a target

[tw5] Re: Avoid TW Desktop backing up Wiki's

2020-12-02 Thread Alfonso Arciniega
At least 3 times my TW was corrupted (or I modified the TW and I regretted it later) in the past year. I was always able to go back to a previous version. Definitely I wouldn't disable the backup feature. This is what I do: Every week (or every X number of days, your preference), I delete all

[tw5] Re: Filter based on integer field values less than or equal to

2020-12-02 Thread Joshua Fontany
You will be able to do this with core TW5 syntax once the new filter operators with 5.1.23 are released. With the new "filter[]" operator, each input title is compared to the filter given, and the TITLE of any matches are returned (instead of the result of the subfilter being returned, as in

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread TW Tones
Mark, Good start. I was thinking how to get 16^0 16^1 16^2 and 16^3 and you have hard coded it. If moving to a recursive process we may be able to handle variable length hex. But it is a little mind bending. Tones On Thursday, 3 December 2020 at 08:41:11 UTC+11 Mark S. wrote: > Here's my

[tw5] Re: Fields other than the default text field being able to be treated also as a textarea?

2020-12-02 Thread TW Tones
Cade, I have a solution I am proud of that uses all the mechaisiums you are asking for. It is attached. Let me know if you need more instructions. I am yet to polish it for publication but it is a tool to have local view templates specific to a tiddler, it works by only allowing you to edit

[tw5] Re: [theme] Presenting "Mono" theme

2020-12-02 Thread Anjar
JD - I think your theme is amazing! It is so fun to work with and it is so easy to make things look great! A small suggestion (which I guess would apply to tiddlywiki in general, not just the mono theme) from me is to enhance the print css a little:) After some fiddling, I find this nice:

[tw5] Re: Announcement: Modular theme and Maple color palette

2020-12-02 Thread David Gifford
Added to the toolmap, both the color palette and the theme, in their respective categories. On Wednesday, December 2, 2020 at 3:33:25 PM UTC-6 bimlas wrote: > Originally, I just wanted to share my own TiddlyWiki theme and color > palette with you. Since there are some changes that may not be

[tw5] Re: Announcement: Modular theme and Maple color palette

2020-12-02 Thread jtech108
VERY interesting approach...kudos...bimlas. Thanks! All the best, Julio On Wednesday, December 2, 2020 at 6:15:53 PM UTC-5 Mohammad wrote: > Great job bimlas! > > Thank you for sharing. > > On Thursday, December 3, 2020 at 1:03:25 AM UTC+3:30 bimlas wrote: > >> Originally, I just wanted to

[tw5] Re: TW-Shiraz plugin 2.1.2: Stable release

2020-12-02 Thread springer
Mohammad, What I imagined was the ability to create a duplicate tiddler "here" without *opening* it, so that editing focus remains on the dynamic table. It would have the feel of "adding a row to the spreadsheet". Still, adding the "clone" button column with just the regular button, in the way

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread 'Mark S.' via TiddlyWiki
Ok, cleaned it up a bit: \define hex2dec2(hex) <$vars myhex=<<__hex__>> myfilter="[split[]nthsearch-replace:g[A],[10]search-replace:g[B],[11]search-replace:g[C],[12]search-replace:g[D],[13]search-replace:g[E],[14]search-replace:g[F],[15]]"> <$list filter="1 2 3 4" variable="place"> <$list

[tw5] Re: Step through a list of tiddlers using shortcut keys - the focus is lost

2020-12-02 Thread Saq Imtiaz
The <$wikify> forces all content within it to be refreshed, and your div looses focus. \define stateTid() state-tiddler \define myTag() HelloThere \define next() <$vars currentTid={{{[get[text]]}}}> <$action-setfield $tiddler=<> text={{{ [tagafter] ~[tagfirst[]]}}} /> \end

[tw5] Re: Announcement: Modular theme and Maple color palette

2020-12-02 Thread Mohammad
Great job bimlas! Thank you for sharing. On Thursday, December 3, 2020 at 1:03:25 AM UTC+3:30 bimlas wrote: > Originally, I just wanted to share my own TiddlyWiki theme and color > palette with you. Since there are some changes that may not be to > everyone’s liking, I wanted to make most

[tw5] Re: Step through a list of tiddlers using shortcut keys - the focus is lost

2020-12-02 Thread Mohammad
The reason I attached zip file is Google forum does not attached tid files (may be it thinks JS code has been attached!) On Thursday, December 3, 2020 at 2:37:47 AM UTC+3:30 Mohammad wrote: > I am playing with keyboard shortcuts. attached there are two tiddlers. > > *Test 01: Works fine* > >

[tw5] Step through a list of tiddlers using shortcut keys - the focus is lost

2020-12-02 Thread Mohammad
I am playing with keyboard shortcuts. attached there are two tiddlers. *Test 01: Works fine* Drag and drop the Keyboard_01.tid into https://tiddlywiki.com/prerelease click on the orange box and then use left right arrow keys and see how the number changes inside orange box. *Keyboard/01*

Re: [tw5] Re: [Request] Numbered lists need some love

2020-12-02 Thread Saq Imtiaz
I've posted an issue on Github: https://github.com/Jermolene/TiddlyWiki5/issues/5186 On Monday, November 30, 2020 at 6:22:57 PM UTC+1 springer wrote: > +1 on this sentiment. > Handling nested ordered lists in the numeric-alpha-roman way Dave suggests > is also my preference, and with each

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread coda coder
10 is the sum of 1 2 3 4 On Wednesday, December 2, 2020 at 4:20:52 PM UTC-6 coda coder wrote: > Mark... I see it. You left some debugging in there: <> > > On Wednesday, December 2, 2020 at 4:17:21 PM UTC-6 saq.i...@gmail.com > wrote: > >> If it helps there is a pad[] operator in the

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread coda coder
Mark... I see it. You left some debugging in there: <> On Wednesday, December 2, 2020 at 4:17:21 PM UTC-6 saq.i...@gmail.com wrote: > If it helps there is a pad[] operator in the pre-release. > > On Wednesday, December 2, 2020 at 10:41:11 PM UTC+1 Mark S. wrote: > >> Here's my first attempt. It

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread Saq Imtiaz
If it helps there is a pad[] operator in the pre-release. On Wednesday, December 2, 2020 at 10:41:11 PM UTC+1 Mark S. wrote: > Here's my first attempt. It uses the 5.1.23 search-replace filter > operator. It requires the input to be padded to 4 bytes. > > Now that I've done it, I realize it

[tw5] Re: Announcement: Modular theme and Maple color palette

2020-12-02 Thread Saq Imtiaz
Very nicely organized and love the flexibility. Just an FYI that it is planned to introduce a new alternative flexbox based layout for the core after 5.1.23. There might be potential there for incorporating or at least learning from some aspects of your approach. Cheers, Saq On Wednesday,

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread coda coder
Mark - you're adding 10 (decimal) somewhere. -> 65545 -> 10 On Wednesday, December 2, 2020 at 3:41:11 PM UTC-6 Mark S. wrote: > Here's my first attempt. It uses the 5.1.23 search-replace filter > operator. It requires the input to be padded to 4 bytes. > > Now that I've done it, I

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread 'Mark S.' via TiddlyWiki
Here's my first attempt. It uses the 5.1.23 search-replace filter operator. It requires the input to be padded to 4 bytes. Now that I've done it, I realize it could probably be written with a recursive loop and be open ended (not needing to be padded). \define hex2dec2(hex) <$vars

[tw5] Announcement: Modular theme and Maple color palette

2020-12-02 Thread bimlas
Originally, I just wanted to share my own TiddlyWiki theme and color palette with you. Since there are some changes that may not be to everyone’s liking, I wanted to make most things optional. This work has evolved until the theme itself is actually just a framework-like solution that allows

[tw5] Re: Make editor plugins work for <$edit-text> widgets

2020-12-02 Thread Stobot
Thanks! On Wednesday, December 2, 2020 at 3:34:03 PM UTC-5 saq.i...@gmail.com wrote: > PS: drop the style declaration from the transclude widget as it wont work > nor is needed. > > On Wednesday, December 2, 2020 at 9:33:20 PM UTC+1 Saq Imtiaz wrote: > >> Try this: >> >> >> .my-editor

[tw5] Re: Make editor plugins work for <$edit-text> widgets

2020-12-02 Thread Saq Imtiaz
PS: drop the style declaration from the transclude widget as it wont work nor is needed. On Wednesday, December 2, 2020 at 9:33:20 PM UTC+1 Saq Imtiaz wrote: > Try this: > > > .my-editor .tc-editor-toolbar { > display:none; > } > > > > > <$edit tiddler="$:/temp/testing"> > <$list >

[tw5] Re: Make editor plugins work for <$edit-text> widgets

2020-12-02 Thread Saq Imtiaz
Try this: .my-editor .tc-editor-toolbar { display:none; } <$edit tiddler="$:/temp/testing"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/EditorToolbar]!has[draft.of]]"> <$transclude style="height:0px" tiddler="$:/core/ui/EditTemplate/body/toolbar/button" mode="inline"/> -- You

[tw5] Re: Make editor plugins work for <$edit-text> widgets

2020-12-02 Thread Stobot
Ha, tried this and it made some change - but now all the buttons just overlap the input box... .hideme { height:0px } <$edit tiddler="$:/temp/testing"> <$list filter="[all[shadows+tiddlers]tag[$:/tags/EditorToolbar]!has[draft.of]]"> <$transclude style="height:0px"

[tw5] Re: Make editor plugins work for <$edit-text> widgets

2020-12-02 Thread Stobot
Thanks! Ok, for autocomplete the <$edit> worked where <$edit-text> didn't - perfect! For your autolist, I got it to work, but you're right - hiding the toolbar would be excellent. This is where I'm at that technically works - simplification of the $:/core/ui/EditTemplate/body/editor tiddler

[tw5] Re: Make editor plugins work for <$edit-text> widgets

2020-12-02 Thread Saq Imtiaz
Editor-autolist depends on the editor toolbar - but you can hide it with css if you find it distracting. Have a look at the *contents* of the <$edit> widget here which sets up the toolbar: $:/core/ui/EditTemplate/body/editor Also, using <$edit> instead of <$edit-text> might get the

[tw5] Re: Fields other than the default text field being able to be treated also as a textarea?

2020-12-02 Thread David Gifford
I can't speak to the issue of linking or the relationship between the fields, but if the issue is just the small side of the edit box, you could try the editwidget. I use the following in one tiddler to adjust the content of a custom field of a second tiddler. <$edit tag="textarea"

[tw5] Make editor plugins work for <$edit-text> widgets

2020-12-02 Thread Stobot
Hi Folks, There are some amazing plugins I can't live without for the editor experience - 2 quick ones would be: 1. Editor-autolist from Saq 2. Edit-comptext from Snowgoon88 Concurrently I'm experimenting with some setups where I end up editing via an edit-text widget rather than the normal

[tw5] Fields other than the default text field being able to be treated also as a textarea?

2020-12-02 Thread Cade Roux
I was wondering if anyone has done anything like this where a tiddler has another field "promoted" to a "textarea"-type of field like the main text field so that a tiddler has two text areas when it's in edit mode, where one is the text of the tiddler and one is the field denoted to be edited

Re: [tw5] Re: Popup Tagger Plugin problems

2020-12-02 Thread strikke...@gmail.com
i think it is meant to be an example tagbar with filter, tags and so on to show how it can look. Maybe I misunderstood but I think we are encouraged to create our own tagbar so as not to overwrite the eucaly example. I think you are right it is a little confusing. I spend a lot of time

Re: [tw5] Re: Popup Tagger Plugin problems

2020-12-02 Thread David Gifford
Wow, ok, changing that worked. Thanks strikke... Why would Eucaly pre-load the plugin with something that wouldn't work for users? Doesn't make sense. The documentation for this plugin is very confusing. And I find it amazing that this is the ONLY TiddlyWiki plugin for creating a dropdown list to

[tw5] Re: Tiddler Opening Behaviour Bug in v5.1.23 Pre-Release

2020-12-02 Thread Saq Imtiaz
This issue should now be resolved. On Tuesday, December 1, 2020 at 5:43:37 AM UTC+1 Saq Imtiaz wrote: > Thank you for reporting this. I've posted an issue on github: > https://github.com/Jermolene/TiddlyWiki5/issues/5162 > > On Tuesday, December 1, 2020 at 3:08:17 AM UTC+1 ivanlion...@gmail.com

[tw5] Re: Popup Tagger Plugin problems

2020-12-02 Thread strikke...@gmail.com
At the Controlpage, look at the filter. You have, but you are not creator eucaly. *[all[tiddlers+shadows]regexp:creator[eucaly(?i)]],* On Tuesday, December 1, 2020 at 6:34:54 PM UTC+1 David Gifford wrote: > > Hi all > > I am trying to use the http://eucaly-tw5.tiddlyspot.com/#PopupTagger. It

[tw5] Re: clever default value for a parameter

2020-12-02 Thread Saq Imtiaz
<$set name="last" filter="[{!!title}removeprefix[jingle ]]" select="0"><> When assigning the value of a set widget via a filter, it is important to note that the value is a title list and not a title. In a title list, tiddler titles with spaces are enclosed in double brackets.

[tw5] Re: Query: RANGE Operator. Does it only work in base-10?

2020-12-02 Thread TW Tones
Mark, On this occasion I need to convert a 4 digit Hex to a decimal, so that I can use it in the range widget, because we cant generate a range of hex numbers. Hence this issue https://github.com/Jermolene/TiddlyWiki5/issues/5177 I think I can do it but if you know how please share. Tones

[tw5] Re: clever default value for a parameter

2020-12-02 Thread Jean-Pierre Rivière
Further investigating: the difference lies in the title and what you finally get. If you're left with a single word, then you get a simple text. If you have any space, then it's a link. thus the following code <$set name="last" filter="[{!!title}removeprefix[jingle ]]"><> will produce a

[tw5] Re: clever default value for a parameter

2020-12-02 Thread Jean-Pierre Rivière
a typo in my code : theme3=<<> instead of theme3=<> with that fix, I can see theme3 as a simple text, "thème 5" in the result line beginning by bag= as for the code with removeprefix, it works OK in an other tiddler. But here, it keeps being dizzy. the tiddler types are all set to tw5. any idea

[tw5] Re: clever default value for a parameter

2020-12-02 Thread Jean-Pierre Rivière
@Eric. Tahnk you! It does the trick but... not so much as I wanted. see the output I get: [image: unwanted-link.png] "thème 5" is indeed the tittle of an existing tiddler. What I am looking for is only the text "thème 5", not the link to "thème 5". Now, I know how to use $wikify to acieve

Re: [tw5] Re: Understanding how macro expansion works

2020-12-02 Thread Mohammad
Thanks Nico! On Wednesday, December 2, 2020 at 11:59:51 AM UTC+3:30 Nicolas Petton wrote: > Mohammad writes: > > Hi Mohammad, > > > Welcome back. > > Thanks :) > > > Off topic: > > > > I know your Project Manager plugin and more specific the Notebook > > theme and palette

Re: [tw5] Re: Understanding how macro expansion works

2020-12-02 Thread Nicolas Petton
Mohammad writes: Hi Mohammad, > Welcome back. Thanks :) > Off topic: > > I know your Project Manager plugin and more specific the Notebook > theme and palette (https://nicolas.petton.fr/tw/project-manager.html) have > a lot of fans! You may put the code on GitHub lets user send their issue