Changed editor chrome file references. Eliminated chrome/editor/editordlg

This commit is contained in:
cmanske%netscape.com 1999-07-21 19:56:21 +00:00
Родитель bb14e510da
Коммит 747c061ff1
23 изменённых файлов: 212 добавлений и 209 удалений

Просмотреть файл

@ -368,19 +368,25 @@ function EditorInsertText(textToInsert)
function EditorInsertHTML()
{
window.openDialog("chrome://editordlgs/content/EdInsSrc.xul",
"InsSrcDlg", "chrome", "");
window.openDialog("chrome://editor/content/EdInsSrc.xul","InsSrcDlg", "chrome", "");
}
function EditorInsertLink()
{
window.openDialog("chrome://editordlgs/content/EdLinkProps.xul", "LinkDlg", "chrome", "");
window.openDialog("chrome://editor/content/EdLinkProps.xul","LinkDlg", "chrome", "");
contentWindow.focus();
}
function EditorInsertImage()
{
window.openDialog("chrome://editordlgs/content/EdImageProps.xul", "dlg", "chrome", "");
window.openDialog("chrome://editor/content/EdImageProps.xul","ImageDlg", "chrome", "");
contentWindow.focus();
}
function EditorInsertTable()
{
dump("Insert Table Dialog starting.\n");
window.openDialog("chrome://editor/content/EdInsertTable.xul", "TableDlg", "chrome", "");
contentWindow.focus();
}
@ -395,7 +401,7 @@ function EditorInsertHLine()
if (hLine) {
// We only open the dialog for an existing HRule
window.openDialog("chrome://editordlgs/content/EdHLineProps.xul", "dlg", "chrome", "");
window.openDialog("chrome://editor/content/EdHLineProps.xul", "HLineDlg", "chrome", "");
} else {
hLine = editorShell.CreateElementWithDefaults(tagName);
if (hLine) {
@ -407,7 +413,7 @@ function EditorInsertHLine()
function EditorInsertNamedAnchor()
{
window.openDialog("chrome://editordlgs/content/EdNamedAnchorProps.xul", "dlg", "chrome", "");
window.openDialog("chrome://editor/content/EdNamedAnchorProps.xul", "NamedAnchorDlg", "chrome", "");
contentWindow.focus();
}
@ -425,20 +431,6 @@ function EditorInsertList(listType)
contentWindow.focus();
}
function EditorInsertImage()
{
dump("Image Properties Dialog starting.\n");
window.openDialog("chrome://editordlgs/content/EdImageProps.xul", "dlg", "chrome", "");
contentWindow.focus();
}
function EditorInsertTable()
{
dump("Insert Table Dialog starting.\n");
window.openDialog("chrome://editordlgs/content/EdInsertTable.xul", "dlg", "chrome", "");
contentWindow.focus();
}
function EditorAlign(align)
{
dump("aligning\n");
@ -490,7 +482,7 @@ function CheckSpelling()
dump("We found a MISSPELLED WORD\n");
// Set spellChecker variable on window
window.spellChecker = spellChecker;
window.openDialog("chrome://editordlgs/content/EdSpellCheck.xul", "SpellDlg", "chrome", "", firstMisspelledWord);
window.openDialog("chrome://editor/content/EdSpellCheck.xul", "SpellDlg", "chrome", "", firstMisspelledWord);
}
}
contentWindow.focus();

Просмотреть файл

@ -38,4 +38,4 @@ EXPORT_RESOURCE_CONTENT = \
$(NULL)
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/editor/composer/content/default
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/editor/content/default

Просмотреть файл

@ -20,21 +20,21 @@ DEPTH=..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) EditorAppShell.xul $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) TextEditorAppShell.xul $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) EditorCommands.js $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) EditorInitPage.html $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) EditorInitPagePlain.html $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) editor.properties $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) EditorStyles1.css $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) EditorContent.css $(DIST)\bin\chrome\editor\composer\content\default
$(MAKE_INSTALL) EditorAppShell.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) TextEditorAppShell.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EditorCommands.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EditorInitPage.html $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EditorInitPagePlain.html $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) editor.properties $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EditorStyles1.css $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EditorContent.css $(DIST)\bin\chrome\editor\content\default
clobber::
rm -f $(DIST)\bin\chrome\editor\composer\content\default\EditorAppShell.xul
rm -f $(DIST)\bin\chrome\editor\composer\content\default\TextEditorAppShell.xul
rm -f $(DIST)\bin\chrome\editor\composer\content\default\EditorCommands.js
rm -f $(DIST)\bin\chrome\editor\composer\content\default\EditorInitPage.html
rm -f $(DIST)\bin\chrome\editor\composer\content\default\EditorInitPagePlain.html
rm -f $(DIST)\bin\chrome\editor\composer\content\default\editor.properties
rm -f $(DIST)\bin\chrome\editor\composer\content\default\EditorStyles1.css
rm -f $(DIST)\bin\chrome\editor\composer\content\default\EditorContent.css
rm -f $(DIST)\bin\chrome\editor\content\default\EditorAppShell.xul
rm -f $(DIST)\bin\chrome\editor\content\default\TextEditorAppShell.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EditorCommands.js
rm -f $(DIST)\bin\chrome\editor\content\default\EditorInitPage.html
rm -f $(DIST)\bin\chrome\editor\content\default\EditorInitPagePlain.html
rm -f $(DIST)\bin\chrome\editor\content\default\editor.properties
rm -f $(DIST)\bin\chrome\editor\content\default\EditorStyles1.css
rm -f $(DIST)\bin\chrome\editor\content\default\EditorContent.css

Просмотреть файл

@ -66,5 +66,5 @@ EXPORT_RESOURCE_TOOLBAR = \
$(NULL)
install::
$(INSTALL) $(EXPORT_RESOURCE_SKIN) $(DIST)/bin/chrome/editor/composer/skin/default
$(INSTALL) $(EXPORT_RESOURCE_TOOLBAR) $(DIST)/bin/chrome/editor/composer/skin/default/images
$(INSTALL) $(EXPORT_RESOURCE_SKIN) $(DIST)/bin/chrome/editor/skin/default
$(INSTALL) $(EXPORT_RESOURCE_TOOLBAR) $(DIST)/bin/chrome/editor/skin/default/images

Просмотреть файл

@ -20,77 +20,77 @@ DEPTH=..\..\..\..
include <$(DEPTH)\config\rules.mak>
install:: $(DLL)
$(MAKE_INSTALL) Editor.css $(DIST)\bin\chrome\editor\composer\skin\default
$(MAKE_INSTALL) images\ED_Bold.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Bullets.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Left.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Center.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Right.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Justify.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Copy.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Cut.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Outdent.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Find.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_HLine.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Image.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Indent.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Italic.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Link.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Numbers.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Paste.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Redo.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Spell.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Table.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Target.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Underline.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Undo.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_TextColor.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_BackColor.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Align.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_ObjectPopup.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_NewFile.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_OpenFile.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_SaveFile.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Publish.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Preview.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Print.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) images\ED_Find.gif $(DIST)\bin\chrome\editor\composer\skin\default\images
$(MAKE_INSTALL) Editor.css $(DIST)\bin\chrome\editor\skin\default
$(MAKE_INSTALL) images\ED_Bold.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Bullets.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Left.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Center.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Right.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Justify.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Copy.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Cut.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Outdent.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Find.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_HLine.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Image.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Indent.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Italic.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Link.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Numbers.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Paste.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Redo.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Spell.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Table.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Target.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Underline.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Undo.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_TextColor.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_BackColor.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Align.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_ObjectPopup.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_NewFile.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_OpenFile.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_SaveFile.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Publish.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Preview.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Print.gif $(DIST)\bin\chrome\editor\skin\default\images
$(MAKE_INSTALL) images\ED_Find.gif $(DIST)\bin\chrome\editor\skin\default\images
clobber::
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\Editor.css
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Bold.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Bullets.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Left.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Center.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Right.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Justify.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Copy.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Cut.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Outdent.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Find.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_HLine.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Image.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Indent.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Italic.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Link.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Numbers.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Paste.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Redo.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Spell.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Table.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Target.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Underline.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Undo.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_TextColor.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_BackColor.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Align.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_ObjectPopup.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_NewFile.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_OpenFile.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_SaveFile.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Publish.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Preview.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Print.gif
rm -f $(DIST)\bin\chrome\editor\composer\skin\default\images\ED_Find.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\Editor.css
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Bold.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Bullets.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Left.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Center.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Right.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Justify.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Copy.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Cut.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Outdent.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Find.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_HLine.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Image.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Indent.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Italic.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Link.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Numbers.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Paste.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Redo.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Spell.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Table.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Target.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Underline.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Undo.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_TextColor.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_BackColor.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Align.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_ObjectPopup.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_NewFile.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_OpenFile.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_SaveFile.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Publish.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Preview.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Print.gif
rm -f $(DIST)\bin\chrome\editor\skin\default\images\ED_Find.gif

Просмотреть файл

@ -93,7 +93,7 @@ function ValidateNumberString(value, minValue, maxValue)
}
message = "The number you entered ("+number+") is outside of allowed range.\nPlease enter a number between "+minValue+" and "+maxValue;
ShowInputErrorMessage(message);
window.openDialog("chrome://editordlgs/content/EdMessage.xul", "MsgDlg", "chrome", "", message, "Input Error", "OK");
window.openDialog("chrome://editor/content/EdMessage.xul", "MsgDlg", "chrome", "", message, "Input Error", "OK");
// Return an empty string to indicate error
return "";
@ -102,7 +102,7 @@ function ValidateNumberString(value, minValue, maxValue)
function ShowInputErrorMessage(message)
{
// This is NOT MODAL as of 7/16/99!
window.openDialog("chrome://editordlgs/content/EdMessage.xul", "MsgDlg", "chrome", "", message, "Input Error", "OK");
window.openDialog("chrome://editor/content/EdMessage.xul", "MsgDlg", "chrome", "", message, "Input Error", "OK");
}
function TrimStringLeft(string)

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window>
<!-- dialog containing a control requiring initial setup -->
<!-- WE SHOULD NOT USE ABSOLUTE WITH AND HEIGHT - USE BOXES INSTEAD? -->
@ -11,9 +11,9 @@
align="vertical">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/Ed?????.js">
<script language="JavaScript" src="chrome://editor/content/Ed?????.js">
</script>
<xul:broadcaster id="args" value=""/>

Просмотреть файл

@ -1,26 +1,37 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window>
<!-- dialog containing a control requiring initial setup -->
<!-- WE SHOULD NOT USE ABSOLUTE WITH AND HEIGHT - USE BOXES INSTEAD? -->
<xul:window class="dialog" title="Personal Dictionary"
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window
[
<!-- These entity declarations will go into a separate, locale file at some point -->
<!-- Window title -->
<!ENTITY windowTitle.label "Personal Dictionary">
<!ENTITY wordEditField.label "New word:">
<!ENTITY AddButton.label "Add">
<!ENTITY DictionaryList.label "Words in dictionary:">
<!ENTITY ReplaceButton.label "Replace">
<!ENTITY RemoveButton.label "Remove">
<!ENTITY CloseButton.label "Close">
]>
<xul:window class="dialog" title="&windowTitle.label;"
xmlns:xul ="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns="http://www.w3.org/TR/REC-html40"
onload = "Startup()"
align="vertical">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdDictionary.js">
<script language="JavaScript" src="chrome://editor/content/EdDictionary.js">
</script>
<xul:broadcaster id="args" value=""/>
<table>
<tr>
<td colspan="2">
New word:<br/>
&wordEditField.label;<br/>
</td>
</tr>
<tr>
@ -28,12 +39,12 @@
<input type="text" class="SpellCheckWord" id="WordInput" size="10"/>
</td>
<td>
<xul:titledbutton class="SizeToCell" id="AddWord" onclick="AddWord()" value="Add"/>
<xul:titledbutton class="SizeToCell" id="AddWord" onclick="AddWord()" value="&AddButton.label;"/>
</td>
</tr>
<tr>
<td colspan="2">
Words in dictionary:
&DictionaryList.label;
</td>
</tr>
<tr>
@ -42,12 +53,12 @@
</select>
</td>
<td>
<xul:titledbutton class="SizeToCell" id="ReplaceWord" onclick="ReplaceWord()" value="Replace"/>
<xul:titledbutton class="SizeToCell" id="ReplaceWord" onclick="ReplaceWord()" value="&ReplaceButton.label;"/>
<br/>
<xul:titledbutton class="SizeToCell" id="RemoveWord" onclick="RemoveWord()" value="Remove"/>
<xul:titledbutton class="SizeToCell" id="RemoveWord" onclick="RemoveWord()" value="&RemoveButton.label;"/>
<br/>
<!-- This simply closes the window -->
<xul:titledbutton class="CloseButton" id="Close" onclick="onCancel()" value="Close"/>
<xul:titledbutton class="CloseButton" id="Close" onclick="onCancel()" value="&CloseButton.label;"/>
</td>
</tr>
</table>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window
[
@ -23,7 +23,7 @@
<!ENTITY saveSettings.label "Save Settings">
<!ENTITY OKButton.label "OK">
<!ENTITY CancelButton.label "Cancel">
<!ENTITY advancedEditingButton.label "More Attributes...">
<!ENTITY MoreAttributesButton.label "More Attributes...">
]>
@ -36,9 +36,9 @@
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdHLineProps.js">
<script language="JavaScript" src="chrome://editor/content/EdHLineProps.js">
</script>
<table width="100%">
@ -92,7 +92,7 @@
</table>
<hr width="100%"/>
<xul:box>
<xul:titledbutton class="spaced" id="Advanced" onclick="onAdvanced()" value="&advancedEditingButton.label;"/>
<xul:titledbutton class="spaced" id="MoreAttributes" onclick="onMoreAttributes()" value="&MoreAttributesButton.label;"/>
<xul:spring flex="100%"/>
<xul:titledbutton class="spaced" id="OK" onclick="onOK()" value="&OKButton.label;"/>
<xul:titledbutton class="spaced" id="Cancel" onclick="onCancel()" value="&CancelButton.label;"/>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window
[
@ -50,9 +50,9 @@
align="vertical">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdImageProps.js">
<script language="JavaScript" src="chrome://editor/content/EdImageProps.js">
</script>
<xul:broadcaster id="args" value=""/>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window
[
@ -21,9 +21,9 @@
align="vertical" flex="100%">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdInsSrc.js">
<script language="JavaScript" src="chrome://editor/content/EdInsSrc.js">
</script>
<xul:broadcaster id="args" value=""/>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window
[
@ -23,7 +23,7 @@
<!ENTITY OKButton.label "OK">
<!ENTITY CancelButton.label "Cancel">
<!ENTITY advancedEditingButton.label "More Attributes...">
<!ENTITY MoreAttributesButton.label "More Attributes...">
]>
@ -34,9 +34,9 @@
align="vertical">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdInsertTable.js">
<script language="JavaScript" src="chrome://editor/content/EdInsertTable.js">
</script>
<xul:broadcaster id="args" value=""/>
@ -89,7 +89,7 @@
</table>
<hr width="100%"/>
<xul:box>
<xul:titledbutton class="spaced" id="Advanced" onclick="onAdvanced()" value="&advancedEditingButton.label;"/>
<xul:titledbutton class="spaced" id="MoreAttributes" onclick="onMoreAttributes()" value="&MoreAttributesButton.label;"/>
<xul:spring flex="100%"/>
<xul:titledbutton class="spaced" id="OK" onclick="onOK()" value="&OKButton.label;"/>
<xul:titledbutton class="spaced" id="Cancel" onclick="onCancel()" value="&CancelButton.label;"/>
@ -97,8 +97,8 @@
<xul:popup id="PixelOrPercentMenu">
<xul:menu>
<xul:menuitem name="pixels" onclick="SetPixelOrPercentByID('pixelOrPercentButton', '')"/>
<xul:menuitem name="percent" onclick="SetPixelOrPercentByID('pixelOrPercentButton', '%')"/>
<xul:menuitem name="&pixelsPopup.value;" onclick="SetPixelOrPercentByID('pixelOrPercentButton', '')"/>
<xul:menuitem name="&percentPopup.value;" onclick="SetPixelOrPercentByID('pixelOrPercentButton', '%')"/>
</xul:menu>
</xul:popup>

Просмотреть файл

@ -1,8 +1,8 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!-- Eventually we'll move to this...
<!DOCTYPE window SYSTEM "chrome://editordlgs/en-US/EditorLinkProperties.dtd">
<!DOCTYPE window SYSTEM "chrome://editor/en-US/EditorLinkProperties.dtd">
-->
<!DOCTYPE window
@ -15,11 +15,11 @@
<!ENTITY OKButton.label "OK">
<!ENTITY CancelButton.label "Cancel">
<!ENTITY MoreAttributesButton.label "More Attributes...">
<!-- This button is for the progressive disclosure of additional editing functionality -->
<!ENTITY AdditionalEditingButton.label "Advanced">
<!-- These strings are for use specifically in the editor's link dialog. -->
<!-- Window title -->
<!ENTITY windowTitle.label "Link Properties">
@ -43,9 +43,9 @@
align="vertical">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdLinkProps.js">
<script language="JavaScript" src="chrome://editor/content/EdLinkProps.js">
</script>
<xul:broadcaster id="args" value=""/>
@ -71,7 +71,7 @@
</fieldset>
<xul:box>
<xul:titledbutton class="spaced" id="Advanced" onclick="onAdvanced()" value="More Attributes..."/>
<xul:titledbutton class="spaced" id="MoreAttributes" onclick="onMoreAttributes()" value="&MoreAttributesButton.label;"/>
<xul:spring flex="100%"/>
<xul:titledbutton class="spaced" id="OK" onclick="onOK()" value="&OKButton.label;"/>
<xul:titledbutton class="spaced" id="Cancel" onclick="onCancel()" value="&CancelButton.label;"/>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window>
<!-- dialog containing a control requiring initial setup -->
<window title="Netscape" class="dialog"
@ -10,9 +10,9 @@
align="vertical">
<!-- Methods common to all editor dialogs -->
<html:script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<html:script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</html:script>
<html:script language="JavaScript" src="chrome://editordlgs/content/EdMessage.js">
<html:script language="JavaScript" src="chrome://editor/content/EdMessage.js">
</html:script>
<broadcaster id="args" value=""/>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window
[
@ -20,9 +20,9 @@
align="vertical">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdNamedAnchorProps.js">
<script language="JavaScript" src="chrome://editor/content/EdNamedAnchorProps.js">
</script>
<xul:broadcaster id="args" value=""/>

Просмотреть файл

@ -133,7 +133,7 @@ function AddToDictionary()
function EditDictionary()
{
window.openDialog("chrome://editordlgs/content/EdDictionary.xul", "Dictionary", "chrome", "", misspelledWord);
window.openDialog("chrome://editor/content/EdDictionary.xul", "Dictionary", "chrome", "", misspelledWord);
}
function SelectLanguage()

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
<?xml-stylesheet href="chrome://editordlgs/skin/EditorDialog.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<!DOCTYPE window
[
@ -36,9 +36,9 @@
onload = "Startup()"
align="vertical">
<script language="JavaScript" src="chrome://editordlgs/content/EdDialogCommon.js">
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js">
</script>
<script language="JavaScript" src="chrome://editordlgs/content/EdSpellCheck.js">
<script language="JavaScript" src="chrome://editor/content/EdSpellCheck.js">
</script>
<!-- The argument to ShowWindowWithArgs (the editor appCore name) is placed here -->
<xul:broadcaster id="args" value=""/>

Просмотреть файл

@ -49,4 +49,4 @@ EXPORT_RESOURCE_CONTENT = \
$(NULL)
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/editor/dialogs/content/default
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/editor/content/default

Просмотреть файл

@ -20,43 +20,43 @@ DEPTH=..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) EdDialogCommon.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdLinkProps.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdLinkProps.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdImageProps.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdImageProps.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdHLineProps.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdHLineProps.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdSpellCheck.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdSpellCheck.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdDictionary.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdDictionary.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdNamedAnchorProps.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdNamedAnchorProps.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdInsertTable.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdInsertTable.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdInsSrc.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdInsSrc.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdMessage.xul $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdMessage.js $(DIST)\bin\chrome\editor\dialogs\content\default
$(MAKE_INSTALL) EdDialogCommon.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdLinkProps.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdLinkProps.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdImageProps.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdImageProps.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdHLineProps.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdHLineProps.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdSpellCheck.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdSpellCheck.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdDictionary.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdDictionary.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdNamedAnchorProps.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdNamedAnchorProps.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdInsertTable.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdInsertTable.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdInsSrc.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdInsSrc.js $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdMessage.xul $(DIST)\bin\chrome\editor\content\default
$(MAKE_INSTALL) EdMessage.js $(DIST)\bin\chrome\editor\content\default
clobber::
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdDialogCommon.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdLinkProps.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdLinkProps.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdImageProps.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdImageProps.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdHLineProps.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdHLineProps.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdSpellCheck.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdSpellCheck.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdDictionary.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdDictionary.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdNamedAnchorProps.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdNamedAnchorProps.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdInsertTable.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdInsertTable.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdInsSrc.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdInsSrc.js
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdMessage.xul
rm -f $(DIST)\bin\chrome\editor\dialogs\content\default\EdMessage.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdDialogCommon.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdLinkProps.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdLinkProps.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdImageProps.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdImageProps.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdHLineProps.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdHLineProps.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdSpellCheck.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdSpellCheck.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdDictionary.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdDictionary.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdNamedAnchorProps.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdNamedAnchorProps.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdInsertTable.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdInsertTable.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdInsSrc.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdInsSrc.js
rm -f $(DIST)\bin\chrome\editor\content\default\EdMessage.xul
rm -f $(DIST)\bin\chrome\editor\content\default\EdMessage.js

Просмотреть файл

@ -32,4 +32,4 @@ EXPORT_RESOURCE_CONTENT = \
$(NULL)
install::
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/editor/dialogs/locale/en-US/
$(INSTALL) $(EXPORT_RESOURCE_CONTENT) $(DIST)/bin/chrome/editor/locale/en-US/

Просмотреть файл

@ -20,9 +20,9 @@ DEPTH=..\..\..\..\..
include <$(DEPTH)\config\rules.mak>
install::
$(MAKE_INSTALL) EditorImageProperties.dtd $(DIST)\bin\chrome\editor\dialogs\locale\en-US
$(MAKE_INSTALL) EditorLinkProperties.dtd $(DIST)\bin\chrome\editor\dialogs\locale\en-US
$(MAKE_INSTALL) EditorImageProperties.dtd $(DIST)\bin\chrome\editor\locale\en-US
$(MAKE_INSTALL) EditorLinkProperties.dtd $(DIST)\bin\chrome\editor\locale\en-US
clobber::
rm -f $(DIST)\bin\chrome\editor\dialogs\locale\en-US\EditorImageProperties.dtd
rm -f $(DIST)\bin\chrome\editor\dialogs\locale\en-US\EditorLinkProperties.dtd
rm -f $(DIST)\bin\chrome\editor\locale\en-US\EditorImageProperties.dtd
rm -f $(DIST)\bin\chrome\editor\locale\en-US\EditorLinkProperties.dtd

Просмотреть файл

@ -31,4 +31,4 @@ EXPORT_RESOURCE_SKIN = \
$(NULL)
install::
$(INSTALL) $(EXPORT_RESOURCE_SKIN) $(DIST)/bin/chrome/editor/dialogs/skin/default
$(INSTALL) $(EXPORT_RESOURCE_SKIN) $(DIST)/bin/chrome/editor/skin/default

Просмотреть файл

@ -21,7 +21,7 @@ IGNORE_MANIFEST=1
include <$(DEPTH)\config\rules.mak>
install:: $(DLL)
$(MAKE_INSTALL) EditorDialog.css $(DIST)\bin\chrome\editor\dialogs\skin\default
$(MAKE_INSTALL) EditorDialog.css $(DIST)\bin\chrome\editor\skin\default
clobber::
rm -f $(DIST)\bin\chrome\editor\dialogs\skin\default\EditorDialog.css
rm -f $(DIST)\bin\chrome\editor\skin\default\EditorDialog.css