42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!-- retrieve generic commands -->
|
|
<!-- <?xul-overlay href="chrome://messenger/content/mailOverlay.xul"?> -->
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://editor/locale/editorNavigatorOverlay.dtd" >
|
|
|
|
<overlay id="editorNavigatorOverlay"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script type="application/x-javascript" src="editorApplicationOverlay.js"/>
|
|
|
|
<!-- navigator specific commands -->
|
|
<commandset id="tasksCommands">
|
|
<!-- XXX insert commands here -->
|
|
</commandset>
|
|
|
|
<!-- navigator specific UI items -->
|
|
<menupopup id="menu_NewPopup">
|
|
<!-- XXX insert File->New Menu add-ins here -->
|
|
</menupopup>
|
|
|
|
<menupopup id="menu_FilePopup">
|
|
<!-- XXX insert File Menu add-ins here -->
|
|
</menupopup>
|
|
|
|
<popup id="contentAreaContextMenu">
|
|
<menuitem id="context-editpage"
|
|
label="&editPageCmd.label;"
|
|
accesskey="&editPageCmd.accesskey;"
|
|
oncommand="editDocument(gContextMenu.target.ownerDocument);"
|
|
insertafter="context-sep-save"/>
|
|
<menuitem id="context-editlink"
|
|
label="&editLinkCmd.label;"
|
|
accesskey="&editLinkCmd.accesskey;"
|
|
oncommand="editLink(gContextMenu.linkURL());"
|
|
insertafter="context-sep-save"/>
|
|
</popup>
|
|
|
|
</overlay>
|
|
|