зеркало из https://github.com/mozilla/gecko-dev.git
New file to return to profile manager from the last screen
This commit is contained in:
Родитель
fbaf57dd3c
Коммит
1714b6a650
|
@ -0,0 +1,49 @@
|
|||
<?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("SMTP");
|
||||
element.value = parent.smtpVal;
|
||||
}
|
||||
|
||||
function commit()
|
||||
{
|
||||
var element;
|
||||
|
||||
element = document.getElementById("SMTP");
|
||||
parent.SetValue(element.id, element.value);
|
||||
parent.smtpVal = element.value;
|
||||
}
|
||||
|
||||
setTimeout("InitializeValues()", 0);
|
||||
</script>
|
||||
|
||||
|
||||
<p>
|
||||
Communicator now has enough information to setup your basic profile.
|
||||
<br></br>
|
||||
However, Communicator needs additional information if you want to
|
||||
<br></br>
|
||||
send or receive email or use newsgroups. If you do not know the
|
||||
<br></br>
|
||||
information requested, please contact your system administrator or
|
||||
<br></br>
|
||||
Internet Service Provider.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Outgoing SMTP server
|
||||
<br></br>
|
||||
<input type="text" id="SMTP" size="30"/>
|
||||
</p>
|
||||
|
||||
</xul:window>
|
Загрузка…
Ссылка в новой задаче