Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 330623

Summary: org.eclipse.rap.ui.views bundle has wrong name in project description
Product: [RT] RAP Reporter: Austin Riddle <austin.riddle>
Component: WorkbenchAssignee: Project Inbox <rap-inbox>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 1.4   
Target Milestone: 1.4 M4   
Hardware: All   
OS: All   
Whiteboard:

Description Austin Riddle CLA 2010-11-18 17:40:10 EST
This bug has apparently been around for a long time.

I was playing around with the RAP Git mirror and some eclipse.ui facade bundles and happened upon this.

The .project file for org.eclipse.rap.ui.views specifies org.eclipse.ui.views for the projectDescription.

This breaks EGit if you have a bundle with that name already in your workspace.  If you try to check out the org.eclipse.rap.ui.views bundle with a project named org.eclipse.ui.views in your workspace it will not allow you to do it.

Patch to fix the problem:

### Eclipse Workspace Patch 1.0
#P org.eclipse.rap.ui.views
Index: .project
===================================================================
RCS file: /cvsroot/rt/org.eclipse.rap/runtime.ui/org.eclipse.rap.ui.views/.project,v
retrieving revision 1.1
diff -u -r1.1 .project
--- .project	15 Apr 2008 10:26:44 -0000	1.1
+++ .project	18 Nov 2010 22:39:22 -0000
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-	<name>org.eclipse.ui.views</name>
+	<name>org.eclipse.rap.ui.views</name>
 	<comment></comment>
 	<projects>
 	</projects>
Comment 1 Ivan Furnadjiev CLA 2010-11-19 02:53:17 EST
Austin, thanks for the patch. Applied to CVS HEAD.