Re: [xsl] xsltproc multiple file output

Subject: Re: [xsl] xsltproc multiple file output
From: S Woodside <sbwoodside@xxxxxxxxx>
Date: Thu, 15 May 2003 00:33:42 -0400
for multiple file output check out EXSLT. The common: document() function in EXSLT is supported by libxslt/xsltproc.

simon

On Wednesday, May 14, 2003, at 11:49 PM, David Pratt wrote:

I have a file with several figures. I want to output each as a separate html file from a single xml file and single xsl file using xsltproc. I am wanting to title the name of each file with the fileref minus the extension ie. first_figure.jpg page is first_figure.html. Is this possible?

    <figure>
      <title>title of first figure</title>
      <mediaobject>
        <imageobject>
          <imagedata fileref="first_figure.jpg"
                     format="JPG" />
        </imageobject>
        <caption>
          <para>This would be the first figure</para>
        </caption>
      </mediaobject>
    </figure>
    <figure>
      <title>title of second figure</title>
      <mediaobject>
        <imageobject>
          <imagedata fileref="second_figure.jpg"
                     format="JPG" />
        </imageobject>
        <caption>
          <para>This would be the second figure</para>
        </caption>
      </mediaobject>
    </figure>


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list




-- anti-spam: do not post this address publicly www.simonwoodside.com -- 99% Devil, 1% Angel


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread