Re: [tw] Re: TiddlyWiki for Android with Firefox + FiddlyFox

2013-10-18 Thread Seann Hamilton
Thanks Arc. That helped to know exactly what a proper install should look like. It's still giving me trouble, sadly. Played around for another hour with different browsers to download it, trying to get into the settings, about:config, etc., but cannot seem to get the xpi to actually finish

[tw] Opera saving issue

2013-10-18 Thread Billy Christian
I'm having issues saving on Opera (v.12.16) on Windows 7. I was just fine up until the Java update I had to download a day or so ago. Since then I've been unable to save, receiving the following message: localhost It's not possible to save changes. Possible reasons include: - your browser

[tw] Re: [TWC] MAJOR UPDATE: ListfiltrPlugin 1.5.0

2013-10-18 Thread Tobias Beer
Hi Arc, What I found is that if: ExcludeTimelin FoldHeadingsPlugin are in the wiki it breaks but if you remove either one it works. I have made it work with version 1.7.0 now and documented the default configuration at... http://listfiltr.tiddlyspace.com/#Defaults If you check the last

Re: [tw] Re: TiddlyWiki for Android with Firefox + FiddlyFox

2013-10-18 Thread Arc Acorn
If it helps the exact steps I did where: -Went to the TiddlyFox Github page in Firefox -Requested the desktop version of the site (Because I hate the mobile version no other special reason ^^;) -Downloaded the .xpi -Closed Firefox -Used ES File Explore to open the .xpi with Firefox -Clicked okay

Re: [tw] Re: TiddlyWiki for Android with Firefox + FiddlyFox

2013-10-18 Thread Jeremy Ruston
Hi Everyone Am I right in understanding that the underlying problem that addons.mozilla.org isn't listing the latest version of TiddlyFox, and falls back to alpha3? Does this just happen on older versions of Firefox for Android? Best wishes Jeremy On Fri, Oct 18, 2013 at 4:37 PM, Arc Acorn

Re: [tw] Re: TiddlyWiki for Android with Firefox + FiddlyFox

2013-10-18 Thread Arc Acorn
I never use firefox's addon site for my addons, but testing this I uninstalled TiddlyWiki on the Firefox beta I was using to test this and went to the addon finder in firefox and TiddlyWiki isn't even listed as far as I can see. On Friday, October 18, 2013 8:46:50 AM UTC-7, Jeremy Ruston

Re: [tw] Re: TiddlyWiki for Android with Firefox + FiddlyFox

2013-10-18 Thread Jeremy Ruston
Hi Arc Thanks, what if you search for TiddlyFox? Best wishes Jeremy On Fri, Oct 18, 2013 at 4:58 PM, Arc Acorn nuttyta...@gmail.com wrote: I never use firefox's addon site for my addons, but testing this I uninstalled TiddlyWiki on the Firefox beta I was using to test this and went to the

Re: [tw] Re: TiddlyWiki for Android with Firefox + FiddlyFox

2013-10-18 Thread Arc Acorn
If I got straight to the addon website rather than the built in system to the Tiddlyfox page I get: Not Updated for Firefox 25.0 and the button is grayed out. On Friday, October 18, 2013 8:46:50 AM UTC-7, Jeremy Ruston wrote: Hi Everyone Am I right in understanding that the underlying

[tw] Error : This application will be blocked in a future Java security update because the JAR file manifest does not contain the Permissions attribute. Please contact the Publisher for more informati

2013-10-18 Thread Ram Babu
Hi all, My Tiddly was working fine on Google chrome. I updated my Java today after which I am getting this error : This application will be blocked in a future Java security update because the JAR file manifest does not contain the Permissions attribute. Please contact the Publisher for more

[tw] TWC - JavaScript on each tiddler open

2013-10-18 Thread Arc Acorn
This feels like it should all ready be answered but no matter what I search for I can't seem to find what I need... Notes: - I'm using single page mode so only one tiddler is open at a time. - I have tried my normal method of adding the script to a tiddler and than using the tiddler macro

[tw] Re: TW5 mall

2013-10-18 Thread Ton Gerner
Hi Dave, Today I was experimenting with your 2 and 3 column layout in Chrome but it did not work. As given it only works with Firefox but you can make it more universal, see http://www.w3schools.com/cssref/css3_pr_column-count.asp In principle: .threecolumns { column-count:3; /* Opera

[tw] Re: TW5 mall

2013-10-18 Thread Stephan Hradek
For completeness: Safari 5.0.6 also does not display bullets. Even not when adding list-style-type: circle; -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Re: TWC - JavaScript on each tiddler open

2013-10-18 Thread Tobias Beer
Hi Arc, I don't quite understand what you are trying to do. Perhaps rewind once more and explain the overall idea of what you're trying to achieve. Anyhow, to find the outer tiddler, perhaps try... var tid = story.findContainingTiddler(place); tid = tid ? tid.getAttribute('tiddler') : '';

[tw] Re: [TW2] NEW: Paintr

2013-10-18 Thread Måns
Hi Tobias The macro call: paint css tiddler title(two or more words) doesn't seem to work for tiddlers with titles consisting of more than one word - or should I wrap the title in something else than quotation marks? 0) I'm not quite understanding how to set colors for individual tags -

[tw] Re: TWC - JavaScript on each tiddler open

2013-10-18 Thread Arc Acorn
Right now I think I figured out that my issue is that the script when placed in the viewTemplate like this: span tiddler='iFrameName'/span I've also tried: span refresh='content' force='true' tiddler='iFrameName'/span But it only works when I force a refresh on the iFrame, but if I put the

[tw] Re: TWC - JavaScript on each tiddler open

2013-10-18 Thread Arc Acorn
Right now I think I figured out that one of my issue is that the script when placed in the viewTemplate like this: span tiddler='iFrameName'/span I've also tried: span refresh='content' force='true' tiddler='iFrameName'/span But it only works when I force a refresh on the iFrame, but if I put

[tw] Re: TWC - JavaScript on each tiddler open

2013-10-18 Thread Eric Shulman
On Friday, October 18, 2013 3:02:37 PM UTC-7, Arc Acorn wrote: If I just paste: script var tid = story.findContainingTiddler(place); tid = tid ? tid.getAttribute('tiddler') : ''; window.parent.document.getElementById('iTitle').innerHTML=tid; /script In all the tiddlers in my TW It would

[tw] Re: TWC - JavaScript on each tiddler open

2013-10-18 Thread Arc Acorn
That fixed it! So it was just me calling the tiddler into the viewTemplate the wrong way... On Friday, October 18, 2013 3:52:59 PM UTC-7, Eric Shulman wrote: You can put this in your ViewTemplate: span macro=tiddler NameOfTiddlerContainingScript/span enjoy, -e Eric Shulman

Re: [tw] Re: TW5 mall

2013-10-18 Thread David Gifford
Sigh. Corrected. On Fri, Oct 18, 2013 at 3:27 PM, Stephan Hradek stephan.hra...@gmail.comwrote: For completeness: Safari 5.0.6 also does not display bullets. Even not when adding list-style-type: circle; -- You received this message because you are subscribed to a topic in the Google

Re: [tw] Re: TW5 mall

2013-10-18 Thread David Gifford
And thanks, you two! Appreciate your playing around with the mall and reporting where it needs massaging. Blessings, Dave On Fri, Oct 18, 2013 at 7:16 PM, David Gifford dgiff...@crcna.org wrote: Sigh. Corrected. On Fri, Oct 18, 2013 at 3:27 PM, Stephan Hradek