initial xml capabilities definition
diff --git a/bundles/org.eclipse.wtp.xml.capabilities/.project b/bundles/org.eclipse.wtp.xml.capabilities/.project
new file mode 100644
index 0000000..bd1e416
--- /dev/null
+++ b/bundles/org.eclipse.wtp.xml.capabilities/.project
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.wtp.xml.capabilities</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+	</natures>
+</projectDescription>
diff --git a/bundles/org.eclipse.wtp.xml.capabilities/.settings/org.eclipse.pde.core.prefs b/bundles/org.eclipse.wtp.xml.capabilities/.settings/org.eclipse.pde.core.prefs
new file mode 100644
index 0000000..eb760e2
--- /dev/null
+++ b/bundles/org.eclipse.wtp.xml.capabilities/.settings/org.eclipse.pde.core.prefs
@@ -0,0 +1,4 @@
+#Tue May 19 09:49:45 EDT 2009
+eclipse.preferences.version=1
+resolve.requirebundle=false
+pluginProject.extensions=false
diff --git a/bundles/org.eclipse.wtp.xml.capabilities/META-INF/MANIFEST.MF b/bundles/org.eclipse.wtp.xml.capabilities/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..3c1ab7c
--- /dev/null
+++ b/bundles/org.eclipse.wtp.xml.capabilities/META-INF/MANIFEST.MF
@@ -0,0 +1,6 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: %Bundle-Name.0
+Bundle-SymbolicName: org.eclipse.wtp.xml.capabilities;singleton:=true
+Bundle-Version: 1.0.0.qualifier
+Bundle-Vendor: %Bundle-Vendor.0
diff --git a/bundles/org.eclipse.wtp.xml.capabilities/OSGI-INF/l10n/bundle.properties b/bundles/org.eclipse.wtp.xml.capabilities/OSGI-INF/l10n/bundle.properties
new file mode 100644
index 0000000..74b8872
--- /dev/null
+++ b/bundles/org.eclipse.wtp.xml.capabilities/OSGI-INF/l10n/bundle.properties
@@ -0,0 +1,5 @@
+#Properties file for org.eclipse.wtp.xml.capabilities
+Bundle-Name.0 = XML Capabilities
+Bundle-Vendor.0 = Eclipse Web Tools Platform
+activity.xml             = XML Development
+activity.xml.desc        = Develop XML applications.
diff --git a/bundles/org.eclipse.wtp.xml.capabilities/about.html b/bundles/org.eclipse.wtp.xml.capabilities/about.html
new file mode 100644
index 0000000..31cec0d
--- /dev/null
+++ b/bundles/org.eclipse.wtp.xml.capabilities/about.html
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<HTML>
+
+<head>
+<title>About</title>
+<meta http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
+</head>
+
+<BODY lang="EN-US">
+
+<H3>About This Content</H3>
+
+<P>June, 2009</P>
+
+<H3>License</H3>
+
+<P>The Eclipse Foundation makes available all content in this plug-in 
+("Content"). Unless otherwise indicated below, the Content is provided to you 
+under the terms and conditions of the Eclipse Public License Version 1.0 
+("EPL"). A copy of the EPL is available at
+<A href="http://www.eclipse.org/org/documents/epl-v10.php">http://www.eclipse.org/org/documents/epl-v10.php</A>. 
+For purposes of the EPL, "Program" will mean the Content.</P>
+
+<P>If you did not receive this Content directly from the Eclipse Foundation, the 
+Content is being redistributed by another party ("Redistributor") and different 
+terms and conditions may apply to your use of any object code in the Content. 
+Check the Redistributor’s license that was provided with the Content. If no such 
+license exists, contact the Redistributor. Unless otherwise indicated below, the 
+terms and conditions of the EPL still apply to any source code in the Content 
+and such source code may be obtained at
+<A href="http://www.eclipse.org/">http://www.eclipse.org/</A>.</P>
+
+</BODY>
+</HTML>
diff --git a/bundles/org.eclipse.wtp.xml.capabilities/build.properties b/bundles/org.eclipse.wtp.xml.capabilities/build.properties
new file mode 100644
index 0000000..115c95d
--- /dev/null
+++ b/bundles/org.eclipse.wtp.xml.capabilities/build.properties
@@ -0,0 +1,3 @@
+bin.includes = META-INF/,\
+               OSGI-INF/,\
+               plugin.xml
diff --git a/bundles/org.eclipse.wtp.xml.capabilities/plugin.xml b/bundles/org.eclipse.wtp.xml.capabilities/plugin.xml
new file mode 100644
index 0000000..47bfcca
--- /dev/null
+++ b/bundles/org.eclipse.wtp.xml.capabilities/plugin.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin>
+  <!-- XML Capability Definition
+       The following components are associated with
+       the XML activity as they are required by XML
+       and other components and XML is currently 
+       serving as the base WTP component.
+       common
+       sse
+       validation
+  -->
+  <extension point="org.eclipse.ui.activities">
+  	
+  		<activity
+            name="%activity.xml"
+            description="%activity.xml.desc"
+            id="org.eclipse.wtp.xml.capabilities">
+     	</activity>
+     	
+     	<categoryActivityBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            categoryId="org.eclipse.categories.developmentCategory">
+      	</categoryActivityBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.xml\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.xsd\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.dtd\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.apache\.xerces\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.common\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.sse\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.validation\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.internet\.cache\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<activityPatternBinding
+            activityId="org.eclipse.wtp.xml.capabilities"
+            pattern="org\.eclipse\.wst\.internet\.proxy\.[\.\w/]*">
+      	</activityPatternBinding>
+      	
+      	<defaultEnablement
+            id="org.eclipse.wtp.xml.capabilities">
+      	</defaultEnablement>
+   </extension>
+   
+</plugin>