You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Lukas Theussl (JIRA)" <ji...@codehaus.org> on 2009/02/25 07:09:20 UTC

[jira] Closed: (DOXIA-291) Wrong classid in SwfMacro

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

Lukas Theussl closed DOXIA-291.
-------------------------------

      Assignee: Lukas Theussl
    Resolution: Fixed

Fixed in r747674

> Wrong classid in SwfMacro
> -------------------------
>
>                 Key: DOXIA-291
>                 URL: http://jira.codehaus.org/browse/DOXIA-291
>             Project: Maven Doxia
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.0
>            Reporter: Denis Knauer
>            Assignee: Lukas Theussl
>             Fix For: 1.1
>
>
> There is a missing ": D" (without space) in the classid of the SwfMacro.
> The actual version looks like:
> {code:title=SwfMacro.java|borderStyle=solid}
> content.append( "<object classid=\"clsid27CDB6E-AE6D-11cf-96B8-444553540000\" " )
>             .append( "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" )
>             .append( version ).append( "\" width=\"" ).append( width ).append( "\" height=\"" ).append( height )
>             .append( "\" id=\"" ).append( id ).append( "\">" ).append( EOL );
> {code}
> Ist must be:
> {code:title=SwfMacro.java|borderStyle=solid}
> content.append( "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" " )
>             .append( "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" )
>             .append( version ).append( "\" width=\"" ).append( width ).append( "\" height=\"" ).append( height )
>             .append( "\" id=\"" ).append( id ).append( "\">" ).append( EOL );
> {code}
> The swf File is not included correctly otherwise.

-- 
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