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,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>22nd August, 2003</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,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<?NLS TYPE="org.eclipse.help.contexts"?>
<contexts>
<!-- Search Menu: Help... -->
<context id="helpSearchMenu" >
<description>This action will open the Search dialog that allows documentation searching.</description>
<topic label="Searching online help" href="/org.eclipse.platform.doc.user/tasks/tsearch.htm" />
</context>
<!-- Help page on Search Dialog-->
<context id="searchPage" >
<description>Type a search term or terms in the search expression field, and then click <b>Search</b>. This will open Search view that contains all the search results.
You can use OR and NOT qualifiers between terms. Also, if you put double-quotation marks around a query, search will return only results that contain specified phrase.
Click <b>Choose</b> to see the working set selection dialog, allowing for additional filtering to be specified.</description>
<topic label="Searching online help" href="/org.eclipse.platform.doc.user/tasks/tsearch.htm" />
</context>
<!-- Search result view with help hits -->
<context id="searchResultView" >
<description>This view lists the results of recent searches. Currently displayed are results or last documentation search. Double click one of the documents to open it.</description>
<topic label="Help search" href="/org.eclipse.platform.doc.user/tasks/tsearch.htm"/>
<topic label="Search view" href="reference/ref-26.htm"/>
<topic label="File search" href="reference/ref-45.htm"/>
</context>
</contexts>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?NLS TYPE="org.eclipse.help.contexts"?>
<contexts>
<context id="search_view_context" >
<topic label="Help search" href="/org.eclipse.platform.doc.user/tasks/tsearch.htm"/>
</context>
</contexts>

Binary file not shown.

After

Width:  |  Height:  |  Size: 592 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B

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
###############################################################################
help_ide_plugin_name = Help System IDE
providerName=Eclipse.org
help_search_page = Help Search
HelpWorkingSet=Help

View File

@@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin
id="org.eclipse.help.ide"
name="%help_ide_plugin_name"
version="3.0.0"
provider-name="%providerName"
class="org.eclipse.help.ui.internal.ide.HelpIdePlugin">
<runtime>
<library name="helpide.jar">
<export name="*"/>
<packages prefixes="org.eclipse.help.ui"/>
</library>
</runtime>
<requires>
<import plugin="org.eclipse.help.base"/>
<import plugin="org.eclipse.help.ui"/>
<import plugin="org.eclipse.search"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.ui.ide"/>
<import plugin="org.eclipse.core.runtime"/>
</requires>
<!-- Context Help contribution -->
<extension
point="org.eclipse.help.contexts">
<contexts
file="contexts.xml">
</contexts>
<contexts
file="contexts_search.xml"
plugin="org.eclipse.search">
</contexts>
</extension>
<!-- Search Page and Result Page-->
<extension
point="org.eclipse.search.searchPages">
<page
searchViewHelpContextId="org.eclipse.help.ide.searchResultView"
label="%help_search_page"
icon="icons/e_search_menu.gif"
class="org.eclipse.help.ui.internal.search.HelpSearchPage"
id="org.eclipse.help.ide.searchPage">
</page>
</extension>
<extension
id="helpSearchPage"
point="org.eclipse.search.searchResultViewPages">
<viewPage
class="org.eclipse.help.ui.internal.search.ResultPage"
searchResultClass="org.eclipse.help.ui.internal.search.HelpSearchResult"
id="org.eclipse.help.ide.resultPage">
</viewPage>
</extension>
<!-- Help Working Set Page -->
<extension
point="org.eclipse.ui.workingSets">
<workingSet
name="%HelpWorkingSet"
pageClass="org.eclipse.help.ui.internal.workingset.HelpWorkingSetPage"
icon="icons/workingset.gif"
id="org.eclipse.help.ui.HelpWorkingSetPage">
</workingSet>
</extension>
</plugin>