-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
112 lines (99 loc) · 5.34 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>CMPUT 404</title>
<!-- Styling from reveal.js -->
<link rel="stylesheet" href="node_modules/reveal.js/css/reveal.css">
<link id="revealtheme" rel="stylesheet" href="">
<!-- Theme used for syntax highlighting of code -->
<link id="highlighttheme" rel="stylesheet" href="">
<!-- Custom Styling -->
<link rel="stylesheet" href="cmput404-slides.css">
<link id="404theme" rel="stylesheet" href="">
<!-- Scripts! -->
<script src="node_modules/reveal.js/lib/js/head.min.js"></script>
<script src="node_modules/reveal.js/js/reveal.js"></script>
<script src="node_modules/chai/chai.js"></script>
<script src="node_modules/fitty/dist/fitty.min.js"></script>
<script src="https://twemoji.maxcdn.com/2/twemoji.min.js"></script>
<script src="node_modules/highlightjs/highlight.pack.js"></script>
<script src="fiddler.js"></script><!-- make sure fiddler is last -->
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Anything before this will be sync'd with the other files in the directory if you run ./sync-header-footer.py *.html
HEADER --------------------------
-->
<section>
<h1>CMPUT 404</h1>
<h2>Web Applications and Architecture</h2>
<p>
<small>Created by <br>
<a href="http://softwareprocess.es">Abram Hindle</a>
(<a href="mailto:abram.hindle@ualberta.ca">abram.hindle@ualberta.ca</a>) <br>
and Hazel Campbell (<a href="mailto:hazel.campbell@ualberta.ca">hazel.campbell@ualberta.ca</a>).<br>
Copyright 2014-2019.
</small>
</p>
</section>
<section>
<ul style="columns: 2;">
<li><a href="01-Introduction.html">Part 01: Introduction</a></li>
<li><a href="02-Overview.html">Part 02: Overview</a></li>
<li><a href="03-Internet.html">Part 03: Internet</a></li>
<li><a href="04-HTTP.html">Part 04: HTTP</a></li>
<li><a href="05-More-HTTP.html">Part 05: More HTTP</a></li>
<li><a href="12-Even-More-HTTP.html">Part 05.1: Even More HTTP</a></li>
<li><a href="06-HTML.html">Part 06: HTML</a></li>
<li><a href="07-JS.html">Part 07: JavaScript</a></li>
<li><a href="08-AJAX.html">Part 08: AJAX</a></li>
<li><a href="09-Websockets.html">Part 09: Websockets</a></li>
<li><a href="static-slides/07-REST.pdf">Part 10: REST</a></li>
<li><a href="16-Web-Mining.html">Part 11: Web Mining</a></li>
<li><a href="12-HTTP-Auth.pdf">Part 12: HTTP Auth</a></li>
<li><a href="13-Security.pdf">Part 13: Security</a></li>
<li><a href="14-TLS.html">Part 14: TLS</a></li>
<li><a href="15-HTTP-Performance.pdf">Part 15: Performance</a></li>
</ul>
</section>
<!-- Anything before this will be sync'd with the other files in the directory if you run ./sync-header-footer.py *.html
FOOTER --------------------------
-->
<section style="font-size: 90%">
<h4>License</h4>
<p>Copyright 2014 ⓒ Abram Hindle</p>
<p>Copyright 2019 ⓒ Hazel Victoria Campbell and contributors</p>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />The textual components and original images of this slide deck are
placed under the Creative Commons is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</p>
<p>Other images used under fair use and copyright their copyright holders.</p>
</section>
<section>
<h4>License</h4>
The source code to this slide deck is:
<pre><code class="plaintext">
Copyright (C) 2018 Hakim El Hattab, http://hakim.se, and reveal.js contributors
Copyright (C) 2019 Hazel Victoria Campbell, Abram Hindle and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
</code></pre>
</section>
</div>
</div>
</body>
</html>