-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (90 loc) · 4.29 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Estimate your projects</title>
<script src="jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="estimate.js" type="text/javascript"></script>
<script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js"></script>
<script type="text/javascript" src="sisyphus.min.js"></script>
<!-- <link media="all" rel="stylesheet" href="style.css" type="text/css" /> -->
<link rel="stylesheet/less" type="text/css" href="style.less" />
<script src="less.js" type="text/javascript"></script>
</head>
<body>
<div class="left"> </div>
<div class="content">
<div class="summary">μ<sub>tot</sub>/σ<sub>tot</sub><br />0.00/0.00</div>
<h1>Estimate your tasks</h1>
<form data-persist="garlic" action="/nothing">
<div class="tasks">
<ul>
<li class="">
<input class="title" name="title" type="text" placeholder="title"/>
</li>
<li class="header">
<span class="O">O</span>
<span class="N">N</span>
<span class="P">P</span>
</li>
<li class="task">
<img src="add.png" class="add" alt="add" title="add task"/>
<img src="delete.png" class="delete" alt="delete" title="delete task"/>
<input class="description" name="text-0" type="text" value="task"/>
<input class="optimus" name="o-0" type="number" value="0"/>
<input class="nominal" name="n-0" type="number" value="0"/>
<input class="worst" name="w-0" type="number" value="0"/>
</li>
</ul>
<img src="trash.png" alt="clear" title="clear all" class="clear"/>
<div class="newtask">press Shift+Enter to create a new task</div>
<div class="lower">
<img src="attachment.png" alt="download" title="download estimations as csv" class="download"/>
<div class="catcher">
What does <strong>O,N,P</strong> mean and what are those numbers?
</div>
<div class="explanation" style="display:none">
<p>
Estimation calculation here are based on the following formulas:<br/>
<br/>
<strong>O</strong> is the optimistic estimation<br/>
<strong>N</strong> is the nominal estimation (normal)<br/>
<strong>P</strong> is the pessimistic estimation<br/>
</p>
<p><strong>μ</strong> is the estimated duration calculated by <br/>
<img src="img1.png" alt="(O+4N+P)/6"/>
</p>
<p><strong>σ</strong> is the standard deviation calculated by <br/>
<img src="img2.png" alt="(P-O)/6"/>
</p>
<p><strong>μ<sub>tot</sub></strong> is the total of estimated tasks calculated by its sum
of tasks <br/>
<img src="img3.png" alt=""/>
</p>
<p><strong>σ<sub>tot</sub></strong> is the total of the standard deviations calculated by
<br/>
<img src="img4.png" alt=""/>
</p>
</div>
</div>
</div>
</form>
</div>
<div class="right"> </div>
<div class="cloner" style="display:none">
<li class="task">
<img src="add.png" class="add" alt="add" />
<img src="delete.png" class="delete" alt="delete" title="delete task" />
<input class="description" name="text-x" type="text" value="task"/>
<input class="optimus" name="o-x" type="number" value="0" />
<input class="nominal" name="n-x" type="number" value="0"/>
<input class="worst" name="w-x" type="number" value="0"/>
</li>
</div>
<script type="text/javascript">
$(document).ready(function(){
Estimate.init();
});
</script>
</body>
</html>