This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 63509
Collapse All | Expand All

(-)RunTimeDDCatalog.java (-22 lines)
Lines 128-129 Link Here
128
        list.add("-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN");//JSF code completion
129
        list.add("-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN");//JSF code completion
Lines 161-180 Link Here
161
        }
162
        if (publicId.equals("-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN")){
163
            File file = new File(installRoot+"/lib/jsf-impl.jar");
164
            String s = "";
165
            try{
166
                s= file.toURI().toURL().toExternalForm();
167
            }catch(Exception e){
168
                
169
            }
170
            return "jar:"+s+"!/com/sun/faces/web-facesconfig_1_0.dtd";
171
        }
172
        if (publicId.equals("-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN")){
173
            File file = new File(installRoot+"/lib/jsf-impl.jar");
174
            String s = "";
175
            try{
176
                s= file.toURI().toURL().toExternalForm();
177
            }catch(Exception e){
178
                
179
            }
180
            return "jar:"+s+"!/com/sun/faces/web-facesconfig_1_1.dtd";

Return to bug 63509