[java-idp-plugin-mgmt] branch main updated: Commit the XSLT for the status page.
Scott Cantor
cantor.2 at osu.edu
Fri May 17 16:57:28 UTC 2024
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-plugin-mgmt.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-mgmt.git;a=commit;h=3ae6a238991724aa399c193ae285ff522c761bb6
The following commit(s) were added to refs/heads/main by this push:
new 3ae6a23 Commit the XSLT for the status page.
3ae6a23 is described below
commit 3ae6a238991724aa399c193ae285ff522c761bb6
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri May 17 12:57:24 2024 -0400
Commit the XSLT for the status page.
---
projstatus.xsl | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/projstatus.xsl b/projstatus.xsl
new file mode 100644
index 0000000..fdfe02a
--- /dev/null
+++ b/projstatus.xsl
@@ -0,0 +1,45 @@
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+ <xsl:template match="/">
+ <html>
+ <head>
+ <title>Status of Identity Provider and Plugin Projects</title>
+ </head>
+ <body>
+ <h3>Status of Identity Provider and Plugin Projects</h3>
+
+ <table border="1">
+ <tr>
+ <th>Name</th>
+ <th>Previous Stable</th>
+ <th>Previous Snapshot</th>
+ <th>Current Stable</th>
+ <th>Current Snapshot</th>
+ <th>Status</th></tr>
+ <xsl:apply-templates/>
+ </table>
+
+ <h3>Status Key for Snapshots</h3>
+ <dl>
+ <dt>Stable</dt>
+ <dd>No material changes since last release other than bug fixes, if any.</dd>
+ <dt>Unstable</dt>
+ <dd>Substantial changes that are in flux or have received limiting testing.</dd>
+ <dt>Alpha/Beta/Release Candidate</dt>
+ <dd>What you would expect from these terms in terms of stability.</dd>
+ </dl>
+ </body>
+ </html>
+ </xsl:template>
+
+ <xsl:template match="project">
+ <tr>
+ <td><xsl:value-of select="name/text()"/></td>
+ <td><a href="{previous/relurl/text()}"><xsl:value-of select="previous/relversion/text()"/></a></td>
+ <td><a href="{previous/snapurl/text()}"><xsl:value-of select="previous/snapversion/text()"/></a></td>
+ <td><a href="{current/relurl/text()}"><xsl:value-of select="current/relversion/text()"/></a></td>
+ <td><a href="{current/snapurl/text()}"><xsl:value-of select="current/snapversion/text()"/></a></td>
+ <td><xsl:value-of select="status/text()"/></td>
+ </tr>
+ </xsl:template>
+</xsl:stylesheet>
+
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list