| 1 |
<html>
|
| 2 |
<head>
|
| 3 |
<title>Debian-Med Project</title>
|
| 4 |
<link href="/inc/style.css" type="text/css" rel="stylesheet" />
|
| 5 |
</head>
|
| 6 |
<body>
|
| 7 |
<div align="center">
|
| 8 |
<img src="/img/logo.png" alt="Debian Med Project" />
|
| 9 |
</div>
|
| 10 |
<div class="heading">
|
| 11 |
<div class="tabBar">
|
| 12 |
Join us! Help us in making Doctors use Debian! See the
|
| 13 |
<a href="http://alioth.debian.org/projects/debian-med">Alioth Page</a>
|
| 14 |
</div>
|
| 15 |
</div>
|
| 16 |
<table class="columns">
|
| 17 |
<tr>
|
| 18 |
<td class="left">
|
| 19 |
<span class="section">information</span>
|
| 20 |
<div class="section">
|
| 21 |
<div class="sectionTop"></div>
|
| 22 |
<div class="row">
|
| 23 |
<a href="http://wiki.debian.org/DebianMed">Visit our Wiki page</a>
|
| 24 |
</div>
|
| 25 |
<div class="row">
|
| 26 |
The Debian-Med project presents packages that are
|
| 27 |
associated with medicine, pre-clinical research, and
|
| 28 |
life science. Its developments are mostly focused on
|
| 29 |
three areas for the moment: medical practice, imaging
|
| 30 |
and bioinformatics.
|
| 31 |
</div>
|
| 32 |
</div>
|
| 33 |
<span class="section">members</span>
|
| 34 |
<div class="section">
|
| 35 |
<div class="sectionTop"></div>
|
| 36 |
<div class="row">
|
| 37 |
<div class="relatedHeading">
|
| 38 |
<table class="related">
|
| 39 |
<tr><td>Andreas Tille</td></tr>
|
| 40 |
<tr><td>Charles Plessy</td></tr>
|
| 41 |
<tr><td>Changyan Xie</td></tr>
|
| 42 |
<tr><td>Daniel Bayer</td></tr>
|
| 43 |
<tr><td>David Paleino</td></tr>
|
| 44 |
<tr><td>Michael Hanke</td></tr>
|
| 45 |
<tr><td>Moriyoshi Koizumi</td></tr>
|
| 46 |
<tr><td>Nelson A. de Oliveira</td></tr>
|
| 47 |
<tr><td>Philipp Benner</td></tr>
|
| 48 |
<tr><td>Steffen Möller</td></tr>
|
| 49 |
<tr><td>Steven Michael Robbins</td></tr>
|
| 50 |
<tr><td>Thijs Kinkhorst</td></tr>
|
| 51 |
<tr><td>Vincent Danjean</td></tr>
|
| 52 |
</table>
|
| 53 |
</div>
|
| 54 |
</div>
|
| 55 |
</div>
|
| 56 |
<span class="section">UTC time</span>
|
| 57 |
<div class="section">
|
| 58 |
<div class="sectionTop"></div>
|
| 59 |
<div class="row">..UTC time..</div>
|
| 60 |
</div>
|
| 61 |
<span class="section">todo</span>
|
| 62 |
<div class="section">
|
| 63 |
<div class="sectionTop"></div>
|
| 64 |
<div class="row">
|
| 65 |
<ul>
|
| 66 |
<li>test</li>
|
| 67 |
</ul>
|
| 68 |
</div>
|
| 69 |
</div>
|
| 70 |
</td>
|
| 71 |
<td class="main">
|
| 72 |
<span class="section">recent activity</span>
|
| 73 |
<div class="section">
|
| 74 |
<div class="sectionTop"></div>
|
| 75 |
<div class="row">
|
| 76 |
<table width="100%">
|
| 77 |
<tr>
|
| 78 |
<th>date</th>
|
| 79 |
<th>author</th>
|
| 80 |
<th>content</th>
|
| 81 |
<th>link</th>
|
| 82 |
</tr>
|
| 83 |
<?php
|
| 84 |
include_once("inc/lastRSS.php");
|
| 85 |
$rss = new lastRSS;
|
| 86 |
$rss->cache_dir = "./cache";
|
| 87 |
$rss->cache_time = 3600;
|
| 88 |
|
| 89 |
if ($rs = $rss->get("http://cia.vc/stats/project/Debian-Med/.rss")) {
|
| 90 |
// we show only the last 10 commits by default
|
| 91 |
for ($i = 0; $i < 9; $i++) {
|
| 92 |
$desc = html_entity_decode($rs["items"][$i]["description"]);
|
| 93 |
preg_match("/(Commit by.*)<strong>(.*)<\/strong>/", $desc, $matches);
|
| 94 |
$author = $matches[2];
|
| 95 |
$desc = preg_replace("/(Commit by.*)<strong>(.*)<\/strong>.*::/", "", $desc);
|
| 96 |
// "\\1<strong><a href=\"http://alioth.debian.org/users/\\2\">\\2</a></strong>",
|
| 97 |
// $desc);
|
| 98 |
?>
|
| 99 |
<tr>
|
| 100 |
<td><?=$rs["items"][$i]["pubDate"]?></td>
|
| 101 |
<td><a href="http://alioth.debian.org/users/<?=$author?>"><?=$author?></a></td>
|
| 102 |
<td><?=$desc?></td>
|
| 103 |
<td><a href="<?=$rs["items"][$i]["link"]?>">»</a></td>
|
| 104 |
</tr>
|
| 105 |
<?php
|
| 106 |
}
|
| 107 |
}
|
| 108 |
?>
|
| 109 |
</table>
|
| 110 |
</div>
|
| 111 |
</div>
|
| 112 |
</td>
|
| 113 |
</tr>
|
| 114 |
</table>
|
| 115 |
<hr />
|
| 116 |
<small>Please, note that this is a SVN export of our website. It might break during
|
| 117 |
SVN commits.</small>
|
| 118 |
<?php
|
| 119 |
include_once("footer.html")
|
| 120 |
?>
|