Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
The r21presentation plugin provides an R2.1 style look and feel for
Eclipse. This look and feel is accomplished entirely through the
Presentations API, no changes are needed to the base eclipse release.
Use:
1. Ensure the plugin is installed (look in your eclipse/plugins
directory for org.eclipse.ui.presentations.r21_3.0.0).
2. Add the contents of the r21presentation.ini file to your primary
plugin's "plugin_customization.ini" file. In the basic Eclipse
IDE, this file is located in plugins/org.eclipse.platform_3.0.0.
3. Resolve any conflicts in the plugin_customization.ini file to favour
the settings for this project. E.g., DOCK_PERSPECTIVE_BAR is set
to "topRight" in the basic platform but should be "left" for the
R21 presentation.

View File

@@ -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>20th June, 2002</p>
<h3>License</h3>
<p>Eclipse.org makes available all content in this plug-in (&quot;Content&quot;). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the
Common Public License Version 1.0 (&quot;CPL&quot;). 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, &quot;Program&quot; 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 (&quot;Other License&quot;), any modifications, enhancements and/or
other code and/or documentation (&quot;Modifications&quot;) 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>

View File

@@ -0,0 +1,14 @@
###############################################################################
# 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= R21 Presentation Plug-in
providerName= Eclipse.org
Presentation.r21.name=R21Presentation

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="org.eclipse.ui.presentations.r21"
name="%pluginName"
version="3.0.1"
provider-name="%providerName"
class="org.eclipse.ui.internal.presentations.r21.R21PresentationPlugin">
<runtime>
<library name="r21.jar">
<export name="*"/>
</library>
</runtime>
<requires>
<import plugin="org.eclipse.core.runtime"/>
<import plugin="org.eclipse.ui"/>
</requires>
<extension
point="org.eclipse.ui.presentationFactories">
<factory
name="%Presentation.r21.name"
class="org.eclipse.ui.internal.presentations.R21PresentationFactory"
id="org.eclipse.ui.internal.r21presentationFactory">
</factory>
</extension>
</plugin>

View File

@@ -0,0 +1,18 @@
# R21 presentation settings: copy these values to your product's
# plugin_customization.ini file before starting eclipse
#
# Its possible that platform has its own setting for some of these
# values. Be sure to resolve conflicts to favour the values in this
# file.
# use the R2.1 style
org.eclipse.ui/presentationFactoryId=org.eclipse.ui.internal.r21presentationFactory
# put the view tabs on the bottom (1024 == SWT.BOTTOM)
org.eclipse.ui.workbench/VIEW_TAB_POSITION=1024
# put the perspective switcher on the left
org.eclipse.ui/DOCK_PERSPECTIVE_BAR=left
# put the fast view bar on the left
org.eclipse.ui/initialFastViewBarLocation=left