Skip to content

Commit 9e4a7fe

Browse files
committed
finally finished moving all page choices into markdown meta
1 parent 983c7a0 commit 9e4a7fe

File tree

10 files changed

+76
-165
lines changed

10 files changed

+76
-165
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-03T08:10:06Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-05-03T08:20:32Z</updated></feed>

monitoring.html

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -144,33 +144,41 @@ <h2>Monitoring Resources</h2>
144144
</li>
145145
</ul>
146146
<h3>What topic do you want to learn next?</h3>
147-
<div class="row">
148-
<div class="col-md-4">
147+
<div class="row">
148+
<div class="col-md-3">
149149
<div class="well select-next">
150-
<a href="/logging.html" class="btn btn-success btn-full"><i class="fa fa-align-left fa-inverse fa-2x"></i></a>
150+
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
151151
<p class="under-btn">
152-
How do I monitor my app and task queues with logging?
152+
How do I learn more about the users of my app with web analytics?
153153
</p>
154154
</div>
155155
</div>
156-
<div class="col-md-4">
156+
<div class="col-md-3">
157157
<div class="well select-next">
158-
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
158+
<a href="/web-application-security.html" class="btn btn-success btn-full"><i class="fa fa-lock fa-inverse fa-2x"></i></a>
159159
</a>
160160
<p class="under-btn">
161-
I want to learn more about the users of my application.
161+
What should I learn about web application security?
162162
</p>
163163
</div>
164164
</div>
165-
<div class="col-md-4">
165+
<div class="col-md-3">
166166
<div class="well select-next">
167167
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-inverse fa-2x"></i></a>
168168
<p class="under-btn">
169169
How do I automate the server configuration I've set up?
170170
</p>
171171
</div>
172172
</div>
173-
</div> <style type="text/css">
173+
<div class="col-md-3">
174+
<div class="well select-next">
175+
<a href="/logging.html" class="btn btn-success btn-full"><i class="fa fa-align-left fa-inverse fa-2x"></i></a>
176+
<p class="under-btn">
177+
How should I log events in my application outside monitoring?
178+
</p>
179+
</div>
180+
</div>
181+
</div> <style type="text/css">
174182
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
175183
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
176184
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

source/content/pages/08-monitoring-analytics/0803-monitoring.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: Monitoring
22
category: page
33
slug: monitoring
44
sort-order: 082
5-
choice1url:
6-
choice1icon:
7-
choice1text:
8-
choice2url:
9-
choice2icon:
10-
choice2text:
11-
choice3url:
12-
choice3icon:
13-
choice3text:
14-
choice4url:
15-
choice4icon:
16-
choice4text:
5+
choice1url: /web-analytics.html
6+
choice1icon: fa-dashboard
7+
choice1text: How do I learn more about the users of my app with web analytics?
8+
choice2url: /web-application-security.html
9+
choice2icon: fa-lock fa-inverse
10+
choice2text: What should I learn about web application security?
11+
choice3url: /configuration-management.html
12+
choice3icon: fa-gears fa-inverse
13+
choice3text: How do I automate the server configuration I've set up?
14+
choice4url: /logging.html
15+
choice4icon: fa-align-left fa-inverse
16+
choice4text: How should I log events in my application outside monitoring?
1717

1818

1919
# Monitoring

source/content/pages/08-monitoring-analytics/0805-web-analytics.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: Web Analytics
22
category: page
33
slug: web-analytics
44
sort-order: 083
5-
choice1url:
6-
choice1icon:
7-
choice1text:
8-
choice2url:
9-
choice2icon:
10-
choice2text:
11-
choice3url:
12-
choice3icon:
13-
choice3text:
14-
choice4url:
15-
choice4icon:
16-
choice4text:
5+
choice1url: /web-application-security.html
6+
choice1icon: fa-lock fa-inverse
7+
choice1text: What should I know about web application security?
8+
choice2url: /api-integration.html
9+
choice2icon: fa-link fa-inverse
10+
choice2text: How do I integrate external APIs into my web application?
11+
choice3url: /configuration-management.html
12+
choice3icon: fa-gears
13+
choice3text: I want to learn how to automate setting up my app.
14+
choice4url: /task-queues.html
15+
choice4icon: fa-tasks
16+
choice4text: How do I run code outside the HTTP request-response cycle?
1717

1818

1919
# Web analytics

source/content/pages/09-security/0903-web-security.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: Web Security
22
category: page
33
slug: web-application-security
44
sort-order: 092
5-
choice1url:
6-
choice1icon:
7-
choice1text:
8-
choice2url:
9-
choice2icon:
10-
choice2text:
11-
choice3url:
12-
choice3icon:
13-
choice3text:
14-
choice4url:
15-
choice4icon:
16-
choice4text:
5+
choice1url: /web-analytics.html
6+
choice1icon: fa-dashboard
7+
choice1text: I want to learn more about the users of my app with analytics.
8+
choice2url: /api-integration.html
9+
choice2icon: fa-link fa-inverse
10+
choice2text: How do I integrate external APIs into my app?
11+
choice3url: /logging.html
12+
choice3icon: fa-align-left fa-inverse
13+
choice3text: How can I log events that occur while the app is running?
14+
choice4url: /monitoring.html
15+
choice4icon: fa-bar-chart-o fa-inverse
16+
choice4text: What tools should I use for monitoring the live web app?
1717

1818

1919
# Web Application Security

source/theme/templates/chapters/monitoring.html

Lines changed: 0 additions & 27 deletions
This file was deleted.

source/theme/templates/chapters/web-analytics.html

Lines changed: 0 additions & 35 deletions
This file was deleted.

source/theme/templates/chapters/web-application-security.html

Lines changed: 0 additions & 35 deletions
This file was deleted.

web-analytics.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -124,41 +124,41 @@ <h2>Web Analytics Resources</h2>
124124
</li>
125125
</ul>
126126
<h3>What's the next topic you want to learn about?</h3>
127-
<div class="row">
127+
<div class="row">
128128
<div class="col-md-3">
129129
<div class="well select-next">
130-
<a href="/logging.html" class="btn btn-success btn-full"><i class="fa fa-align-left fa-inverse fa-2x"></i></a>
130+
<a href="/web-application-security.html" class="btn btn-success btn-full"><i class="fa fa-lock fa-inverse fa-2x"></i></a>
131131
<p class="under-btn">
132-
How do I monitor my app and task queues with logging?
132+
What should I know about web application security?
133133
</p>
134134
</div>
135135
</div>
136136
<div class="col-md-3">
137137
<div class="well select-next">
138-
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-2x"></i></a>
138+
<a href="/api-integration.html" class="btn btn-success btn-full"><i class="fa fa-link fa-inverse fa-2x"></i></a>
139139
</a>
140140
<p class="under-btn">
141-
I want to learn how to automate setting up my app.
141+
How do I integrate external APIs into my web application?
142142
</p>
143143
</div>
144144
</div>
145145
<div class="col-md-3">
146146
<div class="well select-next">
147-
<a href="/api-integration.html" class="btn btn-success btn-full"><i class="fa fa-link fa-inverse fa-2x"></i></a>
147+
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-2x"></i></a>
148148
<p class="under-btn">
149-
How do I integrate external APIs into my app?
149+
I want to learn how to automate setting up my app.
150150
</p>
151151
</div>
152152
</div>
153-
<div class="col-md-3">
153+
<div class="col-md-3">
154154
<div class="well select-next">
155-
<a href="/web-application-security.html" class="btn btn-success btn-full"><i class="fa fa-lock fa-inverse fa-2x"></i></a>
155+
<a href="/task-queues.html" class="btn btn-success btn-full"><i class="fa fa-tasks fa-2x"></i></a>
156156
<p class="under-btn">
157-
What should I do about security in my application?
157+
How do I run code outside the HTTP request-response cycle?
158158
</p>
159159
</div>
160160
</div>
161-
</div> <style type="text/css">
161+
</div> <style type="text/css">
162162
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
163163
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
164164
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

web-application-security.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -91,41 +91,41 @@ <h2>Security Resources</h2>
9191
</li>
9292
</ul>
9393
<h3>What topic do you want to learn about next?</h3>
94-
<div class="row">
94+
<div class="row">
9595
<div class="col-md-3">
9696
<div class="well select-next">
97-
<a href="/logging.html" class="btn btn-success btn-full"><i class="fa fa-align-left fa-inverse fa-2x"></i></a>
97+
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
9898
<p class="under-btn">
99-
How do I monitor my app and task queues with logging?
99+
I want to learn more about the users of my app with analytics.
100100
</p>
101101
</div>
102102
</div>
103103
<div class="col-md-3">
104104
<div class="well select-next">
105-
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
105+
<a href="/api-integration.html" class="btn btn-success btn-full"><i class="fa fa-link fa-inverse fa-2x"></i></a>
106106
</a>
107107
<p class="under-btn">
108-
I want to learn more about the users of my application.
108+
How do I integrate external APIs into my app?
109109
</p>
110110
</div>
111111
</div>
112112
<div class="col-md-3">
113113
<div class="well select-next">
114-
<a href="/api-integration.html" class="btn btn-success btn-full"><i class="fa fa-link fa-inverse fa-2x"></i></a>
114+
<a href="/logging.html" class="btn btn-success btn-full"><i class="fa fa-align-left fa-inverse fa-2x"></i></a>
115115
<p class="under-btn">
116-
How do I integrate external APIs into my app?
116+
How can I log events that occur while the app is running?
117117
</p>
118118
</div>
119119
</div>
120-
<div class="col-md-3">
120+
<div class="col-md-3">
121121
<div class="well select-next">
122-
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-inverse fa-2x"></i></a>
122+
<a href="/monitoring.html" class="btn btn-success btn-full"><i class="fa fa-bar-chart-o fa-inverse fa-2x"></i></a>
123123
<p class="under-btn">
124-
How do I automate the server configuration I've set up?
124+
What tools should I use for monitoring the live web app?
125125
</p>
126126
</div>
127127
</div>
128-
</div> <style type="text/css">
128+
</div> <style type="text/css">
129129
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
130130
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
131131
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

0 commit comments

Comments
 (0)