Re: [Dvdxul-devs] Misc
Brought to you by:
isydor,
yvan_norsa
|
From: Yvan N. <yva...@gm...> - 2005-06-21 08:02:59
|
> how i can set up the settings with xulrunner? there is no about:config
> page...
The "about:config" part was just there to give you the list of the
proxy related settings in Mozilla. To set the preferences in
xulrunner, you have to do it in the code, using :
var prefs =3D Components.classes["@mozilla.org/preferences-service;1"].getS=
ervice(Components.interfaces.nsIPrefBranch);
prefs.setCharPref("preference_name", "value");
Here is the list :
http://www.mozilla.org/quality/networking/docs/netprefs.html#proxy
Yvan
|