there is a bunch of Javascript files in "Mozilla
Thunderbird\components\". What are these doing?
All I could understand is, that they do some stuff with the components,
but what is the result? Thank you.
--
Bye,
Andreas M.
They are all components written in Javascript. As with any C++
component, they also implement interfaces, register themselves and
interact with the application over XPCOM (actually, XPConnect).
To pick an example - the simplest one there is probably the
jsconsole-clhandler.js, which implements "nsICommandLineHandler",
registers itself to the "command-line-handler" category and handles the
command line switch "-jsconsole".
Prasad