core/com.nokia.carbide.cpp.sysdoc.hover/plugin.xml
author tzelaw
Tue, 14 Apr 2009 15:03:19 -0500
changeset 94 d74b720418db
parent 2 d760517a8095
child 116 23e6330f3985
permissions -rw-r--r--
Test framework support: Ask debugger to remember DebugTarget so test framework can use it to setup test framework related utility. With this we can use the DebugUI way of launching while keeping test framework functionality
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
cawthron
parents:
diff changeset
     2
<?eclipse version="3.2"?>
cawthron
parents:
diff changeset
     3
<plugin>
cawthron
parents:
diff changeset
     4
   <extension
cawthron
parents:
diff changeset
     5
         point="org.eclipse.cdt.ui.textHovers">
cawthron
parents:
diff changeset
     6
      <hover
cawthron
parents:
diff changeset
     7
            activate="true"
cawthron
parents:
diff changeset
     8
            class="com.nokia.carbide.cpp.sysdoc.internal.hover.core.HoverEntryPoint"
cawthron
parents:
diff changeset
     9
            description="Developer Library Hover Help"
cawthron
parents:
diff changeset
    10
            id="com.nokia.carbide.cpp.sysdoc"
cawthron
parents:
diff changeset
    11
            label="Developer Library Hover Help">
cawthron
parents:
diff changeset
    12
      </hover>
cawthron
parents:
diff changeset
    13
   </extension>
cawthron
parents:
diff changeset
    14
   <extension
cawthron
parents:
diff changeset
    15
         point="org.eclipse.ui.preferencePages">
cawthron
parents:
diff changeset
    16
      <page
cawthron
parents:
diff changeset
    17
            class="com.nokia.carbide.cpp.sysdoc.internal.hover.preferences.PreferencePageView"
cawthron
parents:
diff changeset
    18
            id="com.nokia.carbide.cpp.sysdoc.internal.hover.preferences.HoverHelpPreferencePage"
cawthron
parents:
diff changeset
    19
            name="Hover Help"
cawthron
parents:
diff changeset
    20
            category="com.nokia.carbide.cpp.project.ui.preferences.CarbidePreferencePage">
cawthron
parents:
diff changeset
    21
      </page>
cawthron
parents:
diff changeset
    22
   </extension>
cawthron
parents:
diff changeset
    23
   <extension
cawthron
parents:
diff changeset
    24
         point="org.eclipse.core.runtime.preferences">
cawthron
parents:
diff changeset
    25
      <initializer
cawthron
parents:
diff changeset
    26
            class="com.nokia.carbide.cpp.sysdoc.internal.hover.preferences.PreferenceInitializer">
cawthron
parents:
diff changeset
    27
      </initializer>
cawthron
parents:
diff changeset
    28
   </extension>
cawthron
parents:
diff changeset
    29
   
cawthron
parents:
diff changeset
    30
   <extension point="org.eclipse.ui.startup">
cawthron
parents:
diff changeset
    31
   		<startup class="com.nokia.carbide.cpp.sysdoc.hover.StartUp"/>
cawthron
parents:
diff changeset
    32
	</extension>
cawthron
parents:
diff changeset
    33
cawthron
parents:
diff changeset
    34
    <extension point="org.eclipse.help.contexts">
cawthron
parents:
diff changeset
    35
        <contexts file="hoverHelpContext.xml" />
cawthron
parents:
diff changeset
    36
    </extension>
cawthron
parents:
diff changeset
    37
    <extension
cawthron
parents:
diff changeset
    38
          point="org.eclipse.equinox.http.registry.servlets">
cawthron
parents:
diff changeset
    39
       <servlet
cawthron
parents:
diff changeset
    40
             alias="/hover"
cawthron
parents:
diff changeset
    41
             class="com.nokia.carbide.cpp.sysdoc.internal.hover.webserver.HoverServlet">
cawthron
parents:
diff changeset
    42
       </servlet>
cawthron
parents:
diff changeset
    43
    </extension>
cawthron
parents:
diff changeset
    44
    <extension
cawthron
parents:
diff changeset
    45
          point="org.eclipse.ui.views">
cawthron
parents:
diff changeset
    46
       <category
cawthron
parents:
diff changeset
    47
             id="com.nokia.carbide.cpp.sysdoc.hover.view.browser"
cawthron
parents:
diff changeset
    48
             name="Developer Library">
cawthron
parents:
diff changeset
    49
       </category>
cawthron
parents:
diff changeset
    50
       <view
cawthron
parents:
diff changeset
    51
             category="com.nokia.carbide.cpp.sysdoc.hover.view.browser"
cawthron
parents:
diff changeset
    52
             class="com.nokia.carbide.cpp.sysdoc.internal.hover.view.DeveloperLibraryView"
cawthron
parents:
diff changeset
    53
             icon="icons/view.gif"
cawthron
parents:
diff changeset
    54
             id="com.nokia.carbide.cpp.sysdoc.internal.hover.view.DeveloperLibraryView"
cawthron
parents:
diff changeset
    55
             name="Devloper Library">
cawthron
parents:
diff changeset
    56
       </view>
cawthron
parents:
diff changeset
    57
    </extension>
cawthron
parents:
diff changeset
    58
  	
cawthron
parents:
diff changeset
    59
<!-- =================================================================================== -->
cawthron
parents:
diff changeset
    60
<!-- INSERT HOVER TOC INTO CARBIDE MANUAL                                                -->
cawthron
parents:
diff changeset
    61
<!-- =================================================================================== -->
cawthron
parents:
diff changeset
    62
cawthron
parents:
diff changeset
    63
  	<extension
cawthron
parents:
diff changeset
    64
         point="org.eclipse.help.toc" >
cawthron
parents:
diff changeset
    65
      <toc
cawthron
parents:
diff changeset
    66
            file="resources/help context/hoverTOC.xml"
cawthron
parents:
diff changeset
    67
            primary="false" />      
cawthron
parents:
diff changeset
    68
    </extension>
cawthron
parents:
diff changeset
    69
	
cawthron
parents:
diff changeset
    70
  	
cawthron
parents:
diff changeset
    71
</plugin>