Skip to content

Commit e8480ab

Browse files
committed
moving more pages choices into meta. almost done
1 parent f9cc2e3 commit e8480ab

File tree

9 files changed

+45
-115
lines changed

9 files changed

+45
-115
lines changed

caching.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ <h2>Caching resources</h2>
8080
</li>
8181
</ul>
8282
<h3>What do you want to learn now that your app is responding faster?</h3>
83-
<div class="row">
83+
<div class="row">
8484
<div class="col-md-3">
8585
<div class="well select-next">
86-
<a href="/source-control.html" class="btn btn-success btn-full"><i class="fa fa-code-fork fa-inverse fa-2x"></i></a>
86+
<a href="/task-queues.html" class="btn btn-success btn-full"><i class="fa fa-tasks fa-2x"></i></a>
8787
<p class="under-btn">
88-
How do I version my source code and content so I don't lose it?
88+
How do I run Python outside the HTTP request-response cycle?
8989
</p>
9090
</div>
9191
</div>
@@ -94,28 +94,27 @@ <h3>What do you want to learn now that your app is responding faster?</h3>
9494
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
9595
</a>
9696
<p class="under-btn">
97-
I want to learn more about the users of my application.
97+
What can I learn about my users through web analytics?
9898
</p>
9999
</div>
100100
</div>
101101
<div class="col-md-3">
102102
<div class="well select-next">
103103
<a href="/web-application-security.html" class="btn btn-success btn-full"><i class="fa fa-lock fa-inverse fa-2x"></i></a>
104104
<p class="under-btn">
105-
Something in the logs looks strange. How do I learn about
106-
security?
105+
What should I know about security to protect my app?
107106
</p>
108107
</div>
109108
</div>
110-
<div class="col-md-3">
109+
<div class="col-md-3">
111110
<div class="well select-next">
112111
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-inverse fa-2x"></i></a>
113112
<p class="under-btn">
114-
How do I automate the server configuration I've set up?
113+
How do I automate the server configuration that I set up?
115114
</p>
116115
</div>
117116
</div>
118-
</div> <style type="text/css">
117+
</div> <style type="text/css">
119118
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
120119
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
121120
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

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-02T11:14:04Z</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-02T12:52:32Z</updated></feed>

logging.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ <h3>Log Aggregator Third Party Services</h3>
8383
integration with S3 for </li>
8484
<li><a href="http://www.splunk.com/">splunk</a> Splunk offers third party cloud and self hosted solutions
8585
for event aggregation. It excells at searching and data mining any text based data. </li>
86+
<li><a href="http://raygun.io/">Raygun</a> logs errors and provides immediate notification
87+
when issues arise.</li>
8688
</ul>
8789
<h3>Open Source Log Aggregators</h3>
8890
<ul>

source/content/pages/07-performance/0701-static-content.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: Static Content
22
category: page
33
slug: static-content
44
sort-order: 071
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: /caching.html
6+
choice1icon: fa-repeat
7+
choice1text: How do I cache repeated operations to improve performance?
8+
choice2url: /web-analytics.html
9+
choice2icon: fa-dashboard
10+
choice2text: What can I learn about my users through web analytics?
11+
choice3url: /web-application-security.html
12+
choice3icon: fa-lock fa-inverse
13+
choice3text: What should I know about security to protect my app?
14+
choice4url: /configuration-management.html
15+
choice4icon: fa-gears fa-inverse
16+
choice4text: How do I automate the server configuration I set up?
1717

1818

1919
# Static content

source/content/pages/07-performance/0703-caching.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: Caching
22
category: page
33
slug: caching
44
sort-order: 072
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: /task-queues.html
6+
choice1icon: fa-tasks
7+
choice1text: How do I run Python outside the HTTP request-response cycle?
8+
choice2url: /web-analytics.html
9+
choice2icon: fa-dashboard
10+
choice2text: What can I learn about my users through web analytics?
11+
choice3url: /web-application-security.html
12+
choice3icon: fa-lock fa-inverse
13+
choice3text: What should I know about security to protect my app?
14+
choice4url: /configuration-management.html
15+
choice4icon: fa-gears fa-inverse
16+
choice4text: How do I automate the server configuration that I set up?
1717

1818

1919
# Caching

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ alerting on custom searches.
6060
integration with S3 for
6161
* [splunk](http://www.splunk.com/) Splunk offers third party cloud and self hosted solutions
6262
for event aggregation. It excells at searching and data mining any text based data.
63+
* [Raygun](http://raygun.io/) logs errors and provides immediate notification
64+
when issues arise.
6365

6466

6567
### Open Source Log Aggregators

source/theme/templates/chapters/caching.html

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

source/theme/templates/chapters/static-content.html

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

static-content.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ <h2>Static Content Resources</h2>
8585
</li>
8686
</ul>
8787
<h3>What's next for building your app?</h3>
88-
<div class="row">
88+
<div class="row">
8989
<div class="col-md-3">
9090
<div class="well select-next">
91-
<a href="/source-control.html" class="btn btn-success btn-full"><i class="fa fa-code-fork fa-inverse fa-2x"></i></a>
91+
<a href="/caching.html" class="btn btn-success btn-full"><i class="fa fa-repeat fa-2x"></i></a>
9292
<p class="under-btn">
93-
How do I version my source code and content so I don't lose it?
93+
How do I cache repeated operations to improve performance?
9494
</p>
9595
</div>
9696
</div>
@@ -99,28 +99,27 @@ <h3>What's next for building your app?</h3>
9999
<a href="/web-analytics.html" class="btn btn-success btn-full"><i class="fa fa-dashboard fa-2x"></i></a>
100100
</a>
101101
<p class="under-btn">
102-
I want to learn more about the users of my application.
102+
What can I learn about my users through web analytics?
103103
</p>
104104
</div>
105105
</div>
106106
<div class="col-md-3">
107107
<div class="well select-next">
108108
<a href="/web-application-security.html" class="btn btn-success btn-full"><i class="fa fa-lock fa-inverse fa-2x"></i></a>
109109
<p class="under-btn">
110-
Something in the logs looks strange. How do I learn about
111-
security?
110+
What should I know about security to protect my app?
112111
</p>
113112
</div>
114113
</div>
115-
<div class="col-md-3">
114+
<div class="col-md-3">
116115
<div class="well select-next">
117116
<a href="/configuration-management.html" class="btn btn-success btn-full"><i class="fa fa-gears fa-inverse fa-2x"></i></a>
118117
<p class="under-btn">
119-
How do I automate the server configuration I've set up?
118+
How do I automate the server configuration I set up?
120119
</p>
121120
</div>
122121
</div>
123-
</div> <style type="text/css">
122+
</div> <style type="text/css">
124123
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
125124
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
126125
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

0 commit comments

Comments
 (0)