summaryrefslogtreecommitdiff
blob: 6c1f3501ef2972323658ee75c3bb59d940b55ffd (plain)
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
<!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" lang="en" xml:lang="en">
<head>
<title>Numbench</title>

<link rel="stylesheet" href="style.css" />

<script type="text/javascript" src="confSkip.js"></script>
<script type="text/javascript" src="confEnv.js"></script>
<script type="text/javascript" src="confCase.js"></script>
<script type="text/javascript" src="confSend.js"></script>

</head>
<body onload="initialize()">

  <h1>Configuration generator</h1>
  
  <table style="margin: 50px auto 100px auto">
    <tbody>
      <tr>
        <td>File name:</td>
        <td><input id="fName" size="60" /></td>
        
        <td style="padding-left:100px">Module:</td>
        <td><select id="moduleName"></select></td>
      </tr>
      
      <tr>
        <td>Benchmark title:</td>
        <td><input id="benchTitle" size="60" /></td>
        
        <td style="padding-left:100px">Module arguments:</td>
        <td><input id="moduleArgs" size="80" /></td>
      </tr>
    </tbody>
  </table>



  <ul id="casesList">
    <button id="addCaseButton" onclick="addCase()">Add new case</button>
  </ul>
  
  <button onclick="sendConf()">Get XML</button>

</body>
</html>