From cbcd345f1833cedfc319757dec92cea8b2b57484 Mon Sep 17 00:00:00 2001 From: "cmanske%netscape.com" Date: Tue, 9 May 2000 21:22:01 +0000 Subject: [PATCH] New dialog - not used yet git-svn-id: svn://10.0.0.236/trunk@68886 18797224-902f-48f8-a5cc-f745e15eee43 --- .../editor/ui/dialogs/content/EditConflict.js | 53 +++++++++++++++ .../ui/dialogs/content/EditConflict.xul | 64 +++++++++++++++++++ .../ui/dialogs/locale/en-US/EditConflict.dtd | 28 ++++++++ 3 files changed, 145 insertions(+) create mode 100644 mozilla/editor/ui/dialogs/content/EditConflict.js create mode 100644 mozilla/editor/ui/dialogs/content/EditConflict.xul create mode 100644 mozilla/editor/ui/dialogs/locale/en-US/EditConflict.dtd diff --git a/mozilla/editor/ui/dialogs/content/EditConflict.js b/mozilla/editor/ui/dialogs/content/EditConflict.js new file mode 100644 index 00000000000..e019c3c7ec4 --- /dev/null +++ b/mozilla/editor/ui/dialogs/content/EditConflict.js @@ -0,0 +1,53 @@ +/* + * 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): + */ + +// dialog initialization code +function Startup() +{ + if (!InitEditorShell()) + return; + + //doSetOkCancel(null,PreventCancel); +} + +function KeepCurrentPage() +{ +dump("KeepCurrentPage\n"); + // Simple close dialog and don't change current page + //TODO: Should we force saving of the current page? + window.close(); +} + +function UseOtherPage() +{ +dump("UseOtherPage\n"); + // Reload the URL -- that will get other editor's contents + //editorShell.LoadUrl(editorShell.editorDocument.location); + setTimeout("editorShell.LoadUrl(editorShell.editorDocument.location)", 10); + window.close(); +} + +function PreventCancel() +{ + // Don't let Esc key close the dialog! + return false; +} diff --git a/mozilla/editor/ui/dialogs/content/EditConflict.xul b/mozilla/editor/ui/dialogs/content/EditConflict.xul new file mode 100644 index 00000000000..f7b35690977 --- /dev/null +++ b/mozilla/editor/ui/dialogs/content/EditConflict.xul @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + +