forked from beaker-project/beaker-project.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (76 loc) · 2.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Beaker lab automation project</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="style.css" rel="stylesheet" type="text/css"/>
<style type="text/css">
.slogan {
font-size: 2em;
line-height: 1.3em;
color: #666;
text-align: center;
}
.screenshot {
box-shadow: 0 0 30px rgba(0,0,0,0.2);
height: 382px;
max-width: 1276px;
margin: 2em auto;
background-image: url("images/action-shot.png");
background-repeat: no-repeat;
background-position: center left;
background-size: auto 100%;
}
/* Work around Safari's scaling-up of the screenshot on retina displays */
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
.screenshot { height: 191px; max-width: 638px; }
}
</style>
</head>
<body>
<div class="header">
<div class="body_element">
<div class="title">
<a href="."><img src="images/logo.png" alt="Beaker" width="110" height="40" /></a>
</div>
<nav class="menu">
<a href="." class="active">about</a>
<a href="help.html">help</a>
<a href="download.html">download</a>
</nav>
</div>
</div>
<div class="main_content">
<div class="body_element">
<p class="slogan">Beaker is open-source software for managing and
automating labs of test computers.</p>
<div class="screenshot"></div>
<div class="blurb">
<p>Beaker is an automated testing framework developed and used at
<a href="http://www.redhat.com/">Red Hat</a>. It allows you to:</p>
<ul>
<li>Build tasks.</li>
<li>Run tasks on remote systems.</li>
<li>Run tasks on multiple systems and system variations (e.g. CPU
architecture, operating system, memory size, etc).</li>
<li>Store and display test results in a central location.</li>
<li>Manage an inventory of systems for running tests on.</li>
</ul>
<p>Beaker enables users to create any task they would like (from testing
changes to kernel memory management to installing their favourite OS and
game server) and run these tasks on any number of machines of any
specification located anywhere in the world, and provide a simple
interface from where they can review the outcome of these tasks.</p>
<hr/>
<p>You might be looking for <a href="http://beaker.groovie.org/">Beaker,
a library for sessions and caching in web applications</a>.</p>
</div>
</div>
</div>
</body>
<!-- vim: set sw=2 : -->
</html>