Skip to content

Commit 0c157fb

Browse files
committed
moving wsgi and app dependency options into meta
1 parent 3eede34 commit 0c157fb

File tree

7 files changed

+43
-117
lines changed

7 files changed

+43
-117
lines changed

application-dependencies.html

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@ <h2>Application dependency resources</h2>
167167
</li>
168168
</ul>
169169
<h3>What do you need to learn after installing your app dependencies?</h3>
170-
<div class="row">
170+
<div class="row">
171171
<div class="col-md-3">
172172
<div class="well select-next">
173173
<a href="/wsgi-servers.html" class="btn btn-success btn-full"><i class="fa fa-play fa-inverse fa-2x"></i></a>
174174
<p class="under-btn">
175-
How do I set up a WSGI server to run the Python code?
175+
How do I set up a WSGI server to execute Python code?
176176
</p>
177177
</div>
178178
</div>
@@ -181,28 +181,27 @@ <h3>What do you need to learn after installing your app dependencies?</h3>
181181
<a href="/databases.html" class="btn btn-success btn-full"><i class="fa fa-hdd-o fa-2x"></i></a>
182182
</a>
183183
<p class="under-btn">
184-
How do I store persistent data with my Python web app?
184+
What database should I set up to store my app's persistent data?
185185
</p>
186186
</div>
187187
</div>
188188
<div class="col-md-3">
189189
<div class="well select-next">
190-
<a href="/cascading-style-sheets.html" class="btn btn-success btn-full"><i class="fa fa-css3 fa-inverse fa-2x"></i></a>
190+
<a href="/api-integration.html" class="btn btn-success btn-full"><i class="fa fa-link fa-inverse fa-2x"></i></a>
191191
<p class="under-btn">
192-
My app is running, but it looks awful. I need to style the
193-
interface.
192+
How do I integrate an external API into my app?
194193
</p>
195194
</div>
196195
</div>
197-
<div class="col-md-3">
196+
<div class="col-md-3">
198197
<div class="well select-next">
199-
<a href="/javascript.html" class="btn btn-success btn-full"><i class="fa fa-html5 fa-inverse fa-2x"></i></a>
198+
<a href="/cascading-style-sheets.html" class="btn btn-success btn-full"><i class="fa fa-css3 fa-inverse fa-2x"></i></a>
200199
<p class="under-btn">
201-
How do I create a better browser experience with JavaScript?
200+
How do I style my app with cascading style sheets?
202201
</p>
203202
</div>
204203
</div>
205-
</div> <style type="text/css">
204+
</div> <style type="text/css">
206205
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
207206
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
208207
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-04-30T15:59:08Z</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-01T07:56:32Z</updated></feed>

source/content/pages/03-deployment/0311-wsgi-servers.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: WSGI Servers
22
category: page
33
slug: wsgi-servers
44
sort-order: 036
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: /databases.html
6+
choice1icon: fa-hdd-o
7+
choice1text: How do I store persistent data for my Python web app?
8+
choice2url: /javascript.html
9+
choice2icon: fa-html5 fa-inverse
10+
choice2text: How can I use JavaScript to create a better user interface?
11+
choice3url: /cascading-style-sheets.html
12+
choice3icon: fa-css3 fa-inverse
13+
choice3text: What do I need to know about CSS to style my web application?
14+
choice4url: /logging.html
15+
choice4icon: fa-align-left fa-inverse
16+
choice4text: My code is running but I'm getting errors. How do I log them?
1717

1818

1919
# WSGI Servers

source/content/pages/03-deployment/0315-application-dependencies.markdown

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ title: Application Dependencies
22
category: page
33
slug: application-dependencies
44
sort-order: 038
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: /wsgi-servers.html
6+
choice1icon: fa-play fa-inverse
7+
choice1text: How do I set up a WSGI server to execute Python code?
8+
choice2url: /databases.html
9+
choice2icon: fa-hdd-o
10+
choice2text: What database should I set up to store my app's persistent data?
11+
choice3url: /api-integration.html
12+
choice3icon: fa-link fa-inverse
13+
choice3text: How do I integrate an external API into my app?
14+
choice4url: /cascading-style-sheets.html
15+
choice4icon: fa-css3 fa-inverse
16+
choice4text: How do I style my app with cascading style sheets?
1717

1818

1919
# Application Dependencies

source/theme/templates/chapters/application-dependencies.html

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

source/theme/templates/chapters/wsgi-servers.html

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

wsgi-servers.html

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -205,42 +205,41 @@ <h2>WSGI Resources</h2>
205205
</li>
206206
</ul>
207207
<h3>What's next after your Python code is running?</h3>
208-
<div class="row">
208+
<div class="row">
209209
<div class="col-md-3">
210210
<div class="well select-next">
211211
<a href="/databases.html" class="btn btn-success btn-full"><i class="fa fa-hdd-o fa-2x"></i></a>
212-
</a>
213212
<p class="under-btn">
214-
How do I store persistent data with my Python web app?
213+
How do I store persistent data for my Python web app?
215214
</p>
216215
</div>
217216
</div>
218217
<div class="col-md-3">
219218
<div class="well select-next">
220-
<a href="/cascading-style-sheets.html" class="btn btn-success btn-full"><i class="fa fa-css3 fa-inverse fa-2x"></i></a>
219+
<a href="/javascript.html" class="btn btn-success btn-full"><i class="fa fa-html5 fa-inverse fa-2x"></i></a>
220+
</a>
221221
<p class="under-btn">
222-
My app is running, but it looks awful. I need to style the
223-
interface.
222+
How can I use JavaScript to create a better user interface?
224223
</p>
225224
</div>
226225
</div>
227226
<div class="col-md-3">
228227
<div class="well select-next">
229-
<a href="/javascript.html" class="btn btn-success btn-full"><i class="fa fa-html5 fa-inverse fa-2x"></i></a>
228+
<a href="/cascading-style-sheets.html" class="btn btn-success btn-full"><i class="fa fa-css3 fa-inverse fa-2x"></i></a>
230229
<p class="under-btn">
231-
How do I create a better browser experience with JavaScript?
230+
What do I need to know about CSS to style my web application?
232231
</p>
233232
</div>
234233
</div>
235-
<div class="col-md-3">
234+
<div class="col-md-3">
236235
<div class="well select-next">
237236
<a href="/logging.html" class="btn btn-success btn-full"><i class="fa fa-align-left fa-inverse fa-2x"></i></a>
238237
<p class="under-btn">
239238
My code is running but I'm getting errors. How do I log them?
240239
</p>
241240
</div>
242241
</div>
243-
</div> <style type="text/css">
242+
</div> <style type="text/css">
244243
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }
245244
/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
246245
We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */

0 commit comments

Comments
 (0)