mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
65 lines
1.4 KiB
XML
65 lines
1.4 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="common.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window>
|
|
|
|
<xul:window
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns="http://www.w3.org/TR/REC-html40">
|
|
|
|
|
|
<script>
|
|
function InitializeValues()
|
|
{
|
|
element = document.getElementById("ProfileName");
|
|
element.value = parent.profName;
|
|
|
|
element = document.getElementById("ProfileDir");
|
|
element.value = parent.profDir;
|
|
}
|
|
|
|
function commit()
|
|
{
|
|
var element;
|
|
|
|
element = document.getElementById("ProfileName");
|
|
parent.SetValue(element.id, element.value);
|
|
parent.profName = element.value;
|
|
|
|
element = document.getElementById("ProfileDir");
|
|
data += "ProfileDir="+element.value+"%";
|
|
parent.SetValue(element.id, element.value);
|
|
parent.profDir = element.value;
|
|
}
|
|
|
|
setTimeout("InitializeValues()", 0);
|
|
</script>
|
|
|
|
|
|
<p>
|
|
If you create several profiles you can tell them apart by the profile names.
|
|
<br></br>
|
|
You may use the name provided here or use one of your own.
|
|
</p>
|
|
|
|
<p>
|
|
Enter New Profile name
|
|
<br></br>
|
|
<input type="text" id="ProfileName" size="30"/>
|
|
</p>
|
|
|
|
<p>
|
|
Your user settings, preferences, bookmarks and stored messages will be
|
|
<br></br>
|
|
stored in the directory below. We recommend that you use the default
|
|
<br></br>
|
|
directory (by leaving the box blank).
|
|
<br></br>
|
|
<input type="text" id="ProfileDir" size="30"/>
|
|
</p>
|
|
|
|
|
|
<p>
|
|
Please click Next to continue
|
|
</p>
|
|
</xul:window> |