Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 78e53f7d2738400d9f5f29dd6448b022009891a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?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