[tw] [TW5] How can I generate a tiddler-link

2013-12-02 Thread Stephan Hradek
I tried Tiddler Title: linktest Tiddler content: \define join3(l, m, r) $l$$m$$r$ \end \define new_link() $link to=join3 Comment for ' {{!!title}} 'join3 Comment for ' {{!!title}} '/$link \end new_link But what I get is the text Comment for 'linktest' but the link itself goest to Comment

Re: [tw] TiddlyWiki5 export tiddlers as .tid files?

2013-12-02 Thread Jeffrey Wayne
Almost golden! I do apologise, my mistake: the command was renamed rendertiddlers some time ago. Did you come across documentation that still mentioned savetiddlers? It should be corrected if so. I was able to successfully break down an html file with the rendertiddlers syntax. I used the

[tw] [TW5] list widget - Is it possible to extract content?

2013-12-02 Thread Stephan Hradek
Is there a way I can, for example, extract all the headings present in a tiddler using the list widget? This could be useful when creating some table of content. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and

Re: [tw] Re: [TW5] Transcluding Tag Colors

2013-12-02 Thread Sean
Jeremy, Thanks for the clarification. I had been looking at $set name=backgroundColor value={{!!color}} in $:/core/ui/TagTemplate and had mistakenly thought that it would work. Is there any other way to define the tag colors (e.g. in a stylesheet) so that I can change the color of a group of

Re: [tw] Re: [TW5] Transcluding Tag Colors

2013-12-02 Thread Jeremy Ruston
Hi Sean Interesting. I can't think of a way to do it as things stand, but I'll give some thought to how it might be done. Best wishes Jeremy. On Mon, Dec 2, 2013 at 3:01 PM, Sean pubmal...@gmail.com wrote: Jeremy, Thanks for the clarification. I had been looking at $set

Re: [tw] [TW5] list widget - Is it possible to extract content?

2013-12-02 Thread Jeremy Ruston
Hi Stephan No, there's no way to pick headings out of a tiddler at the moment. The best you can do is to break the heading sections up into separate tiddlers. Best wishes Jeremy On Mon, Dec 2, 2013 at 2:48 PM, Stephan Hradek stephan.hra...@gmail.comwrote: Is there a way I can, for example,

[tw] Re: [TW5] How can I generate a tiddler-link

2013-12-02 Thread Stephan Hradek
So I found one way which seems to work - but I don't see the logic in it. \define the_link() [[Comment for '$(x)$']] \end \define okay_link() $set name=x value={{!!title}} the_link /$set \end okay_link A similar way, but one level less does not work: \define nok_link() $set name=x

Re: [tw] Re: [TW5] How can I generate a tiddler-link

2013-12-02 Thread Jeremy Ruston
On Mon, Dec 2, 2013 at 4:30 PM, Stephan Hradek stephan.hra...@gmail.comwrote: So I found one way which seems to work - but I don't see the logic in it. \define the_link() [[Comment for '$(x)$']] \end \define okay_link() $set name=x value={{!!title}} the_link /$set \end okay_link A

Re: [tw] Re: Using TiddlyWiki 5 to study the Bible

2013-12-02 Thread Joshua
Nice job packaging this into something that looks and acts like a useful and usable implementation. I will definitely refer here for more info when creating my next TiddlyWiki. It looks like tags abound. Do you have trouble keeping them in mind or have you designed it in such a way for yourself

Re: [tw] Re: [TW5] Transcluding Tag Colors

2013-12-02 Thread Joshua
I would also appreciate a solution or suggestion for this issue. I wasn't handling colors but other bits of transcluded code so would benefit if you find an alternative. Joshua On Monday, December 2, 2013 9:35:57 AM UTC-6, Jeremy Ruston wrote: Hi Sean Interesting. I can't think of a way to

[tw] Help with Gradient page backgrounds

2013-12-02 Thread Captain Packers
I made a gradient page background by using the gradient macro in the PageTemplate as follows: In the second line (after !--{{{--), I added: div class='gradientWrapper' macro='gradient vert [[ColorPalette::PrimaryMid]] [[ColorPalette::TertiaryMid]]' Then, at the end (in the line before

Re: [tw] TiddlyWiki5 export tiddlers as .tid files?

2013-12-02 Thread Jeremy Ruston
I ran serve.sh unmodified and I'm now able to *edit* tiddlers that generate put requests that are then reflected in the raw .tid files. However, when I *add* new tiddlers, I get an http put request but no filesystem changes reported in the terminal and no added files when searching my

[tw] Re: New Getting Started with TiddlyWiki5 video

2013-12-02 Thread James Weaver
Very helpful, Jeremy! Regards, Jim On Saturday, November 30, 2013 12:53:08 PM UTC-5, Jeremy Ruston wrote: I've just uploaded a quick introduction to getting started with TiddlyWiki5: https://www.youtube.com/watch?v=1g66s7UbyuU My track record at getting screencasts out has been poor in

[tw] Re: Help with Gradient page backgrounds

2013-12-02 Thread PMario
On Monday, December 2, 2013 6:15:38 PM UTC+1, Captain Packers wrote: I made a gradient page background by using the gradient macro in the PageTemplate as follows: In the second line (after !--{{{--), I added: div class='gradientWrapper' macro='gradient vert [[ColorPalette::PrimaryMid]]

Re: [tw] Re: Using TiddlyWiki 5 to study the Bible

2013-12-02 Thread David Gifford
Thanks Joshua. I added the verses one by one, so I just looked at each verse and determined what topics applied. The tags editor offers the tags that already exist, so I didn't need to remember them all. There are a few that I will probably condense from two or three into one. Then I created the

[tw] Re: Help with Gradient page backgrounds

2013-12-02 Thread Captain Packers
Thanks m. That works like a charm. Regards, The Captain On Monday, December 2, 2013 1:33:21 PM UTC-5, PMario wrote: On Monday, December 2, 2013 6:15:38 PM UTC+1, Captain Packers wrote: I made a gradient page background by using the gradient macro in the PageTemplate as follows: In the

[tw] Re: Help with Gradient page backgrounds

2013-12-02 Thread PMario
On Monday, December 2, 2013 7:49:59 PM UTC+1, Captain Packers wrote: Thanks m. That works like a charm. Regards, The Captain Cool, Can you post, what you did, so others can use it too ? -mario -- You received this message because you are subscribed to the Google Groups TiddlyWiki group.

[tw] Re: Help with Gradient page backgrounds

2013-12-02 Thread Eric Shulman
On Monday, December 2, 2013 10:33:21 AM UTC-8, PMario wrote: I wouldn't use the gradient macro to create gradients. IMO the mechanism it uses is outdated. It creates many - many divs Most browsers support a CSS gradient. You'd use this mechanism on the body element and see what

[tw] Re: Help with Gradient page backgrounds

2013-12-02 Thread Captain Packers
I just did what you said. I added this line to my StyleSheet: body { background-image: linear-gradient(to right, white 0%, #8AB188 100%);} On Monday, December 2, 2013 1:55:40 PM UTC-5, PMario wrote: On Monday, December 2, 2013 7:49:59 PM UTC+1, Captain Packers wrote: Thanks m. That works

Re: [tw] Re: Stephan Hradek! Thanks for the bookmarklets. Now, how do I make my own?

2013-12-02 Thread Stephan Hradek
This also might help in creating bookmarklets. I created an experimental JavaScript macro (I need to find out how to package it) and activated it on http://tw5magick.tiddlyspot.com/ If you create a tiddler containing JavaScript source, the macro bookmarklet will generate a bookmarklet from it.

[tw] [TW5] Transcluding Edit Buttons/Links

2013-12-02 Thread Dylan Kinnett
For the TW5 application I'm putting together,http://nocategories.net/tiddlywiki/bestrew.htmlI'd like to have edit buttons or links appear in a couple of different contexts, but I'm unsure how to work. *First, when the tiddlers are included within a tabs set.* For example, I have a Tiddler

Re: [tw] Re: Stephan Hradek! Thanks for the bookmarklets. Now, how do I make my own?

2013-12-02 Thread David Gifford
Well, when I get a chance, I will check that out, too. But the other way was easy enough for me. Just curious if there is a way to create bookmarklets that simply insert a text rather than wrapping selected text. Dave On Mon, Dec 2, 2013 at 5:46 PM, Stephan Hradek

[tw] Re: Help with Gradient page backgrounds

2013-12-02 Thread PMario
On Monday, December 2, 2013 8:21:59 PM UTC+1, Captain Packers wrote: I just did what you said. I added this line to my StyleSheet: body { background-image: linear-gradient(to right, white 0%, #8AB188 100%);} :) I was thinking about something like this:

Re: [tw] Re: what is the difference between tagging and referencing a tiddler and what are each supposed to be used for?

2013-12-02 Thread Josh
Hi Jeremy, Thanks for the reply, I will test this out and let you know. Sounds like the code for tags is generic and will work for each project note. *Code* $list filter=tag1 tag2 tag3 variable=tagItem $checkbox tag=tagItemTag: tagItem/$checkbox /$list -- You received this message because