pde/ui/org.eclipse.ui.views.log/plugin.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.6 - (download) (as text) (annotate)
Wed May 27 20:48:28 2009 UTC (6 months ago) by darin
Branch: MAIN
CVS Tags: v20090527, v20090731, R3_5, R3_5_1, v20091023, v20090729, HEAD
Branch point for: R3_5_maintenance
Changes since 1.5: +11 -1 lines
copyright
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?><!--
     Copyright (c) 2005, 2008 IBM Corporation and others.
     All rights reserved. This program and the accompanying materials
     are made available under the terms of the Eclipse Public License v1.0
     which accompanies this distribution, and is available at
     http://www.eclipse.org/legal/epl-v10.html
    
     Contributors:
         IBM Corporation - initial API and implementation
 -->

<plugin>
   <extension
         point="org.eclipse.ui.views">
      <view
            name="%views.errorLog.name"
            icon="$nl$/icons/eview16/error_log.gif"
            category="org.eclipse.ui"
            class="org.eclipse.ui.internal.views.log.LogView"
            id="org.eclipse.pde.runtime.LogView">
      </view>
   </extension>
   <extension
         point="org.eclipse.ui.perspectiveExtensions">
      <perspectiveExtension
            targetID="org.eclipse.ui.resourcePerspective">
         <viewShortcut
               id="org.eclipse.pde.runtime.LogView">
         </viewShortcut>
      </perspectiveExtension>
      <perspectiveExtension
            targetID="org.eclipse.pde.ui.PDEPerspective">
         <viewShortcut
               id="org.eclipse.pde.runtime.LogView">
         </viewShortcut>
      </perspectiveExtension>
   </extension>
   <extension
         point="org.eclipse.ui.bindings">
      <key
            commandId="org.eclipse.ui.views.showView"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M2+M3+Q L">
         <parameter
               id="org.eclipse.ui.views.showView.viewId"
               value="org.eclipse.pde.runtime.LogView">
         </parameter>
      </key>
      <key
            platform="carbon"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M2+M3+Q L">
      </key>
      <key
            platform="carbon"
            commandId="org.eclipse.ui.views.showView"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M1+M3+Q L">
         <parameter
               id="org.eclipse.ui.views.showView.viewId"
               value="org.eclipse.pde.runtime.LogView">
         </parameter>
      </key>
   </extension>
   <extension
         point="org.eclipse.core.contenttype.contentTypes">
       <content-type
            base-type="org.eclipse.core.runtime.text"
            file-extensions="log"
            id="log"
            name="%content-type.name.log"
            priority="high">
      </content-type>
   </extension>
</plugin>