add homepage

git-svn-id: svn+ssh://en.codiert.org/home/staff/ben/dev/misc.svn/projects/fpgafs@436 766a2236-cff9-0310-b0c0-a81a5f92509a
This commit is contained in:
ben 2007-10-19 09:52:02 +00:00
parent 11248b2a79
commit f209b8a163
5 changed files with 2767 additions and 0 deletions

119
doc/www/f.css Normal file
View File

@ -0,0 +1,119 @@
body {
margin:0px;
padding:0px;
font:11px/20px verdana, arial, helvetica, sans-serif;
color:#333;
background-color:white;
}
p {
font-family : "Gill Sans", "Trebuchet MS", verdana, sans-serif;
margin:0px 0px 16px 0px;
padding:0px;
}
#content>p {margin:0px;}
#content>p+p {text-indent:10px;}
a {
color:#f00;
font-size:11px;
text-decoration:none;
font-weight:600;
font-family:verdana, arial, helvetica, sans-serif;
}
a:link {color:#f00;}
a:visited {color:#f00;}
a:hover {border-top: 1px dotted;}
#headspace {
margin:0px 00px 0px 0px;
height:89px;
width:719px;
position: fixed;
z-index:1;
background-color: #fff;
voice-family: "\"}\"";
voice-family:inherit;
width:700px; /* the correct height */
height:70px;
}
#header {
margin:50px 0px 10px 0px;
padding:17px 0px 0px 20px;
/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
height:33px; /* 14px + 17px + 2px = 33px */
width:719px; /* 14px + 17px + 2px = 33px */
position: fixed;
z-index:2;
border-style:solid;
border-color:gray;
border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
line-height:11px;
background-color:#ccc;
voice-family: "\"}\"";
voice-family:inherit;
width:700px; /* the correct height */
height:14px; /* the correct height */
}
body>#header {height:14px;}
#content {
margin:0px 50px 50px 10px;
position:absolute;
top:100px;
padding:10px;
width:619px;
z-index:0;
voice-family: "\"}\"";
voice-family:inherit;
width:600px; /* the correct height */
}
#logo {
position: fixed;
z-index:3;
margin:0px 0px 0px 0px;
padding:0px;
top:0px;
left:600px;
}
h1 {
color: #555;
background: white;
text-align: left;
font-size: 170%;
font-family : "Gill Sans", "Trebuchet MS", verdana, sans-serif;
}
h2 {
color: #333;
background: white;
text-align: left;
font-size: 140%;
font-family : "Gill Sans", "Trebuchet MS", verdana, sans-serif;
}
h2.title {
display:block;
color: #555;
padding:3px 4px;
margin: 35px 0px 0px 0px;
font-weight:bold;
background-color:#ddd;
border-bottom:1px dotted;
text-decoration:none;
}
h2.consol {
display:block;
color: #000;
padding:3px 4px;
width: 90%;
font-size: 95%;
margin: 3px 0px 0px 25px;
font-weight:normal;
background-color:#eee;
border:1px dotted;
}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 63 KiB

BIN
doc/www/img/fpgafs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

1441
doc/www/img/fpgafs.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 78 KiB

52
doc/www/index.html Normal file
View File

@ -0,0 +1,52 @@
<!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">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>FPGA Filesystem</title>
<style type="text/css" media="all">@import "f.css";</style>
</head>
<body>
<div id="headspace">
<div id="header">
<a href="#top" title="Top">Top</a> :
<a href="#whatis" title="What is?">What is?</a> :
<a href="#concept" title="Concepts">Concept</a> :
<a href="#download" title="Download">Download</a> :
<a href="#contact" title="Contact">Contact</a>
</div>
</div>
<div id="logo">
<img src="img/fpgafs.png" alt="FPGAFS" />
</div>
<div id="content">
<h1>FPGAFS</h1><a name="top" id="top"></a>
<p>It provides a framework for a high performance reconfigurable computer
environment. The abstraction between the reconfigurable device and the
user application is simplified by using a virtual filesystem and a thread
abstraction per device context.<br/>
FPGAFS consists of two major layers of abstraction. First, the directory
representation to the user application. This interface provides for each context
one directory with a specified content to transfer data. The second layer
provides an interface for low level driver. It gives the flexibility to register
a lot of different low level drivers for different accelerators which can be
operate at the same time in one target system.</p>
<h2 class="title">What is?</h2><a name="whatis" id="whatis"></a>
<h2 class="title">Concept</h2><a name="concept" id="concept"></a>
<h2 class="title">Download</h2><a name="download" id="download"></a>
FPGAFS keeps its development tree in a Subversion repository. It can be
downloaded with a Subversion checkout. The repository is anonymous accessible.
<h2 class="consol">$ svn co svn://svn.subgra.de/ben/projects/fpgafs</h2>
<h2 class="title">Contact</h2><a name="contact" id="contact"></a>
<p>Benjamin Krill: ben@ @codiert.org</p>
</div>
</body>
</html>