Skip to main content
summaryrefslogtreecommitdiffstats
blob: 180db62101cb153816bbb4d36482999400e5663a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<?eclipse version="3.0"?>
<plugin>
	<extension
         id="org.eclipse.mylar.helpDocs"
         name="Mylar Help"
         point="org.eclipse.help.toc">
      <toc
            file="doc/toc.xml"
            primary="true">
      </toc>
   </extension>
   
    <extension point="org.eclipse.ui.actionSets">
	<actionSet
            id="org.eclipse.mylar.doc.actionSet"
            label="Mylar Documentation"
            visible="true"> 
  		<action
          class="org.eclipse.mylar.doc.internal.actions.ShowMylarLegendAction"
          definitionId="org.eclipse.mylar.doc.legend.show"
          icon="icons/etool16/icons-legend.gif"
          id="org.eclipse.mylar.doc.legend.show.action"
          label="Mylar UI Legend"
          menubarPath="help/helpStart"
          style="push"
          tooltip="Mylar UI Legend"> 
      	</action> 
    </actionSet>
    </extension>
  
   <extension point="org.eclipse.ui.commands">
   <category
         id="org.eclipse.mylar.doc.commands"
         name="Mylar Documentation">
   </category>
	  <command
         category="org.eclipse.mylar.doc.commands"
         categoryId="org.eclipse.mylar.doc.commands"
         description="Show Mylar UI Legend"
         id="org.eclipse.mylar.doc.legend.show"
         name="Show Mylar UI Legend">
      </command>
   </extension>
  
   <extension point="org.eclipse.ui.bindings">   
      <key
            sequence="M1+M2+M3+?"
            contextId="org.eclipse.ui.globalScope"
            commandId="org.eclipse.mylar.doc.legend.show"
            schemeId ="org.eclipse.ui.defaultAcceleratorConfiguration">
      </key>
   </extension>
   <extension
         point="org.eclipse.ui.intro.configExtension">
      <configExtension
            configId="org.eclipse.ui.intro.universalConfig"
            content="intro/overviewExtensionContent.xml">
      </configExtension>
      <configExtension
            configId="org.eclipse.ui.intro.universalConfig"
            content="intro/whatsnewExtensionContent.xml">
      </configExtension>
      <configExtension
            configId="org.eclipse.ui.intro.universalConfig"
            content="intro/tutorialsExtensionContent.xml">
      </configExtension>
   </extension>
   <extension
         point="org.eclipse.ui.cheatsheets.cheatSheetContent">
      <category
            id="org.eclipse.mylar.cheatsheet"
            name="Mylar">
      </category>
      <cheatsheet
            category="org.eclipse.mylar.cheatsheet"
            contentFile="cheatsheets/Query.xml"
            id="org.eclipse.mylar.cheatsheet.query"
            name="Create a query from bugs.eclipse.org">
         <description>
            Learn how to create a query from bugs.eclipse.org
         </description>
      </cheatsheet>
      <cheatsheet
            category="org.eclipse.mylar.cheatsheet"
            contentFile="cheatsheets/TaskFocus.xml"
            id="org.eclipse.mylar.cheatsheet.taskfocus"
            name="Use Task-Focused UI">
         <description>
            Learn how to use Task-Focused UI
         </description>
      </cheatsheet>
   </extension> 
  
</plugin>

Back to the top