[tw] Re: TiddlyWiki app idea

2017-01-21 Thread Tobias Beer
Hi Marion, > I did create a PR: https://github.com/Jermolene/TiddlyWiki5/pull/2721 > Neat stuff using that paramObject. Best wishes, Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw] Re: TiddlyWiki app idea

2017-01-21 Thread PMario
On Wednesday, January 18, 2017 at 8:16:36 PM UTC+1, PMario wrote: > > On Wednesday, January 18, 2017 at 12:52:28 PM UTC+1, Tobias Beer wrote: >> >> So the 1-click action is discussed, but not available yet. I personally >>> prefer b). >> >> I think it would be easier to implement. I'll have a

[tw] Re: TiddlyWiki app idea

2017-01-18 Thread PMario
On Wednesday, January 18, 2017 at 12:52:28 PM UTC+1, Tobias Beer wrote: > > So the 1-click action is discussed, but not available yet. I personally >> prefer b). > > I think it would be easier to implement. I'll have a closer look. > > Tobias seems to prefer a). So we'll see :) > > > I have no

[tw] Re: TiddlyWiki app idea

2017-01-18 Thread Tobias Beer
Hi Mario, So the 1-click action is discussed, but not available yet. I personally > prefer b). I think it would be easier to implement. I'll have a closer look. Tobias seems to prefer a). So we'll see :) I have no preference at all. If a message is the best way to do it, i.e.

[tw] Re: TiddlyWiki app idea

2017-01-18 Thread PMario
On Wednesday, January 18, 2017 at 1:38:10 AM UTC+1, PJO wrote: > > Apologies, I completely missed your post with the downloadable attachment > and was responding to a different post. I've now tried it out. First, let > me say *thanks*! > ah, ok. You are welcome. > I was initially slightly

[tw] Re: TiddlyWiki app idea

2017-01-17 Thread PJO
Apologies, I completely missed your post with the downloadable attachment and was responding to a different post. I've now tried it out. First, let me say *thanks*! I was initially slightly baffled. Instead of URL date You've made tiddlername comment journalbutton url and took me a few

[tw] Re: TiddlyWiki app idea

2017-01-17 Thread PMario
On Tuesday, January 17, 2017 at 1:35:03 PM UTC+1, PJO wrote: > > No, I don't want a journal equivalent in TiddlyWiki of the browser history. > What makes you think, that's the case, if you didn't test it? > Let me walk you through it by describing doing manually what I'd like to > automate.

[tw] Re: TiddlyWiki app idea

2017-01-17 Thread PJO
Maybe I've misunderstood... are you suggesting this: changing each link to a button that includes the date it was last clicked? That would work, sure! I haven't had time to futz with this. Will try later today. -- You received this message because you are subscribed to the Google Groups

[tw] Re: TiddlyWiki app idea

2017-01-17 Thread PJO
No, I don't want a journal equivalent in TiddlyWiki of the browser history. Let me walk you through it by describing doing manually what I'd like to automate. Let's say it's Monday, and the 1st day of the month and I wish to do some weekly and monthly visits to some web sites. First I go to

Re: [tw] Re: TiddlyWiki app idea

2017-01-17 Thread PMario
Hi, Did you try my attachment from the other post? -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 it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To post to this

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PJO
Small, addendum, having looked at the github discussion: I don't need to *count* visits or keep a history (I'd archive the browser history if I did). I just want to know when I last visited a web page. I keep some of my bookmarks in TiddlyWiki and that works pretty well apart from not tracking

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PJO
All, I'm bowled over at the responses here. What a community! Thanks! -- 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.

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread Jeremy Ruston
Hi Tobias > > Did you consider enhancing the ext parser as suggested here? > #2711 invoke actions when clicking external link > https://github.com/Jermolene/TiddlyWiki5/issues/2711 I've replied briefly on GitHub. Best wishes Jeremy > Best wishes, > > Tobias. > -- > You received this

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread BJ
correction the macro should be \define datedlink(x) <$button setTo="v" set="$x$"><$text text={{$x$!!title}}/><$view tiddler="$x$" field="modified" format="date" template={{$:/language/Tiddler/DateFormat}}/> <$click state="$x$" text="v"/> \end > On Monday, January 16,

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread BJ
I have noticed that the displayed modified date is not changing, this is because the view widget does not update when the data changes, if you look at the tiddler itself in the story you can see its modification date changing On Monday, January 16, 2017 at 5:48:44 PM UTC+1, BJ wrote: > > I

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread Tobias Beer
Hi @Jeremy, > Tracking external links can be a tricky business. For example, there's no > JavaScript event issued if a user right clicks on a link and selects to > open it in a new tab/window. I'd be more inclined to focus the other way > around: constructing an action widget for opening a

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread BJ
I have a plugin that allow links to be clicked: http://bjtools.tiddlyspot.com/#ClickAction you could use it like this: (you can open a new tiddler at http://bjtools.tiddlyspot.com/ and paste the code below to try it) \define datedlink(x) <$button setTo="v" set="$x$"><$text

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PMario
On Monday, January 16, 2017 at 4:06:45 PM UTC+1, Jeremy Ruston wrote: > > Tracking external links can be a tricky business. For example, there's no > JavaScript event issued if a user right clicks on a link and selects to > open it in a new tab/window. I'd be more inclined to focus the other way

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PMario
At the moment the "record-comment" macro allows to creates a log-entry every minute. This is accomplished with the <> macro. The macro can be found in the test-filter tiddler. \define record-comment() <$action-setfield $tiddler=<> $index=<> $value={{!!comment}}/> <$action-setfield $tiddler=<>

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PMario
uups, forgot to talke about the workflow :) For me it is important to have a possibility to add a comment to every journal entry. 1 add comment 2 click add journal entry 3 open link. or just 3 open link, if you don't want to add a journal. or just use 1 and 2 without 3 ... and so on have

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PMario
Hi PJO, *Important: Use a backup of your TW, to play with this concept.* I did create a proof of concept, to play around with the input possibilities and a decent display structure, that I think could be useful. The attachment contains a file, that you can download and drag and drop import

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PMario
On Monday, January 16, 2017 at 4:21:41 PM UTC+1, PJO wrote: > > I'd be happy enough to trade off right-clicking. To amplify a little > further, probably unnecessarily, I'd be happy to have tiddlers with the > following > where the date was updated whenever the corresponding URL was clicked. >

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread PJO
I'd be happy enough to trade off right-clicking. To amplify a little further, probably unnecessarily, I'd be happy to have tiddlers with the following 1. URL date 2. URL date 3. URL date where the date was updated whenever the corresponding URL was clicked. -- You received this message

Re: [tw] Re: TiddlyWiki app idea

2017-01-16 Thread Jeremy Ruston
Tracking external links can be a tricky business. For example, there's no JavaScript event issued if a user right clicks on a link and selects to open it in a new tab/window. I'd be more inclined to focus the other way around: constructing an action widget for opening a link in a new tab, and

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread PMario
On Monday, January 16, 2017 at 1:08:21 PM UTC+1, Tobias Beer wrote: > > I guess you have noticed by now that, no matter how you turn it, > there currently is no way to attach some custom button action to external > links. > I know. But it turns out, that's not really necessary (at least for me

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread Tobias Beer
Hi PJO & PMario, > ...unless perhaps you nest your link inside the button. > I extended the ticket... *#2711 invoke actions when clicking external link* https://github.com/Jermolene/TiddlyWiki5/issues/2711

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread Tobias Beer
Hi PMario, I guess you have noticed by now that, no matter how you turn it, there currently is no way to attach some custom button action to external links. At least, that is what experimenting will make you aware of. Best wishes, Tobias. -- You received this message because you are

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread PMario
Hi PJO, So if I understand it right, you want a list of links represented by "journal like link-buttons" Whenever you click a link it adds a record to the journal. My idea is, to use one data-tiddler per URL / journal. ... They are easy to create Then use a "custom" list to create the

[tw] Re: TiddlyWiki app idea

2017-01-16 Thread PJO
I'm aware of browser history, thanks. What I was thinking of was an app that allowed me to tag a curated list of web sites to facilitate some kind of regular review (weekly, monthly and quarterly, say). No bookmarking tool I've ever seen does it. Currently one can add bookmarks to folders

[tw] Re: TiddlyWiki app idea

2017-01-15 Thread PMario
On Saturday, January 14, 2017 at 7:40:16 PM UTC+1, PJO wrote: > > Something I've always wanted in a bookmarking app and which I've yet to > see implemented is a way of tracking when I last visited a site: > Hi, Just use the browser history. eg: In Firefox you have several sorting options: eg:

[tw] Re: TiddlyWiki app idea

2017-01-15 Thread Tobias Beer
Hi PJO, Come to think of it, perhaps the parser for external links could be extended like so: [ext actions=variableName[|]] In other words, when clicked, the actions defined in *variableName* are performed. I created an issue on Github for this: *#2711 invoke actions when clicking external

[tw] Re: TiddlyWiki app idea

2017-01-15 Thread Tobias Beer
Hi PJO, > Something I've always wanted in a bookmarking app and which I've yet to > see implemented is a way of tracking when I last visited a site where the > date is updated whenever the URL is clicked on. > > How easy would it be to this with TW5? > At the moment, there is no action