[tw5] Drag n' drop links from browser to TW

2018-09-12 Thread nakedmind
Hi there! Currently when I drag an html link from a browser into the text editor within a tiddler I'm editing, I get the link URL. Is it possible to modify this behavior so that something like this: *[[Text of the link|URL of the link]]* is inserted instead? -- You received thi

[tw5] Re: Return a literal or new title from a filter?

2018-09-12 Thread TonyM
Eric, Thanks, this is a great work around for, However I have potentially very large filters if I use this method. I would prefer to be able to use; [has[item-completed]title[SOME_LITERAL_VALUE]] Because I would like to have something like this "[has[item-cancelled]title[Cancelled]] [has[ item

[tw5] Re: Return a literal or new title from a filter?

2018-09-12 Thread Eric Shulman
On Wednesday, September 12, 2018 at 7:08:44 PM UTC-7, TonyM wrote: > > *Does anyone know another way to return a value as a result of a condition > in the middle of a filter?* > Try this: [has[item-completed]removeprefixaddprefix[ SOME_LITERAL_VALUE]] let me know how it goes... enjoy -e -- Yo

[tw5] Return a literal or new title from a filter?

2018-09-12 Thread TonyM
Folks, I am working on and idea to return status values for a given tiddler according to the result of a filter. Most of you would be familiar with a filter such as this; [has[item-completed]get[item-completed]] Basically when the current tiddler has the field item-completed (containing a val

Re: [tw5] Re: [TW5] Bob version 1.0.5 Salt Bagels, or I should probably let people know about the plugin library

2018-09-12 Thread Arlen Beiler
How does the websockets work? Do you have it setup for data folders or just for the main Bob wiki. I don't know how Bob works (sorry, I should, I know), but I am trying to implement a standard interface for plugins to communicate with the server in a server-agnostic way, and I'm curious what your t

[tw5] Re: How do I make toc category obey "empty" after exclusion? Also, is there a way to sort by title only if no caption exists?

2018-09-12 Thread TonyM
ps In my own filter I needed "[all[current]has[caption]get[caption]] [all[current]!has[caption]get[title]] +[sort[]]" Regards Tony On Thursday, September 13, 2018 at 10:48:01 AM UTC+10, TonyM wrote: > > Nice Filter! > > On Thursday, September 13, 2018 at 3:18:12 AM UTC+10, Mark S. wrote: >> >

Re: [tw5] Re: [NodeJS][Android] TiddlyWiki takes 30 seconds to load modules in ARM architecture

2018-09-12 Thread Arlen Beiler
Maybe we should add a feature where it saves a render of the startup tiddlers which will display until the render tree is up and running. I wonder if it is possible to show a progress indicator as well, but the code we're talking about here is completely synchronous. I also wonder what would happ

[tw5] Re: How do I make toc category obey "empty" after exclusion? Also, is there a way to sort by title only if no caption exists?

2018-09-12 Thread TonyM
Nice Filter! On Thursday, September 13, 2018 at 3:18:12 AM UTC+10, Mark S. wrote: > > It sounds like you have things mostly sorted out. > > A filter like this might allow you to sort by caption or title (whichever > is present): > > [has[caption]get[caption]] [!has[caption]get[title]] +[sort[]] >

[tw5] Bug? Cannot find module named '../javascript/javascript

2018-09-12 Thread TonyM
Folks, I now have a re-occurring fault, when I load a wiki and hope someone has a suggestion or debug path I get an "Internal JavaScript Error" below the first tiddler on load Well, this is embarrassing. It is recommended that you

[tw5] Re: Vue.js integration (plugin)

2018-09-12 Thread @TiddlyTweeter
I'll send you some data tomorrow. I looked and used the phone example. Its really good. On Thursday, 13 September 2018 02:00:04 UTC+2, Guille Rmo wrote: > > Ok, send me the sample data, maybe I can figure it out. > > I have made a simple phonebook app to give a simple example: > https://rawgit

[tw5] Re: Vue.js integration (plugin)

2018-09-12 Thread Guille Rmo
Ok, send me the sample data, maybe I can figure it out. I have made a simple phonebook app to give a simple example: https://rawgit.com/Guitlle/vuewiki/build/build/docs.html#Phonebook El miércoles, 12 de septiembre de 2018, 7:09:05 (UTC-6), @TiddlyTweeter escribió: > > Guille > > If you have s

[tw5] Re: bj's visualeditor includelib path on both Windows and Mac?

2018-09-12 Thread armlet
Relative path works! This is what it looks like: Thanks so much for the help. On Wednesday, September 12, 2018 at 11:28:52 AM UTC-5, Mark S. wrote: > > On windows, I can use: > > > > which is a relative path below the current TW file. So, if you can do the > same on Mac, then the same code cou

[tw5] Re: How do I make toc category obey "empty" after exclusion? Also, is there a way to sort by title only if no caption exists?

2018-09-12 Thread 'Mark S.' via TiddlyWiki
It sounds like you have things mostly sorted out. A filter like this might allow you to sort by caption or title (whichever is present): [has[caption]get[caption]] [!has[caption]get[title]] +[sort[]] Just remember, that if you use caption then there might be more than one tiddler that uses tha

[tw5] Re: bj's visualeditor includelib path on both Windows and Mac?

2018-09-12 Thread 'Mark S.' via TiddlyWiki
On windows, I can use: which is a relative path below the current TW file. So, if you can do the same on Mac, then the same code could be used for both. (I don't have a Mac to test). Windows supports junctions, and I believe Mac supports symbolic links. So your source directory would not hav

[tw5] Re: How and Why Should I Use Tags in Tiddlywiki?

2018-09-12 Thread @TiddlyTweeter
> > h0p3 asked ... > >> * How many tags in a wiki and/or per tiddler are optimal? > > I can't answer that precisely because it would depend on the overall complexity. But, note, the more complexity you have on *render* the more likely your TW slows down. Its not just ADDING tags, its as much ab

[tw5] Re: How to get the current (dynamic) date/time as state for the <$reveal> widget?

2018-09-12 Thread Hubert
Just what I was looking for, absolutely amazing and simpler than I thought. Thank you Eric! On Wednesday, 12 September 2018 16:42:06 UTC+1, Eric Shulman wrote: > > On Wednesday, September 12, 2018 at 7:53:56 AM UTC-7, Hubert wrote: >> >> I'm trying to perform some actions based on the time of day

[tw5] Re: How to get the current (dynamic) date/time as state for the <$reveal> widget?

2018-09-12 Thread Eric Shulman
On Wednesday, September 12, 2018 at 7:53:56 AM UTC-7, Hubert wrote: > > I'm trying to perform some actions based on the time of day. I'm unable to > get the current date/time without resorting to a button push that sets a > timestamp in a field that will serve as the state for the reveal widget.

[tw5] bj's visualeditor includelib path on both Windows and Mac?

2018-09-12 Thread armlet
I have been using bj's visualeditor plugin on Windows, the tiddler `$:/plugin/jb/visualeditor/includelib` looks like this: And all related files are located in OneDrive folder and synced. Now I am trying to open the tiddlywiki file on mac, but that path including `C:\` obviously doesn't work.

[tw5] Re: How and Why Should I Use Tags in Tiddlywiki?

2018-09-12 Thread @TiddlyTweeter
h0p3 asked ... > * What constitutes a good tag? > Its worth noting that tags in TiddlyWiki are quite promiscuous. Meaning you can use them to (1) activate architecture (e.g. "$:/tag/MakeThisThingActive"), (2) to provide simple dropdown menus (e.g. "MyRecipies" on a dozen Tiddlers only menued

[tw5] Re: How and Why Should I Use Tags in Tiddlywiki?

2018-09-12 Thread @TiddlyTweeter
h0p3 wrote ... * What is an obvious example of tagging being the best and irreplaceable > tool for the job? > That Beatrice Grum was your mother? :-) title: Beatrice Grum tag: mother Beatrice Grum was my mother. I assume the vast majority of TW users abuse tags very hard. > There can be a te

[tw5] How to get the current (dynamic) date/time as state for the <$reveal> widget?

2018-09-12 Thread Hubert
Hi all, I'm trying to perform some actions based on the time of day. I'm unable to get the current date/time without resorting to a button push that sets a timestamp in a field that will serve as the state for the reveal widget. Is there a way for the state text reference to automatically updat

[tw5] Re: How and Why Should I Use Tags in Tiddlywiki?

2018-09-12 Thread @TiddlyTweeter
Mark S. wrote ... ... but it's quicker out of the box to just use tags until you nail down > exactly what data is important for what purposes. > FWIW I think that is great practical advice. Tags as a step towards preciser refinement sounds spot-on to me. -- You received this message because y

[tw5] Re: [NodeJS][Android] TiddlyWiki takes 30 seconds to load modules in ARM architecture

2018-09-12 Thread @TiddlyTweeter
Mark S. wrote: > > TiddlyWiki in general is slow for me on my circa 2012 Samsung devices. > Takes 20 to 30 seconds to load a stand-alone TW file. > I don't mind waiting once in a while as I now know the bang for buck. But IF it were my first time testing it, as a possible future user, its a co

[tw5] Re: How and Why Should I Use Tags in Tiddlywiki?

2018-09-12 Thread 'Mark S.' via TiddlyWiki
On Tuesday, September 11, 2018 at 5:32:32 PM UTC-7, h0p3 wrote: > > @Mark S. > > Tags provide the equivalent of folders, and allow semantic context to be >> affixed to tiddlers without despoiling the title. While it's true that much >> of what you do with Tags could possibly be done with fields

[tw5] Re: [NodeJS][Android] TiddlyWiki takes 30 seconds to load modules in ARM architecture

2018-09-12 Thread 'Mark S.' via TiddlyWiki
TiddlyWiki in general is slow for me on my circa 2012 Samsung devices. Takes 20 to 30 seconds to load a stand-alone TW file. -- Mark On Tuesday, September 11, 2018 at 8:58:35 PM UTC-7, Arlen Beiler wrote: > > I ran some tests this morning and discovered why it takes so long for > TiddlyWiki an

[tw5] Re: Vue.js integration (plugin)

2018-09-12 Thread @TiddlyTweeter
Guille If you have some example applications using this, we can put it in the > documentation. > Regarding examples. The way it works is very interesting in that its quite dynamic for assembling things. One application that may be of interest could be to do accounts? This would need some kind

[tw5] Re: [Off Topic] Why I Like OLD firefox

2018-09-12 Thread @TiddlyTweeter
TonyM wrote: > > I totaly understand your browser practice. I used to use multiple profiles > in firefox to do the same. Unfortunatly I found it fiddly and fragile. > I think I was lucky in that I stumbled upon a great profile manager that worked very robustly & simply from within FF without an

Re: [tw5] Re: How to query tags?

2018-09-12 Thread Alexei R
You can start with Introduction to Lists and Filters ... "*We choose* to go to the Moon in this decade *and do* the other things, *not because they* are *easy*, *but because they* are hard" JFK https://www.you

[tw5] Simple Calendar Macro

2018-09-12 Thread TonyM
Did you try the pikaday plugin? Tony -- 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] Simple Calendar Macro

2018-09-12 Thread Marcus
Is there a way to use the <> macro to change the value of a field? For example: <> to change the field agenda-date of <> to the date selected on the calendar How would I modify the macro to do that? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" gr

[tw5] Re: The geolocation widget is alive

2018-09-12 Thread SylvainComte
Hi Sylvain, As I pretty much like hearts, I'll go for a post there ;-) I also noticed that bug with osm tiles. Seems they've reduced zoom range for their tile provider. I should edit the json tile file... cheers Sylvain Le lundi 10 septembre 2018 23:16:12 UTC+2, Sylvain Naudin a écrit : > > G