2006-08-19 02:35:05 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" / >
2007-02-22 22:38:26 +00:00
< meta name = "copyright" content = "Copyright (c) 2006, 2007 Wind River Systems, Inc. and others. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." / >
2006-08-19 02:35:05 +00:00
< link rel = "stylesheet" type = "text/css" href = "../book.css" / >
< title > Extending Remote System Explorer< / title >
2008-07-31 15:21:08 +00:00
< script language = "JavaScript" type = "text/javascript" >
function handleLink(url){
if (isBadLink(url)){
externalizeLink(url);
}
return true;
}
function externalizeLink(url){
var base = "http://dsdp.eclipse.org/help/latest/index.jsp?topic=//org.eclipse.rse.doc.isv/guide/";
var oldsegs = url.href.split('/');
var name = oldsegs[oldsegs.length-1];
var newref = base + name;
url.href = newref;
}
function isBadLink(url){
var status = getStatus(url);
if (status =='404'){ // not found on internet?
return true;
}
else if (status == '-1'){ //not found locally
return true;
}
else { // link is okay
return false;
}
}
function getStatus(url){
var request = null;
try {
request = new XMLHttpRequest();
}
catch(e){
}
if(!request)
return -1;
try {
request.open("GET",url.href,false);
request.send(null);
}
catch(e){
return -1;
}
return request.status;
}
< / script >
2006-08-19 02:35:05 +00:00
< / head >
2007-02-21 17:03:52 +00:00
< body id = "gxtending-body" >
2006-08-19 02:35:05 +00:00
< a name = "gxtending" > <!-- --> < / a >
< h1 class = "topictitle1" > Extending Remote System Explorer< / h1 >
< div >
< p > There are numerous ways how developers and software vendors can extend the
capabilities of the Remote System Explorer. Please look at the
2008-07-31 15:21:08 +00:00
< a href = "../../org.eclipse.rse.doc.isv/guide/rse_int_architecture.html" onclick = "return handleLink(this);" > RSE Developer Guide< / a > to learn about adding subsystems,
2006-08-19 02:35:05 +00:00
remote property pages or additional popup actions. The developer guide
holds extensive
2008-07-31 15:21:08 +00:00
< a href = "../../org.eclipse.rse.doc.isv/guide/tutorials.html" onclick = "return handleLink(this);" > tutorials< / a > ,
< a href = "../../org.eclipse.rse.doc.isv/guide/rse_int_architecture.html" onclick = "return handleLink(this);" > overview documentation and
2006-08-19 02:35:05 +00:00
reference< / a > .< / p >
< p > Users can configure and customize the Remote System Explorer through
<!-- TODODeferred
User actions, Compile Commands and
-->
< a href = "../ref/rrsepref.html" > Preferences< / a > and connection setup
2007-06-20 03:29:10 +00:00
<!-- TODO rework
2006-08-19 02:35:05 +00:00
< a href = "../concepts/cteam.html" > shared in a team< / a > .
2007-06-20 03:29:10 +00:00
-->
2007-02-21 17:03:52 +00:00
< / p >
2006-08-19 02:35:05 +00:00
< / div >
< div >
< p > < b class = "relconceptshd" > Related concepts< / b > < br / >
< a href = "../concepts/cfilters.html" title = "" > Remote System Explorer filters, filter
pools, and filter pool references< / a > < br / >
2007-06-20 03:29:10 +00:00
<!-- TODO rework
2006-08-19 02:35:05 +00:00
< a href = "../concepts/cteam.html" title = "" > Team support< / a > < br / >
2007-06-20 03:29:10 +00:00
-->
2006-08-19 02:35:05 +00:00
< / p >
<!--
< p > < b class = "reltaskshd" > Related tasks< / b > < br / >
2006-11-20 15:38:42 +00:00
< a href = "../tasks/truncmdsview.html" title = "" > Running and viewing commands using the Remote Shell view< / a > < br / >
2006-08-19 02:35:05 +00:00
< / p >
2007-02-21 17:03:52 +00:00
-->
2006-08-19 02:35:05 +00:00
< / div >
< / body >
< / html >