1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 22:35:43 +02:00

Remove Useractions from Core feature

This commit is contained in:
Martin Oberhuber 2007-05-04 14:16:55 +00:00
parent ed6158f594
commit 300237b585
3 changed files with 50 additions and 52 deletions

View file

@ -64,12 +64,12 @@ Here are the extension points that are defined by the RSE:
<TD>For supporting additional archive file types, such as is done today for zip, jar and tar files. This adds support for expanding the archives and supporting all the usual actions on the contents.</TD>
</TR>
<TR>
<TD><A href="plugin/popup.html">org.eclipse.rse.ui.<B>popupMenus</B></A></TD>
<TD><A href="plugin/popup.html">org.eclipse.ui.<B>popupMenus</B></A></TD>
<TD>For defining actions, which appear in the pop-up menu of remote objects
listed in the Remote Systems view.</TD>
</TR>
<TR>
<TD><A href="plugin/propertypage.html">org.eclipse.rse.ui.<b>propertyPages</b></A></TD>
<TD><A href="plugin/propertypage.html">org.eclipse.ui.<b>propertyPages</b></A></TD>
<TD>For defining property pages, which appear in the Properties dialog when
users select the Properties action from the pop-up menu of remote
objects listed in the Remote Systems view.</TD>

View file

@ -1,44 +1,49 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2005, 2006. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
<title>RSE Overview</title>
<link rel="stylesheet" type="text/css" href="../book.css">
</head>
<body>
<h1>RSE Overview</h1>
<p>
The perspective for managing connections is the <A href="rse.gif"><B>Remote
System Explorer</B></A> (<b>RSE</b>), and the primary tree-view within it is the
<A href="view_RS.gif"><B>Remote Systems</B></A> view. We assume you are already familiar with the RSE perspective,
or will familiarize yourself with it, and you are now interested in learning how to extend it. We also assume that you
already understand the concepts of plug-ins, extension points, and the workbench UI. You do not need
to be familiar with workspace resources, as the RSE does not use these to realize the artifacts it
shows to the user.
</p>
<p>A user can extend the Remote System Explorer by adding their own
<A href="Artifacts.html#filters">filters</A>,
<A href="Artifacts.html#useractions">user actions</A>, and
<A href="Artifacts.html#compilecmds">compile commands</A>.
They may also customize the RSE by setting
<A href="Artifacts.html#preferences">preferences</A>.</p>
<p>
As a programmer, you can extend the Remote System Explorer by using
<A href="../reference/extension-points/index.html">RSE-unique extension points</A> to
add property pages to remote objects, add actions to the pop-up menus for remote objects, and
even create your own subsystems that appear when a connection is expanded. The full Eclipse application
programming interface (API) set is
at your disposal for these, as well as the API set supplied by the Remote System Explorer. Furthermore,
you can use existing Eclipse extension points to author menu items, tool bar actions, pop-up menu actions,
and more for non-remote objects in the Remote System Explorer.
</p>
<p>
This guide explains all underlying
artifacts and model of the Remote System Explorer, the RSE extension points, and highlights the
important APIs available for your use.
</p>
</body>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2005, 2006. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
<title>RSE Overview</title>
<link rel="stylesheet" type="text/css" href="../book.css">
</head>
<body>
<h1>RSE Overview</h1>
<p>
The perspective for managing connections is the <A href="rse.gif"><B>Remote
System Explorer</B></A> (<b>RSE</b>), and the primary tree-view within it is the
<A href="view_RS.gif"><B>Remote Systems</B></A> view. We assume you are already familiar with the RSE perspective,
or will familiarize yourself with it, and you are now interested in learning how to extend it. We also assume that you
already understand the concepts of plug-ins, extension points, and the workbench UI. You do not need
to be familiar with workspace resources, as the RSE does not use these to realize the artifacts it
shows to the user.
</p>
<p>A user can extend the Remote System Explorer by adding their own
<A href="Artifacts.html#filters">filters</A>.
<!--
<A href="Artifacts.html#useractions">user actions</A>, and
<A href="Artifacts.html#compilecmds">compile commands</A>.
-->
They may also customize the RSE by setting
<A href="Artifacts.html#preferences">preferences</A>.</p>
<p>
As a programmer, you can extend the Remote System Explorer by using
<A href="../reference/extension-points/index.html">RSE-unique extension points</A> to
add actions to the pop-up menus for remote objects, create your own
system types or subsystems that appear when a connection is expanded,
or even contribute new persistence schemes for storing RSE data. The full Eclipse application
programming interface (API) set is
at your disposal for these, as well as the API set supplied by the Remote System Explorer. Furthermore,
you can use
<a href="../guide/plugin/other.html">Eclipse Platform extension points</a>
to add property pages, author menu items, tool bar actions,
pop-up menu actions, and more for objects in the Remote System Explorer.
</p>
<p>
This guide explains all underlying
artifacts and model of the Remote System Explorer, the RSE extension points, and highlights the
important APIs available for your use.
</p>
</body>
</html>

View file

@ -133,11 +133,4 @@
version="0.0.0"
unpack="false"/>
<plugin
id="org.eclipse.rse.useractions"
download-size="0"
install-size="0"
version="0.0.0"
unpack="false"/>
</feature>