[jbosstools-issues] [JBoss JIRA] (JBIDE-16357) ApplicationWizard: RemoteSystemsTempFiles is possible to choose in OpenShift select project

Andre Dietisheim (JIRA) issues at jboss.org
Fri Jan 24 08:12:29 EST 2014


    [ https://issues.jboss.org/browse/JBIDE-16357?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12938539#comment-12938539 ] 

Andre Dietisheim commented on JBIDE-16357:
------------------------------------------

I looked up how RSE does things:

They're offering a resource filter for the explorer that filter out what they call Internal RSE projects:

{code:title=https://eclipse.googlesource.com/tm/org.eclipse.tm/+/b896bfa678aa814c531c2cce558aa3fb56d9db40/rse/plugins/org.eclipse.rse.ui/plugin.properties}
ProjectFilter.label=RSE Internal Projects
ProjectFilter.description=Hides RSE internal projects
{code}

What they do is to filter upon project name ("RemoteSystems*"):

{code:title=https://eclipse.googlesource.com/tm/org.eclipse.tm/+/b896bfa678aa814c531c2cce558aa3fb56d9db40/rse/plugins/org.eclipse.rse.ui/plugin.xml}
<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>
{code}

I thus suggest that we do the same, even though it's not a nicelooking fix.
                
> ApplicationWizard: RemoteSystemsTempFiles is possible to choose in OpenShift select project
> -------------------------------------------------------------------------------------------
>
>                 Key: JBIDE-16357
>                 URL: https://issues.jboss.org/browse/JBIDE-16357
>             Project: Tools (JBoss Tools)
>          Issue Type: Bug
>          Components: openshift
>            Reporter: Burr Sutter
>
> The Select Existing Project dialog should not display 
> RemoteSystemTempFiles as an option
> http://screencast.com/t/CKEnB16Rbad

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jbosstools-issues mailing list