-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookfoot.php
63 lines (58 loc) · 2.21 KB
/
bookfoot.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
<?php
use \Tsugi\Core\LTIX;
use \Tsugi\UI\Output;
$pos_head_start = strpos($HTML,'<head');
$pos_head_start = strpos($HTML,'<',$pos_head_start+1);
$pos_head_end = strpos($HTML,'</head',$pos_head_start);
$pos_body = strpos($HTML,'<body',$pos_head_end);
$pos_body = strpos($HTML,'<',$pos_body+1);
$pos_end = strpos($HTML,'</body',$pos_body);
$head = substr($HTML, $pos_head_start, $pos_head_end-$pos_head_start);
$body = substr($HTML, $pos_body, $pos_end-$pos_body);
require_once "top.php";
require_once "nav.php";
function x_sel($file) {
global $HTML_FILE;
$retval = 'value="'.$file.'"';
if ( strpos($HTML_FILE, $file) === 0 ) {
$retval .= " selected";
}
return $retval;
}
?>
<script>
function onSelect() {
console.log($('#chapters').val());
window.location = $('#chapters').val();
}
</script>
<div style="float:right">
<select id="chapters" onchange="onSelect();">
<option <?= x_sel("01-intro") ?>>Chapter 1: Introduction</option>
<option <?= x_sel("02-variables") ?>>Chapter 2: Variables</option>
<option <?= x_sel("03-conditional") ?>>Chapter 3: Conditionals</option>
<option <?= x_sel("04-functions") ?>>Chapter 4: Functions</option>
<option <?= x_sel("05-iterations") ?>>Chapter 5: Iterations</option>
<option <?= x_sel("06-strings") ?>>Chapter 6: Strings</option>
<option <?= x_sel("07-files") ?>>Chapter 7: Files</option>
<option <?= x_sel("08-lists") ?>>Chapter 8: Lists</option>
<option <?= x_sel("09-dictionaries") ?>>Chapter 9: Dictionaries</option>
<option <?= x_sel("10-tuples") ?>>Chapter 10: Tuples</option>
<option <?= x_sel("11-regex") ?>>Chapter 11: Regex</option>
<option <?= x_sel("12-network") ?>>Chapter 12: Networked Programs</option>
<option <?= x_sel("13-web") ?>>Chapter 13: Python and Web Services</option>
<option <?= x_sel("14-objects") ?>>Chapter 14: Python Objects</option>
<option <?= x_sel("15-database") ?>>Chapter 15: Python and Databases</option>
<option <?= x_sel("16-viz") ?>>Chapter 16: Data Vizualization</option>
</select>
</div>
<?php
echo($body);
?>
<hr/>
<p>
If you find a mistake in this book, feel free to send me a fix using
<a href="https://github.com/csev/py4e/tree/master/book3" target="_blank">Github</a>.
</p>
<?php
$OUTPUT->footer();