[twdev] Decided to make TWC "theme" for TW5, but need help with the javascript

2015-05-02 Thread Leo Staley
I've decided to make the TWC "theme" for TW5, but I need a bit of advice and help with Javascript If I'm understanding what a plugin is, it is a tiddler whose content is Javascript code, which (when activated as a plugin) tells the TiddlyWiki to create the tiddlers described by the javascript c

[twdev] [TW5] Transclusion problem

2015-05-02 Thread Kurt Kincaid
I think (hope?) that this is an easy issue that I am just missing. I am relatively new to TW5 (I was an old school user of pre-TW5), and I am having a problem with transclusion. I have a button to create a new tiddler, and I want to insert the current user from $:/status/UserName into a field i

Re: [twdev] Re: [TW5] Listing fields

2015-05-02 Thread Pascal le Rudulier
Super nice of you Jed to answer. Actually what {{{ [is[current]fields[]prefix[task]] }}} does is that it lists the names of the fields not their content, but the $list widget you suggest does the trick. Again thank you very much. Pascal 2015-05-02 20:43 GMT+02:00 Jed Carty : > You may want to use

[twdev] Re: [TW5] Listing fields

2015-05-02 Thread Jed Carty
You may want to use a custom view template. They are discussed here . You could use modify tagging list example from that page by replacing the inside list widget with what I put in my previous post. -- You received this mess

[twdev] Re: [TW5] Listing fields

2015-05-02 Thread Jed Carty
There isn't a special wildcard character, but the regexp can use regular expressions to achieve the same thing. But in this case that would be overkill. If you want to list every task field in a project you use this: {{{ [is[current]fields[]prefix[task]] }}} displaying the content of each task