Re: [tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Matabele
Hi I tried this -- it doesn't work :-( I created a global macro: \define currentTitle() <$list filter="[get[draft.of]] [!has[draft.of]]" > \end The result of a simple macrocall is as expected in both view and edit mode: <> However, when I try this, there is no output in either view or

[tw] Re: Outlining plugin request

2015-10-31 Thread Matabele
Hi Dave Same problem -- which script from the CK download site? regards On Sunday, 1 November 2015 01:28:26 UTC+2, David Gifford wrote: > > got it to work using the script at the CK download site. > > Dave > > On Saturday, October 31, 2015 at 5:12:02 PM UTC-6, David Gifford wrote: >> >> Hi BJ

[tw] Re: [TW5] newtiddler tagging help

2015-10-31 Thread Devin Baillie
I'm not sure where exactly to put this. This is what I tried, but it doesn't seem to do anything: <$edit-text tiddler="$:/temp/NewTaskButtonTemplate/input" tag="input" type="text" placeholder="New Task"/> <$set name="tag1" value="task"> <$set name="tag2" value={{!!title}}> <$newtiddler

[tw] Re: TiddlyWiki markdown plugin - fenced code blocks

2015-10-31 Thread Matabele
Hi Doesn't render if I copy across the markdown plugin -- what tiddler type should I be using? regards On Saturday, 31 October 2015 23:53:04 UTC+2, BJ wrote: > > I have put a 'marked' flavor markdown plugin on bjtools > > http://bjtools.tiddlyspot.com/ > > > > On Tuesday, October 27, 2015 at

[tw] Re: Outlining plugin request

2015-10-31 Thread Matabele
Hi OK -- works. The tiddler type must be set to 'ckeditor usage' regards On Sunday, 1 November 2015 06:54:06 UTC+2, Matabele wrote: > > Hi Dave > > Same problem -- which script from the CK download site? > > regards > -- You received this message because you are subscribed to the Google

[tw] Re: [TW5] newtiddler tagging help

2015-10-31 Thread Matabele
Hi Have you tried to use an $action-sendmessage widget with 'tm-new-tiddler'? Else, if you are looking to create a tiddler in the background, try the $x-maketid widget from here . regards On Sunday, 1 November 2015 07:27:01 UTC+2, Devin Baillie wrote: > > I'm

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Matabele
Hi There's a special tagging[] operator for this: [all[current]tagging[]], will list all tiddlers tagged with the title of the current tiddler. But any of these should work: <$list filter="[tag{!!title}]"/> <$list filter="[all[current]tagging[]]"/> <$list filter="[tag]"/> Don't know why

Re: [tw] Re: Announcing TiddlyDesktop v0.0.6

2015-10-31 Thread Jeremy Ruston
Hi Jon It’s not currently possible to adjust the page zoom for v0.0.5 and v0.0.6. I am exploring approaches for implementing it. Best wishes Jeremy > On 30 Oct 2015, at 20:10, Jon wrote: > > Hi, > > Is it possible to alter the page zoom? > > Thanks > Jon > > On

Re: [tw] Re: [TW5] edit-text widget with popup

2015-10-31 Thread Matabele
Hi Not sure exactly what you're looking for, but try something like this: <$edit-text tiddler="$:/temp/input" tag="input" default="" focusPopup="$:/state/demo" class="tc-popup-handle"/> <$reveal state="$:/state/demo" type="nomatch" text="" default=""> <$linkcatcher to="TargetTiddler!!myfield">

Re: [tw] Re: [TW5] edit-text widget with popup

2015-10-31 Thread FrD
Hi Matabele, That's exactly what I was looking for. Thanks a lot. I should have tried that but believed that the "to" attribute had to be a tiddler. FrD -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw] Re: Announcing TiddlyDesktop v0.0.6

2015-10-31 Thread Jon
OK, thanks Jeremy. Regards Jon On Thursday, 29 October 2015 19:21:25 UTC, Jeremy Ruston wrote: > > Hot on the heels of v0.0.5, I’m pleased to announce TiddlyDesktop v0.0.6 > with the following improvements: > > * Added ability to drag and drop TiddlyWiki files into the wiki list > window from

[tw] Re: [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread Ton Gerner
Hi, Nice plugin. But, when the tag does not exist you get a javascript error. Cheers, Ton On Saturday, October 31, 2015 at 9:10:12 AM UTC+1, Matabele wrote: > > Hi > > Tried your plugin with v5.1.10 beta -- generates a javascript error when > called. > > regards > > On Friday, 30 October

[tw] Re: [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread Matabele
Hi Tried your plugin with v5.1.10 beta -- generates a javascript error when called. regards On Friday, 30 October 2015 23:28:50 UTC+2, ih...@newsfromgod.com wrote: > > > The vecmap plugin shows tiddlers with an SVG/HTML5 diagram like the > following: > > It uses the tags to figure out the tree

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Devin Baillie
Good thought. I'll do that from now on, thanks so much for your help. On Saturday, October 31, 2015 at 7:57:50 AM UTC-6, Matabele wrote: > > Hi > > It's a useful tool, especially for complex filter expressions. Substitute > a hard link (tiddler title) to test the filter, then replace this with

[tw] Re: [TW5] newtiddler tagging help

2015-10-31 Thread Devin Baillie
Also, how would I go about clearing the text box after the button is clicked? Thanks in advance! On Saturday, October 31, 2015 at 11:13:41 AM UTC-6, Devin Baillie wrote: > > I've got multiple projects, and I want to be able to create tasks tagged > with each project name. > > I've created a

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Matabele
Hi They wouldn't, they all filter on the title of the current tiddler. When you enter the preview panel, the current tiddler becomes '$:/AdvancedSearch'. regards On Saturday, 31 October 2015 15:33:40 UTC+2, Devin Baillie wrote: > > Interesting. These all seem to work, but not in the

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Antaeus Feldspar
| I searched and found this thread, which suggested a few alternatives that didn't work: | <$list filter="[tag[$(title)$]]"> | | and | <$list filter="[tag]"> | | and | <$list filter="[tag{!!title}]"> | | all give nothing. I think I may have figured out the problem. If you take

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Devin Baillie
Good to know. I won't rely on it in the future. Thanks. On Saturday, October 31, 2015 at 7:50:32 AM UTC-6, Matabele wrote: > > Hi > > They wouldn't, they all filter on the title of the current tiddler. When > you enter the preview panel, the current tiddler becomes > '$:/AdvancedSearch'. > >

[tw] Outlining plugin request

2015-10-31 Thread David Gifford
Hi all Here is a plugin idea for you to consider, those of you who play around with plugins. Not sure this is a possibility, but worth asking. One of the reasons I prefer Workflowy over TiddlyWiki for writing and outlining is that outlining is much faster in Workflowy. No need to add

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Antaeus Feldspar
| They wouldn't, they all filter on the title of the current tiddler. When you enter the preview panel, the current tiddler becomes '$:/AdvancedSearch'. Actually, I think Devin may mean the preview panel that's part of the Edit Template. If you're editing tiddler "Foo" and you click the "show

[tw] Re: Outlining plugin request

2015-10-31 Thread Jed Carty
Something like that could probably be done with a widget. You wouldn't need to be editing a tiddler to use it. I don't know how often you would want to switch from this to regular editing in the same tiddler, if you don't than a widget that does this shouldn't be too difficult. -- You

[tw] Re: Announcing TiddlyDesktop v0.0.6

2015-10-31 Thread Mark Kerrigan
Dear Jeremy Really like TiddlyDesktop, I was able to view orphans on my 13.9 mb TiddlyWiki without totally crashing the browser. The only thing is the browser search is missing. When you have a bunch of tiddlers open, it's really convenient to just hit CMD-F and search for the exact occurrence

[tw] Re: [TW5] newtiddler tagging help

2015-10-31 Thread Eric Shulman
On Saturday, October 31, 2015 at 10:13:41 AM UTC-7, Devin Baillie wrote: > > I've got multiple projects, and I want to be able to create tasks tagged > with each project name. > Where task_skeleton is a tiddler that is tagged with $(tag1)$ and $(tag2)$. > This works how I expected for titles

[tw] Re: [TW5] newtiddler tagging help

2015-10-31 Thread Eric Shulman
On Saturday, October 31, 2015 at 10:36:13 AM UTC-7, Devin Baillie wrote: > > Also, how would I go about clearing the text box after the button is > clicked? > Thanks in advance! > Inside your $button widget, add an $action-setfield widget, like this: <$action-setfield

Re: [tw] Re: Outlining plugin request

2015-10-31 Thread David Gifford
Widget? Interesting. How would that work? Dave On Sat, Oct 31, 2015 at 2:06 PM, Jed Carty wrote: > Something like that could probably be done with a widget. You wouldn't > need to be editing a tiddler to use it. I don't know how often you would > want to switch from this

[tw] Re: Outlining plugin request

2015-10-31 Thread BJ
the visual editor plugin (on bjtools) has this type of functionality, including drag and drop. But it produces html not wikitext On Saturday, October 31, 2015 at 3:26:21 PM UTC, David Gifford wrote: > > Hi all > > Here is a plugin idea for you to consider, those of you who play around > with

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Devin Baillie
Interesting. These all seem to work, but not in the "Preview" panel, which I was using to try out my filters. I guess I'd better file a bug report. :-) Thanks, Devin On Saturday, October 31, 2015 at 2:04:55 AM UTC-6, Matabele wrote: > > Hi > > There's a special tagging[] operator for this:

[tw] Re: [TW5] Filter using current tiddler's title?

2015-10-31 Thread Matabele
Hi It's a useful tool, especially for complex filter expressions. Substitute a hard link (tiddler title) to test the filter, then replace this with the {{!!title}} reference for use. regards On Saturday, 31 October 2015 15:54:16 UTC+2, Devin Baillie wrote: > > Good to know. I won't rely on

[tw] [TW5] newtiddler tagging help

2015-10-31 Thread Devin Baillie
I've got multiple projects, and I want to be able to create tasks tagged with each project name. I've created a text box and a button to do this using <$edit-text tiddler="$:/temp/NewTaskButtonTemplate/input" tag="input" type="text" placeholder="New Task"/> <$set name="tag1" value="task">

Re: [tw] [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread ihm4u
Feel free to add it. Quoting Erwan : Hi ihm4u, Great plugin! Is it ok if I add your wiki to the CommunitySearch wiki ? (see here for details) Regards

[tw] Re: [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread ihm4u
Could you try version 0.8.9 and let me know if it works? Thanks Quoting Matabele : Hi Tried your plugin with v5.1.10 beta -- generates a javascript error when called. regards On Friday, 30 October 2015 23:28:50 UTC+2, ih...@newsfromgod.com wrote: The vecmap

[tw] Re: TiddlyWiki markdown plugin - fenced code blocks

2015-10-31 Thread BJ
I have put a 'marked' flavor markdown plugin on bjtools http://bjtools.tiddlyspot.com/ On Tuesday, October 27, 2015 at 6:47:33 PM UTC, Richard Edwards wrote: > > Hello All, > Does anyone have or know of a markdown plugin for TiddlyWiki that handles > code fence blocks; i.e. something

Re: [tw] [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread Erwan
Hi ihm4u, Great plugin! Is it ok if I add your wiki to the CommunitySearch wiki ? (see here for details) Regards Erwan On 30/10/15 21:32, ih...@newsfromgod.com wrote: Oops

[tw] Re: Outlining plugin request

2015-10-31 Thread David Gifford
Hi BJ Followed your instructions but nothing happens. Into an empty TW5 I imported the $:/plugins/bj/visualeditor tiddler and saved and reloaded. I downloaded the standard CK editor from the link you provide, extract the

[tw] Re: [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread ihm4u
Hi Ton, Fixed the problem when the tag does not exist, please try version 0.8.9; let me know if it works. Thanks! Quoting Ton Gerner : Hi, Nice plugin. But, when the tag does not exist you get a javascript error. Cheers, Ton On Saturday, October 31, 2015 at

[tw] Re: [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread Matabele
Hi OK -- that seems to fix the problem. Great plugin -- would it be possible to add slider code such that each node could be collapsed/expanded? regards On Sunday, 1 November 2015 03:42:41 UTC+2, ih...@newsfromgod.com wrote: > > Could you try version 0.8.9 and let me know if it works? > >

[tw] Re: [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread Matabele
Hi Seems that the plugin runs out of arrows for a large map -- for example try <$vecmap start="Reference" /> on tiddlywiki.com regards On Sunday, 1 November 2015 03:43:44 UTC+2, ih...@newsfromgod.com wrote: > > Hi Ton, > > Fixed the problem when the tag does not exist, please try version

Re: [tw] Re: [TW5] Vecmap plugin - easy tiddler maps

2015-10-31 Thread ihm4u
Hi Matabele/Ton, I think the missing arrows is caused by "circular tags", that is, tags that point a child node back to a parent. Right now it only supports tree-like structures. Circular tags is something I was thinking about also. About the node collapse/expand feature I want to