Project

Profile

Help

Creating a Web photo album

Added by Anonymous over 18 years ago

Legacy ID: #3464284 Legacy Poster: TruusLee (truuslee)

I want to create a xslt file that can make a photoalbum with "previous" and "next" buttons. This is part of my xmlfile: <section> <title>Foto 01</title> <picture>01.jpg</picture> </section> <section> <title>Foto 02</title> <picture>02.jpg</picture> </section> and this is part of my xsltfile: <xsl:template match="/"> <xsl:for-each select="//section/section" > <xsl:variable name="number"> <xsl:number format="1_1_1_1_1_1_1" count="section" level="multiple" /> </xsl:variable> <xsl:result-document href="page{$number}.html"> <html> <head> <style type="text/css"> @import url("style.css"); </style> </head> <body> etc...


Replies (1)

RE: Creating a Web photo album - Added by Anonymous over 18 years ago

Legacy ID: #3465339 Legacy Poster: Michael Kay (mhkay)

This list is for Saxon-specific problems, not for general XSLT programming help. Please use the xsl-list at www.mulberrytech.com. I suggest that rather than simply saying what you want to achieve, you try to explain what part of the problem you are having difficulty with. Michael Kay

    (1-1/1)

    Please register to reply