You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Brent N Atkinson (JIRA)" <ji...@codehaus.org> on 2009/03/05 22:58:13 UTC

[jira] Updated: (MPLUGIN-148) PluginXdocGenerator generates poorly formed output when default values contain XML

     [ http://jira.codehaus.org/browse/MPLUGIN-148?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brent N Atkinson updated MPLUGIN-148:
-------------------------------------

    Attachment: MPLUGIN-148.patch

Introduces escaping of default values back into the XDoc generator.

> 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.4.3, 2.5
>            Reporter: Brent N Atkinson
>         Attachments: MPLUGIN-148.patch
>
>
> 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