[tw5] Re: Drag field content

2018-07-05 Thread TonyM
Mark, Brilliant, that works as desired to drag and drop field contents to and from tiddler, as requested. I am yet to understand how you have done it. I love the macros naming *dragon* Finally I would like to be able drag and drop the order of items in a list field in the current tiddler.

[tw5] Spell checking in browser- has it gone?

2018-07-05 Thread Alex Hough
Hello TiddlyWorld, Is it just me of does the spell checker in Chrome no longer work wiht the latest pre-release of TW? Bellow is screenshot from https://tiddlywiki.com/prerelease/ This is from TW,com.. the errors are underlined best wishes Alex .·´¯`·.´¯`·.¸¸.·´¯`·.

[tw5] Re: Drag field content

2018-07-05 Thread TonyM
Mark, I have posted up a copy of my Edit-Fields development wiki (as at now) if you are interested. I am yet to finish incorporating the macros you shared. have a look if you have the opportunity http://tiddlywiki.psat.com.au/EditFields.html I intend to set the dragonfield to the 4 arrows

[tw5] Re: Node, 5.1.18-prerelease: TypeError: Buffer.alloc is not a function

2018-07-05 Thread Jed Carty
I think there were some changes to the Buffer module but that was a while ago. Are you using an older version of node? You can tell by opening a terminal and typing 'node -v'. If you have a version older than 6 you should probably consider updating. -- You received this message because you

[tw5] Re: Node, 5.1.18-prerelease: TypeError: Buffer.alloc is not a function

2018-07-05 Thread TonyM
Alex, It may be best for pre-release feedback to be placed in the TiddlyWikiDev group. Far be it me to tell you what to do but unless you need a feature in an impending release N-1 is the best, or the latest public release (older than a few weeks), especially when the next one foreshadowed is

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
Thank you TonyM for your response. Let us know what you want the toc to do, rather than define it by an existing example like Visual Studio, because then we may have a solution despite the current limitations. I had a long tiddler with several headings, say “Fish Shell Tips”. I do *not*

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread Jed Carty
You can transclude all the tiddlers like this: <$list filter='[tag[shell-fish]]'> <$transclude mode=block/> If you want to make the heading that shows the tiddler title you can do it like this: <$list filter='[tag[shell-fish]]'> !!{{!!title}} <$transclude mode=block/> -- You received

[tw5] Node, 5.1.18-prerelease: TypeError: Buffer.alloc is not a function

2018-07-05 Thread Alex Hough
@jeremy, Is this the best place to post the below? I have updated TW on node users-mbp-2:TW-Node alexhough$ tiddlywiki --version 5.1.18-prerelease Then I tried users-mbp-2:TW-Node alexhough$ tiddlywiki mynewwiki --init server The output was $:/core/modules/utils/filesystem.js:60

[tw5] Include JS code

2018-07-05 Thread Mohammad
This may be redundant. Is it possible to include this code in a Javascript tiddler and use it! var ul = document.getElementsByClassName('incremental'); for (var i = 0; i < ul.length; i++) { ul[i].style.listStyleType = 'decimal'; } var childlists =

[tw5] Re: Include JS code

2018-07-05 Thread PMario
Hi Mohammad, In short: No. I think it would be easier, if you describe, what you want to achive. So we may have a solution, or could provide help. more details: Your code directly manipulates the "redered output" in the DOM and also keeps program state in the DOM. This is similar to

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread TonyM
I am working on making this possible. But the transclusion method is the best. Given you are using transclusion do look at the excise editor toolbar buttons you will it useful. Just type in tge top tiddler and when ready with a section excise it. Also you could use jeds second list with only

Re: [tw5] Re: Node, 5.1.18-prerelease: TypeError: Buffer.alloc is not a function

2018-07-05 Thread Alex Hough
thanks Jed and Tony, I like using the latest version, and want to help iron out problems. I'm pretty certain I'm running an old version of node, thanks Jed! Alex On 5 July 2018 at 10:19, Jed Carty wrote: > I think there were some changes to the Buffer module but that was a while > ago. Are

[tw5] Re: Loan offer between private individual

2018-07-05 Thread TonyM
Advertising third party shit is prohibited here. On Thursday, July 5, 2018 at 7:08:46 PM UTC+10, MmeMonnet Berisha wrote: > > Loan offer between private individual > > You have been refused by the bank because your credit does not meet their > standard. you dream of doing your own business, your

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
Thank you Mohammad. I broke down my tiddler into smaller tiddlers with a common tag. You can also use transclusion to build a lengthy tiddler from small tiddlers. Transclusion is cool. But it’s a manual process. Every time I add a new tiddler, I will have to update the lengthy tiddler

[tw5] Loan offer between private individual

2018-07-05 Thread MmeMonnet Berisha
Loan offer between private individual You have been refused by the bank because your credit does not meet their standard. you dream of doing your own business, your house, paying an explainable debt, in need of money; I offer from $ 8000 to $ 4,000,000 at an interest rate of 2% per annum.

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread Mohammad
Hi Talha131, See the solution by Jed, no need to do those things manually at all. Tiddlywiki will do it! Cheers Mohammad On Thursday, July 5, 2018 at 1:52:39 PM UTC+4:30, talha131 wrote: > > Thank you Mohammad. I broke down my tiddler into smaller tiddlers with a > common tag. > > You can

[tw5] Re: [TW5] Announcing Single Executable version using Bob 1.0.2 Sourdough Biscuits

2018-07-05 Thread Jed Carty
Alex, If you use the single executable version than it doesn't require anything other than a computer running windows, linux or osx. It doesn't require a tiddlywiki or node install, everything is packed in the one executable. Neither the single executable version nor the plugin version require

[tw5] Re: Include JS code

2018-07-05 Thread 'Mark S.' via TiddlyWiki
Well, it can be used to write your own widgets, which I found really complicated and confusing, and not well-documented. It's easier to write your own javascript Macros or Filters. The easiest way to do that is to find a simple one (like the "now" macro) , clone it, and then modify it to use

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread TonyM
Talha, To support what Mohammad said *The philosophy of tiddler is the smallest meaningful chunk of contents. They are not for lengthy and huge amount of content.* *If you get this philosophy you wont need to have table of contents from headings instead you will need table of content from

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread Mohammad
Good job Tony! On Thursday, July 5, 2018 at 5:08:39 PM UTC+4:30, TonyM wrote: > > Talha, > > To support what Mohammad said > > *The philosophy of tiddler is the smallest meaningful chunk of contents. > They are not for lengthy and huge amount of content.* > *If you get this philosophy you wont

[tw5] Re: [TW5] Announcing Single Executable version using Bob 1.0.2 Sourdough Biscuits

2018-07-05 Thread @TiddlyTweeter
This is a periodic "shout-out" about the Brilliance Of Bob ... I, a relative idiot, got Bob to do loads of things quickly and easily ... Here is a shot of a small part of what I use Bob for ... -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

Re: [tw5] Re: [TW5] Announcing Single Executable version using Bob 1.0.2 Sourdough Biscuits

2018-07-05 Thread Alex Hough
Hi Jed, some dunmb questions: 1) does this require a node server connected to the internet 2) can we have go with a test version looks really good on the face of it, I need to spend more time on processing the detail. Seeing what it does would help me. Alex On 5 July 2018 at 14:06,

Re: [tw5] What does the qualify macro do

2018-07-05 Thread Jeremy Ruston
Hi Mohammad If you didn’t see it, there’s more information about the state mechanism here: https://tiddlywiki.com/#qualify%20Macro Best wishes Jeremy > On 5 Jul 2018, at 14:43, Mohammad wrote: > > Look at > https://tiddlywiki.com/#qualify%20Macro > > I dont get what really the qualify

[tw5] Re: How to turn the Geolocation Script to a macro for Sylvain Naudins Leaflet Plugin?

2018-07-05 Thread SylvainComte
Hello Jan, I did reply to you yesterday, but my reply has been deleted :'-( before retyping all, I have to be sure it will not be deleted again. So if anyone can explain why my reply went to trash? cheers Sylvain Le mardi 3 juillet 2018 00:37:10 UTC+2, Jan a écrit : > > Hello, > I would like

[tw5] What does the qualify macro do

2018-07-05 Thread Mohammad
Look at https://tiddlywiki.com/#qualify%20Macro I dont get what really the qualify macro do! Does it generate some states to be used with widgets like Reveal widget? If so, how and when these states are removed? /Mohammad -- You received this message because you are subscribed to the Google

[tw5] Re: Include JS code

2018-07-05 Thread Mohammad
Hello Mario, Thank you for your reply! I was playing with JavaScript and was curious to see how can I add JS code to Tiddlywiki. I understood JS code are not allowed to directly interact with the DOM objects! I appreciate if you introduce me some simple cases (tutorial) for learning how JS

[tw5] Re: Processing the text field a line at a time

2018-07-05 Thread BurningTreeC
Hi @TonyM, I've extended the "get" filter recently - see here I haven't tested it that much yet, but it returns line by line using the syntax: get:lines[text] BTC -- You received this message because you are subscribed to

[tw5] Re: Processing the text field a line at a time

2018-07-05 Thread TonyM
Thanks BTC I will review in 12+ Hours (Tomorrow Morning) This is personally yet another game changer, if I can use it as planned More detailed examination of the content of the Text field will allow much richer access to that content, and its manipulation. Rehards Tony On Thursday, July 5,

Re: [tw5] What does the qualify macro do

2018-07-05 Thread Alex Hough
Jeremy, To see the difference you have to open up the tiddler. I think the docuemntation example is possibly a bit confusing. For learning I think that perhaps the "try it" feature kind of gets in the way of opening the tiddler and seeing inside. the documentation tiddler macro adds another

[tw5] Re: How can list tag pills of the current tiddler in a table of filtered tiddlers?

2018-07-05 Thread S. S.
On Monday, April 30, 2018 at 11:19:07 PM UTC+7, Rene wrote: > > Yeah, removing "!tag[quote]" makes it work now. Unfortunately by clicking > on one pill, all pills with the same text open at once. That is a pretty > mess, but seems to be the way these pills work. Is there another solution >

[tw5] Sorting index names based on their values (data tiddler)

2018-07-05 Thread Hubert
Hi all, Is it possible to sort index names based on their values? For instance, could I have the following data set sorted as below: option_3_score: 5 option_4_score: 4 option_2_score: 3 option_1_score: 2 option_6_score: 1 option_5_score: 0 Here's my code, but the sorting operator has no

[tw5] Re: How can list tag pills of the current tiddler in a table of filtered tiddlers?

2018-07-05 Thread S. S.
On Monday, April 30, 2018 at 11:19:07 PM UTC+7, Rene wrote: > > Yeah, removing "!tag[quote]" makes it work now. Unfortunately by clicking > on one pill, all pills with the same text open at once. That is a pretty > mess, but seems to be the way these pills work. Is there another solution >

Re: [tw5] What does the qualify macro do

2018-07-05 Thread Mohammad
Hello Jeremy! I read that, but actually I didn't get the real purpose! /Mohammad On Thursday, July 5, 2018 at 6:16:37 PM UTC+4:30, Jeremy Ruston wrote: > > Hi Mohammad > > If you didn’t see it, there’s more information about the state mechanism > here: https://tiddlywiki.com/#qualify%20Macro

Re: [tw5] What does the qualify macro do

2018-07-05 Thread 'Mark S.' via TiddlyWiki
On Thursday, July 5, 2018 at 6:58:34 AM UTC-7, AlexHough wrote: > > Jeremy, > > To see the difference you have to open up the tiddler. > > I think the docuemntation example is possibly a bit confusing. > > For learning I think that perhaps the "try it" feature kind of gets in the > way of

Re: [tw5] Re: Include JS code

2018-07-05 Thread 'Mark S.' via TiddlyWiki
There's lots of great stuff about TW5. But the kit the user is given is incomplete compared to JS. If it was a complete kit, that would be one thing. The string operations are anemic. No logic operators. Ahem, nothing for creating new tiddlers from regular expressions (#2963). There's a post

[tw5] Re: Processing the text field a line at a time

2018-07-05 Thread 'Mark S.' via TiddlyWiki
Could probably also be done using the regexpression string extractor (PR #2963). --- 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

Re: [tw5] Re: Include JS code

2018-07-05 Thread Mohammad
Jeremy! I really appreciate your great work. I love TW5 and I use it in my daily work more than any other tools! We know you put a lot of time and distribute what you did free of charge and people use it some of them even don't know who brought this amazing tool to them. One suggestion here

Re: [tw5] What does the qualify macro do

2018-07-05 Thread Mohammad
Thank you Mark! Thank you Jeremy! Yes, the name is confusing! I would rather call it getNewState, genState or something like that! Anyway, I learned know what it is. It generate unique state tiddlers! /Mohammad On Thursday, July 5, 2018 at 7:40:13 PM UTC+4:30, Mark S. wrote: > > > > On

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
Thank you Jed. This is very useful. ​ -- 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

Re: [tw5] Spell checking in browser- has it gone?

2018-07-05 Thread Jeremy Ruston
Hi Alex The prerelease is configured to use the CodeMirror editor, which doesn’t support OS spell checking. Best wishes Jermy > On 5 Jul 2018, at 12:19, Alex Hough wrote: > > Hello TiddlyWorld, > > Is it just me of does the spell checker in Chrome no longer work wiht the > latest

[tw5] Re: Include JS code

2018-07-05 Thread 'Mark S.' via TiddlyWiki
Here's a link to an interesting post on the subject by Eric S. https://groups.google.com/forum/#!topic/tiddlywiki/M6wADVDjyTE -- Mark On Thursday, July 5, 2018 at 7:54:41 AM UTC-7, Mark S. wrote: > > Well, it can be used to write your own widgets, which I found really > complicated and

[tw5] Re: [TW5] Announcing Single Executable version using Bob 1.0.2 Sourdough Biscuits

2018-07-05 Thread @TiddlyTweeter
Ciao Alex Footnote to Jed. Its currently not possible to live demo Bob on the web securely. It makes it a bit more difficult than usual to grasp what it can do. My screenshot was a tiny part of it. The outstanding features for me are... (1) local networkable; (2) proper multi-user (i.e.

[tw5] Re: Include JS code

2018-07-05 Thread Mohammad
Thank you Mark! I actually do most the job with the current TW5 features and it is amazing in preparing semantic content. Cheers Mohammad On Thursday, July 5, 2018 at 7:24:41 PM UTC+4:30, Mark S. wrote: > > Well, it can be used to write your own widgets, which I found really > complicated

Re: [tw5] Re: How to turn the Geolocation Script to a macro for Sylvain Naudins Leaflet Plugin?

2018-07-05 Thread Jan
Salut Sylvain, I hoped you would reply (and don't worry, I still can see your reply...) I will give it a try, but this would be my first javascript-addon, so maybe you will be faster than me... Yours Jan Am 05.07.2018 um 16:48 schrieb SylvainComte: Hello Jan, I did reply to you

Re: [tw5] Re: Include JS code

2018-07-05 Thread Jeremy Ruston
> On 5 Jul 2018, at 15:54, 'Mark S.' via TiddlyWiki > wrote: > > I'm not sure what was gained by giving TW5 it's own tree, since the DOM based > approach obviously worked in TWC. Well, that’s 7 years of my life wasted! But seriously, do you not see any advantages of TW5 over TWC? To me,

[tw5] Is it possible to sort index names based on their values?

2018-07-05 Thread Hubert
Hi all, Is it possible to sort index names based on their values? For instance, could I have the following data set sorted as below: option_3_score: 5 option_4_score: 4 option_2_score: 3 option_1_score: 2 option_6_score: 1 option_5_score: 0 Here's my code, but the sorting operator has no

Re: [tw5] What does the qualify macro do

2018-07-05 Thread Jeremy Ruston
> On 5 Jul 2018, at 16:10, 'Mark S.' via TiddlyWiki > wrote: > > > "Qualify" can also mean something like "to define more carefully", So the > qualify macro helps create state tiddlers that won't be confused with each > other. Or at least that was my interpretation. That’s right. The

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread talha131
Thanks Tony. I am blown away by the capabilities of TiddlyWiki and level of help provided in the community. Really appreciated! With the help of your code, I ended up with following, which solves my problem nicely. @@float:right; {{fish-shell||$:/core/ui/TagTemplate}} @@ <> ​ On

[tw5] Re: Include JS code

2018-07-05 Thread Jed Carty
There is a huge usability gain, you don't need to know any javascript to make something new and useful with tiddlywiki. I made most of my earlier plugins that I still use before I knew any javascript. If it were just a neat javascript page that you used javascript to make things in than I never

[tw5] Re: field math: field = field + 1

2018-07-05 Thread Mohammad
Look here: http://mathmacros.tiddlyspot.com/ Or another version in http://tobibeer.github.io/tb5/#calc On Thursday, July 5, 2018 at 10:49:03 PM UTC+4:30, Dave wrote: > > What's the simplest way to do this? > > I did read about possibly having to

[tw5] Re: Include JS code

2018-07-05 Thread 'Mark S.' via TiddlyWiki
I would say there's a usability *loss*. As soon as you get beyond simple list loops, there's no clear way forward. Also, there's tons of documentation on JS. Standard procedures and techniques. Take a look at recent post https://groups.google.com/forum/#!topic/tiddlywiki/IpKqoJbs35c and

[tw5] Re: field math: field = field + 1

2018-07-05 Thread @TiddlyTweeter
Or, for basic Math, Telmiger's simple, flexible, RPN plugin, https://tid.li/tw5/plugins.html#%24%3A%2Fplugins%2Ftelmiger%2Frpn. On Thursday, 5 July 2018 20:19:03 UTC+2, Dave wrote: > > What's the simplest way to do this? > > I did read about possibly having to install a "spreadsheet" plugin,

[tw5] How to escape angle brackets inside a macro?

2018-07-05 Thread talha131
I have this text <>, that I am trying to place inside copy-to-clipboard macro. I tried following, but it didn’t work. <> >> Then taking cue from “How to escape double quotes inside copy-to-clipboard macro?”

[tw5] Re: reveal widget with type lt, gt, lteq or gteq

2018-07-05 Thread Mohammad
I found some examples here https://tiddlywiki.com/#StartupActions Seems it is text parameter again. Example <$reveal type="gteq" state="$:/info/browser/screen/width" text="3000"> <$action-setfield $tiddler="$:/state/sidebar" $value="yes"/> On Thursday, July 5, 2018 at 10:51:56 PM

[tw5] Re: Include JS code

2018-07-05 Thread Jed Carty
Perhaps I am unique, but it took me a much longer time to learn javascript than it did to learn wikitext, so I very much disagree that javascript is only a little harder than wikitext. And usability isn't functionality, so if a specific thing can be implemented isn't relevant to it. The things

[tw5] reveal widget with type lt, gt, lteq or gteq

2018-07-05 Thread Mohammad
Looking at: https://tiddlywiki.com/#RevealWidget I could not find an example using lt, gt, lteq or gteq types I wish to have a tiddler filed changes its value (integer value like 1, 2 ...) <$reveal type="gteq" state="$:/myState"> This is me But I

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-05 Thread talha131
Thank you Jed. ​ -- 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

[tw5] Re: field math: field = field + 1

2018-07-05 Thread Dave
That's perfect! Thank you :) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this group, send email to

[tw5] field math: field = field + 1

2018-07-05 Thread Dave
What's the simplest way to do this? I did read about possibly having to install a "spreadsheet" plugin, but surely there is a simple straight foreward way to do addition and subtraction of values in fields... Thanks, Dave -- You received this message because you are subscribed to the

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-05 Thread Jed Carty
I don't think that this is possible due to how the parser works. Because there is the macro call widget that can be used to get around the problem I don't think anyone is very motivated to dig into the parser and try and fix it because fixes like that often come with enough edge case problems

[tw5] Link an object inside the same tiddler

2018-07-05 Thread Adam
How can I link an object inside the same tiddler? What I have in mind is making a list in the beginning of a tiddler that will act as a table of contents for that tiddler. So when I press a link there I will be transfered to the appropriate place inside the tiddler. I guess, generally, this

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread Adam
Mark, I just found out about it and I am currently writing a reply there. This is a tremendous coincidence that two posts of the same contents were created so recently together. Thank you very much for pointing it out though. Cheers, Adam -- You received this message because you are

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread 'Mark S.' via TiddlyWiki
Here's a link to Jeremy's comments: https://groups.google.com/d/msg/tiddlywiki/QUXd3kG1pTQ/jMLgk_XvAQAJ Or read the whole thread. -- Mark On Thursday, July 5, 2018 at 6:01:22 PM UTC-7, Adam wrote: > > Greetings everyone, > > At one point Jed you say that this feature is never going to be in

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread Adam
Thanks Tony! Your response is a very optimistic way of seeing this. Cheers, Adam -- 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: field math: field = field + 1

2018-07-05 Thread Mohammad
Tony! The modified one is in Tobias Beer tb5 and it works. The TW version there is 5.1.13 http://tobibeer.github.io/tb5/#calc /Mohammad On Friday, July 6, 2018 at 6:47:18 AM UTC+4:30, TonyM wrote: > > Mohammad, > > Have you actually used the one at http://mathmacros.tiddlyspot.com/ >

[tw5] Re: Include JS code

2018-07-05 Thread passingby
On Thursday, July 5, 2018 at 12:09:15 PM UTC-6, Jed Carty wrote: > > There is a huge usability gain, you don't need to know any javascript to > make something new and useful with tiddlywiki. > I was a hobby level programmer in javascript. I remember many years ago in TWC using Eric Schulman's

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread TonyM
Adam, Not at all, ie: it is not optimistic, I have observed it. Perhaps it makes you optimistic that this community may be like this? Best Wishtes Tony On Friday, July 6, 2018 at 12:04:23 PM UTC+10, Adam wrote: > > Thanks Tony! > > Your response is a very optimistic way of seeing this. > >

[tw5] Re: TiddlyWiki Tree Testing Tool

2018-07-05 Thread Mohammad
Great idea! I would appreciate to share your results and success here. Some question: Are all fields sets by reading from xlsx files? Why you have tag field and not using from the standard TW tag? Cheers On Friday, July 6, 2018 at 8:50:44 AM UTC+4:30, cus...@sunyit.edu wrote: > > Having

[tw5] Re: state tiddler and state mechanism: use the

2018-07-05 Thread 'Mark S.' via TiddlyWiki
Why should they be different? You used the same state reference for both of them. The state reference is an index into the contents of the reveal widgets. If they all have the same state reference, then the last one defined gets used (or at least in FireFox). If you swap the reveal statements,

[tw5] Re: state tiddler and state mechanism: use the

2018-07-05 Thread Mohammad
Mark, One question: do you mean the state reference correspond to the contents in <$reveal> THE CONTENT ? If so I can use something like this ! First <$button popup=<> >Show First <$reveal type="popup" state=<> > ! Second <$button popup=<> >Show Last <$reveal type="popup" state=<>

Re: [tw5] Re: Node, 5.1.18-prerelease: TypeError: Buffer.alloc is not a function

2018-07-05 Thread Alex Hough
UPDATE The listen command still doesn't work, server does though. ast login: Fri Jul 6 06:19:08 on ttys003 users-mbp-2:~ alexhough$ node -v v8.11.3 users-mbp-2:~ alexhough$ TiddlyWiki --version 5.1.18-prerelease users-mbp-2:~ alexhough$ tiddlywiki mynewwiki --listen *Error: Unknown

Re: [tw5] What does the qualify macro do

2018-07-05 Thread TonyM
Mohammad, If I may explain the Qualify macro for you in my way. Just as the <> macro returns the time and date eg: 10:21, 6th July 2018 The <> macro returns a "unique number" eg: -85796999 and as Jeremy Described "in a way that is unique to the place in the widget tree that it is rendered"

[tw5] Re: How to escape angle brackets inside a macro?

2018-07-05 Thread TonyM
Talah, Now every time I want to do this, to use << angle brackets inside <> syntax? I convert it to a macro call. However the copy-to-clipboard is a basic and not very sophisticated macro. You can't even change or hide the label. But the copy to clipboard macro is based on the

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread TonyM
Adam, You say, *This is a tremendous coincidence that two posts of the same contents were created so recently together* But actually it is surprisingly common, because we are all on a shared journey to develop ways to do things in TiddlyWiki, and until a clear answer exists many of us a

[tw5] Re: field math: field = field + 1

2018-07-05 Thread TonyM
Mohammad, Have you actually used the one at http://mathmacros.tiddlyspot.com/ the wiki is version 5.1.5 and Is not working out of the box in 5.1.17 Regards Tony On Friday, July 6,

[tw5] Re: Is TW markup in caption field a bad practice?

2018-07-05 Thread barrowgloom
My gratitude for your response, Tony, With the wikitext markup, I was under the impression it was for the tiddler text body while everything else would be handled by CSS styling and why I was thinking the markup wouldn't mix well. I am doing like you suggest and going with it. Basically

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread Adam
Yes exactly! The first reason I check when I try to find a new piece of software to use is whether it is open source. Being open source mainly has to do with the community, so the better the community the more comfortable I am when using the software. - Adam On Friday, July 6, 2018 at

[tw5] Re: Is TW markup in caption field a bad practice?

2018-07-05 Thread TonyM
Barro... I sounds seriously odd that *"Windows and browser overrides all styling" * I suggest dealing with that before you go down a solution path dictated by such particular circumstances. This needs a root cause analysis, not constructing solutions that exist in your own browser and perhaps

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread TonyM
Talah, Thanks for the feedback, Happy to help, It is helpful when you say how you used an answer (as you did). In fact you may be new but you just reminded me of @@float:right;@@ I need to use in something I am doing. Helping each other is a virtuous circle, and when posted publicly also

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread 'Mark S.' via TiddlyWiki
This is basically the same thing as the recent topic: How to create Table of Contents inside a tiddler? "https://groups.google.com/forum/#!topic/tiddlywiki/5rosst5JqTU Good luck! -- Mark On Thursday, July 5, 2018 at 5:29:35 PM UTC-7, Adam wrote: > > How can I link an object inside the same

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread Adam
Greetings everyone, At one point Jed you say that this feature is never going to be in the core. Given how flexible TiddlyWiki is I wonder, why can't this be done? I am a noob but creating a reference point to a page doesn't seem too difficult. In my mind most webpages have links that

[tw5] Re: Include JS code

2018-07-05 Thread TonyM
Folks, Jed and Mark, I agree with your apparently conflicting positions here, here is something I have realised recently. TiddlyWiki is mostly designed to act on its own elements, tags, tiddlers, fields etc... and it does this in the way any "High Level" programming language does, it treats

[tw5] Re: How to create Table of Contents inside a tiddler?

2018-07-05 Thread TonyM
Adam, Such anchors are highly desirable, and a lot of people have being wanting this, but as I understand it the basic unit in TiddlyWiki is the tiddler, and the text wrapped in a html and somehow this interferes. TiddlyWiki is miraculous that "*any change anywhere is immediately reflected

Re: [tw5] What does the qualify macro do

2018-07-05 Thread Mohammad
Many thanks Tony! Cheers Mohammad On Friday, July 6, 2018 at 5:10:06 AM UTC+4:30, TonyM wrote: > > Mohammad, > > If I may explain the Qualify macro for you in my way. > > Just as the <> macro returns the time and date > eg: 10:21, 6th July 2018 > > The <> macro returns a "unique number" > eg:

[tw5] Re: Include JS code

2018-07-05 Thread TonyM
Passingby, I empathise with your feelings, this happened to me initially, feeling also that TW5 "had too long a learning curve", rather than the quicker "steeper" learning curve (common misuse of the "learning curve" phrase avoided here, the horizontal on this curve is time, and the vertical

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread TonyM
Yes, Another advantage of open source, especially tiddlywiki, because of the degree of combustibility, is "even if you paid someone to build a solution with it" you are not tied to them because you can always get help elsewhere or do it yourself. There is no proprietary lock out. This reduced

[tw5] Re: Include JS code

2018-07-05 Thread Mohammad
Passingby! Tony! I agree there is limited documentation on TW5 and some of them in tiddlywiki.com are not good for learning purpose and may target developer or advanced users. If we could improve the documentation, then I think the learning curve will be short. For the Javascript and TWC, I

[tw5] state tiddler and state mechanism: use the

2018-07-05 Thread Mohammad
Put this code inside a tiddler ! First <$button popup="yourstate">Show First <$reveal type="popup" state="yourstate"> I am the *first part* ! Second <$button popup="yourstate">Show Last <$reveal type="popup" state="yourstate" class="tc-popup-keep"> I am the *second part* Clicking on any

[tw5] Re: Link an object inside the same tiddler

2018-07-05 Thread Adam
You are not tied especially to a company that may stop the development and leave you with a never to be updated piece of software. I also like to try and configure the code myself sometimes for minor tweaks. I don't feel free using a proprietary software as I don't think I can do anything than

[tw5] TiddlyWiki Tree Testing Tool

2018-07-05 Thread cushinj
Having used some paid solutions for tree testing, I started thinking that TiddlyWiki had more functionality than any of them. Being able to convert an XLSX into tiddlers that then can easily be turned into lists is an ideal process that fits nicely into TiddlyWiki's capabilities. I wanted to