Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.wst.web.ui/plugin.xml')
-rw-r--r--plugins/org.eclipse.wst.web.ui/plugin.xml103
1 files changed, 0 insertions, 103 deletions
diff --git a/plugins/org.eclipse.wst.web.ui/plugin.xml b/plugins/org.eclipse.wst.web.ui/plugin.xml
deleted file mode 100644
index 78e53f7d2..000000000
--- a/plugins/org.eclipse.wst.web.ui/plugin.xml
+++ /dev/null
@@ -1,103 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin>
-
- <!-- static web project wizard -->
- <extension
- point="org.eclipse.ui.newWizards">
- <category
- name="%web.category_ui_"
- id="org.eclipse.wst.web.ui">
- </category>
- <wizard
- name="%StaticWebProject.name"
- icon="icons/full/ctool16/newwebprj_wiz.gif"
- category="org.eclipse.wst.web.ui"
- class="org.eclipse.wst.web.ui.internal.wizards.SimpleWebProjectWizard"
- project="true"
- id="org.eclipse.wst.web.ui.internal.wizards.SimpleWebProjectWizard">
- <description>
- %StaticWebProject.description
- </description>
- <selection
- class="org.eclipse.core.resources.IResource">
- </selection>
- </wizard>
- </extension> -->
- <!-- add in the features page
- <extension
- id="corg.eclipse.wst.web.ui.internal.wizards.WebProjectFeaturesWizardPage"
- name="%WebProjectFeatures.name"
- point="org.eclipse.wst.common.frameworks.ui.wizardPageGroup">
- <wizardPageGroup
- pageGroupID="org.eclipse.wst.web.ui.internal.wizards.WebProjectFeaturesWizardPage"
- wizardID="com.ibm.etools.webtools.StaticWebProjectCreation">
- <factory
- className="org.eclipse.wst.web.ui.internal.wizards.WebProjectFeaturesWizardPageFactory">
- </factory>
- </wizardPageGroup>
- </extension>
- -->
- <!-- <extension
- point="org.eclipse.ui.propertyPages">
- <page
- objectClass="org.eclipse.core.resources.IProject"
- adaptable="true"
- name="%StaticWebSettings"
- class="org.eclipse.wst.web.ui.internal.wizards.SimpleWebSettingsPropertiesPage"
- id="StaticWebSettingsPropertiesPage">
- <filter
- name="nature"
- value="org.eclipse.wst.web.StaticWebNature">
- </filter>
- </page>
-
- <page
- objectClass="org.eclipse.core.resources.IProject"
- adaptable="true"
- name="%WebProjectFeatures.name"
- class="com.ibm.itp.wt.ui.WebFeaturesPropertiesPage"
- id="WebFeaturesPropertiesPage">
- <filter
- name="nature"
- value="org.eclipse.wst.web.StaticWebNature">
- </filter>
- </page>
- </extension>
- -->
-
- <!-- the following 2 are needed to add an image for SWPs into the "Add/Remove Project" dialog -->
- <extension point="org.eclipse.wst.server.core.moduleTypes">
- <moduleType
- id="web.static"
- name="%StaticWebModule.name"/>
- </extension>
- <extension point="org.eclipse.wst.server.ui.serverImages">
- <image
- id="com.ibm.wtp.web.static"
- typeIds="web.static"
- icon="icons/full/obj16/web_application.gif"/>
- </extension>
-
-
- <!-- ====================================================== -->
-<!-- Extension point: org.eclipse.ui.projectNatureImages -->
-<!-- Purpose: Attach icon overlays for J2EE project natures -->
-<!-- ====================================================== -->
- <extension
- point="org.eclipse.ui.ide.projectNatureImages">
- <image
- icon="icons/full/ovr16/web_module_ovr.gif"
- natureId="org.eclipse.wst.web.StaticWebNature"
- id="org.eclipse.ui.simpleWebProjectNatureImage">
- </image>
- </extension>
-
- <extension point="org.eclipse.wst.common.project.facet.ui.wizard">
- <wizard-pages facet="wst.web" version="1.0">
- <install>
- <page class="org.eclipse.wst.web.ui.internal.wizards.SimpleWebFacetInstallPage"/>
- </install>
- </wizard-pages>
- </extension>
-</plugin>

Back to the top