docbook-apps

Expand all | Collapse all

Turn off draft mode in selected sections

  • 1.  Turn off draft mode in selected sections

    Posted 04-05-2008 00:41
    In the DocBook stylesheet tutorial at
    http://docbook.sourceforge.net/release/xsl/current/doc/fo/draft.mode.html
    it says that:
    "individual sections will be treated as draft or final
    independently, depending on how their status attribute is set.
    "

    What are the legal values of the status attribute?

    I tried <chapter status="draft"> and that particular chapter
    had the draft watermark, etc, and the rest of the document
    did not. I want the exact opposite, .i.e., I want the book
    to be in draft mode by default, with selected sections in
    "final" mode.

    I only want this because I observed that when draft mode is on,
    the PDF does not have any images except the draft watermark.
    I thought that something like the following might work:

    <book status="draft">


  • 2.  Re: [docbook-apps] Turn off draft mode in selected sections

    Posted 04-07-2008 15:44



  • 3.  Customizing admonitions

    Posted 04-23-2008 08:47
    Hello,

    How could I control the admonition's "title" element in order to print it at
    the beginning of the first line of the admonition's <para> (like
    <formalpara> behaviour)? I mean, I'd like to change the default behaviour
    for "title" and I don't want it on a separate initial line.

    On the other hand, in case of keeping the default behaviour for "title": How
    could I control the space between the title's line and the first line for
    <para>? I get an extra line in between.

    Thank you very much.
    Pedro

    No virus found in this outgoing message.
    Checked by AVG.
    Version: 7.5.524 / Virus Database: 269.23.3/1392 - Release Date: 22/04/2008
    15:51





  • 4.  RE: [docbook-apps] Customizing admonitions

    Posted 04-23-2008 22:03
    Sorry, I forgot to mention the customization is for the PDF output.

    Regards,
    Pedro

    -----Mensaje original-----
    De: Pedro Pastor [mailto:pps@dlsi.ua.es]
    Enviado el: miércoles, 23 de abril de 2008 10:47
    Para: docbook-apps@lists.oasis-open.org
    CC: 'Pedro Pastor'
    Asunto: [docbook-apps] Customizing admonitions

    Hello,

    How could I control the admonition's "title" element in order to print it at
    the beginning of the first line of the admonition's <para> (like
    <formalpara> behaviour)? I mean, I'd like to change the default behaviour
    for "title" and I don't want it on a separate initial line.

    On the other hand, in case of keeping the default behaviour for "title": How
    could I control the space between the title's line and the first line for
    <para>? I get an extra line in between.

    Thank you very much.
    Pedro

    No virus found in this outgoing message.
    Checked by AVG.
    Version: 7.5.524 / Virus Database: 269.23.3/1392 - Release Date: 22/04/2008
    15:51



    ---------------------------------------------------------------------
    To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
    For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org

    No virus found in this incoming message.
    Checked by AVG.
    Version: 7.5.524 / Virus Database: 269.23.3/1392 - Release Date: 22/04/2008
    15:51


    No virus found in this outgoing message.
    Checked by AVG.
    Version: 7.5.524 / Virus Database: 269.23.3/1392 - Release Date: 22/04/2008
    15:51





  • 5.  RE: [docbook-apps] Customizing admonitions

    Posted 04-23-2008 22:04
    Sorry, I forgot to mention the customization is for the PDF output.

    Regards,
    Pedro

    -----Mensaje original-----
    De: Pedro Pastor [mailto:pps@dlsi.ua.es]
    Enviado el: miércoles, 23 de abril de 2008 10:47
    Para: docbook-apps@lists.oasis-open.org
    CC: 'Pedro Pastor'
    Asunto: [docbook-apps] Customizing admonitions

    Hello,

    How could I control the admonition's "title" element in order to print it at
    the beginning of the first line of the admonition's <para> (like
    <formalpara> behaviour)? I mean, I'd like to change the default behaviour
    for "title" and I don't want it on a separate initial line.

    On the other hand, in case of keeping the default behaviour for "title": How
    could I control the space between the title's line and the first line for
    <para>? I get an extra line in between.

    Thank you very much.
    Pedro

    No virus found in this outgoing message.
    Checked by AVG.
    Version: 7.5.524 / Virus Database: 269.23.3/1392 - Release Date: 22/04/2008
    15:51



    ---------------------------------------------------------------------
    To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
    For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org

    No virus found in this incoming message.
    Checked by AVG.
    Version: 7.5.524 / Virus Database: 269.23.3/1392 - Release Date: 22/04/2008
    15:51


    No virus found in this outgoing message.
    Checked by AVG.
    Version: 7.5.524 / Virus Database: 269.23.3/1392 - Release Date: 22/04/2008
    15:51





  • 6.  Re: [docbook-apps] Customizing admonitions

    Posted 04-25-2008 05:57
    Hi,
    The first customization is a bit more complicated, because the content model
    of an admonition permits many kinds of elements besides para to be the first
    child of note. A customization has to take that into account. Then you
    have to turn off the normal admon title template, and have the first para
    template process the content of title as an inline rather than a block.

    The second solution to control the title spacing is much easier. There are
    three attribute-sets that apply when using the nongraphical admonitions:

    - nongraphical.admonition.properties, which is applied to the outer fo:block
    containing the whole thing.

    - admonition.title.properties, which is applied to the title fo:block inside
    the outer block.

    - admonition.properties, which is applied to the block containing all the
    other children of the admonition element.

    If you look at the admonition.title.properties in fo/param.xsl, you will see
    that it has no spacing attributes. It turns out that the space before the
    admon para comes from processing the para element, which applies the
    normal.para.spacing attribute-set. You could write a custom template to
    match only on the first para inside an admon, and that custom template could
    omit the reference to normal.para.spacing.

    Or you could add zero space-after properties to admon.title.properties, and
    add a precedence of "force" to override the para spacing:

    <xsl:attribute-set name="admonition.title.properties">
    <xsl:attribute name="space-after.optimum">0pt</xsl:attribute>
    <xsl:attribute name="space-after.minimum">0pt</xsl:attribute>
    <xsl:attribute name="space-after.maximum">0pt</xsl:attribute>
    <xsl:attribute name="space-after.precedence">force</xsl:attribute>
    </xsl:attribute-set>


    Bob Stayton
    Sagehill Enterprises
    bobs@sagehill.net





  • 7.  RE: [docbook-apps] Customizing admonitions

    Posted 04-25-2008 07:56

    Thank you very much Bob for your explanation.

    I would appreciate if someone who have already done such an "advance"
    customization for the admonition's title would be so kind to share it.

    Regards,
    Pedro

    -----Mensaje original-----
    De: Bob Stayton [mailto:bobs@sagehill.net]
    Enviado el: viernes, 25 de abril de 2008 7:57
    Para: Pedro Pastor; docbook-apps@lists.oasis-open.org
    CC: 'Pedro Pastor'
    Asunto: Re: [docbook-apps] Customizing admonitions

    Hi,
    The first customization is a bit more complicated, because the content model
    of an admonition permits many kinds of elements besides para to be the first
    child of note. A customization has to take that into account. Then you
    have to turn off the normal admon title template, and have the first para
    template process the content of title as an inline rather than a block.

    The second solution to control the title spacing is much easier. There are
    three attribute-sets that apply when using the nongraphical admonitions:

    - nongraphical.admonition.properties, which is applied to the outer fo:block
    containing the whole thing.

    - admonition.title.properties, which is applied to the title fo:block inside
    the outer block.

    - admonition.properties, which is applied to the block containing all the
    other children of the admonition element.

    If you look at the admonition.title.properties in fo/param.xsl, you will see
    that it has no spacing attributes. It turns out that the space before the
    admon para comes from processing the para element, which applies the
    normal.para.spacing attribute-set. You could write a custom template to
    match only on the first para inside an admon, and that custom template could
    omit the reference to normal.para.spacing.

    Or you could add zero space-after properties to admon.title.properties, and
    add a precedence of "force" to override the para spacing:

    <xsl:attribute-set name="admonition.title.properties">
    <xsl:attribute name="space-after.optimum">0pt</xsl:attribute>
    <xsl:attribute name="space-after.minimum">0pt</xsl:attribute>
    <xsl:attribute name="space-after.maximum">0pt</xsl:attribute>
    <xsl:attribute name="space-after.precedence">force</xsl:attribute>
    </xsl:attribute-set>


    Bob Stayton
    Sagehill Enterprises
    bobs@sagehill.net





  • 8.  SVG admonitions for browsers.

    Posted 03-24-2010 15:44
    I'm generating HTML out of docbook and SVG admonitions are generated as . This causes the Firefox to not render the svg.

    Is there a way to generated svg admonitions like it did for <mediaobject>?

    Xuan.


    __________________________________________________________________
    Looking for the perfect gift? Give the gift of Flickr!

    http://www.flickr.com/gift/




  • 9.  RE: [docbook-apps] SVG admonitions for browsers.

    Posted 03-24-2010 15:54
    Hi,

    To generate image object with docbook, test with :

    <mediaobject>
    <imageobject>
    <imagedata fileref="img/my_image.svg" format="SVG"/>
    </imageobject>
    </mediaobject>

    Does it work ?

    Cordialement,

    ____________________________________________
    Christopher COMPAGNON
    AXA GROUP SOLUTIONS - Procurement, BI Supply
    Département Solutions Business Intelligence
    Domaine BI France - Reporting Opérationnel
    ( 01 44 45 04 16 (55 04 16)
    E-mail: christopher.compagnon.alti@axa-groupsolutions.com
    ____________________________________________
    Pensez à l'environnement avant d'imprimer ce message


    -----Message d'origine-----
    De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]
    Envoyé : mercredi 24 mars 2010 16:44
    À : Docbook Appz
    Objet : [docbook-apps] SVG admonitions for browsers.

    I'm generating HTML out of docbook and SVG admonitions are generated as . This causes the Firefox to not render the svg.

    Is there a way to generated svg admonitions like it did for <mediaobject>?

    Xuan.


    __________________________________________________________________
    Looking for the perfect gift? Give the gift of Flickr!

    http://www.flickr.com/gift/


    ---------------------------------------------------------------------
    To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
    For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org




  • 10.  RE: [docbook-apps] SVG admonitions for browsers.

    Posted 03-24-2010 18:39
    Sorry, maybe I wasn't clear.
    When I was referring to admonitions, I was referring to <warning>, <note> and <tip> tags.

    I know that by using <mediaobject>, it works correctly with Firefox. I want <warning>, <note> and <tip> tags to appear in Firefox as SVG.

    How would I do that?

    Xuan.


    --- On Wed, 3/24/10, Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com> wrote:

    > From: Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com>
    > Subject: RE: [docbook-apps] SVG admonitions for browsers.
    > To: "Xuan Ngo" <xuanngolist@yahoo.ca>, "Docbook Appz" <docbook-apps@lists.oasis-open.org>
    > Received: Wednesday, March 24, 2010, 11:54 AM
    > Hi,
    >
    > To generate image object with docbook, test with :
    >
    > <mediaobject>
    > <imageobject>
    > <imagedata fileref="img/my_image.svg" format="SVG"/>
    > </imageobject>
    > </mediaobject>
    >
    > Does it work ?
    >
    > Cordialement,
    >
    > ____________________________________________
    > Christopher COMPAGNON
    > AXA GROUP SOLUTIONS - Procurement, BI Supply
    > Département Solutions Business Intelligence
    > Domaine BI France - Reporting Opérationnel
    > (  01 44 45 04 16 (55 04 16)
    > E-mail: christopher.compagnon.alti@axa-groupsolutions.com
    > ____________________________________________
    > Pensez à l'environnement avant d'imprimer ce message
    >
    >
    > -----Message d'origine-----
    > De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]
    >
    > Envoyé : mercredi 24 mars 2010 16:44
    > À : Docbook Appz
    > Objet : [docbook-apps] SVG admonitions for browsers.
    >
    > I'm generating HTML out of docbook and SVG admonitions are
    > generated as . This causes the Firefox to not
    > render the svg.
    >
    > Is there a way to generated svg admonitions like it did for
    > <mediaobject>?
    >
    > Xuan.
    >
    >
    >      
    > __________________________________________________________________
    > Looking for the perfect gift? Give the gift of Flickr!
    >
    > http://www.flickr.com/gift/
    >
    >
    > ---------------------------------------------------------------------
    > To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
    > For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org
    >
    >


    __________________________________________________________________
    Make your browsing faster, safer, and easier with the new Internet Explorer® 8. Optimized for Yahoo! Get it Now for Free! at http://downloads.yahoo.com/ca/internetexplorer/




  • 11.  RE: [docbook-apps] SVG admonitions for browsers.

    Posted 03-25-2010 15:14
    Do you use the parameters :

    admon.textlabel
    admon.graphics.extension
    and admon.graphics.path ?



    Cordialement,

    ____________________________________________
    Christopher COMPAGNON
    AXA GROUP SOLUTIONS - Procurement, BI Supply
    Département Solutions Business Intelligence
    Domaine BI France - Reporting Opérationnel
    ( 01 44 45 04 16 (55 04 16)
    E-mail: christopher.compagnon.alti@axa-groupsolutions.com
    ____________________________________________
    Pensez à l'environnement avant d'imprimer ce message


    -----Message d'origine-----
    De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]
    Envoyé : mercredi 24 mars 2010 19:39
    À : Docbook Appz; Compagnon Christopher
    Objet : RE: [docbook-apps] SVG admonitions for browsers.

    Sorry, maybe I wasn't clear.
    When I was referring to admonitions, I was referring to <warning>, <note> and <tip> tags.

    I know that by using <mediaobject>, it works correctly with Firefox. I want <warning>, <note> and <tip> tags to appear in Firefox as SVG.

    How would I do that?

    Xuan.


    --- On Wed, 3/24/10, Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com> wrote:

    > From: Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com>
    > Subject: RE: [docbook-apps] SVG admonitions for browsers.
    > To: "Xuan Ngo" <xuanngolist@yahoo.ca>, "Docbook Appz" <docbook-apps@lists.oasis-open.org>
    > Received: Wednesday, March 24, 2010, 11:54 AM
    > Hi,
    >
    > To generate image object with docbook, test with :
    >
    > <mediaobject>
    > <imageobject>
    > <imagedata fileref="img/my_image.svg" format="SVG"/>
    > </imageobject>
    > </mediaobject>
    >
    > Does it work ?
    >
    > Cordialement,
    >
    > ____________________________________________
    > Christopher COMPAGNON
    > AXA GROUP SOLUTIONS - Procurement, BI Supply
    > Département Solutions Business Intelligence
    > Domaine BI France - Reporting Opérationnel
    > (  01 44 45 04 16 (55 04 16)
    > E-mail: christopher.compagnon.alti@axa-groupsolutions.com
    > ____________________________________________
    > Pensez à l'environnement avant d'imprimer ce message
    >
    >
    > -----Message d'origine-----
    > De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]
    >
    > Envoyé : mercredi 24 mars 2010 16:44
    > À : Docbook Appz
    > Objet : [docbook-apps] SVG admonitions for browsers.
    >
    > I'm generating HTML out of docbook and SVG admonitions are
    > generated as . This causes the Firefox to not
    > render the svg.
    >
    > Is there a way to generated svg admonitions like it did for
    > <mediaobject>?
    >
    > Xuan.
    >
    >
    >      
    > __________________________________________________________________
    > Looking for the perfect gift? Give the gift of Flickr!
    >
    > http://www.flickr.com/gift/
    >
    >
    > ---------------------------------------------------------------------
    > To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org
    > For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org
    >
    >


    __________________________________________________________________
    Make your browsing faster, safer, and easier with the new Internet Explorer® 8. Optimized for Yahoo! Get it Now for Free! at http://downloads.yahoo.com/ca/internetexplorer/




  • 12.  RE: [docbook-apps] SVG admonitions for browsers.

    Posted 03-25-2010 15:48
    In your param.xsl file, copy and modify the following lines :



    <xsl:param name="admon.graphics.extension">.png</xsl:param>

    <xsl:param name="admon.graphics" select="0"/>

    <xsl:param name="admon.graphics.path">images/</xsl:param>

    <xsl:param name="admon.textlabel" select="1"/>



    to

    <xsl:param name="admon.graphics.extension">.svg</xsl:param>

    <xsl:param name="admon.graphics" select="1"/>

    <xsl:param name="admon.graphics.path">images/</xsl:param> (default images/ or your_path/ )

    <xsl:param name="admon.textlabel" select="1"/>









    Cordialement,



    ____________________________________________

    Christopher COMPAGNON

    AXA GROUP SOLUTIONS - Procurement, BI Supply

    Département Solutions Business Intelligence

    Domaine BI France - Reporting Opérationnel

    ( 01 44 45 04 16 (55 04 16)

    E-mail: christopher.compagnon.alti@axa-groupsolutions.com

    ____________________________________________

    Pensez à l'environnement avant d'imprimer ce message





    -----Message d'origine-----
    De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]
    Envoyé : mercredi 24 mars 2010 19:39
    À : Docbook Appz; Compagnon Christopher
    Objet : RE: [docbook-apps] SVG admonitions for browsers.



    Sorry, maybe I wasn't clear.

    When I was referring to admonitions, I was referring to <warning>, <note> and <tip> tags.



    I know that by using <mediaobject>, it works correctly with Firefox. I want <warning>, <note> and <tip> tags to appear in Firefox as SVG.



    How would I do that?



    Xuan.





    --- On Wed, 3/24/10, Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com> wrote:



    > From: Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com>

    > Subject: RE: [docbook-apps] SVG admonitions for browsers.

    > To: "Xuan Ngo" <xuanngolist@yahoo.ca>, "Docbook Appz" <docbook-apps@lists.oasis-open.org>

    > Received: Wednesday, March 24, 2010, 11:54 AM

    > Hi,

    >

    > To generate image object with docbook, test with :

    >

    > <mediaobject>

    > <imageobject>

    > <imagedata fileref="img/my_image.svg" format="SVG"/>

    > </imageobject>

    > </mediaobject>

    >

    > Does it work ?

    >

    > Cordialement,

    >

    > ____________________________________________

    > Christopher COMPAGNON

    > AXA GROUP SOLUTIONS - Procurement, BI Supply

    > Département Solutions Business Intelligence

    > Domaine BI France - Reporting Opérationnel

    > ( 01 44 45 04 16 (55 04 16)

    > E-mail: christopher.compagnon.alti@axa-groupsolutions.com

    > ____________________________________________

    > Pensez à l'environnement avant d'imprimer ce message

    >

    >

    > -----Message d'origine-----

    > De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]

    >

    > Envoyé : mercredi 24 mars 2010 16:44

    > À : Docbook Appz

    > Objet : [docbook-apps] SVG admonitions for browsers.

    >

    > I'm generating HTML out of docbook and SVG admonitions are

    > generated as . This causes the Firefox to not

    > render the svg.

    >

    > Is there a way to generated svg admonitions like it did for

    > <mediaobject>?

    >

    > Xuan.

    >

    >

    >

    > __________________________________________________________________

    > Looking for the perfect gift? Give the gift of Flickr!

    >

    > http://www.flickr.com/gift/

    >

    >

    > ---------------------------------------------------------------------

    > To unsubscribe, e-mail: docbook-apps-unsubscribe@lists.oasis-open.org

    > For additional commands, e-mail: docbook-apps-help@lists.oasis-open.org

    >

    >





    __________________________________________________________________

    Make your browsing faster, safer, and easier with the new Internet Explorer® 8. Optimized for Yahoo! Get it Now for Free! at http://downloads.yahoo.com/ca/internetexplorer/






  • 13.  RE: [docbook-apps] SVG admonitions for browsers.

    Posted 03-25-2010 18:13
    Yes, I did use all these parameters.
    The issues is they all render as follows:
    [Warning]

    Because it generates tag, Firefox doesn't display the image.

    Xuan.

    --- On Thu, 3/25/10, Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com> wrote:

    From: Compagnon Christopher <christopher.compagnon.alti@axa-groupsolutions.com>
    Subject: RE: [docbook-apps] SVG admonitions for browsers.
    To: "Xuan Ngo" <xuanngolist@yahoo.ca>, "Docbook Appz" <docbook-apps@lists.oasis-open.org>
    Received: Thursday, March 25, 2010, 11:48 AM












    In your param.xsl file,
    copy and modify the following lines :

     

    <xsl:param
    name="admon.graphics.extension">.png</xsl:param>

    <xsl:param name="admon.graphics" select="0"/>

    <xsl:param
    name="admon.graphics.path">images/</xsl:param>

    <xsl:param name="admon.textlabel"
    select="1"/>

     

    to

    <xsl:param name="admon.graphics.extension">.svg</xsl:param>

    <xsl:param name="admon.graphics" select="1"/>

    <xsl:param
    name="admon.graphics.path">images/</xsl:param> (default images/ or your_path/ )

    <xsl:param name="admon.textlabel"
    select="1"/>

     

     

     

     

    Cordialement,

     

    ____________________________________________

    Christopher COMPAGNON

    AXA GROUP SOLUTIONS - Procurement, BI Supply

    Département Solutions Business Intelligence

    Domaine BI France - Reporting Opérationnel

    (  01 44 45 04 16 (55 04 16)

    E-mail: christopher.compagnon.alti@axa-groupsolutions.com

    ____________________________________________

    Pensez à l'environnement avant d'imprimer ce message

     

     

    -----Message d'origine-----

    De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]

    Envoyé : mercredi 24 mars 2010 19:39

    À : Docbook Appz; Compagnon Christopher

    Objet : RE: [docbook-apps] SVG admonitions for browsers.

     

    Sorry, maybe I wasn't clear.

    When I was referring to admonitions, I was referring to
    <warning>, <note> and <tip> tags.

     

    I know that by using <mediaobject>, it works correctly with
    Firefox. I want  <warning>, <note> and <tip> tags to appear
    in Firefox as SVG.

     

    How would I do that?

     

    Xuan.

     

     

    --- On Wed, 3/24/10, Compagnon Christopher
    <christopher.compagnon.alti@axa-groupsolutions.com> wrote:

     

    > From: Compagnon Christopher
    <christopher.compagnon.alti@axa-groupsolutions.com>

    > Subject: RE: [docbook-apps] SVG admonitions for browsers.

    > To: "Xuan Ngo" <xuanngolist@yahoo.ca>,
    "Docbook Appz" <docbook-apps@lists.oasis-open.org>

    > Received: Wednesday, March 24, 2010, 11:54 AM

    > Hi,

    >

    > To generate image object with docbook, test with :

    >

    > <mediaobject>

    > <imageobject>

    > <imagedata fileref="img/my_image.svg"
    format="SVG"/>

    > </imageobject>

    > </mediaobject>

    >

    > Does it work ?

    >

    > Cordialement,

    >

    > ____________________________________________

    > Christopher COMPAGNON

    > AXA GROUP SOLUTIONS - Procurement, BI Supply

    > Département Solutions Business Intelligence

    > Domaine BI France - Reporting Opérationnel

    > (  01 44 45 04 16 (55 04 16)

    > E-mail: christopher.compagnon.alti@axa-groupsolutions.com

    > ____________________________________________

    > Pensez à l'environnement avant d'imprimer ce message



    >

    > -----Message d'origine-----

    > De : Xuan Ngo [mailto:xuanngolist@yahoo.ca]

    >

    > Envoyé : mercredi 24 mars 2010 16:44

    > À : Docbook Appz

    > Objet : [docbook-apps] SVG admonitions for browsers.

    >

    > I'm generating HTML out of docbook and SVG admonitions are

    > generated as . This causes the Firefox to not

    > render the svg.

    >

    > Is there a way to generated svg admonitions like it did for

    > <mediaobject>?

    >

    > Xuan.

    >

    >

    >      

    > __________________________________________________________________

    > Looking for the perfect gift? Give the gift of Flickr!

    >

    > http://www.flickr.com/gift/

    >

    >

    >
    ---------------------------------------------------------------------

    > To unsubscribe, e-mail:
    docbook-apps-unsubscribe@lists.oasis-open.org

    > For additional commands, e-mail:
    docbook-apps-help@lists.oasis-open.org

    >

    >

     

     

          __________________________________________________________________

    Make your browsing faster, safer, and easier with the new Internet
    Explorer® 8. Optimized for Yahoo! Get it Now for Free! at
    http://downloads.yahoo.com/ca/internetexplorer/

     








    __________________________________________________________________
    Looking for the perfect gift? Give the gift of Flickr!

    http://www.flickr.com/gift/