Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 330623 - org.eclipse.rap.ui.views bundle has wrong name in project description
Summary: org.eclipse.rap.ui.views bundle has wrong name in project description
Status: RESOLVED FIXED
Alias: None
Product: RAP
Classification: RT
Component: Workbench (show other bugs)
Version: 1.4   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: 1.4 M4   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-11-18 17:40 EST by Austin Riddle CLA
Modified: 2010-11-19 02:53 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.