<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>mozilla.dev.tech.plugins Google Group</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins</link>
  <description></description>
  <language>en</language>
  <item>
  <title>Re: Multiprocess plug-ins, is this integrity levels yet?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/168ee2b254662ae7/eeff25f141ebcf40?show_docid=eeff25f141ebcf40</link>
  <description>
  No. &lt;br&gt; We don&#39;t have immediate plans for any sort of sandbox for plugin processes, &lt;br&gt; although we&#39;d like to explore it in the future. That will require &lt;br&gt; cooperation from plugin vendors, since the major plugins currently read and &lt;br&gt; write data from the system in pretty arbitrary ways. &lt;br&gt; --BDS
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/168ee2b254662ae7/eeff25f141ebcf40?show_docid=eeff25f141ebcf40</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Sat, 19 Dec 2009 16:46:10 UT
</pubDate>
  </item>
  <item>
  <title>Re: Array of Objects</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/cc307c7ae9181115?show_docid=cc307c7ae9181115</link>
  <description>
  this actually is not too hard. I want to first add something to the &lt;br&gt; previous post; while NPN_Evaluate does get the job done, it would &lt;br&gt; really be better to just call NPN_Invoke(npp, windowobject, &lt;br&gt; NPN_GetStringIdentifier(&amp;quot;Array &amp;quot;), ...) &lt;br&gt; The reason is that firefox seems to handle things differently when you
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/cc307c7ae9181115?show_docid=cc307c7ae9181115</guid>
  <author>
  taxil...@gmail.com
  (taxilian)
  </author>
  <pubDate>Sat, 19 Dec 2009 10:10:48 UT
</pubDate>
  </item>
  <item>
  <title>Multiprocess plug-ins, is this integrity levels yet?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/168ee2b254662ae7/fabe03f6b189239d?show_docid=fabe03f6b189239d</link>
  <description>
  Is the new multi-process stuff based on Windows integrity levels, or &lt;br&gt; does it use them to run firefox sandboxed? If not, will this EVER be &lt;br&gt; added?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/168ee2b254662ae7/fabe03f6b189239d?show_docid=fabe03f6b189239d</guid>
  <author>
  jamesraymondgent...@gmail.com
  (James Gentile)
  </author>
  <pubDate>Sat, 19 Dec 2009 04:36:25 UT
</pubDate>
  </item>
  <item>
  <title>Re: Regarding Multi-Process Plugins</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/9e6e3f91df831ec9?show_docid=9e6e3f91df831ec9</link>
  <description>
  Sorry, didn&#39;t know that. &lt;br&gt; Georg
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/9e6e3f91df831ec9?show_docid=9e6e3f91df831ec9</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Fri, 18 Dec 2009 14:34:58 UT
</pubDate>
  </item>
  <item>
  <title>Re: Array of Objects</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/d3147632db77e3e6?show_docid=d3147632db77e3e6</link>
  <description>
  Looks good now. I have figured out how to return Array of objects &lt;br&gt; defined in plugin which can&#39;t be created from Javascript. &lt;br&gt; Say Object - Note which has date and string as properties. From &lt;br&gt; JAVAScript, there is call to get complete list of notes. So Plugin &lt;br&gt; need to create object big enough to hold all notes with
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/d3147632db77e3e6?show_docid=d3147632db77e3e6</guid>
  <author>
  movewr...@googlemail.com
  (Digambar Rasal)
  </author>
  <pubDate>Fri, 18 Dec 2009 10:25:24 UT
</pubDate>
  </item>
  <item>
  <title>Re: Array of Objects</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/d024c6c708c5a613?show_docid=d024c6c708c5a613</link>
  <description>
  An Array is just a JS object, so you can script it like any other NPObject. &lt;br&gt; For example: &lt;br&gt; To create a new Array object: &lt;br&gt; * get NPNVWindowNPObject &lt;br&gt; * call NPN_Evaluate(npp, windowobject, &amp;quot;new Array()&amp;quot;, resultvariant); &lt;br&gt; To fill it with objects: &lt;br&gt; NPVariant[3] arrayitems; &lt;br&gt; for (int i = 0; i &amp;lt; 3; ++i) { &lt;br&gt; NPIdentifier id = NPN_GetIntIdentifier(i);
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/d024c6c708c5a613?show_docid=d024c6c708c5a613</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Thu, 17 Dec 2009 15:54:59 UT
</pubDate>
  </item>
  <item>
  <title>Array of Objects</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/2676a67a6c73797c?show_docid=2676a67a6c73797c</link>
  <description>
  Hi, &lt;br&gt; I am writing scriptable plugin and I am sure lot of people must have &lt;br&gt; faced similar problem. &lt;br&gt; I need to pass Array from Javascript and return Array of NPObjects to &lt;br&gt; Javascript from NPAPI plugin. But there is not documentation about how &lt;br&gt; this is achieved. &lt;br&gt; please reply if you think of something or have documentation links or
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/dde461d69418d518/2676a67a6c73797c?show_docid=2676a67a6c73797c</guid>
  <author>
  movewr...@googlemail.com
  (Digambar Rasal)
  </author>
  <pubDate>Thu, 17 Dec 2009 15:34:39 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to embed an application into Firefox viewport?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/d3a1b31120f9570a/7f379f1cde345730?show_docid=7f379f1cde345730</link>
  <description>
  Well, by posting to the mdt.plugins newsgroup you&#39;ve mostly answered your &lt;br&gt; question: you write an NPAPI plugin. The plugin tells the browser what MIME &lt;br&gt; types it can handle (and also which local file extensions map to those MIME &lt;br&gt; types), and the browser will instantiate the plugin when the user tries to
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/d3a1b31120f9570a/7f379f1cde345730?show_docid=7f379f1cde345730</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Thu, 17 Dec 2009 14:52:35 UT
</pubDate>
  </item>
  <item>
  <title>Re: Regarding Multi-Process Plugins</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/52cc4d7df3678a2a?show_docid=52cc4d7df3678a2a</link>
  <description>
  It&#39;s likely to be flash, since that&#39;s what youtube uses. Do you have crash &lt;br&gt; report IDs available? &lt;br&gt; Georg, I specifically asked early testers of out-of-process plugins to &lt;br&gt; report issues to this group. Sending them to an end-user support group is &lt;br&gt; not helpful. &lt;br&gt; --BDS
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/52cc4d7df3678a2a?show_docid=52cc4d7df3678a2a</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Thu, 17 Dec 2009 14:46:55 UT
</pubDate>
  </item>
  <item>
  <title>Re: Regarding Multi-Process Plugins</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/ac4f4963d153096b?show_docid=ac4f4963d153096b</link>
  <description>
  Try posting in mozilla.support.firefox. &lt;br&gt; Georg
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/ac4f4963d153096b?show_docid=ac4f4963d153096b</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Thu, 17 Dec 2009 12:49:15 UT
</pubDate>
  </item>
  <item>
  <title>xulrunner 1.9.1.4 and Adobe Flash Plugin problem</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/2a629d79703f2e2a/bf601f9b678f2222?show_docid=bf601f9b678f2222</link>
  <description>
  I had posted the question in dev.support.firefox but no answers. &lt;br&gt; System: a DIY Linux x86 &lt;br&gt; Gnome 2.28.1 &lt;br&gt; xulrunner 1.9.1.4 with .mozconfig: &lt;br&gt; mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/objdir &lt;br&gt; mk_add_options MOZ_CO_PROJECT=xulrunner &lt;br&gt; ac_add_options --prefix=/usr &lt;br&gt; ac_add_options --with-system-nspr &lt;br&gt; ac_add_options --with-system-nss
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/2a629d79703f2e2a/bf601f9b678f2222?show_docid=bf601f9b678f2222</guid>
  <author>
  tj...@dds.invalid
  (tjoen)
  </author>
  <pubDate>Thu, 17 Dec 2009 07:42:35 UT
</pubDate>
  </item>
  <item>
  <title>Regarding Multi-Process Plugins</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/5d5507765ee8a2ae?show_docid=5d5507765ee8a2ae</link>
  <description>
  After enabling the Multi-Process Plugins, my youtube crashes very &lt;br&gt; often. I am not sure which plugin is triggering this..
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/b0e630f1dafed319/5d5507765ee8a2ae?show_docid=5d5507765ee8a2ae</guid>
  <author>
  vid...@gmail.com
  (Vids)
  </author>
  <pubDate>Thu, 17 Dec 2009 04:35:59 UT
</pubDate>
  </item>
  <item>
  <title>Re: Any example of writing an NPAPI plugin in Linux?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/1e45433e29122efe/cc23a309f5b57e03?show_docid=cc23a309f5b57e03</link>
  <description>
  Depends on what you want to. &lt;br&gt; The basic NPAPI samples build on Linux too: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://mxr.mozilla.org/seamonkey/source/modules/plugin/samples/&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; For IPC it depends on your use-case, though Boost.Interprocess or D- &lt;br&gt; Bus come to mind. &lt;br&gt; Georg
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/1e45433e29122efe/cc23a309f5b57e03?show_docid=cc23a309f5b57e03</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Tue, 15 Dec 2009 17:00:32 UT
</pubDate>
  </item>
  <item>
  <title>Any example of writing an NPAPI plugin in Linux?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/1e45433e29122efe/c1d8b42ae9255071?show_docid=c1d8b42ae9255071</link>
  <description>
  Hi, all &lt;br&gt; I need to write a browser plugin to communicate with another process, &lt;br&gt; and it seems I have to use NPAPI plugins. Is there any example or open &lt;br&gt; source NPAPI plugin I can refer to? &lt;br&gt; Many thanks for your reply.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/1e45433e29122efe/c1d8b42ae9255071?show_docid=c1d8b42ae9255071</guid>
  <author>
  zel...@gmail.com
  (ZelluX)
  </author>
  <pubDate>Tue, 15 Dec 2009 12:04:10 UT
</pubDate>
  </item>
  <item>
  <title>Re: mozilla plugin on mac</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/02eb08f748965c04/0451c0136e5f05d2?show_docid=0451c0136e5f05d2</link>
  <description>
  I might as well answer my own post as I could be waiting and waiting &lt;br&gt; for someone else to do so... &lt;br&gt; Two things I needed to do to make it work on the mac to get it to load &lt;br&gt; in Firefox. &lt;br&gt; 1. build using 32-bit architecture -arch i386 &lt;br&gt; 2. Deliver info.plist resource file with the plugin. &lt;br&gt; EM
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/02eb08f748965c04/0451c0136e5f05d2?show_docid=0451c0136e5f05d2</guid>
  <author>
  emann...@gmail.com
  (enda man)
  </author>
  <pubDate>Mon, 14 Dec 2009 14:10:28 UT
</pubDate>
  </item>
  <item>
  <title>Re: How To get the plugin Installation Path?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/acac7986ce8704ec/045fde5eba739c87?show_docid=045fde5eba739c87</link>
  <description>
  On 11 Dic, 18:21, Georg Fritzsche &amp;lt;georg.fritzs...@googlemail.co m&amp;gt; &lt;br&gt; wrote: &lt;br&gt; Thank you Greg... &lt;br&gt; I must also thank Martin that privately pointed to me the fact that &lt;br&gt; registry functions SHOULD work. &lt;br&gt; Checking my code again I&#39;ve discovered a bug... the weird fact is that &lt;br&gt; the error shoud have been severe enough to cause a crash, but instead
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/acac7986ce8704ec/045fde5eba739c87?show_docid=045fde5eba739c87</guid>
  <author>
  luca.cerutti...@gmail.com
  (Luca Cerutti)
  </author>
  <pubDate>Mon, 14 Dec 2009 13:59:43 UT
</pubDate>
  </item>
  <item>
  <title>Re: NPObject to NPObject initilization</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/c4520e9e00c55943?show_docid=c4520e9e00c55943</link>
  <description>
  Yes; the method I mentioned only works with objects that you &lt;br&gt; create. :-) NPN_Invoke and NPN_SetProperty will work on any &lt;br&gt; NPObject. I tend to be obsessively object oriented, but I&#39;d probably &lt;br&gt; still create an object or method somewhere that takes the NPObject &lt;br&gt; params, creates the object, calls the appropriate initialization
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/c4520e9e00c55943?show_docid=c4520e9e00c55943</guid>
  <author>
  taxil...@gmail.com
  (taxilian)
  </author>
  <pubDate>Sat, 12 Dec 2009 18:06:03 UT
</pubDate>
  </item>
  <item>
  <title>Re: How To get the plugin Installation Path?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/acac7986ce8704ec/5a6669c677424622?show_docid=5a6669c677424622</link>
  <description>
  You can use GetModulePath(GetModuleHandle( ), ...) on Windows. &lt;br&gt; Regards, &lt;br&gt; Georg
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/acac7986ce8704ec/5a6669c677424622?show_docid=5a6669c677424622</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Fri, 11 Dec 2009 17:21:24 UT
</pubDate>
  </item>
  <item>
  <title>How To get the plugin Installation Path?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/acac7986ce8704ec/de358bf9836b7d6f?show_docid=de358bf9836b7d6f</link>
  <description>
  Good Day, &lt;br&gt; I need to know how a plugin can know the path to the folder where it &lt;br&gt; is installed. &lt;br&gt; I&#39;m targeting MicroSoft Windows as OS and as far as I know, NPAPI has &lt;br&gt; no methods to read registry values and any call to Microsoft SDK &lt;br&gt; registry functions immediately disables the plugin. &lt;br&gt; Obviously &amp;quot;GetCurrent&amp;quot; only gets the installation path of Mozilla
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/acac7986ce8704ec/de358bf9836b7d6f?show_docid=de358bf9836b7d6f</guid>
  <author>
  luca.cerutti...@gmail.com
  (Luca Cerutti)
  </author>
  <pubDate>Fri, 11 Dec 2009 17:03:18 UT
</pubDate>
  </item>
  <item>
  <title>mozilla plugin on mac</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/02eb08f748965c04/e40f2365839edb59?show_docid=e40f2365839edb59</link>
  <description>
  Hi, &lt;br&gt; I can not get firefox on mac osx 10.6 to load the npcomplex sample I &lt;br&gt; built. I drop the plugin file called libnpcomlex.dylib into ~/Library/ &lt;br&gt; Internet Plug-Ins &lt;br&gt; Do I need an Info.plist file for this to work. &lt;br&gt; By not loading I mean I do not see it when I type about:plugins in the &lt;br&gt; browser URL. &lt;br&gt; EM
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/02eb08f748965c04/e40f2365839edb59?show_docid=e40f2365839edb59</guid>
  <author>
  emann...@gmail.com
  (enda man)
  </author>
  <pubDate>Fri, 11 Dec 2009 15:07:08 UT
</pubDate>
  </item>
  <item>
  <title>Re: NPObject to NPObject initilization</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/749b01014d8a8e66?show_docid=749b01014d8a8e66</link>
  <description>
  I think I need to use NPN_Invoke on new object to call default which &lt;br&gt; initialises method with parameters. But thanks for reply. I find its &lt;br&gt; very easy to do with JS Objects which my platform doesn&#39;t support. &lt;br&gt; Cheers
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/749b01014d8a8e66?show_docid=749b01014d8a8e66</guid>
  <author>
  movewr...@googlemail.com
  (Digambar Rasal)
  </author>
  <pubDate>Fri, 11 Dec 2009 09:20:51 UT
</pubDate>
  </item>
  <item>
  <title>Re: NPObject to NPObject initilization</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/b7f6dadc84671002?show_docid=b7f6dadc84671002</link>
  <description>
  I&#39;m not sure if anyone can say that there is a &amp;quot;Best way&amp;quot;, but I can &lt;br&gt; tell you how I normally do it. I just have a static method on my &lt;br&gt; NPObject class called &amp;quot;NewObject&amp;quot;; I pass in my browser object (which &lt;br&gt; has the pointers to NPN_CreateObject and the NPP handle) as well as &lt;br&gt; any initialization parameters that I may need and it returns the
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/b7f6dadc84671002?show_docid=b7f6dadc84671002</guid>
  <author>
  taxil...@gmail.com
  (taxilian)
  </author>
  <pubDate>Thu, 10 Dec 2009 20:12:39 UT
</pubDate>
  </item>
  <item>
  <title>NPObject to NPObject initilization</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/63f0c7ecd952ce35?show_docid=63f0c7ecd952ce35</link>
  <description>
  In a plugin say video, after initilization of base object, further &lt;br&gt; objects are created by NPN-&amp;gt;CreateObject. &lt;br&gt; As CreateObject just takes Class variable as arguement, is it &lt;br&gt; possible to send some initilisation data so that on allocate it can be &lt;br&gt; used in next class. &lt;br&gt; Here is snippet - &lt;br&gt; in main plugin instace -
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/f25f4aa033ad46fa/63f0c7ecd952ce35?show_docid=63f0c7ecd952ce35</guid>
  <author>
  movewr...@googlemail.com
  (Digambar Rasal)
  </author>
  <pubDate>Thu, 10 Dec 2009 18:29:40 UT
</pubDate>
  </item>
  <item>
  <title>Re: Flash Player 10 plugin and standard NPAPI</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/c3b9238c4e9febb2/74641a71476a8a7c?show_docid=74641a71476a8a7c</link>
  <description>
  The reason I&#39;m asking this, is that Adobe Flash Player 10 is ready to &lt;br&gt; receive visibility notifications from browsers to CorePlayer::OnEvent &lt;br&gt; method (kEventPlayerNotVisible and kEventPlayerVisible). &lt;br&gt; And for example, Webkit implements MPluginNotifier Class. That class &lt;br&gt; send visibility and focus notification to plugins.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/c3b9238c4e9febb2/74641a71476a8a7c?show_docid=74641a71476a8a7c</guid>
  <author>
  alessandro.cogli...@gmail.com
  (alessandro)
  </author>
  <pubDate>Thu, 10 Dec 2009 14:24:18 UT
</pubDate>
  </item>
  <item>
  <title>Flash Player 10 plugin and standard NPAPI</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/c3b9238c4e9febb2/c4278115bad00020?show_docid=c4278115bad00020</link>
  <description>
  Flash Player 10 has new features and optimizations. &lt;br&gt; In order to enhance some of the optimizations, browser needs to notify &lt;br&gt; plugin visibility status to Flash plugin instance. It will be nice &lt;br&gt; that there will be standard API to handle this issue. &lt;br&gt; What is the Mozilla policy? Is it possible to extend NPAPI in order to
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/c3b9238c4e9febb2/c4278115bad00020?show_docid=c4278115bad00020</guid>
  <author>
  alessandro.cogli...@gmail.com
  (alessandro)
  </author>
  <pubDate>Thu, 10 Dec 2009 12:56:02 UT
</pubDate>
  </item>
  <item>
  <title>Need testers for Firebreath cross-browser plugin framework</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/64e0caa8bd0a769a/95599f6b0f62715f?show_docid=95599f6b0f62715f</link>
  <description>
  All, &lt;br&gt; Not trying to spam the list, but a few months ago I posted a little &lt;br&gt; note mentioning an open source project that I had just started called &lt;br&gt; Firebreath (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://code.google.com/p/firebreath/&quot;&gt;[link]&lt;/a&gt;). Firebreath is &lt;br&gt; intended to be a cross-platform, cross-browser plugin framework. I &lt;br&gt; posted before requesting interested developers lend a hand =] Thank
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/64e0caa8bd0a769a/95599f6b0f62715f?show_docid=95599f6b0f62715f</guid>
  <author>
  taxil...@gmail.com
  (taxilian)
  </author>
  <pubDate>Thu, 10 Dec 2009 07:28:38 UT
</pubDate>
  </item>
  <item>
  <title>Plugin on OSX</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/00307bf9c03b8173/a47a6d60fd8641cb?show_docid=a47a6d60fd8641cb</link>
  <description>
  Good morning everyone. &lt;br&gt; Does anyone know, if it&#39;s possible to use Core Animation in a firefox plugin, or if it&#39;s still unsupported? Maybe minefield? &lt;br&gt; Thanks in advance &lt;br&gt; G.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/00307bf9c03b8173/a47a6d60fd8641cb?show_docid=a47a6d60fd8641cb</guid>
  <author>
  ginofiliber...@yahoo.it
  (Gino)
  </author>
  <pubDate>Tue, 08 Dec 2009 10:16:04 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/7fa079942ab94ec1?show_docid=7fa079942ab94ec1</link>
  <description>
  Ok, makes sense that way. I did have something else in my head. &lt;br&gt; Regards, &lt;br&gt; Georg
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/7fa079942ab94ec1?show_docid=7fa079942ab94ec1</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Fri, 04 Dec 2009 15:42:07 UT
</pubDate>
  </item>
  <item>
  <title>Re: plugin finder service</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/7a424e8c774e4e47/fd1f67f83e9a287b?show_docid=fd1f67f83e9a287b</link>
  <description>
  I have exactly the same problem, anyone know know how to bypass this &lt;br&gt; manual install stage. &lt;br&gt; EM
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/7a424e8c774e4e47/fd1f67f83e9a287b?show_docid=fd1f67f83e9a287b</guid>
  <author>
  emann...@gmail.com
  (enda man)
  </author>
  <pubDate>Thu, 03 Dec 2009 13:50:59 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/ae874acd8b30c3a6?show_docid=ae874acd8b30c3a6</link>
  <description>
  I&#39;m not suggesting hacks here, I&#39;m suggesting an NPAPI extension, so that &lt;br&gt; &amp;lt;script type=&amp;quot;application/x-foo&amp;quot;&amp;gt; would query plugins to see if they handle &lt;br&gt; that MIME type and invent a new enumeration value for NP_GetValue. Then &lt;br&gt; you&#39;d load a single windowless plugin instance per page and pass it script
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/ae874acd8b30c3a6?show_docid=ae874acd8b30c3a6</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Tue, 01 Dec 2009 15:23:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to get directory in wich plugin is installed (or current profile)</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/42492fa10106a8fc?show_docid=42492fa10106a8fc</link>
  <description>
  On 13 Nov, 14:16, Oleksandr Shneyder &amp;lt;oleksandr.shney...@obviously- &lt;br&gt; I&#39;ve exactly the same question but I&#39;m developing under MS Windows. &lt;br&gt; I need to know how to read a sort of configuration file for the plugin &lt;br&gt; because I need to let the plugin read/edit the following information: &lt;br&gt; - custom cache folder path
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/42492fa10106a8fc?show_docid=42492fa10106a8fc</guid>
  <author>
  luca.cerutti...@gmail.com
  (Luca Cerutti)
  </author>
  <pubDate>Tue, 01 Dec 2009 13:48:46 UT
</pubDate>
  </item>
  <item>
  <title>manually install plugin</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/69ed056b49e5f0d2/b959b5c41275663b?show_docid=b959b5c41275663b</link>
  <description>
  Hi, &lt;br&gt; I wrote a plugin and packaged it into an XPI file. I have the &lt;br&gt; following tag on my html page used to install the plugin installer. &lt;br&gt; &amp;lt;object type=&amp;quot;application/x-mypluginap p&amp;quot; id=&amp;quot;plugin&amp;quot; width=&amp;quot;0&amp;quot; &lt;br&gt; height=&amp;quot;0&amp;quot; codebase=&amp;quot;webphone.xpi&amp;quot;&amp;gt; &amp;lt;/object&amp;gt; &lt;br&gt; After I navigate to my web page, it detects there is no plugin
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/69ed056b49e5f0d2/b959b5c41275663b?show_docid=b959b5c41275663b</guid>
  <author>
  emann...@gmail.com
  (enda man)
  </author>
  <pubDate>Tue, 01 Dec 2009 13:11:45 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/c3384f76cab8b2bd?show_docid=c3384f76cab8b2bd</link>
  <description>
  Yes, i said its currently used as a workaround - but thats no reason &lt;br&gt; to encourage hacks. &lt;br&gt; And how could something like this work without breaking common NPAPI &lt;br&gt; behaviour: &lt;br&gt; &amp;lt;html&amp;gt; &lt;br&gt; &amp;lt;head&amp;gt;&amp;lt;script type=&amp;quot;application/x-foo&amp;quot;&amp;gt;doX() ;&amp;lt;/script&amp;gt;&amp;lt;/head&amp;gt; &lt;br&gt; &amp;lt;body&amp;gt;&amp;lt;object type=&amp;quot;application/x-foo&amp;quot;&amp;gt;&amp;lt;!-- this isn&#39;t loaded early
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/c3384f76cab8b2bd?show_docid=c3384f76cab8b2bd</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Mon, 30 Nov 2009 22:15:14 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/68604659a93ee8b8?show_docid=68604659a93ee8b8</link>
  <description>
  Why not? The NPAPI seems like a pretty good fit for this kind of script &lt;br&gt; execution, because it has a well-defined object scripting model already. &lt;br&gt; Flash, for example, is basically a script execution engine already, and &lt;br&gt; people already use 1x1 hidden flash objects just for its scriptability &lt;br&gt; (ability to play sounds, for example).
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/68604659a93ee8b8?show_docid=68604659a93ee8b8</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Mon, 30 Nov 2009 21:02:43 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/0a173dec7600f2e9?show_docid=0a173dec7600f2e9</link>
  <description>
  Correct me if i&#39;m overlooking something, but while there is the need &lt;br&gt; to utilize the NPAPI as a workaround for such things in the absence of &lt;br&gt; a cross-browser API for extensions, i don&#39;t see how this would fit &lt;br&gt; into the NPAPI in a official or semi-official way. &lt;br&gt; The NPAPI is targeted at extended embedded content, but a script-
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/0a173dec7600f2e9?show_docid=0a173dec7600f2e9</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Mon, 30 Nov 2009 20:45:15 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/e3fd7fcae857ade5?show_docid=e3fd7fcae857ade5</link>
  <description>
  That is correct. Although we did add some support for &amp;quot;language agnostic &lt;br&gt; DOM&amp;quot; for PyXPCOM, I don&#39;t think we now consider it important enough to spend &lt;br&gt; significant energy on it, and so I think we&#39;re unlikely to accept changes of &lt;br&gt; this magnitude (in Mozilla/Firefox anyway). &lt;br&gt; Actually adding support for &amp;lt;script type=&amp;quot;application/x-mycustomsc ripttype&amp;quot;&amp;gt;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/e3fd7fcae857ade5?show_docid=e3fd7fcae857ade5</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Mon, 30 Nov 2009 15:32:38 UT
</pubDate>
  </item>
  <item>
  <title>Re: Google Maps and Adobe Flash</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8d091ddff2540cf6/d3b78a274eea7355?show_docid=d3b78a274eea7355</link>
  <description>
  I had that set up. After several hours (over a week&#39;s worth of &lt;br&gt; searching). It turns out that it&#39;s a permissions thing. Even with &lt;br&gt; allowscriptaccess set to always it wouldn&#39;t send invoke commands to a &lt;br&gt; locally started file. I had to create a dummy URL to return for &lt;br&gt; top.location. I&#39;m sure there is another way around it, but I couldn&#39;t
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8d091ddff2540cf6/d3b78a274eea7355?show_docid=d3b78a274eea7355</guid>
  <author>
  whiteley.mich...@gmail.com
  (Mike)
  </author>
  <pubDate>Mon, 30 Nov 2009 03:20:00 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/70840c1169d08f07?show_docid=70840c1169d08f07</link>
  <description>
  No. I really meant the &amp;lt;script&amp;gt; tag. Its defintion even hints that &lt;br&gt; it should support other languages (e.g. tcl or vbscript). &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.w3.org/TR/REC-html40/interact/scripts.html&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; That is a possible syntax to replace normal &amp;lt;script&amp;gt; blocks. However, &lt;br&gt; it makes script formatting difficult (e.g. escaping quotes). Also
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/70840c1169d08f07?show_docid=70840c1169d08f07</guid>
  <author>
  dherr...@at.tentpost.dot.com
  (D Herring)
  </author>
  <pubDate>Mon, 30 Nov 2009 02:49:53 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/fd51bd1982c6362f?show_docid=fd51bd1982c6362f</link>
  <description>
  Portability is one of the main benefits of NPAPI. I&#39;ll try stirring &lt;br&gt; up some support for this feature; but in the meantime, I&#39;ll look at a &lt;br&gt; minimal javascript interface. &lt;br&gt; Thanks, &lt;br&gt; Daniel
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/fd51bd1982c6362f?show_docid=fd51bd1982c6362f</guid>
  <author>
  dherr...@at.tentpost.dot.com
  (D Herring)
  </author>
  <pubDate>Mon, 30 Nov 2009 02:31:38 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/eae5ac1d531d4a05?show_docid=eae5ac1d531d4a05</link>
  <description>
  Do you mean something like: &lt;br&gt; &amp;lt;embed type=&amp;quot;application/x-myscript&amp;quot;&amp;gt; &lt;br&gt; custom script text here &lt;br&gt; &amp;lt;/embed&amp;gt; &lt;br&gt; If so, then this won&#39;t work, because the way the &amp;lt;embed&amp;gt; tag is specified, &lt;br&gt; the inner content is displayed when the content type is unknown or &lt;br&gt; unsupported. You can, however, get it to load external scripts by URL, e.g.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/eae5ac1d531d4a05?show_docid=eae5ac1d531d4a05</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Mon, 30 Nov 2009 01:00:54 UT
</pubDate>
  </item>
  <item>
  <title>Re: Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/8fb812bc396db07f?show_docid=8fb812bc396db07f</link>
  <description>
  NPAPI developed historically from use-cases that were most important &lt;br&gt; back then, see Wikipedia [1] on this. &lt;br&gt; Its supported not only by Gecko but also by WebKit, Opera and probably &lt;br&gt; more. As there is no organization that officially defines the NPAPI &lt;br&gt; you can&#39;t just add something to it, only begin supporting it in one
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/8fb812bc396db07f?show_docid=8fb812bc396db07f</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Sun, 29 Nov 2009 09:13:10 UT
</pubDate>
  </item>
  <item>
  <title>Can plugins interpret the HTML script tag?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/0d783afc121839fe?show_docid=0d783afc121839fe</link>
  <description>
  Hi, &lt;br&gt; I started working on an NPAPI plugin to embed non-javascript languages &lt;br&gt; into HTML. The idea was to implement a system like FastCGI, but &lt;br&gt; client-side. When the plugin started, it would start the interpreter &lt;br&gt; program and use sockets to communicate. &lt;br&gt; The goal was for this plugin to be able to interpret scripts such as
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/42ac5a177bf28cab/0d783afc121839fe?show_docid=0d783afc121839fe</guid>
  <author>
  dherr...@at.tentpost.dot.com
  (D Herring)
  </author>
  <pubDate>Sun, 29 Nov 2009 06:56:24 UT
</pubDate>
  </item>
  <item>
  <title>Re: Google Maps and Adobe Flash</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8d091ddff2540cf6/654b430b3efe5347?show_docid=654b430b3efe5347</link>
  <description>
  To Mike: &lt;br&gt; Flash plug-in can get a scriptable object from your application via &lt;br&gt; NPN_GetValue(... , NPNVWindowNPObject, ...). You should return a real &lt;br&gt; (maybe you have a javascript engine in your app), or just a virtual &lt;br&gt; (your own simple implementation) scriptable object. Then the plug-in &lt;br&gt; will call NPN_Invoke with method name &amp;quot;_DoFSCommand&amp;quot; and exactly 2
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8d091ddff2540cf6/654b430b3efe5347?show_docid=654b430b3efe5347</guid>
  <author>
  incorrect.us...@gmail.com
  (iUm)
  </author>
  <pubDate>Mon, 23 Nov 2009 11:11:10 UT
</pubDate>
  </item>
  <item>
  <title>Call an extension from a plugin?</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/02e61f876467a8a0/903fb132dac36215?show_docid=903fb132dac36215</link>
  <description>
  I&#39;ve read lots of posts about calling JavaScript in pages from plugins &lt;br&gt; and vice-versa. However, I&#39;ve got a requirement to call code in an &lt;br&gt; extension from a plugin. Is this even possible? If that extension is a &lt;br&gt; collection of JavaScript objects, does that make it harder or easier &lt;br&gt; (impossible)?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/02e61f876467a8a0/903fb132dac36215?show_docid=903fb132dac36215</guid>
  <author>
  bjvet...@gmail.com
  (bjv)
  </author>
  <pubDate>Fri, 20 Nov 2009 23:32:38 UT
</pubDate>
  </item>
  <item>
  <title>Re: Google Maps and Adobe Flash</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8d091ddff2540cf6/ca66fcfb02d539ff?show_docid=ca66fcfb02d539ff</link>
  <description>
  Seems, there&#39;s a bug in the Adobe Flash plug-in: it depends on &lt;br&gt; arguments&#39; order, passed to NPP_New. &lt;br&gt; E.g. to fix that problem with Google Maps i just put &amp;quot;scale&amp;quot; &lt;br&gt; argument-value pair before &amp;quot;salign&amp;quot; one in NPP_New arguments&#39; list. So, &lt;br&gt; if &amp;quot;salign&amp;quot; comes before &amp;quot;scale&amp;quot; Street View will be displayed &lt;br&gt; incorrectly... Nothing similar with Adobe Flash ActiveX, which really
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8d091ddff2540cf6/ca66fcfb02d539ff?show_docid=ca66fcfb02d539ff</guid>
  <author>
  incorrect.us...@gmail.com
  (iUm)
  </author>
  <pubDate>Fri, 20 Nov 2009 12:37:25 UT
</pubDate>
  </item>
  <item>
  <title>Re: Problem registering a scriptable extension</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/145ad89ef6df5ed2/6f285a7c1748d795?show_docid=6f285a7c1748d795</link>
  <description>
  You could try to profile FF with DependencyWalker to see if it at &lt;br&gt; least loads your DLL. &lt;br&gt; If it does and your entry points are correctly exported and there are &lt;br&gt; no missing libraries that your plugin tries to delay-load, it could be &lt;br&gt; that the version info in the DLL doesn&#39;t match the version you &lt;br&gt; register the plugin with - FF on windows checks that before calling
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/145ad89ef6df5ed2/6f285a7c1748d795?show_docid=6f285a7c1748d795</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Thu, 19 Nov 2009 13:57:28 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to get directory in wich plugin is installed (or current profile)</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/2680ef22ad5d4d3d?show_docid=2680ef22ad5d4d3d</link>
  <description>
  Is this a plugin binary, or an extension? Binary plugins typically don&#39;t &lt;br&gt; know or care where they are installed. For extensions using __LOCATION__ &lt;br&gt; from a JS file is the recommended solution: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://developer.mozilla.org/en/Code_snippets/File_I%2F%2FO#Getting_your_extension%27s_folder&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; --BDS
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/2680ef22ad5d4d3d?show_docid=2680ef22ad5d4d3d</guid>
  <author>
  benja...@smedbergs.us
  (Benjamin Smedberg)
  </author>
  <pubDate>Mon, 16 Nov 2009 13:34:36 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to get directory in wich plugin is installed (or current profile)</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/336f097d759da358?show_docid=336f097d759da358</link>
  <description>
  Georg Fritzsche schrieb: &lt;br&gt; Thank you very much, Georg. That is exactly what I need. &lt;br&gt; Have a nice day.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/336f097d759da358?show_docid=336f097d759da358</guid>
  <author>
  oleksandr.shney...@obviously-nice.de
  (Oleksandr Shneyder)
  </author>
  <pubDate>Mon, 16 Nov 2009 07:23:45 UT
</pubDate>
  </item>
  <item>
  <title>Re: How to get directory in wich plugin is installed (or current profile)</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/4edae258b0e54327?show_docid=4edae258b0e54327</link>
  <description>
  The GNU extension dladdr() is commonly used for that. &lt;br&gt; Regards, &lt;br&gt; Georg
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/8192190dd888342c/4edae258b0e54327?show_docid=4edae258b0e54327</guid>
  <author>
  georg.fritzs...@googlemail.com
  (Georg Fritzsche)
  </author>
  <pubDate>Sun, 15 Nov 2009 09:03:07 UT
</pubDate>
  </item>
  <item>
  <title>Problem registering a scriptable extension</title>
  <link>http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/145ad89ef6df5ed2/b7d2ac0e73f8440c?show_docid=b7d2ac0e73f8440c</link>
  <description>
  I&#39;m trying to create an NPAPI plugin, packaged as extension, and so &lt;br&gt; far I cannot even get my code to run (I put debug breaks in all 3 &lt;br&gt; exported functions: NP_GetEntryPoints, NP_Initialize and NP_Shutdown, &lt;br&gt; and they haven&#39;t been hit). &lt;br&gt; When I feed Firefox 3.5.5/Windows with an XPI archive, the extension
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/mozilla.dev.tech.plugins/browse_frm/thread/145ad89ef6df5ed2/b7d2ac0e73f8440c?show_docid=b7d2ac0e73f8440c</guid>
  <author>
  cctv.s...@gmail.com
  (rincewind)
  </author>
  <pubDate>Sat, 14 Nov 2009 01:10:39 UT
</pubDate>
  </item>
  </channel>
</rss>
