mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-15 14:30:47 +00:00
220 lines
5.9 KiB
JavaScript
220 lines
5.9 KiB
JavaScript
/*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
* March 31, 1998.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Frank Tang ftang@netscape.com
|
|
*/
|
|
|
|
|
|
var charsetList = new Array();
|
|
var charsetDict = new Array();
|
|
var charset="";
|
|
var titleWasEdited = false;
|
|
var charsetWasChanged = false;
|
|
var insertNewContentType = false;
|
|
var contenttypeElement;
|
|
var initDone = false;
|
|
|
|
|
|
//Cancel() is in EdDialogCommon.js
|
|
|
|
// dialog initialization code
|
|
function Startup()
|
|
{
|
|
if (!InitEditorShell())
|
|
return;
|
|
|
|
doSetOKCancel(onOK, onCancel);
|
|
|
|
// Create dialog object to store controls for easy access
|
|
dialog = new Object;
|
|
dialog.TitleInput = document.getElementById("TitleInput");
|
|
dialog.charsetTree = document.getElementById('CharsetTree');
|
|
dialog.exportToText = document.getElementById('ExportToText');
|
|
//dialog.charsetRoot = document.getElementById('CharsetRoot');
|
|
|
|
contenttypeElement = GetHTTPEquivMetaElement("content-type");
|
|
if(! contenttypeElement )
|
|
{
|
|
contenttypeElement = CreateHTTPEquivMetaElement("content-type");
|
|
if( ! contenttypeElement )
|
|
{
|
|
window.close();
|
|
return;
|
|
}
|
|
insertNewContentType = true;
|
|
}
|
|
|
|
InitDialog();
|
|
|
|
// Use the same text as the messagebox for getting title by regular "Save"
|
|
document.getElementById("EnterTitleLabel").setAttribute("value",GetString("NeedDocTitle"));
|
|
// This is an <HTML> element so it wraps -- append a child textnode
|
|
var helpTextParent = document.getElementById("TitleHelp");
|
|
var helpText = document.createTextNode(GetString("DocTitleHelp"));
|
|
if (helpTextParent)
|
|
helpTextParent.appendChild(helpText);
|
|
|
|
// SET FOCUS TO FIRST CONTROL
|
|
SetTextboxFocus(dialog.TitleInput);
|
|
LoadAvailableCharSets();
|
|
initDone = true;
|
|
|
|
SetWindowLocation();
|
|
}
|
|
|
|
function InitDialog() {
|
|
|
|
dialog.TitleInput.value = editorShell.GetDocumentTitle();
|
|
charset = editorShell.GetDocumentCharacterSet();
|
|
}
|
|
|
|
function onOK()
|
|
{
|
|
|
|
editorShell.BeginBatchChanges();
|
|
|
|
if(charsetWasChanged)
|
|
{
|
|
SetMetaElementContent(contenttypeElement, "text/html; charset=" + charset, insertNewContentType);
|
|
editorShell.SetDocumentCharacterSet(charset);
|
|
}
|
|
|
|
editorShell.EndBatchChanges();
|
|
|
|
if(titleWasEdited) {
|
|
window.opener.newTitle = dialog.TitleInput.value.trimString();
|
|
}
|
|
|
|
window.opener.ok = true;
|
|
window.opener.exportToText = dialog.exportToText.checked;
|
|
SaveWindowLocation();
|
|
return true;
|
|
}
|
|
|
|
function LoadAvailableCharSets()
|
|
{
|
|
try {
|
|
var ccm = Components.classes['@mozilla.org/charset-converter-manager;1'];
|
|
|
|
if (ccm) {
|
|
ccm = ccm.getService();
|
|
ccm = ccm.QueryInterface(Components.interfaces.nsICharsetConverterManager2);
|
|
charsetList = ccm.GetDecoderList();
|
|
charsetList = charsetList.QueryInterface(Components.interfaces.nsISupportsArray);
|
|
charsetList.sort;
|
|
}
|
|
} catch(ex)
|
|
{
|
|
dump("failed to get charset mgr\n");
|
|
}
|
|
if (charsetList)
|
|
{
|
|
var j=0;
|
|
for (i = 0; i < charsetList.Count(); i++)
|
|
{
|
|
atom = charsetList.GetElementAt(i);
|
|
atom = atom.QueryInterface(Components.interfaces.nsIAtom);
|
|
|
|
if (atom) {
|
|
str = atom.GetUnicode();
|
|
try {
|
|
tit = ccm.GetCharsetTitle(atom);
|
|
} catch (ex) {
|
|
tit = str; //don't ignore charset detectors without a title
|
|
}
|
|
|
|
try {
|
|
visible = ccm.GetCharsetData(atom,'.notForBrowser');
|
|
visible = false;
|
|
} catch (ex) {
|
|
visible = true;
|
|
charsetDict[j] = new Array(2);
|
|
charsetDict[j][0] = tit;
|
|
charsetDict[j][1] = str;
|
|
j++;
|
|
//dump('Getting invisible for:' + str + ' failed!\n');
|
|
}
|
|
} //atom
|
|
|
|
} //for
|
|
|
|
ClearTreelist(dialog.charsetTree);
|
|
charsetDict.sort();
|
|
var selItem;
|
|
if (charsetDict)
|
|
{
|
|
for (i = 0; i < charsetDict.length; i++)
|
|
{
|
|
try { //let's beef up our error handling for charsets without label / title
|
|
|
|
//dump("add " + charsetDict[i][0] + charsetDict[i][1] + "\n");
|
|
var item = AppendStringToTreelist(dialog.charsetTree, charsetDict[i][0]);
|
|
if(item) {
|
|
var row= item.firstChild;
|
|
if(row) {
|
|
var cell= row.firstChild;
|
|
if(cell) {
|
|
cell.setAttribute("value", charsetDict[i][1]);
|
|
}
|
|
}
|
|
if(charset == charsetDict[i][1] )
|
|
{
|
|
selItem = item;
|
|
//dump("hit default " + charset + "\n");
|
|
}
|
|
}
|
|
} //try
|
|
catch (ex) {
|
|
dump("*** Failed to add charset: " + tit + ex + "\n");
|
|
} //catch
|
|
|
|
} //for
|
|
} // if
|
|
if(selItem) {
|
|
try {
|
|
dialog.charsetTree.selectItem(selItem);
|
|
dialog.charsetTree.ensureElementIsVisible(selItem);
|
|
} catch (ex) {
|
|
dump("*** Failed to select and ensure : " + ex + "\n");
|
|
}
|
|
}
|
|
} // if
|
|
}
|
|
|
|
function SelectCharset()
|
|
{
|
|
if(initDone) {
|
|
try {
|
|
charset = GetSelectedTreelistAttribute(dialog.charsetTree, "value");
|
|
//dump("charset = " + charset + "\n");
|
|
if(charset != "") {
|
|
charsetWasChanged = true;
|
|
}
|
|
} catch(ex) {
|
|
dump("failed to get selected data" + ex + "\n");
|
|
}
|
|
}
|
|
}
|
|
|
|
function TitleChanged()
|
|
{
|
|
titleWasEdited = true;
|
|
}
|