Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove website from simgrid directory
[simgrid.git] / website / download.php.in
diff --git a/website/download.php.in b/website/download.php.in
deleted file mode 100644 (file)
index d3efe09..0000000
+++ /dev/null
@@ -1,86 +0,0 @@
-<?php 
-$domain="gforge.inria.fr";
-$group_name="simgrid";
-?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-<head>
-       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-       <link rel="stylesheet" type="text/css" href="stylesheets/simgridsite.css" />
-       <link rel="stylesheet" type="text/css" href="stylesheets/simgridsitetabs.css" />
-       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-       <title>SimGrid - Scalable simulation of distributed systems, ranging from grids to peer-to-peer systems</title>
-       <meta name="keywords" content="Scalable, simulation, distributed systems, grid, peer-to-peer" /> 
-
-</head>
-
-<body>
-<div id="header" align="center">
-<p>
-<img src="logos/simgrid_logo.png"  alt="SimGrid - Scalable simulation of distributed systems, ranging from grids to peer-to-peer systems" />
-</p>
-<h2 class="header"><i class="subtitle">Scalable simulation of distributed systems</i></h2>
-</div>
-<p/>
-<br/> 
- <div id="navrow1" class="tabs" align="center">
-    <ul class="tablist">
-      <li><a href="index.php"><span>Home</span></a></li>
-                        <li><a href="download.php"><span>Download</span></a></li>
-      <li><a href="documentation.php"><span>Online documentation</span></a></li>
-      <li><a href="publis.html"><span>Publications</span></a></li>
-      <li><a href="people.html"><span>People</span></a></li>
-      <li><a href="history.html"><span>History</span></a></li>
-      <li><a href="contrib.html"><span>Contrib</span></a></li>
-      <li><a href="faq.html"><span>FAQ&#160;Page</span></a></li>
-
-      <li><a href="http://gforge.inria.fr/projects/simgrid"><span>SimGrid&#160;Forge</span></a></li>
-    </ul>
-  </div>
-<table width="80%" cellpadding="5" cellspacing="0" border="0" align="center">
-<td>
-<p>
-Since version 3.6.1, windows installer are provided for amd64 or x86. Linux and Mac users should retrieve the tar.gz files. See release documentation for install informations.
-</p>
-<?php if ($handle=fopen('https://gforge.inria.fr/frs/?group_id=12','r')){
-// Reading the file
-$contents = '';
-$contents = stream_get_contents($handle);
-
-fclose($handle);
-
-// I'm not a php expert at all, so this is an ugly code based on the only method I know : explode !
-$tempArray = array();
-// There is a tag around releases : fieldset 
-$tempArray  = explode('<fieldset>', $contents);
-$secondTempArray = array();
-$secondTempArray  = explode('</fieldset>', $tempArray[1]);
-
-$toPrint = '';
-$toPrint .= $secondTempArray[0];
-
-
-//Replacing bad hrefs ... I don't know why they actually change from the original content once deployed and invoked from ... 
-$toPrint=str_replace('href="shownotes','href="https://gforge.inria.fr/frs/shownotes',$toPrint);
-echo $toPrint; } ?>
-</td>
-</table>
-
-<div id="footer" align="center">
-<p>
-<ul class="footerlogos">                  
-       <li><a href="http://www.inria.fr/"><img align="center" src="logos/INRIA.png" alt="INRIA"/></a>  
-       </li>
-       <li><a href="http://www.cnrs.fr/"><img align="center" src="logos/cnrs.png" alt="CNRS"/></a>     
-       </li>   
-       <li><a href="http://www.uhp-nancy.fr/"><img align="center" src="logos/logo_uhp.png" alt="Université Nancy  Henri Poincarré"/></a>     
-       </li>
-       <li><a href="http://manoa.hawaii.edu/"><img align="center" src="logos/UnivHawaiiManoa.png" alt="Univeristy of Hawaii Manoa"/></a>       
-       </li>
-       <li><a href="http://www.agence-nationale-recherche.fr/"><img align="center" src="logos/ANR.png" alt="ANR"/></a> 
-       </li>
-</ul>  
-</p>
-</div>
-</body>
-</html>