Initial commit
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.ui.cheatsheets"
|
||||
name="%PLUGIN_NAME"
|
||||
version="3.0.1"
|
||||
provider-name="%PROVIDER_NAME"
|
||||
class="org.eclipse.ui.internal.cheatsheets.CheatSheetPlugin">
|
||||
|
||||
<runtime>
|
||||
<library name="cheatsheets.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.ui.forms"/>
|
||||
<import plugin="org.eclipse.help"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
</requires>
|
||||
|
||||
|
||||
<!-- ========== Extension Points ================= -->
|
||||
|
||||
<!-- =============================================================================== -->
|
||||
<!-- Extension point: org.eclipse.ui.cheatsheets.cheatSheetContent -->
|
||||
<!-- Extension-point for contributing a cheat sheet. -->
|
||||
<!-- -->
|
||||
<!-- =============================================================================== -->
|
||||
<extension-point
|
||||
id="cheatSheetContent"
|
||||
name="%CHEAT_SHEET_CONTENT"
|
||||
schema="schema/cheatSheetContent.exsd"/>
|
||||
|
||||
<!-- =============================================================================== -->
|
||||
<!-- Extension point: org.eclipse.ui.cheatsheets.cheatSheetItemExtension -->
|
||||
<!-- Extension-point for contributing controls to a cheat sheet item. -->
|
||||
<!-- -->
|
||||
<!-- =============================================================================== -->
|
||||
<extension-point
|
||||
id="cheatSheetItemExtension"
|
||||
name="%CHEAT_SHEET_ITEM_EXTENSION"
|
||||
schema="schema/cheatSheetItemExtension.exsd"/>
|
||||
|
||||
<!-- ========== Extensions ================= -->
|
||||
|
||||
<extension
|
||||
point="org.eclipse.ui.views">
|
||||
<category
|
||||
name="%CHEAT_SHEETS"
|
||||
id="org.eclipse.ui.cheatsheets.cheatsheetCategory">
|
||||
</category>
|
||||
<view
|
||||
name="%CHEAT_SHEETS"
|
||||
icon="icons/full/cview16/cheatsheet_view.gif"
|
||||
category="org.eclipse.ui.cheatsheets.cheatsheetCategory"
|
||||
fastViewWidthRatio="0.5"
|
||||
class="org.eclipse.ui.internal.cheatsheets.views.CheatSheetView"
|
||||
id="org.eclipse.ui.cheatsheets.views.CheatSheetView">
|
||||
</view>
|
||||
<stickyView
|
||||
id="org.eclipse.ui.cheatsheets.views.CheatSheetView"/>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.ui.actionSets">
|
||||
<actionSet
|
||||
label="%CHEAT_SHEETS"
|
||||
visible="true"
|
||||
id="org.eclipse.ui.cheatsheets.actionSet">
|
||||
<action
|
||||
label="%CHEAT_SHEETS_MENU"
|
||||
class="org.eclipse.ui.internal.cheatsheets.actions.CheatSheetHelpMenuAction"
|
||||
menubarPath="help/group.tutorials"
|
||||
id="org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction">
|
||||
</action>
|
||||
</actionSet>
|
||||
</extension>
|
||||
</plugin>
|
||||
Reference in New Issue
Block a user