> I didn't test before :( I upgraded to FF19 and TiddlyWiki 2.7.1. Now I
> tried the snapshot plugin and it fails with:
> error during local file access: TypeError:
> netscape.security.PrivilegeManager is undefined
> Is there anything I can do about it?

FireFox has removed support for privileged filesystem I/O functions.
In this case, it is the "file picker" interface.  As a work-around,
you could overlay the SnapshotPlugin definition of "askforfilename",
so that it uses a simple 'prompt' for input (which doesn't require any
security).

Create a new tiddler called [[SnapshotPluginTweak]], tagged with
'systemConfig', containing:
----------------------
config.macros.snapshot.askforfilename=function(msg,path,file){
   return prompt(msg,path+file);
}
----------------------

When you open your document, plugins are loaded in alphanumeric order,
based on tiddler title, so the SnapshotPluginTweak is applied after
SnapshotPlugin, replacing the errant function with the above
simplification.

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
   http://www.TiddlyTools.com/#Donations

Professional TiddlyWiki Consulting Services...
Analysis, Design, and Custom Solutions:
   http://www.TiddlyTools.com/#Contact

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywikidev?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to