Skip to content

Commit 3c1835c

Browse files
committed
cleaning up intro and servers page
1 parent b59e4a9 commit 3c1835c

File tree

6 files changed

+32
-27
lines changed

6 files changed

+32
-27
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-04-04T08:08: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-04-04T08:17:06Z</updated></feed>

index.html

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,21 @@
7676
<h1>Introduction</h1>
7777
<p>You're knee deep in learning the <a href="http://www.python.org/">Python</a>
7878
programming language. The syntax is starting to make sense. The first
79-
few "AHA!" moments are hitting you as you're building applications with
79+
few "<em>ahh-ha</em>!" moments are hitting you as you're building applications with
8080
a web framework.</p>
8181
<p>Now you want to know how to take your web application code and make it
8282
live on the Web. That's where this guide comes in. When you want to gain
8383
an understanding of everything you need to deploy and run a production Python
8484
web application, you've come to the right place. </p>
85-
<p>If you're not yet ready to deploy your application there are a few other
86-
<a href="../best-python-resources.html">fantastic Python guides</a> that you can read
87-
first.</p>
88-
<p>If you have previously read this guide check out the
85+
<p>If you've previously read this guide check out the
8986
<a href="../change-log.html">change log</a> to find out what major sections have been
9087
added since your last visit.</p>
91-
<p>This guide has a different focus from other Python resources. In each section
92-
of this guide you will learn topics such as </p>
88+
<p>If you are not yet ready to deploy your application there are a few other
89+
<a href="../best-python-resources.html">fantastic Python guides</a> that you can read
90+
first.</p>
91+
<p>This guide has a different focus from the other Python resources on the
92+
best resource links page. In each section of this guide you will learn topics
93+
such as </p>
9394
<ul>
9495
<li>what server options exist</li>
9596
<li>which operating system to use for production applications</li>

introduction.html

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,21 @@
7676
<h1>Introduction</h1>
7777
<p>You're knee deep in learning the <a href="http://www.python.org/">Python</a>
7878
programming language. The syntax is starting to make sense. The first
79-
few "AHA!" moments are hitting you as you're building applications with
79+
few "<em>ahh-ha</em>!" moments are hitting you as you're building applications with
8080
a web framework.</p>
8181
<p>Now you want to know how to take your web application code and make it
8282
live on the Web. That's where this guide comes in. When you want to gain
8383
an understanding of everything you need to deploy and run a production Python
8484
web application, you've come to the right place. </p>
85-
<p>If you're not yet ready to deploy your application there are a few other
86-
<a href="../best-python-resources.html">fantastic Python guides</a> that you can read
87-
first.</p>
88-
<p>If you have previously read this guide check out the
85+
<p>If you've previously read this guide check out the
8986
<a href="../change-log.html">change log</a> to find out what major sections have been
9087
added since your last visit.</p>
91-
<p>This guide has a different focus from other Python resources. In each section
92-
of this guide you will learn topics such as </p>
88+
<p>If you are not yet ready to deploy your application there are a few other
89+
<a href="../best-python-resources.html">fantastic Python guides</a> that you can read
90+
first.</p>
91+
<p>This guide has a different focus from the other Python resources on the
92+
best resource links page. In each section of this guide you will learn topics
93+
such as </p>
9394
<ul>
9495
<li>what server options exist</li>
9596
<li>which operating system to use for production applications</li>

servers.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@
7474
<div class="row">
7575
<div class="col-md-8">
7676
<h1>Servers</h1>
77-
<p>Servers provide the physical infrastructure to run all the software,
78-
including your web application, that responds to web requests.</p>
77+
<p>Servers are the physical infrastructure to run all the layers of software
78+
so your web application can respond to requests from clients such as web
79+
browsers.</p>
7980
<h2>Why are servers necessary?</h2>
8081
<p>Your web application must live somewhere other than your own desktop or
8182
laptop. Servers should ideally be accessible 24 hours a day, 7 days a week,

source/content/pages/01-introduction/0101-introduction.markdown

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,25 @@ sort-order: 01
77
# Introduction
88
You're knee deep in learning the [Python](http://www.python.org/)
99
programming language. The syntax is starting to make sense. The first
10-
few "AHA!" moments are hitting you as you're building applications with
10+
few "*ahh-ha*!" moments are hitting you as you're building applications with
1111
a web framework.
1212

1313
Now you want to know how to take your web application code and make it
1414
live on the Web. That's where this guide comes in. When you want to gain
1515
an understanding of everything you need to deploy and run a production Python
1616
web application, you've come to the right place.
1717

18-
If you're not yet ready to deploy your application there are a few other
19-
[fantastic Python guides](../best-python-resources.html) that you can read
20-
first.
21-
22-
If you have previously read this guide check out the
18+
If you've previously read this guide check out the
2319
[change log](../change-log.html) to find out what major sections have been
2420
added since your last visit.
2521

26-
This guide has a different focus from other Python resources. In each section
27-
of this guide you will learn topics such as
22+
If you are not yet ready to deploy your application there are a few other
23+
[fantastic Python guides](../best-python-resources.html) that you can read
24+
first.
25+
26+
This guide has a different focus from the other Python resources on the
27+
best resource links page. In each section of this guide you will learn topics
28+
such as
2829

2930
* what server options exist
3031
* which operating system to use for production applications

source/content/pages/02-servers/0201-servers.markdown

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ sort-order: 02
55

66

77
# Servers
8-
Servers provide the physical infrastructure to run all the software,
9-
including your web application, that responds to web requests.
8+
Servers are the physical infrastructure to run all the layers of software
9+
so your web application can respond to requests from clients such as web
10+
browsers.
1011

1112

1213
## Why are servers necessary?

0 commit comments

Comments
 (0)