1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[171603] adding filters for remotesystems projects

This commit is contained in:
David Dykstal 2007-01-25 18:20:48 +00:00
parent 3d1a78f8e4
commit 1f537cc4d1
2 changed files with 26 additions and 0 deletions

View file

@ -119,6 +119,8 @@ RemoteCommandsBackground.label = Background color
RemoteCommandsBackground.description = The background color is used by the Remote Shell view.
RemoteCommandsPrompt.label = Prompt color
RemoteCommandsPrompt.description = The text color used for displaying prompts.
ProjectFilter.label=RSE Internal Projects
ProjectFilter.description=Hides RSE internal projects
# Creation wizard
Creation.category.name = Remote System Explorer

View file

@ -883,4 +883,28 @@ Contributors:
</description>
</wizard>
</extension>
<extension point="org.eclipse.ui.navigator.navigatorContent">
<commonFilter
id="org.eclipse.rse.project.filters.RemoteSystemsProjects"
name="%ProjectFilter.label"
description="%ProjectFilter.description"
activeByDefault="true">
<filterExpression>
<and>
<instanceof value="org.eclipse.core.resources.IProject"/>
<test property="org.eclipse.core.resources.name" value="RemoteSystems*"/>
</and>
</filterExpression>
</commonFilter>
</extension>
<extension point="org.eclipse.ui.navigator.viewer">
<viewerContentBinding viewerId="org.eclipse.ui.navigator.ProjectExplorer">
<includes>
<contentExtension pattern="org.eclipse.rse.project.filters.*"/>
</includes>
</viewerContentBinding>
</extension>
</plugin>