commit | ab39da75d4c8c7286af48bff3ca1f057ecadc38d | [log] [tgz] |
---|---|---|
author | Konstantin Kolinko <kkolinko@apache.org> | Mon Jan 27 16:34:35 2014 +0000 |
committer | Konstantin Kolinko <kkolinko@apache.org> | Mon Jan 27 16:34:35 2014 +0000 |
tree | 6229c7ca12cd6e4f9ef3868542f24d95a824886b | |
parent | a4dda4b2e2474cfbdc334fbed4ae632e6935e246 [diff] |
Fix two more errors in jspxml.dtd, found by validating the file in Eclipse IDE. 1. Complained for missing '(' in definition of jsp:text. 2. Element jsp:fallback (mentioned in jsp:plugin) was not defined. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1561732 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/java/javax/servlet/jsp/resources/jspxml.dtd b/java/javax/servlet/jsp/resources/jspxml.dtd index 7536eac..c6f0998 100644 --- a/java/javax/servlet/jsp/resources/jspxml.dtd +++ b/java/javax/servlet/jsp/resources/jspxml.dtd
@@ -186,5 +186,6 @@ value CDATA #REQUIRED > -<!ELEMENT jsp:text #PCDATA> +<!ELEMENT jsp:text (#PCDATA)> +<!ELEMENT jsp:fallback %Body;>