-
Notifications
You must be signed in to change notification settings - Fork 1
/
assess.php
356 lines (301 loc) · 11.6 KB
/
assess.php
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<?php
session_start();
include('functionPutFieldsets.php');
#phpinfo();
?>
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="https://overpass-30e2.kxcdn.com/overpass.css"/>
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
<!-- <link rel="stylesheet" href="css/jquery-ui.css"> -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/muuri.css">
<link rel="stylesheet" href="css/image-picker.css">
<script src="js/jquery-1.12.4.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/image-picker.js"></script>
<title>Open Source Maturity Assessment</title>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php"><img src="images/innovate.png" alt="image"> Open Source Maturity Assessment</a>
</div>
<div class="collapse navbar-collapse" id="navbar1">
<ul class="nav navbar-nav navbar-right">
<?php if (isset($_SESSION['usr_id'])) { ?>
<li><p class="navbar-text"><a href="assess.php">Run Assessment</a></p></li>
<li><p class="navbar-text">Signed in as <?php echo $_SESSION['usr_name']; ?></p></li>
<li><p class="navbar-text"><a href="logout.php">Log Out</a></p></li>
<li><a target="_blank" href="https://github.com/boogiespook/osma2">Github</a></li>
<?php } else { ?>
<li><a href="register.php">Register</a></li>
<li><a href="login.php">Login</a></li>
<li><a target="_blank" href="https://github.com/boogiespook/osma2">Github</a></li>
<?php } ?>
</ul>
</div>
</div>
</nav>
<div class="container">
<form id="regForm" action="tmp.php">
<h1>Open Source Maturity Assessment</h1>
<!-- One "tab" for each step in the form: -->
<div class="tab">
<h3>Welcome to the Red Hat Open Source Maturity Assessment.</h3>
<p class="mainText">
<b>AIM</b>: This maturity assessment provides a high level overview on where your organisation stands regarding the use of Open Source software and associated practices.
</p>
<p class="mainText">
The assessment looks at a variety of areas regarding Open Source software including:
<ul>
<ul>
<!-- <li class="mainText">Business Goals</li> -->
<li class="mainText">Areas of Interest</li>
<li class="mainText">General Knowledge of Open Source</li>
<li class="mainText">Development Standards and Tools</li>
<li class="mainText">Upstream Community Participation</li>
<li class="mainText">Governance & Legal Policies</li>
<li class="mainText">Senior Management Support</li>
</ul>
</ul>
</p>
<p class="mainText">At the end of this assessment you will have a better understanding of your business goals within your organisation regarding Open Source software and methodologies and will take away an idea of next steps and recommended follow-up sessions from Red Hat Consulting to dive deep into the challenges and opportunities that face your business.</p>
<br>
</div>
<div class="tab"><h3>Client Details</h3>
<p><input placeholder="Client Name" oninput="this.className = ''" name="customerName"></p>
<p><input placeholder="Email Address" oninput="this.className = ''" name="rhEmail"></p>
<?php putCountries();?>
<?php putLoBs();?>
<br>
</div>
<?php
function printQuestions($area,$section) {
# Read in all the questions
$string = file_get_contents("questions.json");
$json = json_decode($string, true);
$i = $ii = 1;
while( $i < 7) {
$question = $json[$area][$i]['question'];
if ($question != "X") {
print "<p>$question</p>";
print '<select name=question' . $section . $i . ' class="styled">';
while ($ii < 7) {
## Output the possible answers
# print "<li>" . $json[$area][$i]['options'][$ii] . "</li>";
$answer = $json[$area][$i]['options'][$ii];
if ($answer != "X") {
print '<option value="' . $ii . '">' . $answer . "</option>";
}
$ii++;
}
$ii = 1;
print "</select>";
}
$i++;
}
## Add a comments field
print '<hr><label for="comments">Notes</label>
<input size="60" type="text" name="area' . $section . '_comments">';
}
?>
<!-- <div class="tab">
<h2>Business Goals for Open Source</h2>
<div class="board">
<div class="board-column todo">
<div class="board-column-header">Low</div>
<div class="board-column-content-wrapper">
<div class="board-column-content">
<div class="board-item"><div class="board-item-content"><span>Promote Innovation</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Culture Change</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Improve Product Quality</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Efficiency</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Brand Perception</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Business Development</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Competitive Advantage</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Improve Collaboration</span></div></div>
<div class="board-item"><div class="board-item-content"><span>Revenue</span></div></div>
</div>
</div>
</div>
<div class="board-column working">
<div class="board-column-header">Medium</div>
<div class="board-column-content-wrapper">
<div class="board-column-content">
</div>
</div>
</div>
<div class="board-column done">
<div class="board-column-header">High</div>
<div class="board-column-content-wrapper">
<div class="board-column-content">
</div>
</div>
</div>
</div>
</div>
-->
<div class="tab">
<h2>Areas of Interest</h2>
<p class="mainText">Red Hat use the 3 areas of <b>Consume</b>, <b>Collaborate</b> and <b>Create</b> when understanding the main areas of interest for an organisation when it comes to Open Source software. These areas are underpinned by <b>Strategy and Governance policies</b></p>
<center>
<img src="images/roundal.png">
</center>
<p class="mainText">
Other areas which should be addressed are the other underpinning principles of Open Source software such as Transparency, Inclusivity, Adaptability and Meritocracy
</div>
<div class="tab">
<p class="mainText">Which of these are the highest priority for your organisation?</p>
<div class="row">
<div class="column left">
<i class="arr-left"></i><h4>Low Priority</h4>
</div>
<div class="column middle">
<h3>Consuming Open Source software</h3><input type="range" name="consume" min="0" max="5" value="0">
<h3>Collaborate with Open Source communities</h3><input type="range" name="collaborate" min="0" max="5" value="0">
<h3>Creating Open Source projects</h3><input type="range" name="createOS" min="0" max="5" value="0">
<h3>Understanding Open Source Strategy and Governance</h3><input type="range" name="policy" min="0" max="5" value="0">
</div>
<div class="column right">
<i class="arr-right"></i><h4>High Priority</h4>
</div>
</div>
</div>
<div class="tab">
<h2>General Knowledge of Open Source</h2>
<h4> </h4>
<?php printQuestions("General Knowledge of Open Source","1"); ?>
</div>
<div class="tab">
<h2>Development Standards and Tools</h2>
<h4></h4>
<?php printQuestions("Development Standards and Tools","2"); ?>
</div>
<div class="tab">
<h2>Upstream Community Participation</h2>
<h4></h4>
<?php printQuestions("Upstream Community Participation","3"); ?>
</div>
<div class="tab">
<h2>Governance & Legal Policies</h2>
<h4></h4>
<?php printQuestions("Governance and Legal Policies","4"); ?>
</div>
<div class="tab">
<h2>Senior Management Support</h2>
<h4></h4>
<?php printQuestions("Senior Management Support","5"); ?>
</div>
<div class="tab">
<h2>Discussion Points</h2>
<h4> Please add any discussion points or other information here</h4>
<hr>
<textarea form=regForm name="comments" id="comments" wrap="soft" rows="20"></textarea>
</div>
<div style="overflow:auto;">
<div style="float:right;">
<button type="button" id="prevBtnCJ" onclick="nextPrev(-1)">Previous</button>
<button type="button" id="nextBtn" onclick="nextPrev(1)">Next</button>
</div>
</div>
<!-- Circles which indicates the steps of the form: -->
<div style="text-align:center;margin-top:40px;">
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
</div>
</form>
<script>
var currentTab = 0; // Current tab is set to be the first tab (0)
showTab(currentTab); // Display the crurrent tab
function showTab(n) {
// This function will display the specified tab of the form...
var x = document.getElementsByClassName("tab");
x[n].style.display = "block";
//... and fix the Previous/Next buttons:
if (n == 0) {
document.getElementById("prevBtnCJ").style.display = "none";
} else {
document.getElementById("prevBtnCJ").style.display = "inline";
}
if (n == (x.length - 1)) {
document.getElementById("nextBtn").innerHTML = "Submit";
} else {
document.getElementById("nextBtn").innerHTML = "Next";
}
//... and run a function that will display the correct step indicator:
fixStepIndicator(n)
}
function nextPrev(n) {
// This function will figure out which tab to display
var x = document.getElementsByClassName("tab");
// Exit the function if any field in the current tab is invalid:
//if (n == 1 && !validateForm()) return false;
// Hide the current tab:
x[currentTab].style.display = "none";
// Increase or decrease the current tab by 1:
currentTab = currentTab + n;
// if you have reached the end of the form...
if (currentTab >= x.length) {
// ... the form gets submitted:
document.getElementById("regForm").submit();
return false;
}
// Otherwise, display the correct tab:
showTab(currentTab);
}
function validateForm() {
// This function deals with validation of the form fields
var x, y, i, valid = true;
x = document.getElementsByClassName("tab");
y = x[currentTab].getElementsByTagName("input");
// A loop that checks every input field in the current tab:
for (i = 0; i < y.length; i++) {
// If a field is empty...
if (y[i].value == "") {
// add an "invalid" class to the field:
y[i].className += " invalid";
// and set the current valid status to false
valid = false;
}
}
// If the valid status is true, mark the step as finished and valid:
if (valid) {
document.getElementsByClassName("step")[currentTab].className += " finish";
}
// ***** DISABLED FOR TESTING PURPOSES ***** //
valid = true;
return valid; // return the valid status
}
function fixStepIndicator(n) {
// This function removes the "active" class of all steps...
var i, x = document.getElementsByClassName("step");
for (i = 0; i < x.length; i++) {
x[i].className = x[i].className.replace(" active", "");
}
//... and adds the "active" class on the current step:
x[n].className += " active";
}
</script>
</div>
<script src='js/web-animations.min.js'></script>
<script src='js/hammer.min.js'></script>
</body>
</html>