mirror of https://github.com/apache/ant-ivy
280 lines
9.2 KiB
XML
280 lines
9.2 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:template match="/ivy-module">
|
|
<xsl:variable name="repositories" select="/ivy-module/info/repository"/>
|
|
<xsl:variable name="ivyauthors" select="/ivy-module/info/ivyauthor"/>
|
|
<xsl:variable name="licenses" select="/ivy-module/info/license"/>
|
|
<xsl:variable name="configurations" select="/ivy-module/configurations"/>
|
|
<xsl:variable name="public.conf" select="$configurations/conf[not(@visibility) and not(@deprecated)] | $configurations/conf[@visibility='public' and not(@deprecated)]"/>
|
|
<xsl:variable name="deprecated.conf" select="configurations/conf[not(@visibility) and @deprecated] | configurations/conf[@visibility='public' and @deprecated]"/>
|
|
<xsl:variable name="private.conf" select="configurations/conf[@visibility='private']"/>
|
|
|
|
<xsl:variable name="artifacts" select="/ivy-module/publications/artifact"/>
|
|
<xsl:variable name="dependencies" select="/ivy-module/dependencies/dependency"/>
|
|
|
|
<html>
|
|
<head>
|
|
<title><xsl:value-of select="info/@module"/> by <xsl:value-of select="info/@organisation"/> :: Ivy description</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
|
|
<meta http-equiv="content-language" content="en" />
|
|
<meta name="robots" content="index,follow" />
|
|
<link rel="stylesheet" type="text/css" href="ivy-style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="logo"><a href="http://ivy.jayasoft.org/"><img src="http://ivy.jayasoft.org/logo.png"/></a><br/><a id="rep" href="http://ivyrep.jayasoft.org/">Ivy Repository</a></div>
|
|
<h1>
|
|
<span id="module">
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:value-of select="info/@organisation"/>/<xsl:value-of select="info/@module"/>/</xsl:attribute>
|
|
<xsl:value-of select="info/@module"/>
|
|
</xsl:element>
|
|
</span>
|
|
by
|
|
<span id="organisation">
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:value-of select="info/@organisation"/>/</xsl:attribute>
|
|
<xsl:value-of select="info/@organisation"/>
|
|
</xsl:element>
|
|
</span></h1>
|
|
<div id="revision"><span id="revision">Revision: </span><xsl:value-of select="info/@revision"/></div>
|
|
<table class="header">
|
|
<tr><td class="title">Status</td><td class="value"><xsl:value-of select="info/@status"/></td></tr>
|
|
<tr><td class="title">Home Page</td><td class="value">
|
|
<xsl:if test="info/description/@homepage">
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href"><xsl:value-of select="info/description/@homepage"/></xsl:attribute>
|
|
<xsl:value-of select="info/description/@homepage"/>
|
|
</xsl:element>
|
|
</xsl:if>
|
|
</td></tr>
|
|
<tr><td class="title">Licenses</td><td class="value">
|
|
<xsl:for-each select="$licenses">
|
|
<xsl:if test="@url">
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
|
|
<xsl:value-of select="@name"/>
|
|
</xsl:element>
|
|
</xsl:if>
|
|
<xsl:if test="not(@url)">
|
|
<xsl:value-of select="@name"/>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</td></tr>
|
|
<tr><td class="title">Ivy Authors</td><td class="value">
|
|
<xsl:for-each select="$ivyauthors">
|
|
<xsl:if test="@url">
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
|
|
<xsl:value-of select="@name"/>
|
|
</xsl:element>
|
|
</xsl:if>
|
|
<xsl:if test="not(@url)">
|
|
<xsl:value-of select="@name"/>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</td></tr>
|
|
<tr><td class="title">Description</td><td class="value"><xsl:copy-of select="info/description"/></td></tr>
|
|
</table>
|
|
|
|
<xsl:if test="count($repositories) > 0">
|
|
<div id="repositories">
|
|
<h2>Public Repositories</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Url</th>
|
|
<th>Pattern</th>
|
|
<th>Ivys</th>
|
|
<th>Artifacts</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:for-each select="$repositories">
|
|
<tr>
|
|
<td><xsl:value-of select="@name"/></td>
|
|
<td>
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
|
|
<xsl:value-of select="@url"/>
|
|
</xsl:element>
|
|
</td>
|
|
<td><xsl:value-of select="@pattern"/></td>
|
|
<td><xsl:value-of select="@ivys"/></td>
|
|
<td><xsl:value-of select="@artifacts"/></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</xsl:if>
|
|
|
|
<div id="public-confs" class="conf">
|
|
<h2>Public Configurations</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="conf-name">Name</th>
|
|
<th class="conf-desc">Description</th>
|
|
<th class="conf-extends">Extends</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:for-each select="$public.conf">
|
|
<tr>
|
|
<td><xsl:value-of select="@name"/></td>
|
|
<td><xsl:value-of select="@description"/></td>
|
|
<td><xsl:value-of select="@extends"/></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
<xsl:if test="count($public.conf) = 0">
|
|
<tr>
|
|
<td>default</td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</xsl:if>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<xsl:if test="count($deprecated.conf) > 0">
|
|
<div id="deprecated-confs" class="conf">
|
|
<h2>Deprecated Configurations</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="conf-name">Name</th>
|
|
<th class="conf-desc">Description</th>
|
|
<th class="conf-extends">Extends</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:for-each select="$deprecated.conf">
|
|
<tr>
|
|
<td><xsl:value-of select="@name"/></td>
|
|
<td><xsl:value-of select="@description"/></td>
|
|
<td><xsl:value-of select="@extends"/></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</xsl:if>
|
|
|
|
<xsl:if test="count($private.conf) > 0">
|
|
<div id="deprecated-confs" class="conf">
|
|
<h2>Private Configurations</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="conf-name">Name</th>
|
|
<th class="conf-desc">Description</th>
|
|
<th class="conf-extends">Extends</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:for-each select="$private.conf">
|
|
<tr>
|
|
<td><xsl:value-of select="@name"/></td>
|
|
<td><xsl:value-of select="@description"/></td>
|
|
<td><xsl:value-of select="@extends"/></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</xsl:if>
|
|
|
|
<div id="artifacts">
|
|
<h2>Published Artifacts</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="art-name">Name</th>
|
|
<th class="art-type">Type</th>
|
|
<th class="art-conf">Configurations</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:for-each select="$artifacts">
|
|
<tr>
|
|
<td><xsl:value-of select="@name"/></td>
|
|
<td><xsl:value-of select="@type"/></td>
|
|
<td>
|
|
<xsl:value-of select="@conf"/>
|
|
<xsl:for-each select="conf">
|
|
<xsl:if test="position() > 1">,
|
|
</xsl:if>
|
|
<xsl:value-of select="@name"/>
|
|
</xsl:for-each>
|
|
<xsl:if test="not(@conf) and count(conf) = 0">
|
|
<i>all</i>
|
|
</xsl:if>
|
|
</td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
<xsl:if test="count($artifacts) = 0">
|
|
<td><xsl:value-of select="info/@module"/></td>
|
|
<td>jar</td>
|
|
<td><i>all</i></td>
|
|
</xsl:if>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<xsl:if test="count($dependencies) > 0">
|
|
<div id="dependencies">
|
|
<h2>Dependencies</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th class="dep-org">Organisation</th>
|
|
<th class="dep-name">Name</th>
|
|
<th class="dep-rev">Revision</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:for-each select="$dependencies">
|
|
<tr>
|
|
<td><xsl:if test="not(@org)"><xsl:value-of select="/ivy-module/info/@organisation"/></xsl:if><xsl:value-of select="@org"/></td>
|
|
<td>
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href">http://ivyrep.jayasoft.org/<xsl:if test="not(@org)"><xsl:value-of select="/ivy-module/info/@organisation"/></xsl:if><xsl:value-of select="@org"/>/<xsl:value-of select="@name"/>/ivy-<xsl:value-of select="@rev"/>.xml</xsl:attribute>
|
|
<xsl:value-of select="@name"/>
|
|
</xsl:element>
|
|
</td>
|
|
<td><xsl:value-of select="@rev"/></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</xsl:if>
|
|
|
|
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|