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

2009-05-12 Thread Simon Baird
It's a nice idea.. On Mon, Mar 9, 2009 at 4:51 PM, Måns humam...@gmail.com wrote: Hi Is there someone who kan tweak/hack Mr. Simon Bairds TagglyTagging plugin to show numered tables instead of lists? The sorting possibilities are great - and the ability to make groups by details and

[tw] Re: How to Copy SideMenu Elements to the MainMenu?

2009-05-12 Thread pat toche
I've managed to get the whole thing to work both online and offline, and it looks pretty enough. The whole code, for the record, is below, including the ToggleRightSidebar I use in MainMenu. Note that to make the download and upload buttons work, I entered my site id mysiteid as follows

[tw] Re: TiddlyWeb install (was Re: Simple Multi-user Approach)

2009-05-12 Thread bengillies
Sorry, perhaps I should have been more clear. First, you will need command line access to install tiddlyweb. This is something that most hosting companies offer for a small extra charge, but is something that (in my mind at least) is worth it. Unfortunately, you're unlikely to succeed installing

[tw] Re: How to Copy SideMenu Elements to the MainMenu?

2009-05-12 Thread Eric Shulman
including the ToggleRightSidebar I use in MainMenu. There is no need to copy the contents from ToggleRightSidebar directly into the MainMenu... just use: tiddler ToggleRightSidebar to transclude the tiddler into your MainMenu. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios

[tw] Tweak PasswordOptionPlugin

2009-05-12 Thread MikeS
Anyone know how to tweak this plugin: http://tiddlywiki.bidix.info/#PasswordOptionPlugin What I'd like is for the checkbox and text Save this password on this computer to be on a new line (separate from the password field) My sidebar is wider than the default so this looks funny all on one

[tw] Re: Show text wikified in edit view

2009-05-12 Thread Dave Gifford
Worked like a charm after a good night's sleep. Wow, me learnin lots today! Dave On May 11, 11:43 pm, Eric Shulman elsdes...@gmail.com wrote: div macro='showWhen tiddler.tags.contains(Nota) || tiddler.title ==Enter the name for your new master topic here'[[Foo]]/div When used in a

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

2009-05-12 Thread Alex Hough
how about sortable and striped tables? BTW i have been using on of FNDs work in progress plugins[1] with MPTW - is is very good. [1]http://svn.tiddlywiki.org/Trunk/contributors/FND/ 2009/5/12 Simon Baird simon.ba...@gmail.com It's a nice idea.. On Mon, Mar 9, 2009 at 4:51 PM, Måns

[tw] Re: How to Copy SideMenu Elements to the MainMenu?

2009-05-12 Thread pat toche
tiddler ToggleRightSidebar Oh great, much cleaner. When I stumbled upon the ToggleRightSidebar script, I was under the impression that it had to be copy-pasted into the relevant tiddler. The instructions said as much as far as I can remember. I cut the script into a ToggleRightSidebar

[tw] Re: How to Copy SideMenu Elements to the MainMenu?

2009-05-12 Thread pat toche
okay, I got it: updated the script, but anyhow I think the problem was, rather, that: I had incorrectly tagged ToggleRightSidebar with systemConfig while it should have been tagged with script silly me, it works great now. thanks again Eric. Patrick.

[tw] Re: Timestamp error in the MPTW package

2009-05-12 Thread MikeS
I've figured out where the error is. Its in this tiddler: http://mptw.tiddlyspot.com/#MptwTheme Specifically, this code: div class='subtitle' (updated span macro='view modified date {{config.mptwDateFormat? config.mptwDateFormat:MM/0DD/YY}}'/span by span macro='view modifier

[tw] just code, no tiddlywiki

2009-05-12 Thread Dawn.Morales
HI- I just downloaded the empty.html. For the past 2 days I have been trying to edit and save it and have made progress, but not too much. One major problem is saving (I use Firefox, need to buckle down and figure out what to do.) There is no unblock button on the properties tab. So any tips

[tw] Re: Timestamp error in the MPTW package

2009-05-12 Thread Simon Baird
On Tue, May 12, 2009 at 11:36 PM, MikeS xpct...@gmail.com wrote: I've figured out where the error is. Its in this tiddler: http://mptw.tiddlyspot.com/#MptwTheme Specifically, this code: div class='subtitle' (updated span macro='view modified date {{config.mptwDateFormat?

[tw] Re: just code, no tiddlywiki

2009-05-12 Thread FND
every time I open the file in FF all I see is code That sounds like the file might be corrupted: http://tiddlywiki.org/wiki/Corruption You could try downloading the ZIP archive: http://tiddlywiki.com/#%5B%5BAdvanced%20download%20options%5D%5D HTH. -- F.

[tw] Re: Timestamp error in the MPTW package

2009-05-12 Thread MikeS
If you read the original post, Internet Explorer is rendering this code differently than Firefox. If you go to http://mptw.tiddlyspot.com/ and look any of the tiddlers, the subtitle will read In FF3: (updated a year ago by MPTW) //space before by MPTW In IE6: (updated a year agoby MPTW)

[tw] Re: just code, no tiddlywiki

2009-05-12 Thread Dawn.Morales
Thanks for the quick response. I tried your suggestion: I downloaded the zip and extracted it. Named the file empty2 and changed the Main Tiddler title. Saved from the upper right hand corner. Closed. Double clicked, and got the code again.I closed it and then chose file open in FF, got

[tw] Re: How to Copy SideMenu Elements to the MainMenu?

2009-05-12 Thread Eric Shulman
I had incorrectly tagged ToggleRightSidebar with systemConfig while it should have been tagged with script For an explanation of some of the differences between inline scripts and plugins, please read: http://www.tiddlytools.com/faq.html#FAQ_ScriptsAndPlugins -e

[tw] forEachTiddler

2009-05-12 Thread Alex Hough
The following table is produced from data in a questionnaire tiddler [1] forEachTiddler where 'tiddler.title.contains(Q) tiddler.data(score) = 2' write '|+tiddler.data(archetype1)+tiddler.data(archetype1)+===| [[+tiddler.title+]]|+tiddler.data(score)+|\n' begin

[tw] Re: forEachTiddler

2009-05-12 Thread Eric Shulman
I would like the slider tiddler.data(archetype1)+=== to show the contents of the relevant archetype tiddler, rather than its title. Try this: write '|+tiddler.data(archetype1)tiddler [[+tiddler.data (archetype1)+]]===| [[+tiddler.title+]]|+tiddler.data(score)+|\n' Thus, instead

[tw] Re: forEachTiddler

2009-05-12 Thread alex
Hi Eric, Thanks for the quick reply. I get an error: forEachTiddler ...: Extra parameter behind 'write': +tiddler.data (archetype1)tiddler +tiddler.data (archetype1)+ I have read on the group in a previous post that in forEachTiddler is a problem as the macro thinks it has finished. I've

[tw] Re: forEachTiddler

2009-05-12 Thread Alex Hough
Thanks Eric. It is great that stuff like [[+tiddler.data(archetype1)+]] works inside tiddler. Alex 2009/5/12 Eric Shulman elsdes...@gmail.com I get an error: I have read on the group in a previous post that in forEachTiddler is a problem as the macro thinks it has finished. I've

[tw] Re: How to Copy SideMenu Elements to the MainMenu?

2009-05-12 Thread pat toche
You should not have to edit the script in any way. correct, I think I did something wrong with the tagging -- it's working correctly now. Well, except in internet explorer, but that's a problem for another day! thanks Eric, Patrick. --~--~-~--~~~---~--~~ You

[tw] any recommendation for an IE-proof tiddlywiki template?

2009-05-12 Thread pat toche
I'm a newbie. It has just occurred to me that my tiddlywiki page looks awful on internet explorer. I use firefox so I was blissfully unaware of this issue. Until now. I have tried several templates available out there like Mptw and MonkeyGTD, advertised at tiddlyspot.com : they too don't display

[tw] Re: TW as a glossary back-end. Concerned about performance

2009-05-12 Thread aless
Thanks Okido and Mark for your answers. Okido, I had a look at Drupal and tried the online demo, it looks nice but I think it's a bit too much for what I need. Mark, I tried your solution to make the listing case-insensitive, but it doesn't make any difference, e.g., the list is still ordered

[tw] Re: just code, no tiddlywiki

2009-05-12 Thread Dawn.Morales
Ok, I have made a little progress here. I am on my 11th version of empty.When I modify the downloaded zipped version I get two files: empty.html, TiddlerSaver.jar. When I try to open and change empty.html I generate new files every time I save. They all seem to have something like a string

[tw] Re: just code, no tiddlywiki

2009-05-12 Thread wolfgang
Hi Dawn, When I try to open and change empty.html I generate new files every time I save. They all seem to have something like a string appended to the name that includes info like the date and time I modified the file.Any hints on how I can make this more user-friendly?I'd like to

[tw] Re: just code, no tiddlywiki

2009-05-12 Thread Eric Shulman
When I try to open and change empty.html I generate new files every time I save.  They all seem to have something like a string appended to the name that includes info like the date and time I modified the file.    Any hints on how I can make this more user-friendly?    I'd like to have just

[tw] Re: just code, no tiddlywiki

2009-05-12 Thread FND
Ok, I have made a little progress here. [...] When I try to open and change empty.html I generate new files every time I save. Just to clarify: The original problem has been solved? -- F. --~--~-~--~~~---~--~~ You received this message because you are

[tw] Re: TW as a glossary back-end. Concerned about performance

2009-05-12 Thread FND
I think it's easier if I switch to a file-based wiki. FWIW, TiddlyWeb uses a file-based store (one file per tiddler/revisions) by default: http://tiddlywiki.org/wiki/TiddlyWeb -- F. --~--~-~--~~~---~--~~ You received this message because you are

[tw] Re: any recommendation for an IE-proof tiddlywiki template?

2009-05-12 Thread pat toche
I noticed a curious behavior in IE7: the page resizing is garbled when I call CTRL++ or CTRL+-, but if I select from the menu View - Text Size - Largest or Smallest the page looks fine, with characters, spaces, and boxes shrinking and expanding in the correct proportions. Hence my follow-up

[tw] Re: TagglyTaggingPlugin suggestion

2009-05-12 Thread Simon Baird
I don't think I understand what you are achieving here. Can you explain a little? Simon. On Tue, Mar 24, 2009 at 10:42 AM, RA nameany...@gmail.com wrote: The code will explain it better than I can. BTW, is there a more efficient way to add multiple tags? // hijack