Skip to content

Commit 8979a43

Browse files
committed
updating intro with a link to the change log for previous visitors
1 parent 4dc825b commit 8979a43

File tree

4 files changed

+37
-19
lines changed

4 files changed

+37
-19
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-03-13T12:06:20Z</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-03-13T12:14:28Z</updated></feed>

index.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,19 +78,25 @@ <h1>Introduction</h1>
7878
<p>You're knee deep in learning the <a href="http://www.python.org/">Python</a>
7979
programming language. The syntax is starting to make sense. The first
8080
few "AHA!" moments are hitting you as you're building applications with
81-
a web framework. </p>
81+
a web framework.</p>
8282
<p>Now you want to know how to take your web application code and make it
83-
live on the Web. That's where this guide comes in. If you want to gain
83+
live on the Web. That's where this guide comes in. When you want to gain
8484
an understanding of everything you need to deploy and run a production Python
8585
web application, you've come to the right place. </p>
8686
<p>If you're not yet ready to deploy your application there are a few other
8787
<a href="../best-python-resources.html">fantastic Python guides</a> that you can read
8888
first.</p>
89+
<p>If you have previously read this guide check out the
90+
<a href="../change-log.html">change log</a> to find out what major sections have been
91+
added since your last visit.</p>
8992
<p>This guide has a different focus from other Python resources. In each section
90-
of this guide you will learn topics such as what server options exist,
91-
which operating system to use, what the Web Server Gateway Interface
92-
(WSGI) standard is, and so on up through the action that takes place in
93-
the user's browser.</p>
93+
of this guide you will learn topics such as </p>
94+
<ul>
95+
<li>what server options exist</li>
96+
<li>which operating system to use for production applications</li>
97+
<li>what the Web Server Gateway Interface (WSGI) standard is</li>
98+
<li>why each layer of the stack is necessary</li>
99+
</ul>
94100
<p>Read on once you have a basic Python understanding and are ready to
95101
learn more about the full Python web stack.</p>
96102
<br/>

introduction.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,19 +78,25 @@ <h1>Introduction</h1>
7878
<p>You're knee deep in learning the <a href="http://www.python.org/">Python</a>
7979
programming language. The syntax is starting to make sense. The first
8080
few "AHA!" moments are hitting you as you're building applications with
81-
a web framework. </p>
81+
a web framework.</p>
8282
<p>Now you want to know how to take your web application code and make it
83-
live on the Web. That's where this guide comes in. If you want to gain
83+
live on the Web. That's where this guide comes in. When you want to gain
8484
an understanding of everything you need to deploy and run a production Python
8585
web application, you've come to the right place. </p>
8686
<p>If you're not yet ready to deploy your application there are a few other
8787
<a href="../best-python-resources.html">fantastic Python guides</a> that you can read
8888
first.</p>
89+
<p>If you have previously read this guide check out the
90+
<a href="../change-log.html">change log</a> to find out what major sections have been
91+
added since your last visit.</p>
8992
<p>This guide has a different focus from other Python resources. In each section
90-
of this guide you will learn topics such as what server options exist,
91-
which operating system to use, what the Web Server Gateway Interface
92-
(WSGI) standard is, and so on up through the action that takes place in
93-
the user's browser.</p>
93+
of this guide you will learn topics such as </p>
94+
<ul>
95+
<li>what server options exist</li>
96+
<li>which operating system to use for production applications</li>
97+
<li>what the Web Server Gateway Interface (WSGI) standard is</li>
98+
<li>why each layer of the stack is necessary</li>
99+
</ul>
94100
<p>Read on once you have a basic Python understanding and are ready to
95101
learn more about the full Python web stack.</p>
96102
<br/>

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,28 @@ sort-order: 01
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
1010
few "AHA!" moments are hitting you as you're building applications with
11-
a web framework.
11+
a web framework.
1212

1313
Now you want to know how to take your web application code and make it
14-
live on the Web. That's where this guide comes in. If you want to gain
14+
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

1818
If you're not yet ready to deploy your application there are a few other
1919
[fantastic Python guides](../best-python-resources.html) that you can read
2020
first.
2121

22+
If you have previously read this guide check out the
23+
[change log](../change-log.html) to find out what major sections have been
24+
added since your last visit.
25+
2226
This guide has a different focus from other Python resources. In each section
23-
of this guide you will learn topics such as what server options exist,
24-
which operating system to use, what the Web Server Gateway Interface
25-
(WSGI) standard is, and so on up through the action that takes place in
26-
the user's browser.
27+
of this guide you will learn topics such as
28+
29+
* what server options exist
30+
* which operating system to use for production applications
31+
* what the Web Server Gateway Interface (WSGI) standard is
32+
* why each layer of the stack is necessary
2733

2834
Read on once you have a basic Python understanding and are ready to
2935
learn more about the full Python web stack.

0 commit comments

Comments
 (0)