[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2016-11-17 Thread magev958
Ahh, thank You! :) Den torsdag 17 november 2016 kl. 12:55:12 UTC+1 skrev Jed Carty: > > That requires the hover widget plugin by Andreas Hahn. His site is > somewhere, I don't have the link handy at the moment. > > You can get the widget off of the wiki reference wiki here > http://inmysocks.tid

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2016-11-17 Thread Jed Carty
That requires the hover widget plugin by Andreas Hahn. His site is somewhere, I don't have the link handy at the moment. You can get the widget off of the wiki reference wiki here http://inmysocks.tiddlyspot.com/#%24%3A%2Fplugins%2Fahahn%2FhoverWidget -- You received this message because you a

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2016-11-17 Thread magev958
Hi, I looking at your site from time to time and always finds something new and shine :) This time I liked the macro from "Make data from a dictionary tiddler appear when you hover over something

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2016-06-09 Thread 'Stuart Amor' via TiddlyWiki
I think I may have missed a fundamental point here. I have followed the above examples and entered: \define thisSearchMacro() <$list filter="[[$:/data/Entrance]indexes[]regexp:title[(?i)$(thisSearch)$]]"> <$transclude tiddler="$:/data/Entrance" index=<>/> \end <> I don't understand how the r

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-13 Thread Tobias Beer
Hi Jed, Think "logs", "comments"... all those kinds of things. > > > Is that different from just using fields? > Yes and no. A tiddler may have a number of comments or logs attached to it. Implementing that as a number of comment-fields seems difficult and error prone. > Fields may get very

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-13 Thread Jed Carty
Jeremy, Thank you, that makes much more sense now and probably makes the filters more powerful. Now I just need to find places where I can take advantage of it. Tobias, I would never have thought of removing the indicies like that, thanks! Think "logs", "comments"... all those kinds of things

Re: [tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-13 Thread Tobias Beer
Hi Jeremy, > I'm not so convinced. If we store state within content tiddlers then it > makes it harder to share those content tiddlers in a multi-user scenario. > Please note, I was not at all referring to states. Rather, I was suggesting data pertaining to an exact tiddler, that are not to "

Re: [tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-13 Thread Jeremy Ruston
Hi Tobias > > What exactly is *{$:/palette}*... > > [{$:/palette}indexes[]sort[title]] > > interpreted as? > The curly braces indicate a transcluded filter operand. The overall action is to take the tiddler title stored in `$:/palette`, get all the indices of the data properties within it, and th

Re: [tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-13 Thread Tobias Beer
Hi Jeremy, > The order does matter for filters that work as "selectors" rather than > strict "filters". For example, the "indexes" operator selects all the data > indices present in the tiddlers whose titles are in the current list. > In ... http://tiddlywiki.com/#FilterOperator%3A%20indexes

Re: [tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-13 Thread Jeremy Ruston
Hi Jed > I hadn't encountered or noticed it before, but rearranging the filter breaks the output The order does matter for filters that work as "selectors" rather than strict "filters". For example, the "indexes" operator selects all the data indices present in the tiddlers whose titles are in t

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-12 Thread Jed Carty
Do filters get executed in order? I hadn't encountered or noticed it before, but rearranging the filter breaks the output, [indexes[][$:/data/Acronyms]regexp:title[(?i)$(thisSearch)$]] doesn't work. I had assumed that each operation was done independently and then the intersection of the result

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-12 Thread Jed Carty
Thank you! Trying to figure that out has been driving me crazy for a few days. -- 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

[tw] Re: [TW5] Removing indicies from data tiddlers and using regex to list/search data tiddler indicies

2014-12-12 Thread Stephan Hradek
Try this: \define thisSearchMacro() <$list filter= "[[$:/data/Acronyms]indexes[]regexp:title[(?i)$(thisSearch)$]]"> <$transclude tiddler="$:/data/Acronyms" index=<>/> \end filter explanation: 1. Get your Acronyms 2. Get its indeces 3. Filter them by your search string 4. For each remaining tra