Separated out inactive project to their own list.

svn path=/trunk/; revision=8746
This commit is contained in:
Reinhard Müller 2007-08-22 19:53:43 +00:00
parent 1ff4773d6e
commit 1b88539033
19 changed files with 121 additions and 44 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<projectset>
<project date="2003-01-02" status="dormant">
<project date="2003-01-02" status="inactive">
<title>Ensenyament</title>
<description>
L'objectiu del projecte d'ensenyament és l'avanç del Programari Lliure en totes

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-01-02" status="dormant">
<project date="2003-01-02" status="inactive">
<title>Bildung</title>
<description>
Das Ziel des Projektes Bildung ist die Förderung Freier Software in

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-01-02" status="dormant">
<project date="2003-01-02" status="inactive">
<title>Education</title>
<description>
The aim of the education project is furthering Free Software in all

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-01-02" status="dormant">
<project date="2003-01-02" status="inactive">
<title>Éducation</title>
<description>
Le projet d'éducation a pour objectif de promouvoir le Logiciel

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-01-02" status="dormant">
<project date="2003-01-02" status="inactive">
<title>Educazione</title>
<description>
Lo scopo del progetto educazione è di promuovere il Software Libero

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<projectset>
<project date="2003-01-02" status="dormant">
<project date="2003-01-02" status="inactive">
<title>Onderwijs</title>
<description>
Het onderwijsproject wil het gebruik van Vrije Software aanmoedigen voor alle

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<projectset>
<project date="2003-02-01" status="dormant">
<project date="2003-02-01" status="inactive">
<title>GNU Business Network</title>
<description>
Das GNU Business Network soll Firmen, Entwickler und Nutzer von Freier

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-02-01" status="dormant">
<project date="2003-02-01" status="inactive">
<title>GNU Business Network</title>
<description>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-02-01" status="dormant">
<project date="2003-02-01" status="inactive">
<title>GNU Business Network</title>
<description>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-02-01" status="dormant">
<project date="2003-02-01" status="inactive">
<title>Le Réseau d'Affaires GNU</title>
<description>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<projectset>
<project date="2003-02-01" status="dormant">
<project date="2003-02-01" status="inactive">
<title>GNU Business Network</title>
<description>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<projectset>
<project date="2003-02-01" status="dormant">
<project date="2003-02-01" status="inactive">
<title>GNU Business Network</title>
<description>
Het GNU Business Network heeft zich als doel gesteld om een netwerk te creëren tussen

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<title>FSFE - Derzeit inaktive Projekte</title>
</head>
<body>
<h1>Derzeit inaktive Projekte</h1>
<p>
Diese Projekte sind zur Zeit inaktiv. Auf den jeweiligen Projektseiten
finden Sie weitere Informationen darüber, wie Sie bei diesen Projekten
mithelfen können.
</p>
<dynamic-content/>
</body>
<timestamp>$Date$ $Author$</timestamp>
</html>
<!--
Local Variables: ***
mode: xml ***
End: ***
-->

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<title>FSFE - Currently Inactive Projects</title>
</head>
<body>
<h1>Currently Inactive Projects</h1>
<p>
These projects are currently inactive. For more information on how to
help with these projects please visit the individual project pages.
</p>
<dynamic-content/>
</body>
<timestamp>$Date$ $Author$</timestamp>
</html>
<!--
Local Variables: ***
mode: xml ***
End: ***
-->

View File

@ -0,0 +1,6 @@
projects/*/project:global
de/projects/*/project:de
es/projects/*/project:es
fr/projects/*/project:fr
it/projects/*/project:it
se/projects/*/project:se

39
projects/inactive.xsl Normal file
View File

@ -0,0 +1,39 @@
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
<!-- Fill dynamic content -->
<xsl:template match="dynamic-content">
<xsl:for-each select="/html/set/project [@status = 'inactive']">
<xsl:sort select="@date" order="descending"/>
<!-- Title -->
<xsl:element name="h3">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="link"/>
</xsl:attribute>
<xsl:value-of select="title"/>
</xsl:element>
</xsl:element>
<!-- Description -->
<xsl:element name="p">
<xsl:apply-templates select="description/node()"/>
</xsl:element>
</xsl:for-each>
</xsl:template>
<!-- Do not copy <set> to output at all -->
<xsl:template match="set"/>
<!-- For all other nodes, copy verbatim -->
<xsl:template match="@*|node()" priority="-1">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>

View File

@ -8,23 +8,14 @@
<body>
<h1>Projekte</h1>
<h2>Aktive Projekte</h2>
<dynamic-content status="active"/>
<h2>Inaktive und zurückgestellte Projekte</h2>
<p>
Diese Projekte wurden begonnen, aber ihre Aktivitäten sind im Moment,
auf Grund fehlender Ressourcen, gering. Besuchen sie die einzelnen
Projektseiten, um mehr Information über die Möglichkeiten der Mithilfe
an diesen Projekten zu erhalten.
</p>
<dynamic-content status="dormant"/>
<dynamic-content/>
<h3>
<a href="finished.html">Abgeschlossene und eingestellte Projekte</a>
<a href="inactive.html">Archiv derzeit inaktiver Projekte</a>
</h3>
<h3>
<a href="finished.html">Archiv abgeschlossener und eingestellter Projekte</a>
</h3>
</body>

View File

@ -8,22 +8,14 @@
<body>
<h1>Projects</h1>
<h2>Active Projects</h2>
<dynamic-content status="active"/>
<h2>Inactive And Deferred Projects</h2>
<p>
These projects have been started, but activity on these projects is
currently low because of a lack of resources. See the respective project
pages for more information on how to help with these projects.
</p>
<dynamic-content status="dormant"/>
<dynamic-content/>
<h3>
<a href="finished.html">Finished And Discontinued Projects</a>
<a href="inactive">Currently Inactive Projects Archive</a>
</h3>
<h3>
<a href="finished.html">Finished And Discontinued Projects Archive</a>
</h3>
</body>

View File

@ -5,9 +5,7 @@
<!-- Fill dynamic content -->
<xsl:template match="dynamic-content">
<xsl:variable name="status"><xsl:value-of select="@status"/></xsl:variable>
<xsl:for-each select="/html/set/project [@status = $status]">
<xsl:for-each select="/html/set/project [@status = 'active']">
<xsl:sort select="@date" order="descending"/>
<!-- Title -->