[jbosstools-commits] JBoss Tools SVN: r35404 - trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Wed Oct 5 19:32:55 EDT 2011


Author: akazakov
Date: 2011-10-05 19:32:54 -0400 (Wed, 05 Oct 2011)
New Revision: 35404

Modified:
   trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/XHTMLValidator.java
Log:
https://issues.jboss.org/browse/JBIDE-9846 Fixed infinite loop in XHTM validator

Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/XHTMLValidator.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/XHTMLValidator.java	2011-10-05 22:38:57 UTC (rev 35403)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/XHTMLValidator.java	2011-10-05 23:32:54 UTC (rev 35404)
@@ -71,11 +71,9 @@
 			"http://apache.org/xml/features/nonvalidating/load-external-dtd",
 			"http://apache.org/xml/features/nonvalidating/load-dtd-grammar",
 			"http://apache.org/xml/features/xinclude",
-			"http://xml.org/sax/features/resolve-dtd-uris"
-		};  
-	private String[] SAX_PARSER_FEATURES_TO_ENABLE = {
+			"http://xml.org/sax/features/resolve-dtd-uris",
 			"http://apache.org/xml/features/continue-after-fatal-error"
-		};
+		};  
 	
 	private void setSAXParserFeatures(XMLReader reader, String[] features, boolean set) {
 		for (String feature : features) {
@@ -139,22 +137,19 @@
 				report);
 		XMLReader xmlReader = new org.apache.xerces.parsers.SAXParser();
 
-		try {
-			setSAXParserFeatures(xmlReader, SAX_PARSER_FEATURES_TO_DISABLE, false);
-			setSAXParserFeatures(xmlReader, SAX_PARSER_FEATURES_TO_ENABLE, true);
-    	    setSAXParserProperty(xmlReader, "http://xml.org/sax/properties/lexical-handler", handler); 
-    	    xmlReader.setContentHandler(handler);
-    	    xmlReader.setDTDHandler(handler);
-    	    xmlReader.setErrorHandler(handler);
+		setSAXParserFeatures(xmlReader, SAX_PARSER_FEATURES_TO_DISABLE, false);
+	    setSAXParserProperty(xmlReader, "http://xml.org/sax/properties/lexical-handler", handler); 
+	    xmlReader.setContentHandler(handler);
+	    xmlReader.setDTDHandler(handler);
+	    xmlReader.setErrorHandler(handler);
+	    isXHTMLDoctype = false;
 
-    	    isXHTMLDoctype = false;
-		
+		try {
 			xmlReader.parse(uri);
 		} catch (IOException e) {
 			JSFModelPlugin.getDefault().logError(e);
 			report.addError(e.getLocalizedMessage(), 0, 0, uri);
 		} catch (SAXException e) {
-			JSFModelPlugin.getDefault().logError(e);
 			report.addError(e.getLocalizedMessage(), 0, 0, uri);
 		}
 



More information about the jbosstools-commits mailing list