Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
90 lines (85 loc) · 3.57 KB

File metadata and controls

90 lines (85 loc) · 3.57 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?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);
$OUTPUT->footerStart();
?>
<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>
<script>
function onSelectFooter() {
console.log($('#chapters_footer').val());
window.location = $('#chapters_footer').val();
}
</script>
<div style="float:right">
<select id="chapters_footer" onchange="onSelectFooter();">
<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
$OUTPUT->footerEnd();
Morty Proxy This is a proxified and sanitized view of the page, visit original site.