[tw] Re: [TW5] - Tooltip text on tabs?

2015-12-23 Thread Matabele
Hi That would give the same tooltip for all tabs, if I'm not mistaken. A field will be required in each tab tiddler with differing values (much like the caption field) -- to which the button tooltip refers. regards On Friday, 18 December 2015 23:59:03 UTC+2, Tobias Beer wrote: > > Hi

Re: [tw] [TW5] - Tooltip text on tabs?

2015-12-23 Thread Matabele
Hi Jeremy Strange thing is -- this seems to work on tiddlywiki.com. Can't find any instance where my version fails. regards On Wednesday, 23 December 2015 19:23:55 UTC+2, Jeremy Ruston wrote: > > Hi Matabele > > On 23 Dec 2015, at 17:22, Matabele <matabe...@gmail

Re: [tw] [TW5] - Tooltip text on tabs?

2015-12-23 Thread Matabele
Hi Jeremy Can't get this to work without changing the <> variable to <> -- in order that the field reference {{!!tooltip}} brings in the value for that tab. The following seems to work -- is there some reason for the choice of <> rather than the default <>? \define

Re: [tw] [TW5] - Tooltip text on tabs?

2015-12-23 Thread Matabele
Hi Jeremy Pull request here: https://github.com/Jermolene/TiddlyWiki5/pull/2147 Could someone else test this out? Can't see any problems on tiddlywiki.com regards On Wednesday, 23 December 2015 15:17:36 UTC+2, Jeremy Ruston wrote: > > Hi Tobias > > > Nope, but creating a modified version of

Re: [tw] [TW5] - Tooltip text on tabs?

2015-12-23 Thread Matabele
egards On Wednesday, 23 December 2015 19:23:55 UTC+2, Jeremy Ruston wrote: > > Hi Matabele > > On 23 Dec 2015, at 17:22, Matabele <matabe...@gmail.com > > wrote: > > is there some reason for the choice of <> rather than the > default <>? > > > It’s

Re: [tw] [TW5] - Tooltip text on tabs?

2015-12-23 Thread Matabele
n"/> <$list filter="$tabsList$" variable="currentTab"> <$reveal type="match" state=<> text=<> default="$default$"> <$transclude tiddler="$template$" mode="block"> <$transclude tid

[tw] Re: [TW5] SnapSVG progress, eventually drawing UI elements directly on the wiki.

2015-12-22 Thread Matabele
Hi Jed Don't know if you saw this w.r.t. the $action-listops widget: There's another way to add titles, without the use of append[] or prepend[] -- simply list the titles to add to the current list before the filter run. This method allows titles with spaces, or may reference a field or macro

[tw] Re: From newbie to newbie: color definition in the Apperances tab (thats after clicking the cog wheel)

2015-12-22 Thread Matabele
colour and specifies the transparency e.g. <> regards On Tuesday, 22 December 2015 09:27:15 UTC+2, Tobias Beer wrote: > > Hi Matabele, > > I have attached a tiddler containing the basic CSS named colours as a >> starting point -- might be better to put these in RGBA format (

[tw] Re: From newbie to newbie: color definition in the Apperances tab (thats after clicking the cog wheel)

2015-12-21 Thread Matabele
Hi I have attached a tiddler containing the basic colours as a starting point -- might be better to put these in RGBA format (where the opacity may more easily be adjusted.) regards On Monday, 21 December 2015 22:32:28 UTC+2, Eric Shulman wrote: > > On Monday, December 21, 2015 at 3:15:15 AM

[tw] Re: Newbie here! Here is a question.

2015-12-21 Thread Matabele
Hi In that case, the simplest method would be to separate the 'schedule' field into two parts -- a 'due' field (like for tasks) and a 'duration' field -- sorting by 'due' would then be trivial. regards On Monday, 21 December 2015 13:04:36 UTC+2, Nuryana Panaligan wrote: > > Thank you for the

[tw] Re: From newbie to newbie: color definition in the Apperances tab (thats after clicking the cog wheel)

2015-12-20 Thread Matabele
Hi Pit.W. There's a slight modification which might help -- store your colour values in a data dictionary. 1. Create a tiddler with a title like $:/MyPalette 2. Change the type to Data dictionary 3. Make entries with an easily recalled descriptive name -- with values specifying the colour (in

Re: [tw] Re: [TW5] plugin update: tobibeer/setvars => NEW: conditionals

2015-12-20 Thread Matabele
Hi I have been considering an rpn[] filter operator (reverse polish), which treats the operand as a stack (if missing - take the current list as a stack.) Once implemented, options could be added for any calculation possible on an HP calculator e.g: rpn:+[] -- pop the last two item off the

[tw] Re: [TW5] plugin update: tobibeer/setvars => NEW: conditionals

2015-12-20 Thread Matabele
Hi Tobias Much nicer syntax -- declare all your variables first -- then use them in your calculations \o/ regards On Sunday, 20 December 2015 12:30:43 UTC+2, Tobias Beer wrote: > > Went jogging this morning and came back with another nice idea. > > Now, as of version 0.5.7 >

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-19 Thread Matabele
template Can't work out how to set different values for a field in each new tiddler -- any ideas? regards On Saturday, 19 December 2015 10:09:13 UTC+2, Tobias Beer wrote: > > Hi Matabele, > > Just know that you possibly don't even need to use any *%count% *for the >

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-19 Thread Matabele
Hi Tobias Good idea -- a number of tiddlers can be created from a list like so: <$button> <$list filter="[[]append:3{Days of the Week!!short}]"> <$action-setfield text="My New Tiddlers" tags="one [[and two]]" field-one="myvalue"/> <$action-navigate/> Make New Tiddlers It would be great if

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-18 Thread Matabele
be done at all. > > If we could combine the two and include a way to create a list of strings > that could optionally be added to the title we'd have a perfect solution! > > > > > On Thursday, 17 December 2015 10:04:04 UTC-5, Matabele wrote: >> >> Hi Tobias >&g

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-18 Thread Matabele
Hi It turns out that this can be done without modification to the $x-maketid widget -- a simple example follows: <$button> <$list filter="[make[<> %count% \ max:3]]"> <$x-maketid text="My New Tiddlers" $title=<>/> Make New Tiddlers Other fields may also be set for the newly created tiddlers,

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-18 Thread Matabele
Hi I like the use of a make[] operator to generate new titles before creation of new tiddlers -- as action-widgets can then be used to modify the new tiddler (the title is known in advance.) The operator may be used with the $action-listops widget to create a list of new titles, or directly

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-17 Thread Matabele
Hi Tobias That looks like the job :-) As it appears that this filter could be used in other widgets to generate new titles by using the output of a filter expression (specified as an attribute): <$x-maketid $title="[make[operand expression]]" /> I'll have a look at this option -- flexible

[tw] Re: [TW5] Can a Widget Set Variable be incremented?

2015-12-16 Thread Matabele
; I'd like to loop through the start and end numbers specified in the > $edit-text's above and create tiddlers with the same specified title with a > number concatenated on the end. > > I'm using Matabele > <https://plus.google.com/u/0/101724647105681374240/posts>'s x-markedid

[tw] Re: Is it possible to apply an opacity setting to my tiddlers via css?

2015-12-12 Thread Matabele
Hi I have posted a highly styled TW5 here <http://gwiz-beta.tiddlyspot.com/> -- this includes several custom stylesheets where you may find examples of how to set various CSS styles. Have a look at the various '$:/plugins/matabele/stylesheets' -- they're easier to read if you ope

[tw] Re: Struggling to Understand the Available TW5 Web Hosted Options

2015-12-12 Thread Matabele
Hi There's a new kid on the block :-) The new version of TiddlyDesktop can load a TW5 folder (individual tiddlers.)The advanced options can then be expose this wiki for browsing, on an IP address and port. Try this out first (from your browser) -- if you're happy with the result, this may

[tw] Re: ReadOnly TiddlyWiki

2015-12-11 Thread Matabele
Hi It would appear that this problem could be easily solved by exporting a static html version (which is by nature RO) from an editable nodejs version: tiddlywiki --verbose --load mywiki.html --rendertiddlers Locking/unlocking of individual tiddlers by user/group permissions is another

[tw] Re: [TWC] Help improve my inline CSV display script

2015-12-11 Thread Matabele
Hi Julien Seconded -- I would also be interested in the final version of the script :-) regards On Friday, 11 December 2015 19:01:32 UTC+2, stevesuny wrote: > > Hello Julien, if this works for you, could you post an example of the > whole script you end up with? Thanks! //steve. > > -- You

[tw] Re: Examples from the site tiddlywiki.com do not work outside ?

2015-12-09 Thread Matabele
Hi Should work using the $transclude widget (provided V1 functions as a variable): <$transclude tiddler="Data2" index=<> mode="block"/> regards On Wednesday, 9 December 2015 20:45:46 UTC+2, ParisWiki wrote: > > > But there is no way to obtain a valid result with {{Data2##V1}} nor any >

[tw] Re: Using a filter to return a list of tiddlers, and then tagging several tiddlers in one go, and setting their caption field?

2015-12-07 Thread Matabele
Hi There's a link at the bottom of the page: -- drag the link $:/plugins/matabele/extended-button-widgets <http://gwiz-beta.tiddlyspot.com/#%24%3A%2Fplugins%2Fmatabele%2Fextended-button-widgets> over to your wiki -- save your wiki -- refresh your wiki and you're good to go. regards On

[tw] Re: TiddlyWiki Hangout #92 is about to start

2015-12-05 Thread Matabele
Hi PMario I agree -- Github would be my choice (looking forward to the new TiddlyDesktop for this.) What I had in mind are easy mechanisms (preferably from within TW5) to do things like: - revert a single tiddler to a previous version (useful for authors) - recover a deleted tiddler The

[tw] Re: TiddlyWiki Hangout #92 is about to start

2015-12-05 Thread Matabele
Hi Eric Yes -- that is the sort of thing I had in mind. However, the undo functionality needs to persist over a save/re-open cycle to be useful for authors. Perhaps a combination of an undo function for the current session, and a versioning system (such as Github) for saved tiddler content

[tw] Re: Using a filter to return a list of tiddlers, and then tagging several tiddlers in one go, and setting their caption field?

2015-12-04 Thread Matabele
Hi Don't know exactly what you are looking for, but it is possible to place a $list widget containing action-widgets within a $button widget -- like this: <$button tooltip="Modify All"> <$list filter="[tag[MyTag]]"> <$action-setfield $tiddler=<> tags="[[tag one]] [[tag two]]"

[tw] Re: Using a filter to return a list of tiddlers, and then tagging several tiddlers in one go, and setting their caption field?

2015-12-04 Thread Matabele
ferent root titles may be created using a $list filter with the filter expression including entries from a list (of titles) as a wrapper around the $x-maketid widget (passing the title via the <> variable.) regards On Friday, 4 December 2015 17:10:51 UTC+2, leeand00 wrote: > > > Ma

[tw] Re: Using a variable to extract a sentence from a DataTiddler

2015-12-04 Thread Matabele
Hi Combine the two variables with a macro: \define sentence(data,language) $data$##$language$ Then reference this value like this: <> regards On Friday, 4 December 2015 18:30:19 UTC+2, ParisWiki wrote: > > Hello, > > I wish to use a variable to extract a sentence from a data tiddler. > > The

[tw] Re: Using a variable to extract a sentence from a DataTiddler

2015-12-04 Thread Matabele
dex={{MySettings!!language}} mode="block"/> -- may be used with a referenced variables, rather than a referenced fields: <$transclude tiddler=<> index=<> mode="block"/> regards On Friday, 4 December 2015 21:57:18 UTC+2, ParisWiki wrote: >

[tw] Re: [TW5] Create sticky notes

2015-12-04 Thread Matabele
Hi Your technique should work well. My idea was to store the state in a field of the currentTiddler -- thus a unique state would remain 'attached' to each tiddler. Would work for only one sticky note per tiddler though. regards On Friday, 4 December 2015 21:36:55 UTC+2, Micaela wrote: > > It

[tw] Re: TiddlyWiki Hangout #93 will be on Tuesday 8th December at 4pm GMT/UTC

2015-12-04 Thread Matabele
Hi Jeremy Have you considered the ActionListopsWidget for 5.1.10? regards On Friday, 4 December 2015 19:32:21 UTC+2, Jeremy Ruston wrote: > > TiddlyWiki Hangout #93 will be on Tuesday 8th December at 4pm GMT/UTC. > > Find out more and post

[tw] Re: TiddlyWiki Hangout #92 is about to start

2015-12-04 Thread Matabele
Hi 'Versioning' of individual tiddlers -- an interesting idea not currently covered in TW5 -- would be useful for writing. Wondered if anyone has any ideas as to how this could be implemented? regards On Tuesday, 1 December 2015 18:05:35 UTC+2, Jeremy Ruston wrote: > > Apologies for the short

[tw] Re: [TW5] Create sticky notes

2015-11-21 Thread Matabele
> > Hi all, > > > I was reading this > <https://groups.google.com/d/topic/tiddlywiki/5NG3S71N_wE/discussion> > discussion and I liked so much the popup solution proposed by Matabele that > I started to play around with it (so thank you for the idea Matabele!)

[tw] Re: [TW5] Create sticky notes

2015-11-21 Thread Matabele
as reading this > <https://groups.google.com/d/topic/tiddlywiki/5NG3S71N_wE/discussion> > discussion and I liked so much the popup solution proposed by Matabele that > I started to play around with it (so thank you for the idea Matabele!). > I’ve created a sort of sticky n

Re: [tw] Re: Nested List Problem

2015-11-19 Thread Matabele
Hi You might find the $action-listops widget useful for this -- this may be found here . You should be able to create a list using the $filter= attribute, then refine the list with subfilter runs using the $subfilter= attribute. I have been waiting for users

[tw] Re: TW5 Modify tiddler content based on search input

2015-11-11 Thread Matabele
Hi Try something like this -- not a search, but a select widget with values listing all non-system tags. Start: <$edit-text field="start" tag="input" default="" focusPopup= "$:/state/demo" class="tc-popup-handle"/> <$reveal state="$:/state/demo" type="nomatch" text="" default="">

[tw] Re: TW5 new tiddler (tm-new-tiddler) create in view mode?

2015-11-10 Thread Matabele
to the core: I don't know the full specs for a new-tiddler widget. With some help, I could likely upgrade the code to the required specs. regards On Tuesday, 10 November 2015 17:40:49 UTC+2, Tobias Beer wrote: > > Hi Matabele, > > >> The $x-maketid widget may be found her

[tw] Re: On Tobias Beer's tbGTD. Some praise, a demonstration, and a humble request

2015-11-10 Thread Matabele
Hi You might like to have a look at something I wrote a while ago for TW5-beta. I wrote my plain vanilla version of GTD as an experiment to see what could be done with TW5 -- the development wiki may be found here , and a blank gTiD application here

[tw] Re: TW5 new tiddler (tm-new-tiddler) create in view mode?

2015-11-10 Thread Matabele
Hi I wrote the $maketid widget to address this problem some time ago - I have recently updated this widget in the form of an action widget. The $x-maketid widget may be found here . The newly created tiddler may be opened in the background, or in view mode

Re: [tw] Re: TW5 new tiddler (tm-new-tiddler) create in view mode?

2015-11-10 Thread Matabele
round widget messaging. regards On Tuesday, 10 November 2015 19:24:58 UTC+2, Tobias Beer wrote: > > Hi Matabele, > > As Jeremy says: > > >> I think people have successfully used the action-setfield widget to >> create new tiddlers silently. Not of cour

Re: [tw] [TW5] Seek empty value field

2015-11-10 Thread Matabele
Hi I don't know the reasons for the specific choice of output -- it seems, however, that a more useful logic would have been: "[has[F]]" -- those input tiddlers in which field F exists "[!has[F]" -- those input tiddlers in which field F does not exist or has an empty value In which case

Re: [tw] Re: TW5 new tiddler (tm-new-tiddler) create in view mode?

2015-11-10 Thread Matabele
HI On Wednesday, 11 November 2015 07:57:03 UTC+2, Tobias Beer wrote: > > Hi Matabele, > > So, the problem lies in having two widgets needing to know of the same > unique title to use, one being action-sendmessage and the other > action-setfield in your given example. >

[tw] Re: [TW5] Tidgraph - Easy tiddler graphs (formerly vecmap)

2015-11-10 Thread Matabele
Hi Looks good -- no problems encountered with my tests so far. regards On Wednesday, 11 November 2015 01:57:27 UTC+2, ih...@newsfromgod.com wrote: > > Thanks to the input of Matabele, Sylvain, Ton and others in the forum I > have updated the Tidgraph plugin, formerly named vecmap.

[tw] Re: Automatic Links to non CamelWord tiddlers

2015-11-09 Thread Matabele
Hi Not exactly what you wanted, but might suit your needs: http://danielorodriguez.com/TW5-AutoTag/ regards On Monday, 27 April 2015 06:17:30 UTC+2, Anton Aylward wrote: > > I understand 'automatic links' that are CamelWords. > no problem with that. > > But I wonder about links to tiddlers

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

2015-11-07 Thread Matabele
Hi My vote: collapse/expand. regards On Sunday, 8 November 2015 08:32:05 UTC+2, ih...@newsfromgod.com wrote: > > Hi Sylvain, > > I am working on the missing arrows for large trees with back tags > (like the one pointed on by Matabele), then I need to decide whether &g

[tw] Re: Faster alternative to MagicTabs?

2015-11-04 Thread Matabele
Hi On Wednesday, 4 November 2015 09:38:14 UTC+2, Philip Dyer wrote: > > > Thanks for pointing out listops , I'd > found your $x-mangletags > > widget earlier, is listops newer? > The

[tw] Re: Edit-text widget alternative?

2015-11-02 Thread Matabele
Hi Further to Eric's answer -- this may be illustrated with this popup: <$button tag="input" default="" popup="$:/state/demo" tooltip="Testing"/> <$reveal state="$:/state/demo" type="popup" text="" position="right" default="" class="tc-popup-keep tc-block-dropdown"> <$button

[tw] Re: Faster alternative to MagicTabs?

2015-11-02 Thread Matabele
Hi On Tuesday, 3 November 2015 08:09:11 UTC+2, Philip Dyer wrote: > > > *New buttons immediately create a new tiddler, not a set of edit boxes > I had a similar problem some time ago -- have a look at the $x-maketid widget from here . > *Make use of some of

[tw] Re: Outlining plugin request

2015-11-01 Thread Matabele
Hi Your instructions were fine, with the exception that there is no mention that the tiddler type must be set to 'ckeditor usage'. regards On Sunday, 1 November 2015 13:03:08 UTC+2, BJ wrote: > > Is there something I need to add to the documentation? > > On Saturday, October 31, 2015 at

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

2015-11-01 Thread Matabele
s case, is the macro code not wikified? regards On Sunday, 1 November 2015 09:25:57 UTC+2, Eric Shulman wrote: > > On Saturday, October 31, 2015 at 9:45:40 PM UTC-7, Matabele wrote: >> >> I tried this -- it doesn't work :-( >> I created a global macro: >&g

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

2015-11-01 Thread Matabele
On Sunday, 1 November 2015 13:44:15 UTC+2, BJ wrote: > > Sorry I didn't update the site properly, that's the wrong (old) plugin. I > have updated with new instructions, > all the best > BJ > > On Sunday, November 1, 2015 at 5:02:45 AM UTC, Matabele wrote: >> >>

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

2015-11-01 Thread Matabele
at 12:17:37 PM UTC, Matabele wrote: >> >> Hi >> >> $:/plugins/bj/small/mdplusdemo/parsers/markapdaper.js throws a javascript >> error upon reload -- are we supposed to use this plugin or >> only $:/plugins/bj/small/mdplusdemo. >> >> If so, with

[tw] Re: [TW5] Need input on Interaction Matrix Functionality

2015-11-01 Thread Matabele
Hi Jed Missed that -- great macros -- many thanks. On Sunday, 1 November 2015 21:23:29 UTC+2, Jed Carty wrote: > > You may be able to use the table macros I made to do what you want. They > are here . > -- You received this message because

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

2015-11-01 Thread Matabele
reveal state="$:/state/demo" type="nomatch" text="" default=""> <$linkcatcher to="!!start"> <> <$set name="start" value={{!!start}}> <$vecmap start=<> /> regards > On Sunday, 1 November 2015 04:5

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

2015-11-01 Thread Matabele
tc-popup-handle"/> <$reveal state="$:/state/demo" type="nomatch" text="" default=""> <$linkcatcher to="!!start"> <$list filter="[list[Reference]sort[title]]"> <$set name="start" value={{!!st

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: 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 sub

[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: [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">

[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 Matabele
uot;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[]

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

2015-10-31 Thread Matabele
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 tiddle

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

2015-10-31 Thread Matabele
works? > > Thanks > Quoting Matabele <matabe...@gmail.com >: > > > 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

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

2015-10-31 Thread Matabele
> > 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. > >

[tw] Re: [TW5] Should I write a typeblock parser for a "type" that doesn't exist?

2015-10-30 Thread Matabele
Hi Antaeus The easiest and quickest way is to modify: $:/core/modules/parsers/csvparser.js replace the string in the line: var columns = lineText.split(","); with a regular expression: var columns = lineText.split(/,|~|\t/); regards On Thursday, 29 October 2015 23:21:09 UTC+2, Antaeus

Re: [tw] TW5 list filter that returns tiddlers with both of two tags

2015-10-29 Thread Matabele
Hi Tobias Perhaps this should be generalised for any list (not only the tags field.) As in, list all tiddlers that contain any of the items specified, in the targeted list. The syntax for this becomes problematic, as both the reference pointing to the field being targeted and the array of

Re: [tw] TW5 list filter that returns tiddlers with both of two tags

2015-10-28 Thread Matabele
Hi This logic should work but I haven't tested this in TW -- remove all items from the prefiltered list that are not tagged x and not tagged y [prefilter[]] -[!tag[x]!tag[y]] regards On Thursday, 29 October 2015 03:27:40 UTC+2, Rustem wrote: > > [tag[x]] [tag[y]] --> all tiddlers tagged

[tw] Re: [TW5] List Operations Using Filters

2015-10-27 Thread Matabele
On Thursday, 22 October 2015 19:29:29 UTC+2, Matabele wrote: > > Hi > > I have added another listops filter: > -- the move[] filter moves the marker tiddler forward or backward the > specified number of places in the list. > > I have also done a little more work on the d

[tw] Re: [TW5] List Operations Using Filters

2015-10-27 Thread Matabele
Hi Tobias In the case of the putbefore[], putafter[] and replace[] operators, the operand is used to specify the marker item -- this necessitated that items be moved from the end of the list to the new position. Where items are being prepended, appended or removed from the list, there is no

[tw] Re: [TW5] List Operations Using Filters

2015-10-27 Thread Matabele
Hi Tobias In general, I am guessing usage cases and writing filters which might be of use. The reason I adopted the filter expression method for list operators in the first instance was for this very reason -- it is difficult to guess what users will do with lists. With this approach, the

[tw] Re: [TW5] List Operations Using Filters

2015-10-27 Thread Matabele
Hi On Tuesday, 27 October 2015 13:16:20 UTC+2, Tobias Beer wrote: > > > I see, so you are required to specify the operand using text-references or > variables for multiple items. > Not a requirement -- a simple list such as [one two [[and three]]] also works > Perhaps it is more consistent

[tw] Re: [TW5] List Operations Using Filters

2015-10-27 Thread Matabele
Hi Tobias On Tuesday, 27 October 2015 15:19:13 UTC+2, Tobias Beer wrote: > > > >> I see, so you are required to specify the operand using text-references >>> or variables for multiple items. >>> >> >> > Not a requirement -- a simple list such as [one two [[and three]]] also >> works >> > >

[tw] Re: [TW5] List Operations Using Filters

2015-10-27 Thread Matabele
Hi Tobias On Tuesday, 27 October 2015 15:19:13 UTC+2, Tobias Beer wrote: > > > Not a requirement -- a simple list such as [one two [[and three]]] also >> works >> > > I don't think so. This does not work, and I sure did not expect it to: > > {{{ [list[!!x]append:3[one two [[and three]] ]] }}} >

Re: [tw] Re: Braintags reading dumpster, grab it while you can

2015-10-27 Thread Matabele
Hi Would it not be possible to include parsing rules for this format in $:/core/modules/parsers/rules/list.js? regards On Tuesday, 27 October 2015 16:37:40 UTC+2, Jeremy Ruston wrote: > > Hi Dave > > 1. Actually when I read your first question, I thought you meant > transferring a Workflowy

Re: [tw] Re: Braintags reading dumpster, grab it while you can

2015-10-27 Thread Matabele
Hi Might be handy to include this technique in the parsing rules: https://github.com/tgrosinger/tw5-checklist regards On Wednesday, 28 October 2015 06:59:06 UTC+2, Matabele wrote: > > Hi > > Would it not be possible to include parsing rules for this format in > $:/core/module

[tw] Re: Editing tiddler fields and creating a new tiddler

2015-10-26 Thread Matabele
Hi Try something like this: <$select tiddler="$:/temp/new" field="target" default='(none)'> (none) <$list filter="[all[tiddlers]tag[mytag]sort[title]]"> >><$view field="title"/> <$button> <$action-setfield $tiddler={{$:/temp/new!!target}} blah blah blah /> Set Fields regards On

[tw] Re: Editing tiddler fields and creating a new tiddler

2015-10-26 Thread Matabele
Hi I have written an $action-listops widget and a number of associated filters for manipulating lists -- this may be found here . This widget may be used to manipulate any list, including the 'tags' field. There are a number of examples in the wiki to explain

[tw] Re: Editing tiddler fields and creating a new tiddler

2015-10-26 Thread Matabele
, Matabele wrote: > > Hi > > Try something like this: > > <$select tiddler="$:/temp/new" > field="target" default='(none)'> > (none) > <$list filter="[all[tiddlers]tag[mytag]sort[title]]"> > >><$view field="title&quo

[tw] Re: [TW5] List Operations Using Filters

2015-10-22 Thread Matabele
Sunday, 18 October 2015 19:34:29 UTC+2, Matabele wrote: > > Hi > > I have published my efforts to Github via a pull request to the Master > repo: https://github.com/Jermolene/TiddlyWiki5/pull/2037 > > We can now continue our discussion over there and, I hope, polish up th

[tw] Re: list filter displays list without carriage return (TW5)

2015-10-22 Thread Matabele
Hi This filter expression should do much the same: --- <$list filter="[tag{!!title}sort[]]"/> Or in macro form: \define taggedby() --- <$list filter="[tag{!!title}sort[]]"/> \end <> Note: single blank line after the $list widget regards On Thursday, 22 October 2015 07:33:56 UTC+2, Dave

[tw] Re: [TW5] Toggle macro

2015-10-22 Thread Matabele
Hi Have a look at 'conditional variable assignment' with the $set widget: http://tiddlywiki.com/#:SetWidget -- this can be used to set the value of a variable, depending upon the output of a filter expression regards On Friday, 23 October 2015 02:36:34 UTC+2, Andrew wrote: > > Hi Tobias, >

[tw] Re: [TW5] Print Button (for tiddlyChromeSaver)

2015-10-21 Thread Matabele
in order to ensure that the story river finished updating before the print occurred. The delay (in the action widget) may need tinkering with depending upon your environment -- 500ms works for me. regards On Tuesday, 20 October 2015 20:07:28 UTC+2, Matabele wrote: > > Hi > > There may be

[tw] Re: [TW5] Toggle macro

2015-10-21 Thread Matabele
Hi Looks like the code does something like this: \define toggle(button, altbutton) <$reveal type="match" state="$:/temp!!$button$" text="show"> <$button set="$:/temp!!$button$" setTo="hide" class="tc-btn-invisible"> <$transclude tiddler="$button$"/> <$reveal type="match"

[tw] Re: [TW5] Toggle macro

2015-10-20 Thread Matabele
Hi OK -- sorry, I misunderstood your usage. There is no restriction with the $reveal widget to use only a pair of widgets, one with 'match' and one with 'nomatch'. You may use as many $reveal widgets as necessary (in different places) each of which is set to 'match' and reveals itself iff

[tw] Re: [TW5] tabs macro sort by list , how?

2015-10-20 Thread Matabele
Hi Have a look at my action-listops widget and the associated filters (x-listops.js) -- included is a sortby[] filter which may match your requirements. They may be found here with some documentation as to their use. The widget (and the filter operators) are

[tw] [TW5] Print Button (for tiddlyChromeSaver)

2015-10-20 Thread Matabele
inary data $--plugins-matabele-x-print.js.tid Description: Binary data

[tw] Re: [TW5] tabs macro sort by list , how?

2015-10-20 Thread Matabele
ist field there. > > вторник, 20 октября 2015 г., 13:12:01 UTC+3 пользователь Matabele написал: >> >> Hi >> >> Have a look at my action-listops widget and the associated filters >> (x-listops.js) -- included is a sortby[] filter which may match your

[tw] Re: [TW5] Toggle macro

2015-10-20 Thread Matabele
Hi For starters, you could replace the 3 $set widgets with a $vars widget: \define d() $:/temp/$(currentTiddler)$!!$(a)$ \end \define toggle-body(a,b,c) <$vars a="""$a$""" b="""$b$""" c="""$c$"""> <$reveal type="match" state=<> text=""> <$button set=<> setTo=<> class="tc-btn-invisible">

[tw] Re: [TW5] Toggle macro

2015-10-20 Thread Matabele
Hi Give this a try (without being able to test the code I don't know if this will work): \define d() $:/temp/$(currentTiddler)$!!$(a)$ \end \define toggle(button) <$vars a="""$button$""" b="""{{$button$!!target}}""" c= """{{$:/temp/$(currentTiddler)$!!$button$}}"""> <$reveal type="match"

[tw] Re: [TW5] Toggle macro

2015-10-20 Thread Matabele
n indirect reference, macro or variable: tooltip={{!!mytooltip}} or tooltip=<> regards On Tuesday, 20 October 2015 15:03:15 UTC+2, Andrew wrote: > > Hi Matabele, It now actually can daisy chain any number of buttons or > tiddlers and display anything from the toggle tiddler's text fi

[tw] Re: [TW5] Toggle macro

2015-10-19 Thread Matabele
Hi If it's a kind of slideshow you're after, you can walk along a chain of titles in a list. Put this code in each tiddler in the chain: <$set name="before" filter="[list[lists!!list]before{!!title}]"> <$set name="after" filter="[list[lists!!list]after{!!title}]"> <$button set="lists!!target"

[tw] Re: [TW5] Toggle macro

2015-10-19 Thread Matabele
[list[lists!!list]after{!!title}][list[lists!!list]first[]]+[first[]]"> <$button set="$:/StoryList!!list" setTo=<>>Before <$button set="$:/StoryList!!list" setTo=<>>After regards On Monday, 19 October 2015 18:58:19 UTC+2, Matabele wrote: > &

[tw] Re: [TW5] Toggle macro

2015-10-19 Thread Matabele
]+[last[]]"> <$set name="after" filter="[list[lists!!list]after{!!title}][list[lists!!list]first[]]+[first[]]"> <$button set="lists!!target" setTo=<>>Before <$button set="lists!!target" setTo=<>>After <$view t

[tw] Re: [TW5] Is the ordering of ActionSendMessageWidgets guaranteed?

2015-10-18 Thread Matabele
Hi Although execution order of the action widgets themselves are serial, the order in which execution finishes in the listening widgets are not necessarily (in practice, the order of execution is most often serial.) In critical situations, the listening widget could trigger a message at the

<    1   2   3   4   5   6   7   8   >