You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ji...@codehaus.org on 2004/06/30 22:04:16 UTC

[jira] Created: (MPDOCBOOK-1) Docbook plugin does not support mediaobject

Message:

  A new issue has been created in JIRA.

---------------------------------------------------------------------
View the issue:
  http://jira.codehaus.org/browse/MPDOCBOOK-1

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: MPDOCBOOK-1
    Summary: Docbook plugin does not support mediaobject
       Type: Improvement

     Status: Unassigned
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

    Project: maven-docbook-plugin
 Components: 
             default

   Assignee: 
   Reporter: Webb Morris

    Created: Wed, 30 Jun 2004 4:04 PM
    Updated: Wed, 30 Jun 2004 4:04 PM

Description:
The graphic tag will be dropped in a future docbook release. The mediaobject and inlinemediaobject types will need to be supported. Here is a quick addition to the XSL for supporting images configured by these types:

  <xsl:template match="inlinemediaobject|mediaobject">
    <xsl:apply-templates/>
  </xsl:template>
  
  <xsl:template match="imageobject">
    <img border="0" src="{imagedata/@fileref}" align="{imagedata/@align}"/>
  </xsl:template>
  
  <xsl:template match="caption">
    <center><xsl:apply-templates/></center>
  </xsl:template>



---------------------------------------------------------------------
JIRA INFORMATION:
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

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org