[tw] Re: CopyTiddlerPlugin new mode?

2008-12-24 Thread Russ Thomas
Eric has kindly updated CopyTiddlerPlugin to 3.1.4 which addresses the issues mentioned above. Get the update (v3.1.4) here: http://www.TiddlyTools.com/#CopyTiddlerPluginhttp://www.tiddlytools.com/#CopyTiddlerPlugin Big thanks to -e R. --~--~-~--~~~---~--~~

[tw] Re: CopyTiddlerPlugin new mode?

2008-12-12 Thread Russ Thomas
Eric - We can pretty much dispense with plugin clashes. A shiny bright vanilla TW from tiddlywiki.com with CT installed using the CT config setup as I've described, exhibits the same issue. Michael - thanks, but I think this is best left to Eric to figure out. Ruzz 2008/12/11 Michael.Tarnowski

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-15 Thread Ruzz
On Nov 14, 8:53 pm, Eric Shulman [EMAIL PROTECTED] wrote:   config.commands.copyTiddler.sparse=true; Eric being... well, Eric, he'll 1 - know exactly what I'm expecting If you've deleted a numbered tiddler, you don't want to re-use that number... right?   Yep. It's more the case here

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-15 Thread Eric Weir
On 11/15/2008 Ruzz wrote: poyfect ! I love it that people here like each other and are kind to strangers. Sincerely, Eric Weir Decatur, GA USA [EMAIL PROTECTED] --~--~-~--~~~---~--~~

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman
Currently, CT (pseudocode) does this: NewT = T + (n)  // eg: MyTiddler begets MyTiddler (1) When another copy is made we get MyTiddler (2) - but only as long as the source was *MyTiddler*.  If the source was MyTiddler (1) we get MyTiddler (1) (1) (or MyTiddler-1-1 in my hacked version).

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Carol Rizzolo
I'm sorry but I am completely clueless as to what to do with what you have written...help translating please! And thanks for your quick reply...I did go to the link below , but, I really have no idea how to understand what is there...help please! On Fri, Nov 14, 2008 at 8:39 AM, Eric Shulman

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman
I'm sorry but I am completely clueless as to what to do with what you have written...help translating please! And thanks for your quick reply...I did go to the link below , but, I really have no idea how to understand what is there...help please! My posting was specifically addressing a

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread schilke
Carol, I believe you've mixed up different threads, did you expect an answer to your question here: http://groups.google.com/group/TiddlyWiki/t/7e8895f81f160d62 If so, there's also the right place to look for answers (you might also watch the title/subject of the answer to see what question is

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz
On Nov 14, 1:39 pm, Eric Shulman [EMAIL PROTECTED] wrote: I've updated the plugin so that the suffix *pattern* can be properly customized to match your customized suffix output *format*. Get the update (v3.1.1) here:    http://www.TiddlyTools.com/#CopyTiddlerPlugin -e Many many thanks

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Weir
On 11/14/2008 Ruzz wrote: What I'd like is: MyTiddler (2), MyTiddler (3) irrespective of *which* tiddler was used as the source. Hmm. Perhaps I was using another plugin, but I thought CopyTiddler gave the title New Tiddler to the copies it creates. Am I mistaken in taking this to suggest

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman
 What I'd like is:  MyTiddler (2), MyTiddler (3) irrespective of  *which* tiddler was used as the source. Hmm. Perhaps I was using another plugin, but I thought CopyTiddler gave the title New Tiddler to the copies it creates. Perhaps you are thinking of

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz
   config.commands.copyTiddler.suffixText= - %0;    config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/; Eric - what change is required to force min 2 digits in 'n'? (I always find RegEx to have completely the opposite effect to aspirin ;)) TIA R

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread FND
config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/; Eric - what change is required to force min 2 digits in 'n'? I'm not familiar with the rest of the code, but it seems like changing [0-9]+ to [0-9]{2,} should do the trick. I always find RegEx to have completely the opposite

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz
On Nov 14, 5:19 pm, FND [EMAIL PROTECTED] wrote:    config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/; Eric - what change is required to force min 2 digits in 'n'? I'm not familiar with the rest of the code, but it seems like changing [0-9]+ to [0-9]{2,} should do the trick. I

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman
   config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/; what change is required to force min 2 digits in 'n'? changing [0-9]+ to [0-9]{2,} should do the trick. Thanks - but didn't work: config.commands.copyTiddler.suffixText=-%0;

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz
Get the update (v3.1.2) here:    http://www.TiddlyTools.com/#CopyTiddlerPlugin and then add this to your [[CopyTiddlerPluginConfig]]:    config.commands.copyTiddler.zeroPad=2; Just a suggestion for 3.1.3 config.commands.copyTiddler.sparse='true'; Eric being... well, Eric, he'll 1

[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman
config.commands.copyTiddler.sparse=true; Eric being... well, Eric, he'll 1 - know exactly what I'm expecting If you've deleted a numbered tiddler, you don't want to re-use that number... right? I already thought about that situation, even before your posting, but I decided to wait to see