Ok... I did a little re-reading of http://code.google.com/p/chromium/issues/detail?id=535 which seems to discuss chrome and tiddly wiki and Chrome specifically. Supposedly the issue that's been discuss has been storing of cookies from local HTML files.
In one of the first posts some one had posted a simple test case ChromeCookies.html which document the problem: > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" " > http://www.w3.org/TR/html4/strict.dtd"> > <html lang="en"> > > <head> > <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> > <title>Chrome Testcase: Local-Document Cookies</title> > <script type="text/javascript"> > function main() { > document.cookie = "mycookie=myvalue; expires=Fri, 1 Jan 2010 > 12:00:00 UTC; path=/"; > document.cookie = "mycookie2=myvalue; expires=Fri, 1 Jan 2010 > 12:00:00 UTC; path=/"; > if(document.cookie === "") { > alert("no cookies found"); > } else { > alert(document.cookie.split(";").length + " cookies > found"); > } > } > </script> > </head> > > <body onload="main();"> > </body> > > </html> > I downloaded this file to my desktop and first opened it with firefox and it returned 18 cookies (go figure) I then tried the following experiments in a terminal session: > jo...@jonas5:~/Desktop$ chromium-browser ChromeCookies.html > I get a message box: 0 cookies found When I try: jo...@jonas5:~/Desktop$ chromium-browser --enable-file-cookies ChromeCookies.html I get a message that 3 cookies have been found. Seems strange the instructions say 2 When I look options=> under the hood => show cookies and other site data I see 3 cookies listed under a blank site. chkBackStage chkGTDReleaseNotes txtMainTab (I thinking that perhaps d3 was doing something with chrome.) I cleared all and tried this again...) This time I got 0 cookies each time... Hmmm... At this point I don't understand where my issue lies... is it ubuntu, chrome, tiddlywiki, something else..... So...looking at comment 48 I found this ditty. > Chrome requires one other change -- in the cookie options one must select > <<Allow all > cookies>> rather than <<Accept cookies only from sites I visit>>. Apparently > a local > file is not considered a "site that I visit". So, either I have keep > switching back > and forth or always accept third party cookies. > > > OK so I think this is telling me to look at Option=>Under the hood=>Content Settings=>Cookies Is see no option "Allow all cookies" Uggggg....... Another evening wasted??? -- You received this message because you are subscribed to the Google Groups "GTD TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/gtd-tiddlywiki?hl=en.
