Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [dsdp-tm-dev] RemoteSystemsTempFiles

Hi Andrei,

If your custom view is similar to JDT Package Explorer,
I'd recommend just adding the same filters to your view
That we add to JDT. See org.eclipse.rse.files.ui/plugin.xml:

<!-- =================================================================
-->
<!--     Hide RemoteSystemsConnections and RemoteSystemsTempFiles
-->
<!-- 	 in the JDT view
-->
<!-- =================================================================
-->	
	<extension
		 point="org.eclipse.jdt.ui.javaElementFilters">
        <filter
      		targetId="org.eclipse.jdt.ui.PackageExplorer"
            name="%ViewFilter.RSEConnections"
            enabled="true"
            description=""
            pattern="RemoteSystemsConnections">
        </filter>
      <filter
   		targetId="org.eclipse.jdt.ui.PackageExplorer"
            name="%ViewFilter.RSETempFiles"
            enabled="true"
            description=""
            pattern="RemoteSystemsTempFiles">
      </filter>    
    </extension>


The filters will be on by default. As a solution provider who
integrates a JDT derivate with RSE, I'd think that it's your
responsibility to add those filters -- at least until RSE can
come up with something better.

Since changing the RemoteSystemsTempFiles project name is a 
sensitive thing, I'm reluctant doing it that late in the 
game while we already produce release candidates -- though 
the committers have not voted yet.

Wrt Search Results, no we don't try to hide the 
RemoteSystemsTempFiles project from Search Results. Users
Who don't want to see those matches can easily specify a
Working Set as their search scope; others might even be
Happy to get those search results so I wouldn't plan 
Changing this.



Cheers,
--
Martin Oberhuber, Senior Member of Technical Staff, Wind River
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm
 
 

> -----Original Message-----
> From: dsdp-tm-dev-bounces@xxxxxxxxxxx 
> [mailto:dsdp-tm-dev-bounces@xxxxxxxxxxx] On Behalf Of Andrei Sobolev
> Sent: Mittwoch, 14. Mai 2008 06:09
> To: Target Management developer discussions
> Subject: Re: [dsdp-tm-dev] RemoteSystemsTempFiles
> 
> Hi Martin,
> 
> Because we have our custom view similar to JDT Package Explorer, named
> Script Explorer.
> We see it every time.
> 
> Also interesting point:
> Your implementation do something to hide this project contents from
> eclipse file search?
> 
> Best regards,
> Andrei Sobolev.
> 
> > Hi all,
> >
> > I like the idea of renaming to ".RemoteSystemsTempFiles",
> > to ensure that default filters will hide the project.
> >
> > What might happen if we migrate is that older (RSE 2.x)
> > workspaces which already have a "RemoteSystemsTempFiles"
> > project will end up having two such projects, the old
> > one and the new one. We should probably care for deleting
> > the old one when the new one is created; this might
> > cause issues when the same workspace is used by both
> > RSE 2.x and RSE 3.x, but I don't think it's very problematic
> > since we are doing a major version rev up and it's 
> > temp files only.
> >
> > Andrei, in what situations have you seen the project?
> > I have seen it in situations such as the Eclipse import 
> > and export wizards. I'm not sure whether renaming the 
> > project will hide it in those situations, but it might be
> > worth a try. 
> >
> > Additional Opinions?
> >
> >
> > Cheers,
> > --
> > Martin Oberhuber, Senior Member of Technical Staff, Wind River
> > Target Management Project Lead, DSDP PMC Member
> > http://www.eclipse.org/dsdp/tm
> >  
> >  
> >
> >   
> >> -----Original Message-----
> >> From: dsdp-tm-dev-bounces@xxxxxxxxxxx 
> >> [mailto:dsdp-tm-dev-bounces@xxxxxxxxxxx] On Behalf Of 
> Andrei Sobolev
> >> Sent: Dienstag, 13. Mai 2008 12:41
> >> To: dsdp-tm-dev@xxxxxxxxxxx
> >> Subject: [dsdp-tm-dev] RemoteSystemsTempFiles
> >>
> >> Hi all,
> >>
> >> Is any reason to use project RemoteSystemsTempFiles?
> >>
> >> I've actually don't understand then it is used.
> >> I've looked at it in different situations, and not see any 
> >> files in it.
> >>
> >> Is possibly to remove this project? Or at least to rename it 
> >> for example
> >> to ".RemoteSystemsTempFiles", so default filters will hide it.
> >>
> >> Best regards,
> >> Andrei Sobolev.
> >> _______________________________________________
> >> dsdp-tm-dev mailing list
> >> dsdp-tm-dev@xxxxxxxxxxx
> >> https://dev.eclipse.org/mailman/listinfo/dsdp-tm-dev
> >>
> >>     
> > _______________________________________________
> > dsdp-tm-dev mailing list
> > dsdp-tm-dev@xxxxxxxxxxx
> > https://dev.eclipse.org/mailman/listinfo/dsdp-tm-dev
> > From - Wed
> >   
> 
> _______________________________________________
> dsdp-tm-dev mailing list
> dsdp-tm-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/dsdp-tm-dev
> 


Back to the top