[tw] Re: Any examples of actual slice use?

2009-11-10 Thread Simon Baird
On the topic of things that use slices... MPTW can display tiddler slices in tagging lists. For example go to the link below and click 'slices'. It's one of the small buttons above the list. You can do a neat contacts list in this way. http://mptw.tiddlyspot.com/#systemConfig --

[tw] Re: Any examples of actual slice use?

2009-09-22 Thread lyallp
I also whipped up a Slice plugin http://www.remotely-helpful.com/TiddlyWiki/ImprovedSlicesPlugin.html#ImprovedSlicesPlugin I use it all the time in my own tiddlywiki, an example is as follows, in conjunction with my Encryption Plugin (http://www.remotely-

[tw] Re: Any examples of actual slice use?

2009-09-22 Thread wolfgang
|!Slice|!User|!Password|!Last Changed|!Notes| |Login01|username|aPassword|12/09/2009|| |Login02|secondUsername|AnotherPassword|12/09/2009|| How nice would be if the now to GridPlugin renamed

[tw] Re: Any examples of actual slice use?

2009-09-21 Thread AlanBCohen
Thanks again, Eric. I'll play with this when I get home tonight. Alan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send email to tiddlywiki@googlegroups.com To unsubscribe

[tw] Re: Any examples of actual slice use?

2009-09-21 Thread Mike
I don't have much time, but you may be able to find some good examples here: http://www.strm.us/TidlyWiki/Examples_TWGG/fETTaskManager.html The other examples in the following link give some good InlineJavascript examples to do the same.

[tw] Re: Any examples of actual slice use?

2009-09-21 Thread wolfgang
An other default use of is with the color slices of the ColorPalette shadowed tiddler. Or as in this special case, where the author uses the ColorPalette for background images too (switching different images with a color palette change): http://mwanz.tiddlyspot.com/#ColorPalette Regards..

[tw] Re: Any examples of actual slice use?

2009-09-21 Thread AlanBCohen
Thanks to Mike and Wolfgang for their additional information. Alan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send email to tiddlywiki@googlegroups.com To unsubscribe

[tw] Re: Any examples of actual slice use?

2009-09-20 Thread Eric Shulman
I have been interested in recent discussions about slice-related plugins.  They seem to be an interesting alternative to FormTiddler and DataTiddler Plugins-based use.  But, I am still confused with the implementation of such a system; I do better with learning from working examples. Is

[tw] Re: Any examples of actual slice use?

2009-09-20 Thread AlanBCohen
Thanks, Eric, You've given me a lot to think about. Alan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send email to tiddlywiki@googlegroups.com To unsubscribe from this

[tw] Re: Any examples of actual slice use?

2009-09-20 Thread AlanBCohen
Here is my first attempt to use slices in an application. The retrieval isn't working. Based on Eric's information, I'm guessing I have a typo in the retrieval tiddler. I'd appreciate some help in correcting it. First, I'm defining data tiddlers with the tag of 'address', with a structure like

[tw] Re: Any examples of actual slice use?

2009-09-20 Thread AlanBCohen
I should also make clear that the forEachTiddlerPlugin is installed and working to produce other lists in this TW file. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send

[tw] Re: Any examples of actual slice use?

2009-09-20 Thread Eric Shulman
forEachTiddler  where     'tiddler.tags.contains(address)'  sortBy    'tiddler.title::Last'    ascending  write    '|+tiddler.title::First+|+tiddler.title::Last+|+tiddler.tags +|\n' To render a slice value using TW wiki syntax, you can write: tiddler [[TiddlerName::slicename]] To