-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·283 lines (245 loc) · 10.1 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Dev Project Dashboard</title>
<meta name="description" content="A framework for dynamic project updates">
<meta name="author" content="Seph Coster">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- For D3 Charts -->
<link rel="stylesheet" href="css/nv.d3.min.css">
<!-- For Button Elements -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- If the query includes 'print-pdf', include the PDF print sheet -->
<script>
if( window.location.search.match( /print-pdf/gi ) ) {
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = 'css/print/pdf.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
}
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
<style>
.inactive{
opacity: .3;
}
.sprint-status{
min-width: 250px;
}
.sprint-row{
}
.bubble{
border: 1px solid gray;
width: 500px;
}
.nvd3 .nv-axis path {
fill: none;
stroke: #fff;
stroke-opacity: .75;
shape-rendering: crispEdges;
}
.nvd3 .nv-axis line {
fill: none;
stroke: #e5e5e5;
shape-rendering: crispEdges;
}
.nvd3 .nv-axis {
fill: #fff;
}
</style>
</head>
<body>
<div class="reveal" >
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides" id="mainSlides">
<section>
<h1>Project Dashboard Prototype</h1>
<h3>Automated Project Data in a Pretty Format.</h3>
<p>
<small>Created by <a href="http://sephcoster.com">Seph Coster</a> / <a href="http://twitter.com/sephcoster">@sephcoster</a></small><br/> <small>based on the beautiful, elegant and simple (not easy) work by <a href="http://hakim.se">Hakim El Hattab</a></small>
</p>
</section>
<section id="releaseOverview">
<script id="releaseOverviewTemplate" type="text/x-handlebars-template">
<h3>Project Overview</h3>
<table>
<tr>
<td id="burnChart1" ><svg style="height:600px;width:800px"></svg></td><td style="vertical-align:middle">
<ul>
<li><b>{{formatDate start }}</b> start date</li>
<li><b>{{formatDate end }}</b> end date</li>
<li><b>{{ daysRemaining }}</b> days remaining</li>
<li><b>{{ totalPoints }}</b> total points</li>
<li><b>{{ pointsRemaining }}</b> points remaining</li>
</td>
</tr>
<tr><td colspan=2> {{ description }}</td>
</table>
</script>
</section>
<section id="sprintStatus">
<script id="sprintStatusTemplate" type="text/x-handlebars-template">
<h2>Sprint Status</h2>
<table width="100%" height="80%">
<tr>
<td>
<table width="100%" >
{{#each}}
<tr class="sprint-row" style="border-bottom: 1px; solid; gray">
<td class="bubble">{{ name }} Status: <br/><span class="btn {{ getStatusButtonClass status }} sprint-status">{{ status }}</span><br/>
{{#statusCheck status "In Progress"}}
<br/>CURRENT STATUS >>>
{{/statusCheck}}
<br/><br/>
</td>
{{#statusCheck status "In Progress"}}
{{#each subSprints}}
<td class="bubble"><h4>{{ name }}</h4>
{{ formatDate start }} start<br/>
{{ formatDate end }} end<br/>
<span class="btn {{getStatusButtonClass status}}">{{ status }}</span></br>
</td>
{{/each}}
{{/statusCheck }}
</tr>
{{/each}}
</table>
</td>
</tr>
</table>
</script>
</section>
<!-- Sections with data-markdown attributes are interpreted Markdown Scripts
For additional information about Markdown, see this cheat sheet
https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#lists
If preferred, you can use a Markdown authoring tool and then paste in the results.
Options such as Draftin.com and Prose.io are recommended. -->
<section>
<section data-markdown>
<script type="text/template">
## Release 1 Goals
#### Milestone 1: Business Related Objectives
1. Vice wayfarers disrupt, you probably havent heard of them distillery eiusmod organic bitters sunt. Ennui pork belly street art ea, Thundercats duis sartorial Pitchfork distillery nisi authentic readymade freegan excepteur lomo.
2. Before they sold out beard banjo, Echo Park mumblecore YOLO VHS Schlitz sed consequat leggings minim 3 wolf moon mustache squid. Cray consequat VHS adipisicing shabby chic non.
3. Int cliche tempor, distillery swag craft beer retro biodiesel aliqua vegan beard deep v. Craft beer velit ugh hoodie, Intelligentsia Marfa beard +1. Assumenda cardigan post-ironic vero anim bespoke.
</script>
</section>
<section data-markdown>
<script type="text/template">
## Milestone 1: Integration Objectives
- Tempor crucifix polaroid, deserunt scenester occaecat fap hoodie direct trade aesthetic. Fap stumptown culpa, Brooklyn kogi roof party American Apparel street art swag.
- Pickled Vice qui plaid fap, selvage lo-fi church-key biodiesel art party. Irony kogi id irure. Delectus ea +1 hoodie, salvia crucifix laboris cillum. Farm-to-table McSweeneys Carles, sunt biodiesel sustainable Austin hella direct trade. Fugiat disrupt sartorial, street art PBR&B ethnic Schlitz Odd Future.
</script>
</section>
<section data-markdown>
<script type="text/template">
## Milestone 1: Integration(continued)
The steps below assert the test scenario to satisfy the above:
1. Eiusmod whatever aliquip cornhole Austin Intelligentsia
2. Irony sustainable drinking vinegar nihil labore enim, laboris pariatur hoodie cliche
3. Pinterest dolore cred chia Godard, Brooklyn dreamcatcher keytar Schlitz irure roof party cornhole vegan.
4. Sunt twee mumblecore, next level small batch DIY nisi messenger bag
5. Commit the new plan/adoption agreement
6. Food truck Tumblr odio chillwave sartorial, post-ironic tote bag selfies dolore +1.
7. Dolore nostrud selvage, bicycle rights ethnic Bushwick excepteur consectetur wolf.
</script>
</section>
</section>
<section id="cumulativeFlow">
<script id="cumulativeFlowTemplate" type="text/x-handlebars-template">
{{#each }}
<section>
<h2>Cumulative Flow - {{ name }}</h2>
<table>
<tr>
<td><div id="{{shortName}}" style="vertical-align:middle"><svg style="height:600px;width:800px"></svg></div></td>
<td style="vertical-align:middle">
<table>
<tr><td>Stories</td><td style="text-align:right">{{ stories }}</td></tr>
<tr><td>Planned</td><td style="text-align:right">{{ planned }}</td></tr>
<tr><td>In Progress</td><td style="text-align:right">{{ inprogress }}</td></tr>
<tr><td>Complete</td><td style="text-align:right">{{ complete }}</td></tr>
</table>
</td>
</tr>
</table>
</section>
{{/each}}
</script>
</section>
<section id="testData">
<script id="testDataTemplate" type="text/x-handlebars-template">
{{#each}}
<section>
<h2>{{name}}</h2>
<table>
<tr>
<td><div id="{{shortName}}" style="vertical-align:middle"><h4 style="text-align:center">{{ name }}</h4><svg style="height:600px;width:800px"></svg></div></td>
<td style="vertical-align:middle">
<ul>
<li>Number of Tests: {{ numberOfTests }}</li>
<li>Test Coverage: {{ averagePct }}</li>
</ul>
</td>
</tr>
</table>
</section>
{{/each}}
</script>
</section>
<section id="buildData">
<script id="buildDataTemplate" type="text/x-handlebars-template">
<h2>Current Build Status:</h2>
<img src="{{buildStatusImage buildStatus}}"/>
{{#each deployStatus}}
<h4>Last Build {{ deployName}}:</h4>
<ul>
<li><b>Build #:</b> {{deployNumber}}</li>
<li><b>Deploy Date:</b> {{deployDate}}</li>
</ul>
</br></br>
{{/each}}
</script>
</section>
<section>
<h2>Next Steps for this Project</h2>
<ul>
<li>Improve Data Entry Process</li>
<li>Complete update instructions</li>
<li>Improve based on feedback.</li>
</ul>
</section>
<section>
<h1>THE END - This will loop automatically.</h1>
<h2>Want to see more themes? <a href="?theme/default#/">Click here for the default</a></h2>
<h3></h3>
</section>
</div>
</div>
<!-- Required Script Includes -->
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.8/d3.min.js" charset="utf-8"></script>
<script type="text/javascript" src="js/nv.d3.min.js"></script>
<!-- For JavaScript Templating (Handlebars.js) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0-alpha.4/handlebars.min.js"></script>
<!-- Data Sources -->
<script type="text/javascript" src="js/flowData.js"></script>
<script type="text/javascript" src="js/burnData.js"></script>
<script type="text/javascript" src="js/projData.js"></script>
<script type="text/javascript" src="js/testData.js"></script>
<!-- Functional Scripts -->
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>