PluginXdocGenerator generates poorly formed output when default values contain 
XML
----------------------------------------------------------------------------------

                 Key: MPLUGIN-148
                 URL: http://jira.codehaus.org/browse/MPLUGIN-148
             Project: Maven 2.x Plugin Tools
          Issue Type: Bug
          Components: API
    Affects Versions: 2.5, 2.4.3
            Reporter: Brent N Atkinson


Due to changes made in revision 684062, PluginXDocGenerator no longer handles 
defalultValues properly. Before, the routines depended on 
org.codehaus.plexus.util.xml.PrettyPrintXMLWriter's method writeText (which 
escaped XML). Since the change to using pure ResourceBundle interpolation, the 
values are no longer escaped. The following excerpt shows the offending changes:

<pre>
--- 
maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginXdocGenerator.java
      2008/08/08 19:24:21     684061
+++ 
maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginXdocGenerator.java
      2008/08/08 19:28:52     684062
...
@@ -532,15 +526,13 @@
             }
             else
             {
-                description = getBundle( locale ).getString( 
"pluginxdoc.nodescription" );
+                description = getString( "pluginxdoc.nodescription" );
             }
             w.writeMarkup( description + "<br/>" );
 
             if ( StringUtils.isNotEmpty( parameter.getDefaultValue() ) )
             {
-                w.writeMarkup( "<strong>" + getBundle( locale ).getString( 
"pluginxdoc.mojodescriptor.parameter.defaultValue" ) + "</strong>: <code>" );
-                w.writeText( parameter.getDefaultValue() );
-                w.writeMarkup( "</code>." );
+                w.writeMarkup( format( 
"pluginxdoc.mojodescriptor.parameter.defaultValue", parameter.getDefaultValue() 
) );
             }
             w.endElement();//td
             w.endElement(); //tr
</pre>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to