Re: ToggleTag List

2011-06-09 Thread Javi
Hi, yes, I can confirm: http://monkeygtd.blogspot.com/ Scroll down to CheckboxPlugin considered dangerous for further info. Regards, Javi El Tue, 7 Jun 2011 06:32:43 -0700 (PDT) Didier Bretin did...@bretin.net escribió: Hi, On 26 mai, 10:56, Javix javipe...@gmail.com wrote: This was

D3 Review next actions only doesn't stay checked

2011-06-09 Thread Brent Bartlett
I've just started using D3, and am loving it! However, there is one thing that is bothering me. Whenever I open a context, I have to check the box next to Review next actions only. As long as I keep the browser open, the boxes stay checked, but once I've closed the browser and opened it again,

Re: D3 Review next actions only doesn't stay checked

2011-06-09 Thread jonas thomas
Hm. That's strange. I thought I saw that behavior also, but when I checked on Linux Firefox 3.6.17 and I'm not seeing it. The choice appears to be persistent between sessions. I'm using that TiddlySaver.jar. Perhaps that the difference. For myself, the context functionality has always bugged

[tw] Re: Displaying selected tiddler in Sidebar

2011-06-09 Thread Cyrill
OK , it works fine, the right menu will follow, i suppose TX On 9 Jun., 02:19, skye riquelme riquelme.s...@gmail.com wrote: Hu Just saw your message..very ineteresting. In the interest of keeping things light on the loading I often use MasterIncludesPlugin so that the plugins are

[tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread PMario
On Jun 8, 8:05 pm, MHill b.martin.h...@gmail.com wrote: Thanks Eric, but, as you said, not exactly what I'm looking for. I'm new to Tiddlywiki, so I'm not even sure if this type of automatic behavior can be provided by a plugin. ... Allmost anything can be done with plugins and TW. But at the

[tw] Re: Displaying selected tiddler in Sidebar

2011-06-09 Thread PMario
Hi Skye, I did some experimets with a temporary side by side display on my TiddlySpace [1]. I use it to compare different tiddler revisions side by side. At the moment it is a quick and dirty hack, that just works for me. To test it. Open 2/3 tiddlers and press a button described below. The

[tw] Re: Displaying selected tiddler in Sidebar

2011-06-09 Thread PMario
The other thread, which inspired the mashup: http://groups.google.com/group/tiddlywiki/browse_thread/thread/d771f5d335540498 -m -- 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

[tw] Re: Chrome Doesn't remember my wiki's options...

2011-06-09 Thread rakugo
Try creating a tiddler called SystemSettings Inside this put chkAutoSave: true txtUserName: your name The SystemSettings tiddler is supported in newer versions of TiddlyWiki and allows you to store settings in a tiddler rather than cookies (which is the default). Hopefully this will solve your

[tw] Re: Hotkeys

2011-06-09 Thread Yakov
Using the CaptureKeysMacro, can I set up key combinations as seen on google - press g and then i to go to inbox, for example?  The point is that you press one key //and then// another one - you don't have to press them together.  Is this doable? Probably it's not doable without some advanced

[tw] Re: Indent pre?

2011-06-09 Thread Julian Knight
OK, final version: * List item 1 htmlpre Code /pre/html * List item 2 Does exactly what you want without any additional styling needed. BTW, switch to the NEW Google Groups interface to get proper formatting that actually works. -- You received this message because you are subscribed to

[tw] Aw: Re: Indent pre?

2011-06-09 Thread Sub
Actually I wanted to avoid the html tag, but it looks cleaner. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To view this discussion on the web visit https://groups.google.com/d/msg/tiddlywiki/-/6desKa5nSKoJ. To post to this group, send email

[tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread MHill
Thanks for the comments PMario. There's really not anything more to my use case than what I put in my original post. I am familiar with HTML/ JS/CSS, but my issue (at the moment at least) is having the time to create a plugin that behaves as I would like. Perhaps I could use the default tiddler

[tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread axs
Hi MHill, The following code will do what you want (except that the time is in a 24-hr format) for the case of editing an existing tiddler: config.commands.editTiddler.handler_old = config.commands.editTiddler.handler; config.commands.editTiddler.handler = function(evt,src,title){

[tw] Re: Indent pre?

2011-06-09 Thread PMario
If I want to intend a pre I use: text some text above a pre {{{ asdf }}} heading some text above a pre {{{ adsf }}} -m -- 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

[tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread PMario
axs, cool hack :) On Jun 9, 6:36 pm, axs alexst...@gmail.com wrote: Hi MHill, The following code will do what you want (except that the time is in a 24-hr format) for the case of editing an existing tiddler: DateFormats are described here

[tw] Re: Hotkeys

2011-06-09 Thread Trey
Thanks for the ideas. I have minimal javascript ability, don't think I can make it happen. I'll investigate external Jquery keycombo scripts, maybe one of them can be integrated somehow. If anyone has any other ideas, they're appreciated. Trey On Jun 9, 5:36 am, Yakov

[tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread axs
Good catch, PMario. and nice plugin. I never use my TW's in readonly mode, so I didn't even think of that. I'll update my code with your improvements, in case someone wants to have this work with the regular edit command: config.commands.editTiddler.handler_old =

Re: [tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread Alex Hough
It's a good idea... I find my self using tiddlers a bit like this, just adding stuff at the top, editing the good stuff up from the bottom. thanks Mario and asx best wishes ALex On 9 June 2011 20:13, PMario pmari...@gmail.com wrote: axs, cool hack :) On Jun 9, 6:36 pm, axs

[tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread MHill
Thanks axs! Works like a charm for me since I too don't anticipate using TW in readonly mode. Maybe you should publish your work as a new plugin for others to use too. And thanks to Mario for the date format link. I used it to tweak things to my liking. -- You received this message because you

[tw] Re: Automatically Append Text to Existing tiddler Content Upon Editing

2011-06-09 Thread HansBKK
Just to put in my two cents regarding the idea of hotkeys manipulating applications and hotstrings (like your timestamp). I apologize in advance for straying from the purpose of the list, but thought this might be helpful. I prefer implementing these at the level of the OS rather than inside a