[tw] Uploading with UploadTiddler - txtUploadDir problems

2009-05-18 Thread skye riquelme
Hi all Have come across a problem with Uploading using BidXTW plugins. I have a TW in directory ..Dir1/Dir2..the Upload options (using a tiddler that sets the varios config.options) points to the store.php and storeTiddler.php files that are in ...Dir1..When I open upload options in

[tw] Re: age calculation from date of birth

2009-05-18 Thread Dave Parker
Ok, for sake of completion, and for anyone else who might be looking for this someday, here's what worked for me. Its a modification of something Udo B wrote for someone a while back, and FND recently helped me with the rounding. So someone with a Date of Birth 2000-01-01 should read as 9.4 year

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Morris Gray
On May 19, 7:36 am, "Mark S." wrote: > Hi Morris, > > Looking good. > > The way you installed the CSS, by putting the name of the tiddler, is > that standard TW, or is there a plugin that makes that possible? Oh I just named the CSS tiddler the name of the javascript because I was lazy and copie

[tw] Re: cname to tiddlyspot

2009-05-18 Thread jk
well are there any services that'll host a tiddlywiki that can be cname'd to? imagine: 1. create tw at tiddlyspot.com 2. buy a domain, and add a cname for tiddlyspot 3. modify the tiddlywiki to deploy as a (bare bones) website * any additional content can be linked (flickr, wordpress, twitter etc

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Eric Weir
On May 18, 2009, at 5:02 PM, Morris Gray wrote: > I think I've worked a few bugs out. I don't see the refresh problem > however I did put the images on my own site because I felt > uncomfortable accessing DynamicDrive. It is now independent I think > except for the images. Perhaps Eric will te

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Mark S.
Hi Morris, Looking good. The way you installed the CSS, by putting the name of the tiddler, is that standard TW, or is there a plugin that makes that possible? Thanks, Mark On May 18, 1:02 pm, Morris Gray wrote: > On May 19, 2:47 am, "Mark S." wrote: > > > Just a guess, but I suspect that th

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Morris Gray
On May 19, 2:47 am, "Mark S." wrote: > Just a guess, but I suspect that the server at dynamicdrive stops > serving up the all-important images after it has been hit by a 3rd > party site more than 3 or 4 times. Think this may be a common > technique to prevent abuse. BUT, if you download the TW

[tw] Re: cookie issue with SetUserNamePlugin?

2009-05-18 Thread roger
Interesting. I also have the CookieJar plugin installed, though I don't know if that makes a difference or not. I don't have a cookie set for txtUserName as one of the baked cookies since we use the TW files in a multiuser environment. Despite the fact you are unable to reproduce the problem, a

[tw] Re: cookie issue with SetUserNamePlugin?

2009-05-18 Thread Eric Shulman
> using the <> option provided by SetUserNamePlugin, then > the UserName does not persist.  I assume that means, it doesn't get > saved to a cookie. The relevant code from SetUserNamePlugin is: --- var opt="txtUserName"; var who=prompt(this.msg,config.options[opt]); if (!who||

[tw] Re: rounding numbers

2009-05-18 Thread Dave Parker
Thank you F, That's perfect! Dave On May 18, 10:53 am, FND wrote: > > Is there a way to get it to round to 1 or 2 decimal places? > > Use > Math.round:https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global... > > I don't think it supports rounding to arbitrary decimal places, so

[tw] Re: rounding numbers

2009-05-18 Thread FND
> Is there a way to get it to round to 1 or 2 decimal places? Use Math.round: https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/round I don't think it supports rounding to arbitrary decimal places, so use something like the following: Math.round(myNumber *

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Mark S.
Hah! And now I have the same problem! On all remotely hosted TW's. But everything is OK on locally hosted TW's. If you go to Morris' site, and refresh a couple times, you may find it stops working there as well. Just a guess, but I suspect that the server at dynamicdrive stops serving up the all

[tw] rounding numbers

2009-05-18 Thread Dave Parker
Good morning, I have this I took from a FET from one of Udo's help threads and modified: function getYearsLeftText(tiddler) { return ((getDaysBetween(new Date(),parseDate(tiddler.title, new Date (/-365)+" years old: "; } ' write 'getYearsLeftText(tid

[tw] cookie issue with SetUserNamePlugin?

2009-05-18 Thread roger
I suppose this post is directed to Eric's attention, but I've been struggling with a cookie issue where sometimes the UserName would persist and other times it would not. What I've finally determined is that it seems to be the SetUserNamePlugin that is the source of the trouble. I'm using core 2

[tw] Download.php or one click download

2009-05-18 Thread Mike
I remember this being a download from ELS . . . Does tiddlyspot use something similar? I saw Morris using something that I was looking for here http://twt-notes.tiddlyspot.com/ with: @@color:#C06;font-size:1.5em;''» »'' @@ ''Click here to Download ~TWT-Notes'' I.E. one click download (left clic

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Mike
Marks example does not work for me, but Morris's does. . . Looks great !! Thx, Mike FF3.0.9 on XP64 On May 18, 9:59 am, Morris Gray wrote: > On May 19, 12:18 am, "Mark S." wrote: > > > This is probably not the best long term solution. Perhaps someone here > > can explain the proper style synt

[tw] Re: trying to get rich text plugin workin

2009-05-18 Thread Eric Weir
On May 18, 2009, at 10:12 AM, Eric Shulman wrote: > As an alternative to easyEdit, you might want to consider a > combination of > http://www.TiddlyTools.com/#QuickEditPackage > and > http://www.TiddlyTools.com/#PreviewPlugin Thanks, Eric. I'll check them out. [Actually, in reaction to the

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Morris Gray
On May 19, 12:18 am, "Mark S." wrote: > This is probably not the best long term solution. Perhaps someone here > can explain the proper style syntax that will get this to work without > physically changing the structure of the file. However, a quick search > on the net suggests that IE sometimes

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Mark S.
Thanks Morris, That looks good! -- Mark On May 18, 5:57 am, Morris Gray wrote: > Hi Mark, > > You've done an excellent job so far.  It was only days ago when I > imagined what TWT-Notes would look like with a tree menu like the one > on DynamicDrive now I've seen it thanks to you. > > You migh

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Mark S.
Ok -- I'm cheating now. IE 6 (and maybe the other IE's) don't seem to respond to the @import in the stylesheet. So I physically put the stylesheet inside the TW file up at the header. Now it works fine with IE 6 on my XP system. This is probably not the best long term solution. Perhaps someone

[tw] html formatting plugin

2009-05-18 Thread pillinsm
I have the EasyEdit plugin installed and I recently installed the html formatting plugin. The html formatting plugin seems to have changed the way the EasyEdit works. Has anyone encountered this? Thanks. --~--~-~--~~~---~--~~ You received this message because yo

[tw] Re: trying to get rich text plugin workin

2009-05-18 Thread Eric Shulman
> > What are the disadvantages of editing in easyEdit mode?  Of course > > people used to TW will want to be able to use markup.  But for > > newcomers (I'm thinking of my students), a toolbar for simple > > formatting and being able to edit formatted text with all of its > > formatting visible wo

[tw] Re: TagglyTagging - producing tweakable tables intead of lists?!

2009-05-18 Thread Matt L.
I'm clearly not doing something right, because I cannot get the example Mat posted above to work. I get this message: <>: SyntaxError: unterminated string literal I thought it might just be my TW file, so I downloaded a clean one directly from abego's website, copy and pasted that code in - and

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Morris Gray
Hi Mark, You've done an excellent job so far. It was only days ago when I imagined what TWT-Notes would look like with a tree menu like the one on DynamicDrive now I've seen it thanks to you. You might be encouraged to see it too. It works in IE7 and Google Chrome as well. http://twt-notes-tr

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Mark S.
Maybe I should have loaded all the CSS stuff manually into the StyleSheet. Is it possible you have a firewall or other configuration that would prevent one site from accessing info from another? The symptoms you describe sound like what happens if the CSS is unavailable. I'm running FF3 under XP.

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Heller
Same here firefox and IE on Vista... --~--~-~--~~~---~--~~ 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 group, send email to

[tw] Re: TiddlyWeb from an usb stick?

2009-05-18 Thread FND
Thanks for looking into this, Perica! As previously mentioned, I was quite delighted to learn about PP. > if there are modules or python libraries you would like to see in > the next release of PP please request them on the PP google group and > I will see what I can do for the next version. Sin

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread FND
> I've taken a first stab at implementing it: > http://treeview.tiddlyspot.com/ That's a really nice idea - thanks for looking into it, Mark. Unfortunately though, it doesn't seem to work for me: All the macro generates for me is a single-item list with a link to the root tag (tested with Fir

[tw] Re: FootNotes Plugin

2009-05-18 Thread FND
> would it be possible to change the footnotes plugin to give letters > instead of numbers? It would be possible, but you'd have to write some code for that. In particular, you'd create a new plugin that overrides the "footnotes" formatter's handler function. A brief look at Saq's code suggest

[tw] Re: Here's an example of a tree structure (treeview) implemented on TW

2009-05-18 Thread Morris Gray
On May 18, 3:38 pm, "Mark S." wrote: > A few days ago Morris Gray pointed out the treeview plugin code for > jquery developed by the folks at http://www.dynamicdrive.com/. Ahh my little acorn, You have done well. Each journey begins with the smallest of steps if one doesn't get rooted alo