Initial commit
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
org.eclipse.help.ui/debug=true
|
||||
org.eclipse.help.ui/debug/embeddedBrowser = false
|
||||
org.eclipse.help.ui/debug/embeddedBrowser/inprocess = false
|
||||
org.eclipse.help.ui/debug/infopop = false
|
||||
@@ -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 ("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>
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?NLS TYPE="org.eclipse.help.contexts"?>
|
||||
|
||||
<contexts>
|
||||
|
||||
<!-- F1 on F1 -->
|
||||
<context id="f1Shell" >
|
||||
<description>Context-sensitive "infopop" help is provided for many interfaces, including views, wizards, fields, checkboxes, buttons, and menu items. To access this help, bring focus to the item by clicking it or using the tab key, and then press F1.
|
||||
|
||||
Some infopops include links to topics within the online help where you can find more information about the item.
|
||||
|
||||
This infopop opened because you pressed F1 while an infopop was already open.</description>
|
||||
</context>
|
||||
|
||||
<!-- Preference page for help browsers -->
|
||||
<context id="prefPageBrowsers" >
|
||||
<description>Allows selecting a web browser. The selected web browser will be the default browser used to display help contents.</description>
|
||||
<topic label="Preferences Dialog" href="/org.eclipse.platform.doc.user/reference/ref-72.htm"/>
|
||||
</context>
|
||||
|
||||
<!-- Path to custom browser on preference page for help browsers -->
|
||||
<context id="prefPageCustomBrowserPath" >
|
||||
<description>When custom web browser is selected from the list, specify path to the browser program that launches the browser. If the program is available on your system path, you may specify only the program name.
|
||||
|
||||
If the program does not accept URL as its last parameter, you may use %1 string to denote the position of the URL parameter in the command.</description>
|
||||
<topic label="Preferences Dialog" href="/org.eclipse.platform.doc.user/reference/ref-72.htm"/>
|
||||
</context>
|
||||
|
||||
<!-- Application server preference page -->
|
||||
<context id="prefPageAppServer" >
|
||||
<description>These settings allow you to override the network interface address and port number that the internal <b>application server</b> will use. Change the settings when the port it is trying to use is taken, or when your IP address has changed.
|
||||
|
||||
To automatically determine the interface address, leave the host field <b>blank</b>.
|
||||
|
||||
To use port dynamically assigned by the system, specify <b>0</b> in the port field.
|
||||
|
||||
Under normal circumstances, use the <b>Default</b> settings.</description>
|
||||
<topic label="Preferences Dialog" href="/org.eclipse.platform.doc.user/reference/ref-72.htm"/>
|
||||
</context>
|
||||
|
||||
</contexts>
|
||||
BIN
TBE/Eclipse/eclipse/plugins/org.eclipse.help.ui_3.0.0/helpui.jar
Normal file
BIN
TBE/Eclipse/eclipse/plugins/org.eclipse.help.ui_3.0.0/helpui.jar
Normal file
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 354 B |
@@ -0,0 +1,21 @@
|
||||
###############################################################################
|
||||
# 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_system_plugin_name = Help System UI
|
||||
help_system_plugin_name_win32 = Help System UI for Windows
|
||||
providerName=Eclipse.org
|
||||
help_preferences_page_name = Help
|
||||
|
||||
# Browser adapters
|
||||
embedded_browser = Embedded Browser
|
||||
system_browser = Default System Browser
|
||||
|
||||
# Application Server
|
||||
appserver_preferences_page_name= Help Server
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.help.ui"
|
||||
name="%help_system_plugin_name"
|
||||
version="3.0.0"
|
||||
provider-name="%providerName"
|
||||
class="org.eclipse.help.ui.internal.HelpUIPlugin">
|
||||
|
||||
<runtime>
|
||||
<library name="helpui.jar">
|
||||
<export name="*"/>
|
||||
<packages prefixes="org.eclipse.help.ui"/>
|
||||
</library>
|
||||
</runtime>
|
||||
<requires>
|
||||
<import plugin="org.eclipse.help.base"/>
|
||||
<import plugin="org.eclipse.help.appserver"/>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
</requires>
|
||||
|
||||
|
||||
<!-- Default Help UI -->
|
||||
<extension
|
||||
point="org.eclipse.ui.helpSupport">
|
||||
<config
|
||||
class="org.eclipse.help.ui.internal.DefaultHelpUI">
|
||||
</config>
|
||||
</extension>
|
||||
<!-- Preference pages -->
|
||||
<extension
|
||||
point="org.eclipse.ui.preferencePages">
|
||||
<page
|
||||
name="%help_preferences_page_name"
|
||||
class="org.eclipse.help.ui.internal.browser.BrowsersPreferencePage"
|
||||
id="org.eclipse.help.ui.browsersPreferencePage">
|
||||
</page>
|
||||
<page
|
||||
name="%appserver_preferences_page_name"
|
||||
category="org.eclipse.help.ui.browsersPreferencePage"
|
||||
class="org.eclipse.help.ui.internal.AppserverPreferencePage"
|
||||
id="org.eclipse.help.ui.appserverPreferencePage">
|
||||
</page>
|
||||
</extension>
|
||||
<!-- Context Help contribution -->
|
||||
<extension
|
||||
point="org.eclipse.help.contexts">
|
||||
<contexts
|
||||
file="contexts.xml">
|
||||
</contexts>
|
||||
</extension>
|
||||
<!-- Web Browsers -->
|
||||
<extension
|
||||
point="org.eclipse.help.base.browser">
|
||||
<browser
|
||||
factoryclass="org.eclipse.help.ui.internal.browser.embedded.EmbeddedBrowserFactory"
|
||||
name="%embedded_browser"
|
||||
id="org.eclipse.help.ui.embeddedbrowser">
|
||||
</browser>
|
||||
</extension>
|
||||
<extension
|
||||
point="org.eclipse.help.base.browser">
|
||||
<browser
|
||||
factoryclass="org.eclipse.help.ui.internal.browser.SystemBrowserFactory"
|
||||
name="%system_browser"
|
||||
id="org.eclipse.help.ui.systembrowser">
|
||||
</browser>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||
Reference in New Issue
Block a user