Initial commit
@@ -0,0 +1 @@
|
||||
# Debugging options for the org.eclipse.ui.console plugin.
|
||||
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>About</title>
|
||||
<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
|
||||
</head>
|
||||
<body lang="EN-US">
|
||||
<h2>About This Content</h2>
|
||||
|
||||
<p>8th September, 2003</p>
|
||||
<h3>License</h3>
|
||||
<p>Eclipse.org makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
|
||||
Common Public License Version 1.0 ("CPL"). A copy of the CPL is available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>.
|
||||
For purposes of the CPL, "Program" will mean the Content.</p>
|
||||
|
||||
<h3>Contributions</h3>
|
||||
|
||||
<p>If this Content is licensed to you under the terms and conditions of the CPL, any Contributions, as defined in the CPL, uploaded, submitted, or otherwise
|
||||
made available to Eclipse.org, members of Eclipse.org and/or the host of Eclipse.org web site, by you that relate to such
|
||||
Content are provided under the terms and conditions of the CPL and can be made available to others under the terms of the CPL.</p>
|
||||
|
||||
<p>If this Content is licensed to you under license terms and conditions other than the CPL ("Other License"), any modifications, enhancements and/or
|
||||
other code and/or documentation ("Modifications") uploaded, submitted, or otherwise made available to Eclipse.org, members of Eclipse.org and/or the
|
||||
host of Eclipse.org, by you that relate to such Content are provided under terms and conditions of the Other License and can be made available
|
||||
to others under the terms of the Other License. In addition, with regard to Modifications for which you are the copyright holder, you are also
|
||||
providing the Modifications under the terms and conditions of the CPL and such Modifications can be made available to others under the terms of
|
||||
the CPL.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 545 B |
|
After Width: | Height: | Size: 358 B |
|
After Width: | Height: | Size: 582 B |
|
After Width: | Height: | Size: 328 B |
|
After Width: | Height: | Size: 223 B |
|
After Width: | Height: | Size: 545 B |
|
After Width: | Height: | Size: 358 B |
|
After Width: | Height: | Size: 582 B |
@@ -0,0 +1,20 @@
|
||||
###############################################################################
|
||||
# Copyright (c) 2000, 2004 IBM Corporation and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Common Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/cpl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# IBM Corporation - initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
pluginName=Console
|
||||
providerName=Eclipse.org
|
||||
ConsoleView.name=Console
|
||||
|
||||
ViewCommand.consoleView.name=Console
|
||||
ViewCommand.consoleView.description=Show the Console view
|
||||
|
||||
ConsoleFontDefinition.description= The console text font is used by the generic console
|
||||
ConsoleFontDefinition.label= Console Text Font
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.ui.console"
|
||||
name="%pluginName"
|
||||
version="3.0.0"
|
||||
provider-name="%providerName"
|
||||
class="org.eclipse.ui.console.ConsolePlugin">
|
||||
|
||||
<runtime>
|
||||
<library name="console.jar">
|
||||
<export name="*"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.jface.text"/>
|
||||
<import plugin="org.eclipse.help"/>
|
||||
<import plugin="org.eclipse.ui.workbench.texteditor"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
</requires>
|
||||
|
||||
|
||||
<extension
|
||||
point="org.eclipse.ui.views">
|
||||
<view
|
||||
name="%ConsoleView.name"
|
||||
icon="icons/full/cview16/console_view.gif"
|
||||
category="org.eclipse.ui"
|
||||
class="org.eclipse.ui.internal.console.ConsoleView"
|
||||
id="org.eclipse.ui.console.ConsoleView">
|
||||
</view>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.ui.commands">
|
||||
<command
|
||||
name="%ViewCommand.consoleView.name"
|
||||
description="%ViewCommand.consoleView.description"
|
||||
category="org.eclipse.ui.category.views"
|
||||
id="org.eclipse.ui.console.ConsoleView">
|
||||
</command>
|
||||
<keyBinding
|
||||
string=""
|
||||
scope="org.eclipse.ui.globalScope"
|
||||
command="org.eclipse.ui.console.ConsoleView"
|
||||
configuration="org.eclipse.ui.defaultAcceleratorConfiguration">
|
||||
</keyBinding>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.ui.themes">
|
||||
<fontDefinition
|
||||
label="%ConsoleFontDefinition.label"
|
||||
defaultsTo="org.eclipse.jface.textfont"
|
||||
categoryId="org.eclipse.ui.workbenchMisc"
|
||||
id="org.eclipse.ui.console.ConsoleFont">
|
||||
<description>
|
||||
%ConsoleFontDefinition.description
|
||||
</description>
|
||||
</fontDefinition>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||