[tw] Re: Using TW to build a simple homepage

2009-11-17 Thread lynnjUK
On a simpler note - do nothing! My website is a TiddlyWiki. When it is on a protected server 'Edit/ Save' does not appear, just 'Close', 'Close Others', 'View', 'More'. http://www.ljtraining.co.uk/ Lynnj. On Nov 16, 10:17 pm, Ken Girard ken.gir...@gmail.com wrote: A slightly differnt twist

[tw] Re: Using TW to build a simple homepage

2009-11-17 Thread Alex Hough
Lynnj, Double clicking does open up the tiddler for editing. I think this can confuse users. Alex My website is a TiddlyWiki. When it is on a protected server 'Edit/ Save' does not appear, just 'Close', 'Close Others', 'View', 'More'. http://www.ljtraining.co.uk/ Lynnj. On Nov 16,

[tw] Re: Using TW to build a simple homepage

2009-11-17 Thread lynnjUK
Sorry - I see you want to remove all commands - my apologies.. On Nov 17, 8:56 am, lynnjUK lej2...@googlemail.com wrote: On a simpler note - do nothing! My website is a TiddlyWiki.  When it is on a protected server 'Edit/ Save' does not appear, just 'Close', 'Close Others', 'View', 'More'.

[tw] Re: Using TW to build a simple homepage

2009-11-17 Thread Alex Hough
You can keep the commands by making separate toolbars for edting and viewing using hideWhen. Remove the edit command from the viewing toolbar. This is one of Simon Baird's bits of code. div macro=hideWhen readOnly !-- regular toolbar for me -- div class='toolbar' macro='toolbar closeTiddler

[tw] Re: Using TW to build a simple homepage

2009-11-16 Thread vidyutg
Thanks a lot everybody. Will try these out and let you guys know. On Nov 16, 2:25 am, elnoi elnoi...@gmail.com wrote: I recomend: HideWhenPlugin:  http://mptw.tiddlyspot.com/#HideWhenPlugin used as Alex mentioned. SinglePageModePlugin:  http://www.TiddlyTools.com/#SinglePageModePlugin and

[tw] Re: Using TW to build a simple homepage

2009-11-16 Thread Alex Hough
@elnoi I'm curious: ensureVisible=function (e) {return 0}; in your configTweaks tiddler. why? ALex -- http://www.multiurl.com/g/64 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TiddlyWiki group.

[tw] Re: Using TW to build a simple homepage

2009-11-16 Thread elnoi
I don't how to explain this in english but I will try. Based on my experience: when I had a webpage based on tiddlywiki I had a topmenu on top with some links to tiddlers. When I click on a link (tiddler) the browser scrolls to the tiddler title position and hides the header of the page. This

[tw] Re: Using TW to build a simple homepage

2009-11-16 Thread kofoid
Hi, elnoi, Should I have a configTweaks tiddler in my ccTiddly setup? I can't find it anywhere! Cheers, Eric. On Nov 16, 8:49 am, elnoi elnoi...@gmail.com wrote: I don't how to explain this in english but I will try. Based on my experience: when I had a webpage based on tiddlywiki I had a

[tw] Re: Using TW to build a simple homepage

2009-11-16 Thread elnoi
You can create it and tag systemConfig. Normaly people uses this tiddler to put configuration stuffs to force certain options of tiddlywiki: Example: config.options.chkInsertTabs = true; config.options.txtSelectedTiddlerTabButton = none; config.options.chkAnimate = false;

[tw] Re: Using TW to build a simple homepage

2009-11-16 Thread Ken Girard
A slightly differnt twist on using HideWhen is placing something like the following in the ViewTemplate: div class='toolbar' macro=showWhen config.options.txtUserName == 'KenGirard' span macro='toolbar editTiddler closeOthers closeTiddler'/ span /div div class='toolbar' macro=showWhen

[tw] Re: Using TW to build a simple homepage

2009-11-15 Thread okido
You can use PublisherPlugin or Presentation plugin that can be found here: http://lewcid.googlepages.com/presentation_empty.html#author:true Or use your own java code like this small example: var pos = window.location.toString().indexOf('#author:true'); if ( pos == -1 ){ var

[tw] Re: Using TW to build a simple homepage

2009-11-15 Thread Alex Hough
Hi Vidyut You can use HideWhenPlugin [1] Then edit PageTemplate and hide the divs you want to hide; For example; div macro=hideWhen readOnly div id='sidebar' div id='sidebarOptions' refresh='content' tiddler='SideBarOptions'/div div id='sidebarTabs' refresh='content'

[tw] Re: Using TW to build a simple homepage

2009-11-15 Thread elnoi
I recomend: HideWhenPlugin: http://mptw.tiddlyspot.com/#HideWhenPlugin used as Alex mentioned. SinglePageModePlugin: http://www.TiddlyTools.com/#SinglePageModePlugin and this: ensureVisible=function (e) {return 0}; in your configTweaks tiddler.