[tw] Re: TiddlyWiki 2.6.3

2011-07-25 Thread miki
Why don't you make a TiddlyWiki version that doesn't use the cookies
to default? they're nasty.
Homeware I Noticed a little problem with TiddlyWiki: It does not
update
on Firefox 5 but on Firefox 4 it does.

-- 
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 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: make TIddly Wiki more discreet

2011-07-22 Thread miki
SystemSettings uses cookies too. it will make my options private only
on my pc. to prevent tiddly wiki to create cookies I have to copy and
past

//{{{
 window.saveCookie = function(name) { }
//}}}

on the zzConfig tiddler? or Should I configure it? I'm not able with
javascript

On Jul 22, 11:55 am, PMario pmari...@gmail.com wrote:
 There was a thread lately [1].

 You can create a tiddler named eg: zzConfig and tag it systemConfig
 insert:
//{{{
 window.saveCookie = function(name) { }
 //}}}

 * save
 * reload

 ==
 If you want to store some options, that are normaly stored in cookies
 you can use a shadow tiddler named  SystemSettings. This is part of TW
 since Version 2.6.2. You can check your version with version
 macro.

 If you have a look at the backstage: tweak tab you can see some
 cookies.
 eg: txtBackupFolder

 if you want to save this one in SystemSettings use:

 txtBackupFolder: backups
 ===

 If you want to permanently save, if a slider is open or closed you can
 save this state too:
 eg:
 slider chkMySlider1 tiddlerName label tooltip

 uses the cookie chkMySliderState1 to save its state:

 SystemSettings
 chkMySliderState1: true;

 If SystemSettings contains the value, it will be saved.

 have fun!
 -m

 [1]http://groups.google.com/group/tiddlywiki/msg/0bc0a92177b9612e

-- 
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 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: make TIddly Wiki more discreet

2011-07-22 Thread miki
and with this I can avoid TiddlyWiki to store cookies on the computer?

On Jul 22, 8:47 pm, PMario pmari...@gmail.com wrote:
  //{{{
   window.saveCookie = function(name) { }
  //}}}

  on the zzConfig tiddler? or Should I configure it? I'm not able with
  javascript

 Create a new tiddler named: zzConfig
 tag this tiddler: systemConfig

 copy the 3 lines below into this thiddler

 //{{{
  window.saveCookie = function(name) { }
 //}}}

 Save the tiddler
 Browser reload the page

 That's it.

 -m
 PS: In the browser settings somewhere should be a possibility to nuke
 all cookies

-- 
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 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.