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

Lukas Theussl updated DOXIA-291:
--------------------------------

    Affects Version/s: 1.0
        Fix Version/s: 1.1

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

        

Reply via email to