From: <ad...@us...> - 2010-11-13 19:56:12
|
Revision: 1184 http://jtidy.svn.sourceforge.net/jtidy/?rev=1184&view=rev Author: aditsu Date: 2010-11-13 19:56:05 +0000 (Sat, 13 Nov 2010) Log Message: ----------- fixed test 1715153 - added BAD_ATTRIBUTE_VALUE_REPLACED Modified Paths: -------------- branches/CodeUpdateAndJava5/src/main/java/org/w3c/tidy/Report.java branches/CodeUpdateAndJava5/src/main/resources/org/w3c/tidy/TidyMessages.properties Modified: branches/CodeUpdateAndJava5/src/main/java/org/w3c/tidy/Report.java =================================================================== --- branches/CodeUpdateAndJava5/src/main/java/org/w3c/tidy/Report.java 2010-11-07 17:42:05 UTC (rev 1183) +++ branches/CodeUpdateAndJava5/src/main/java/org/w3c/tidy/Report.java 2010-11-13 19:56:05 UTC (rev 1184) @@ -578,7 +578,8 @@ lexer.badAccess |= MISSING_IMAGE_MAP; break; - case BAD_ATTRIBUTE_VALUE : + case BAD_ATTRIBUTE_VALUE: + case BAD_ATTRIBUTE_VALUE_REPLACED: case INVALID_ATTRIBUTE: messageNode(lexer, Level.WARNING, node, code, tagdesc, name, value); break; Modified: branches/CodeUpdateAndJava5/src/main/resources/org/w3c/tidy/TidyMessages.properties =================================================================== --- branches/CodeUpdateAndJava5/src/main/resources/org/w3c/tidy/TidyMessages.properties 2010-11-07 17:42:05 UTC (rev 1183) +++ branches/CodeUpdateAndJava5/src/main/resources/org/w3c/tidy/TidyMessages.properties 2010-11-13 19:56:05 UTC (rev 1184) @@ -5,6 +5,7 @@ backslash_in_uri={0} URI reference contains backslash. Typo? bad_argument=Warning - missing or malformed argument "{1}" for option "{0}" bad_attribute_value={0} attribute "{1}" has invalid value "{2}" +bad_attribute_value_replaced = {0} attribute "{1}" had invalid value "{2}" and has been replaced bad_cdata_content=''<'' + ''/'' + letter not allowed here bad_comment_chars=expecting -- or > bad_tree=Panic - tree has lost its integrity This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |