2001-09-26 02:53:13 +04:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:21:17 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-06-30 23:26:08 +04:00
|
|
|
*
|
2004-04-18 18:21:17 +04:00
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
1999-06-30 23:26:08 +04:00
|
|
|
*
|
2001-09-26 02:53:13 +04: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.
|
|
|
|
*
|
2004-04-18 18:21:17 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-26 02:53:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-03-22 03:59:29 +03:00
|
|
|
* Contributor(s):
|
2004-04-18 18:21:17 +04:00
|
|
|
* Akkana Peck (akkana@netscape.com)
|
|
|
|
* Charles Manske (cmanske@netscape.com)
|
2001-09-26 02:53:13 +04:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:21:17 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-26 02:53:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 18:21:17 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-26 02:53:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 18:21:17 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-26 02:53:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-06-30 23:26:08 +04:00
|
|
|
|
|
|
|
/* Insert Source HTML dialog */
|
|
|
|
|
|
|
|
function Startup()
|
|
|
|
{
|
2002-10-03 08:05:34 +04:00
|
|
|
var editor = GetCurrentEditor();
|
|
|
|
if (!editor)
|
|
|
|
{
|
|
|
|
window.close();
|
1999-07-14 19:24:33 +04:00
|
|
|
return;
|
2002-10-03 08:05:34 +04:00
|
|
|
}
|
2001-12-07 07:38:52 +03:00
|
|
|
|
|
|
|
var okButton = document.documentElement.getButton("accept");
|
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
|
|
|
if (okButton)
|
|
|
|
{
|
|
|
|
okButton.removeAttribute("default");
|
2001-03-22 03:59:29 +03:00
|
|
|
okButton.setAttribute("label",GetString("Insert"));
|
2002-04-20 20:07:09 +04:00
|
|
|
okButton.setAttribute("accesskey",GetString("InsertAccessKey"));
|
2001-03-22 03:59:29 +03:00
|
|
|
}
|
1999-06-30 23:26:08 +04:00
|
|
|
// Create dialog object to store controls for easy access
|
2002-10-03 08:05:34 +04:00
|
|
|
gDialog.srcInput = document.getElementById("srcInput");
|
1999-06-30 23:26:08 +04:00
|
|
|
|
2002-10-03 08:05:34 +04:00
|
|
|
var selection;
|
|
|
|
try {
|
|
|
|
selection = editor.outputToString("text/html", 35); // OutputWrap+OutputFormatted+OutputSelectionOnly
|
|
|
|
} catch (e) {}
|
|
|
|
if (selection)
|
|
|
|
{
|
|
|
|
selection = (selection.replace(/<body[^>]*>/,"")).replace(/<\/body>/,"");
|
|
|
|
if (selection)
|
|
|
|
gDialog.srcInput.value = selection;
|
|
|
|
}
|
2000-02-16 00:19:30 +03:00
|
|
|
// Set initial focus
|
2002-10-03 08:05:34 +04:00
|
|
|
gDialog.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
|
|
|
}
|
|
|
|
|
2001-12-07 07:38:52 +03:00
|
|
|
function onAccept()
|
1999-06-30 23:26:08 +04:00
|
|
|
{
|
2002-10-03 08:05:34 +04:00
|
|
|
if (gDialog.srcInput.value)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
GetCurrentEditor().insertHTML(gDialog.srcInput.value);
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
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();
|
2001-03-22 03:59:29 +03:00
|
|
|
|
1999-08-25 18:36:13 +04:00
|
|
|
return true;
|
1999-06-30 23:26:08 +04:00
|
|
|
}
|
|
|
|
|