Skip to content

Commit 3d27cf4

Browse files
committed
moving furhter choices into meta. almost done
1 parent e8480ab commit 3d27cf4

File tree

7 files changed

+35
-125
lines changed

7 files changed

+35
-125
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-02T12:52:32Z</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-02T13:11:46Z</updated></feed>

logging.html

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -114,16 +114,16 @@ <h2>Logging resources</h2>
114114
</li>
115115
</ul>
116116
<h3>Logging isn't enough. How do I analyze more data about the app?</h3>
117-
<div class="row">
118-
<div class="col-md-3">
117+
<div class="row">
118+
<div class="col-md-4">
119119
<div class="well select-next">
120120
<a href="/monitoring.html" class="btn btn-success btn-full"><i class="fa fa-bar-chart-o fa-inverse fa-2x"></i></a>
121121
<p class="under-btn">
122-
How do I monitor my app besides just the log files?
122+
How can I monitor my live app with tools other than just logs?
123123
</p>
124124
</div>
125125
</div>
126-
<div class="col-md-3">
126+
<div class="col-md-4">
127127
<div class="well select-next">
128128
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
129129
</a>
@@ -132,24 +132,15 @@ <h3>Logging isn't enough. How do I analyze more data about the app?</h3>
132132
</p>
133133
</div>
134134
</div>
135-
<div class="col-md-3">
135+
<div class="col-md-4">
136136
<div class="well select-next">
137137
<a href="/web-application-security.html" class="btn btn-success btn-full"><i class="fa fa-lock fa-inverse fa-2x"></i></a>
138138
<p class="under-btn">
139-
Something in the logs looks strange. How do I learn about
140-
security?
139+
Something in the logs looks strange. How do I learn about security?
141140
</p>
142141
</div>
143142
</div>
144-
<div class="col-md-3">
145-
<div class="well select-next">
146-
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-inverse fa-2x"></i></a>
147-
<p class="under-btn">
148-
How do I automate the server configuration I've set up?
149-
</p>
150-
</div>
151-
</div>
152-
</div> <style type="text/css">
143+
</div> <style type="text/css">
153144
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
154145
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
155146
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

source/content/pages/07-performance/0705-task-queues.markdown

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ title: Task Queues
22
category: page
33
slug: task-queues
44
sort-order: 073
5-
choice1url:
6-
choice1icon:
7-
choice1text:
8-
choice2url:
9-
choice2icon:
10-
choice2text:
11-
choice3url:
12-
choice3icon:
13-
choice3text:
5+
choice1url: /logging.html
6+
choice1icon: fa-align-left fa-inverse
7+
choice1text: How do I monitor my app and its task queues with logging?
8+
choice2url: /web-analytics.html
9+
choice2icon: fa-dashboard
10+
choice2text: How can I learn more about the users of my application?
11+
choice3url: /monitoring.html
12+
choice3icon: fa-bar-chart-o fa-inverse
13+
choice3text: What tools exist for monitoring a live web application?
1414
choice4url:
1515
choice4icon:
1616
choice4text:

source/content/pages/08-monitoring-analytics/0801-logging.markdown

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ title: Logging
22
category: page
33
slug: logging
44
sort-order: 081
5-
choice1url:
6-
choice1icon:
7-
choice1text:
8-
choice2url:
9-
choice2icon:
10-
choice2text:
11-
choice3url:
12-
choice3icon:
13-
choice3text:
5+
choice1url: /monitoring.html
6+
choice1icon: fa-bar-chart-o fa-inverse
7+
choice1text: How can I monitor my live app with tools other than just logs?
8+
choice2url: /web-analytics.html
9+
choice2icon: fa-dashboard
10+
choice2text: I want to learn more about the users of my application.
11+
choice3url: /web-application-security.html
12+
choice3icon: fa-lock fa-inverse
13+
choice3text: Something in the logs looks strange. How do I learn about security?
1414
choice4url:
1515
choice4icon:
1616
choice4text:

source/theme/templates/chapters/logging.html

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

source/theme/templates/chapters/task-queues.html

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

task-queues.html

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -126,42 +126,33 @@ <h2>Task queue resources</h2>
126126
</li>
127127
</ul>
128128
<h3>What's next after task queues?</h3>
129-
<div class="row">
130-
<div class="col-md-3">
129+
<div class="row">
130+
<div class="col-md-4">
131131
<div class="well select-next">
132132
<a href="/logging.html" class="btn btn-success btn-full"><i class="fa fa-align-left fa-inverse fa-2x"></i></a>
133133
<p class="under-btn">
134-
How do I monitor my app and task queues with logging?
134+
How do I monitor my app and its task queues with logging?
135135
</p>
136136
</div>
137137
</div>
138-
<div class="col-md-3">
138+
<div class="col-md-4">
139139
<div class="well select-next">
140140
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
141141
</a>
142142
<p class="under-btn">
143-
I want to learn more about the users of my application.
143+
How can I learn more about the users of my application?
144144
</p>
145145
</div>
146146
</div>
147-
<div class="col-md-3">
147+
<div class="col-md-4">
148148
<div class="well select-next">
149-
<a href="/web-application-security.html" class="btn btn-success btn-full"><i class="fa fa-lock fa-inverse fa-2x"></i></a>
149+
<a href="/monitoring.html" class="btn btn-success btn-full"><i class="fa fa-bar-chart-o fa-inverse fa-2x"></i></a>
150150
<p class="under-btn">
151-
Something in the logs looks strange. How do I learn about
152-
security?
151+
What tools exist for monitoring a live web application?
153152
</p>
154153
</div>
155154
</div>
156-
<div class="col-md-3">
157-
<div class="well select-next">
158-
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-inverse fa-2x"></i></a>
159-
<p class="under-btn">
160-
How do I automate the server configuration I've set up?
161-
</p>
162-
</div>
163-
</div>
164-
</div> <style type="text/css">
155+
</div> <style type="text/css">
165156
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
166157
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
167158
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

0 commit comments

Comments
 (0)