aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'index.xsl')
-rw-r--r--index.xsl41
1 files changed, 41 insertions, 0 deletions
diff --git a/index.xsl b/index.xsl
new file mode 100644
index 0000000..3bffdfd
--- /dev/null
+++ b/index.xsl
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+ <xsl:template match="/ipm_package_data">
+ <HTML>
+ <HEAD>
+ <TITLE>IPM PACKAGE SERVER</TITLE>
+ </HEAD>
+ <BODY bgcolor="white" text="navy">
+ <H1>INFINI RULE PACKAGES</H1>
+ <P>IPM has built-in support for dozens of packages and collections, as listed below.
+ To use these within IPM/INFINI we recommend that you use the IPM <TT>&gt;&gt;&gt;
+ ipm add</TT> command.</P>
+ <P>Please consult the README file included with each
+ packages for further information.</P>
+ <OL>
+ <xsl:for-each select="//packages/package">
+ <LI><I>
+ <xsl:value-of select="@name" />
+ </I> [<xsl:element
+ name="a">
+ <xsl:attribute name="href">
+ <xsl:value-of select="@url" />
+ </xsl:attribute>
+ download </xsl:element> |<xsl:element name="a">
+ <xsl:attribute name="href">
+ <xsl:value-of select="@webpage" />
+ </xsl:attribute>
+ source </xsl:element>] <BR /> id: <tt>
+ <xsl:value-of select="@id" />
+ </tt>;
+ size: <xsl:value-of select="@size" />; author: <xsl:value-of select="@author" />; copyright: <xsl:value-of
+ select="@copyright" />; license: <xsl:value-of select="@license" />; <P />
+ </LI>
+ </xsl:for-each>
+ </OL>
+ <HR />
+ <A href="http://ipm.hydroroll.team/index">IPM PACKAGE SERVER</A>
+ </BODY>
+ </HTML>
+ </xsl:template>
+</xsl:stylesheet> \ No newline at end of file