Maven Doxia

Wrong classid in SwfMacro

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Major Major
  • Resolution: Fixed
  • Affects Version/s: 1.0
  • Fix Version/s: 1.1
  • Component/s: Core
  • Labels:
    None
  • Number of attachments :
    0

Description

There is a missing ": D" (without space) in the classid of the SwfMacro.

The actual version looks like:

SwfMacro.java
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 );

Ist must be:

SwfMacro.java
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 );

The swf File is not included correctly otherwise.

Activity

Hide
Lukas Theussl added a comment -

Fixed in r747674

Show
Lukas Theussl added a comment - Fixed in r747674

People

Vote (0)
Watch (0)

Dates

  • Created:
    Updated:
    Resolved: