1999-10-24 11:16:45 +04:00
|
|
|
<?xml version="1.0"?>
|
2006-05-17 06:24:37 +04:00
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
2006-05-17 06:24:52 +04:00
|
|
|
|
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
2006-05-17 06:24:35 +04:00
|
|
|
<?xul-overlay href="chrome://communicator/content/pref/preftree.xul"?>
|
2006-05-17 06:22:45 +04:00
|
|
|
|
2006-05-17 06:24:35 +04:00
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref.dtd" >
|
1999-10-30 04:14:52 +04:00
|
|
|
|
2006-05-17 06:24:52 +04:00
|
|
|
<window id="prefWindow"
|
|
|
|
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
title="Foopy"
|
|
|
|
orient="vertical"
|
|
|
|
class="dialog"
|
|
|
|
persist="screenX screenY width height"
|
|
|
|
screenX="24" screenY="24"
|
|
|
|
onload="hPrefWindow = new nsPrefWindow('panelFrame');"
|
|
|
|
width="620" height="470">
|
|
|
|
|
|
|
|
<script language="javascript" src="chrome://global/content/nsWidgetStateManager.js"></script>
|
|
|
|
<script language="javascript" src="chrome://communicator/content/pref/nsPrefWindow.js"></script>
|
1999-12-24 00:38:25 +03:00
|
|
|
|
2006-05-17 06:22:45 +04:00
|
|
|
<keyset id="keyset"/>
|
1999-10-30 04:14:52 +04:00
|
|
|
|
2006-05-17 06:23:40 +04:00
|
|
|
<box flex="1">
|
2006-05-17 06:22:45 +04:00
|
|
|
<!-- tree sidebar -->
|
2006-05-17 06:24:59 +04:00
|
|
|
<tree class="inset" id="prefsTree" flex="1"/>
|
2006-05-17 06:23:40 +04:00
|
|
|
|
2006-05-17 06:24:59 +04:00
|
|
|
<iframe id="panelFrame" name="panelFrame" style="width:0px" flex="4"/>
|
2006-05-17 06:24:52 +04:00
|
|
|
<script language="JavaScript">
|
2006-05-17 06:23:38 +04:00
|
|
|
<![CDATA[
|
2006-05-17 06:23:39 +04:00
|
|
|
if( window.arguments && window.arguments[0] ) {
|
|
|
|
dump("*** panel to load is = " + window.arguments[0] + "\n");
|
2006-05-17 06:22:51 +04:00
|
|
|
document.getElementById("panelFrame").setAttribute("src", window.arguments[0] );
|
2006-05-17 06:24:52 +04:00
|
|
|
document.getElementById("panelFrame").setAttribute("tag", window.arguments[0] );
|
2006-05-17 06:23:39 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
dump("*** window.arguments not found, defaulting to navigator panel \n");
|
2006-05-17 06:24:35 +04:00
|
|
|
document.getElementById("panelFrame").setAttribute("src", "chrome://communicator/content/pref/pref-navigator.xul" );
|
2006-05-17 06:24:52 +04:00
|
|
|
document.getElementById("panelFrame").setAttribute("tag", "chrome://communicator/content/pref/pref-navigator.xul" );
|
2006-05-17 06:23:39 +04:00
|
|
|
}
|
2006-05-17 06:23:38 +04:00
|
|
|
]]>
|
2006-05-17 06:23:40 +04:00
|
|
|
</script>
|
2006-05-17 06:22:45 +04:00
|
|
|
</box>
|
2006-05-17 06:23:40 +04:00
|
|
|
|
|
|
|
<separator class="groove"/>
|
|
|
|
|
2006-05-17 06:24:52 +04:00
|
|
|
<box id="okCancelButtonsRight" />
|
1999-10-30 04:14:52 +04:00
|
|
|
|
|
|
|
</window>
|