gecko-dev/profile/resources/renameProfile.html
1999-06-12 00:53:48 +00:00

86 lines
1.2 KiB
HTML

<html>
<script>
var profileCore = parent.GetProfileCore();
var curProfileName = parent.GetProfileName();
function RenameProfile()
{
//dump("************Inside RenameProfile\n");
// Open a dialog and get new name
var element = document.getElementById("NewProfileName");
var newProfileName = element.value;
if (newProfileName != "") {
profileCore.RenameProfile(curProfileName, newProfileName);
// Load this xul to see the updated profile list
this.location.replace("resource:/res/profile/profileManager.html");
}
else {
dump("************Please enter a new profile name first\n");
this.location.replace("resource:/res/profile/renameProfile.html");
}
}
</script>
<body>
<table>
<tr>
<td>
Rename Profile:
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
<script> document.writeln(curProfileName); </script>
</td>
</tr>
<tr>
<td>
New Name :
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
<input type="text" id="NewProfileName" size="15"/>
</td>
</tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>
<input name=renButton type="button" value="Rename " onclick="RenameProfile();">
</td>
</tr>
</table>
</body>
</html>