Code Search for Developers
 
 
  

album.xsl from Jajuk at Krugle


Show album.xsl syntax highlighted

<?xml version='1.0' encoding='UTF-8'?>

<!-- 
	Description: This XSLT transforms a xml file containing the tagging of an album into an html file.
	Author: The Jajuk Team
	Created: August 23, 2006
-->

<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
	version='1.0'>
	<xsl:template match='/'>
		<xsl:output method='xml' doctype-system='http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd' doctype-public='-//W3C//DTD XHTML 1.0 Strict//EN'/> 
		<html xmlns="http://www.w3.org/1999/xhtml">
			<head>
				<meta http-equiv="Content-Type"
					content="text/html; charset=utf-8" />
				<title>Jajuk Music Report</title>
				<link rel="stylesheet" href="report-all.css" type="text/css" media="all"/>
				<link rel="stylesheet" href="report-print.css" type="text/css" media="print"/>
			</head>
			<body>
				<h1>
					<xsl:value-of
						select='/collection/i18n/ReportAction.1' />
				</h1>

    			<p class="notice">
						<xsl:value-of
							select='/collection/i18n/ReportAction.2' />
				</p>
				<ul class="jumpto">
					<li class='.jumpto li'><xsl:value-of
								select='/collection/i18n/ReportAction.19' /></li>
					<li><a href="#a1"><xsl:value-of
								select='/collection/i18n/ReportAction.3' /></a></li>
					<li><a href="#a2"><xsl:value-of
								select='/collection/i18n/ReportAction.4' /></a></li>
    			</ul>
					<h2 id='a1'>
						<xsl:value-of
							select='/collection/i18n/ReportAction.3' />
					</h2>
					<xsl:apply-templates select='collection' />
					<h2 id='a2'>
						<xsl:value-of
							select='/collection/i18n/ReportAction.4' />
					</h2>
					<xsl:apply-templates select='collection/album' />
			</body>
		</html>
	</xsl:template>

	<xsl:template match='collection'>
		<table border='0' cellspacing='5'>
			<tr>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.name' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.author' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.year' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.style' />
				</th>
			</tr>
			<xsl:for-each select='album'>
				<tr>
					<xsl:variable name='id' select='id' />
					<td width='50%'>
						<a href='#a{id}'>
							<xsl:value-of select='name' />
						</a>
					</td>
					<td width='30%'>
						<xsl:value-of select='author' />
					</td>
					<td width='5%'>
						<xsl:value-of select='year' />
					</td>
					<td width='15%'>
						<xsl:value-of select='style' />
					</td>
				</tr>
			</xsl:for-each>
		</table>
	</xsl:template>


	<xsl:template match='collection/album'>
		<xsl:variable name='id' select='id' />
			<h3 id='a{id}'>
				<xsl:value-of select='name' />
				(
				<xsl:value-of select='author' />
				)
			</h3>
		<table border='0' cellspacing='5'>
			<tr>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.order' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.track' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.album' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.author' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.style' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.length' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.rate' />
				</th>
				<th>
					<xsl:value-of
						select='/collection/i18n/ReportAction.comment' />
				</th>
			</tr>

			<xsl:for-each select='track'>
				<tr>
					<td width='5%'>
						<xsl:value-of select='order' />
					</td>
					<td width='20%'>
						<xsl:value-of select='name' />
					</td>
					<td width='10%'>
						<xsl:value-of select='album' />
					</td>
					<td width='10%'>
						<xsl:value-of select='author' />
					</td>
					<td width='10%'>
						<xsl:value-of select='style' />
					</td>
					<td width='10%'>
						<xsl:value-of select='length' />
					</td>
					<td width='5%'>
						<xsl:value-of select='rate' />
					</td>
					<td>
						<xsl:value-of select='comment' />
					</td>
				</tr>
			</xsl:for-each>
		</table>
	</xsl:template>
</xsl:stylesheet>



See more files for this project here

Jajuk

Jajuk is a jukebox for all platforms. The main goal of this project is to provide a fully-featured application to advanced users with large or scattered music collections.

Project homepage: http://sourceforge.net/projects/jajuk
Programming language(s): Java,XML
License: other

  album.xsl
  author.xsl
  device.xsl
  directory.xsl
  logical_collection.xsl
  report-all.css
  report-print.css
  style.xsl