1999-06-30 23:26:08 +04:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* 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/
|
1999-06-30 23:26:08 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* 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.
|
1999-06-30 23:26:08 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-06-30 23:26:08 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-06-30 23:26:08 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Insert Source HTML dialog */
|
2000-04-17 00:29:08 +04:00
|
|
|
var srcInput;
|
1999-06-30 23:26:08 +04:00
|
|
|
|
|
|
|
// dialog initialization code
|
|
|
|
function Startup()
|
|
|
|
{
|
1999-07-14 19:24:33 +04:00
|
|
|
if (!InitEditorShell())
|
|
|
|
return;
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
doSetOKCancel(onOK, onCancel);
|
Big UI fix! bugs=47898, 26843, 26871, 37152, 38944, 41545, 42246, 42343, 43089, 45463, 45904, 46001, 47644, 47314, 47510, 47515, 47622, 47650, 47653, 47699, 47700, 46179, 47696, 47693. r=sfraser
2000-08-10 06:10:17 +04:00
|
|
|
var okButton = document.getElementById("ok");
|
|
|
|
if (okButton)
|
|
|
|
{
|
|
|
|
okButton.removeAttribute("default");
|
|
|
|
okButton.setAttribute("value",GetString("Insert"));
|
|
|
|
}
|
1999-06-30 23:26:08 +04:00
|
|
|
// Create dialog object to store controls for easy access
|
2000-04-17 00:29:08 +04:00
|
|
|
srcInput = document.getElementById("srcInput");
|
1999-06-30 23:26:08 +04:00
|
|
|
|
2001-01-23 18:31:08 +03:00
|
|
|
var selection = editorShell.GetContentsAs("text/html", 35);
|
2000-02-16 03:12:31 +03:00
|
|
|
selection = (selection.replace(/<body[^>]*>/,"")).replace(/<\/body>/,"");
|
2000-02-16 00:19:30 +03:00
|
|
|
if (selection != "")
|
2000-04-17 00:29:08 +04:00
|
|
|
srcInput.value = selection;
|
1999-06-30 23:26:08 +04:00
|
|
|
|
2000-02-16 00:19:30 +03:00
|
|
|
// Set initial focus
|
2001-01-23 18:31:08 +03:00
|
|
|
srcInput.focus();
|
2001-03-22 03:15:47 +03:00
|
|
|
// Note: We can't set the caret location in a multiline textbox
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
SetWindowLocation();
|
1999-06-30 23:26:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function onOK()
|
|
|
|
{
|
2000-04-17 00:29:08 +04:00
|
|
|
if (srcInput.value != "")
|
|
|
|
editorShell.InsertSource(srcInput.value);
|
1999-08-25 18:36:13 +04:00
|
|
|
else {
|
2001-01-04 04:08:06 +03:00
|
|
|
dump("Null value -- not inserting in HTML Source dialog\n");
|
1999-08-25 18:36:13 +04:00
|
|
|
return false;
|
|
|
|
}
|
Fixed lots of nsbeta3+ bugs: 45756, 47654, 41810,47503,48990, 48995,40204, 42740, 46953, 47646, 47696, 48693, 45899. r=sfraser,jfrancis
2000-08-23 04:29:24 +04:00
|
|
|
SaveWindowLocation();
|
1999-08-25 18:36:13 +04:00
|
|
|
|
|
|
|
return true;
|
1999-06-30 23:26:08 +04:00
|
|
|
}
|
|
|
|
|