List all authors when license is requested

(Not just recent authors.)
This commit is contained in:
Mukund Sivaraman 2010-01-19 19:04:39 +05:30
parent e11a01f0b1
commit b08420ec13
2 changed files with 5 additions and 1 deletions

View File

@ -6,13 +6,17 @@
static const char * const authors[] =
{
"Andrew Stribblehill",
"Chris Lightfoot",
"David Shanks",
"George Talusan",
"James E. Flemer",
"Jeremy Hinegardner",
"Kim Holviala",
"Mathew Mrosko",
"Matthew Dempsky",
"Michael Adam",
"Mukund Sivaraman",
"Petr Lampa",
"Robert James Kaes",
"Steven Young",
NULL

View File

@ -15,7 +15,7 @@
<xsl:template name="recent-contributor">
<xsl:param name="role" />
<xsl:apply-templates select="dc:contributor[contains(@role, $role) and number(@last-active) > 1.6]" />
<xsl:apply-templates select="dc:contributor[contains(@role, $role)]" />
</xsl:template>
<xsl:template match="/dc:authors">