[med-svn] r3872 - trunk/community/website
Steffen Möller
smoe-guest at alioth.debian.org
Thu Sep 3 15:41:28 UTC 2009
Author: smoe-guest
Date: 2009-09-03 15:41:27 +0000 (Thu, 03 Sep 2009)
New Revision: 3872
Added:
trunk/community/website/organisations.xml
trunk/community/website/organisations.xsl
Modified:
trunk/community/website/index.php
Log:
Added list of affiliated organisations
Modified: trunk/community/website/index.php
===================================================================
--- trunk/community/website/index.php 2009-09-03 15:36:23 UTC (rev 3871)
+++ trunk/community/website/index.php 2009-09-03 15:41:27 UTC (rev 3872)
@@ -48,6 +48,7 @@
<li><a href="http://qa.debian.org/developer.php?login=debian-med-packaging@lists.alioth.debian.org&ordering=3"><?=_("Packages Overview")?></a></li>
<hr />
<li><a href="/locales.php"><?=_("Localizations")?></a></li>
+ <li><a href="organisations.xml"><?=_("Organisations")?></a></li>
<li>…</li>
</ul>
</div>
Added: trunk/community/website/organisations.xml
===================================================================
--- trunk/community/website/organisations.xml (rev 0)
+++ trunk/community/website/organisations.xml 2009-09-03 15:41:27 UTC (rev 3872)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<?xml-stylesheet type="text/xsl" href="organisations.xsl"?>
+<organisations>
+ <org>
+ <title>ISCB</title>
+ <longtitle>International Society for Computational Biology</longtitle>
+ <url>http://www.iscb.org</url>
+ <description>organises the ISMB conference and local conferences in Latin America and Africa</description>
+ <members>Steffen</members>
+ <region>world-wide</region>
+ </org>
+
+ <org>
+ <title>OBF</title>
+ <longtitle>Open Bioinformatics Foundation</longtitle>
+ <url>http://open-bio.org</url>
+ <description>organises the annual BOSC (Bionformatics Open Source Conference) as a satellite conference to the ISMB focusing on the strengthening of Free software in our field. It hosts web sites for the Bio{Java,Perl,Python,SQL} libraries.</description>
+ <members>Steffen</members>
+ <region>world-wide</region>
+ </org>
+
+ <org>
+ <title>GI-BIOINF</title>
+ <longtitle>Gesellschaft fuer Informatik, Fachgruppe Informatik in den Biowissenschaften</longtitle>
+ <url>http://www.cebitec.uni-bielefeld.de/groups/fg402/</url>
+ <description>organises annual (mostly) english-spoken German Conference in Bioinforamtics</description>
+ <members>Steffen</members>
+ <region>de/at/ch</region>
+ </org>
+
+<org>
+ <title>SPI</title>
+ <longtitle>Software in the Public Interest</longtitle>
+ <url>http://www.spi-inc.org/</url>
+ <description>A company existing only for the purpose of organising funds for Debian. Regional
+cooperations help with saving transfer costs.</description>
+ <region>world-wide</region>
+ </org>
+</organisations>
Added: trunk/community/website/organisations.xsl
===================================================================
--- trunk/community/website/organisations.xsl (rev 0)
+++ trunk/community/website/organisations.xsl 2009-09-03 15:41:27 UTC (rev 3872)
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+<xsl:template match="/">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+ <head>
+ <title>Organisations sharing aims with Debian-Med</title>
+ <meta http-equiv="Content-Type" content="text/html" />
+ <link href="/inc/style.css" type="text/css" rel="stylesheet" />
+ </head>
+ <body>
+ <div style="text-align: center;">
+ <a href="http://debian-med.alioth.debian.org/">
+ <img src="/img/logo.png" alt="Debian Med Project" />
+ </a>
+ </div>
+ <h1>Organisations sharing aims with Debian Med</h1>
+ <hr />
+ <table border="0">
+ <xsl:for-each select="organisations/org">
+ <tr>
+ <td rowspan="2" align="center" valign="top"><a href=""><xsl:value-of select="title"/></a></td><td>
+ <xsl:value-of select="longtitle"/><br/>
+ <xsl:value-of select="description"/>
+ </td></tr>
+ <tr>
+ <td><ul>
+ <li>Outreach: <xsl:value-of select="region"/></li>
+ <li>Members: <xsl:value-of select="members"/></li>
+ <li>URL: <xsl:value-of select="url"/></li>
+ </ul>
+ </td>
+ </tr>
+ <tr><td colspan="2"><hr /></td></tr>
+ </xsl:for-each>
+ </table>
+ </body>
+</html>
+</xsl:template>
+
+</xsl:stylesheet>
More information about the debian-med-commit
mailing list