[med-svn] r530 - in trunk/community/website: . inc
hanska-guest at alioth.debian.org
hanska-guest at alioth.debian.org
Tue Oct 2 16:28:41 UTC 2007
Author: hanska-guest
Date: 2007-10-02 16:28:41 +0000 (Tue, 02 Oct 2007)
New Revision: 530
Removed:
trunk/community/website/inc/getrss.js
Modified:
trunk/community/website/index.php
Log:
Members added
Skeleton for TODO list
Removing useless AJAX (for the moment)
Deleted: trunk/community/website/inc/getrss.js
===================================================================
--- trunk/community/website/inc/getrss.js 2007-10-02 15:24:49 UTC (rev 529)
+++ trunk/community/website/inc/getrss.js 2007-10-02 16:28:41 UTC (rev 530)
@@ -1,48 +0,0 @@
-var xmlHttp
-
-function showRSS()
-{
- xmlHttp = GetXmlHttpObject()
- if (xmlHttp == null)
- {
- alert("Browser does not support HTTP Request")
- return
- }
-
- xmlHttp.onreadystatechange = stateChanged
- xmlHttp.open("GET", "http://cia.vc/stats/project/Debian-Med/.rss", true)
- xmlHttp.send(null)
-}
-
-function stateChanged()
-{
- if (xmlHttp.readyState == 4 || xmlHttp.readyState == "complete")
- {
- document.getElementById("rssOutput").innerHTML = xmlHttp.responseText
- }
-}
-
-function GetXmlHttpObject()
-{
- var xmlHttp = null
-
- try
- {
- // Firefox, Opera 8.0+, Safari
- xmlHttp = new XMLHttpRequest()
- }
- catch (e)
- {
- // Internet Explorer
- try
- {
- xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
- }
- catch (e)
- {
- xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
- }
- }
-
- return xmlHttp;
-}
Modified: trunk/community/website/index.php
===================================================================
--- trunk/community/website/index.php 2007-10-02 15:24:49 UTC (rev 529)
+++ trunk/community/website/index.php 2007-10-02 16:28:41 UTC (rev 530)
@@ -1,9 +1,9 @@
<html>
<head>
-<title>Debian-Med CDD</title>
+<title>Debian-Med Project</title>
<link href="/inc/style.css" type="text/css" rel="stylesheet" />
</head>
-<body onload="showRSS();">
+<body>
<div align="center">
<img src="/img/logo.png" alt="Debian Med Project" />
</div>
@@ -30,14 +30,25 @@
and bioinformatics.
</div>
</div>
- <span class="section">related</span>
+ <span class="section">members</span>
<div class="section">
<div class="sectionTop"></div>
<div class="row">
<div class="relatedHeading">
<table class="related">
+ <tr><td>Andreas Tille</td></tr>
+ <tr><td>Charles Plessy</td></tr>
+ <tr><td>Changyan Xie</td></tr>
+ <tr><td>Daniel Bayer</td></tr>
<tr><td>David Paleino</td></tr>
- <tr><td>...</td></tr>
+ <tr><td>Michael Hanke</td></tr>
+ <tr><td>Moriyoshi Koizumi</td></tr>
+ <tr><td>Nelson A. de Oliveira</td></tr>
+ <tr><td>Philipp Benner</td></tr>
+ <tr><td>Steffen Möller</td></tr>
+ <tr><td>Steven Michael Robbins</td></tr>
+ <tr><td>Thijs Kinkhorst</td></tr>
+ <tr><td>Vincent Danjean</td></tr>
</table>
</div>
</div>
@@ -47,6 +58,15 @@
<div class="sectionTop"></div>
<div class="row">..UTC time..</div>
</div>
+ <span class="section">todo</span>
+ <div class="section">
+ <div class="sectionTop"></div>
+ <div class="row">
+ <ul>
+ <li>test</li>
+ </ul>
+ </div>
+ </div>
</td>
<td class="main">
<span class="section">recent activity</span>
More information about the debian-med-commit
mailing list