Skip to content

Commit 8f9734d

Browse files
committed
MOAR typo fixes
1 parent cd4a9c2 commit 8f9734d

File tree

8 files changed

+32
-35
lines changed

8 files changed

+32
-35
lines changed

all.html

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5241,7 +5241,7 @@ <h2>Application dependency resources</h2>
52415241
<a href="http://www.jontourage.com/2011/02/09/virtualenv-pip-basics/">virtualenv and pip basics</a>.</p>
52425242
</li>
52435243
<li>
5244-
<p>"<a href="http://dabapps.com/blog/introduction-to-pip-and-virtualenv-python/">A non-magical introduction to virtualenv and pip</a>
5244+
<p><a href="http://dabapps.com/blog/introduction-to-pip-and-virtualenv-python/">A non-magical introduction to virtualenv and pip</a>
52455245
breaks down what problems these tools solve and how to use them.</p>
52465246
</li>
52475247
<li>
@@ -5250,7 +5250,7 @@ <h2>Application dependency resources</h2>
52505250
</li>
52515251
<li>
52525252
<p>Occasionally arguments about using Python's dependency manager versus
5253-
one of Linux's depenency managers comes up. This provides
5253+
one of Linux's dependency managers comes up. This provides
52545254
<a href="http://notes.pault.ag/debian-python/">one perspective on that debate</a>.</p>
52555255
</li>
52565256
<li>
@@ -5267,8 +5267,7 @@ <h2>Application dependency resources</h2>
52675267
make life easier when using these tools.</p>
52685268
</li>
52695269
<li>
5270-
<p>Major speed improvements were made in pip 7 over previous versions.
5271-
Read
5270+
<p>Major speed improvements were made in pip 7 over previous versions. Read
52725271
<a href="https://lincolnloop.com/blog/fast-immutable-python-deployments/">this article about the differences</a>
52735272
and be sure to upgrade.</p>
52745273
</li>
@@ -5277,14 +5276,14 @@ <h2>Open source app dependency projects</h2>
52775276
<ul>
52785277
<li>
52795278
<p><a href="https://github.com/kennethreitz/autoenv">Autoenv</a> is a tool for activating
5280-
environment variables stored in a .env file in your projects' home
5279+
environment variables stored in a <code>.env</code> file in your projects' home
52815280
directories. Environment variables aren't managed by virtualenv and although
52825281
virtualenvwrapper has some hooks for handling them, it's often easiest to
5283-
use a shell script or .env file to set them in a development environment.</p>
5282+
use a shell script or <code>.env</code> file to set them in a development environment.</p>
52845283
</li>
52855284
<li>
52865285
<p><a href="https://github.com/bndr/pipreqs">Pipreqs</a> searches through a project for
5287-
dependencies based on imports. It then generates a requirements.txt file
5286+
dependencies based on imports. It then generates a <code>requirements.txt</code> file
52885287
based on the libraries necessary to run those dependencies. Note though that
52895288
while this could come in handy with a legacy project, the version numbers
52905289
for those libraries will not be generated with the output.</p>
@@ -5302,12 +5301,12 @@ <h2>Application dependencies learning checklist</h2>
53025301
</li>
53035302
<li>
53045303
<p>Create a fresh virtualenv and install the dependencies from your
5305-
requirements.txt file by using the <code>pip install -r requirements.txt</code>
5304+
<code>requirements.txt</code> file by using the <code>pip install -r requirements.txt</code>
53065305
command.</p>
53075306
</li>
53085307
<li>
53095308
<p>Check that your application runs properly with the fresh virtualenv and
5310-
only the installed dependencies from the requirements.txt file.</p>
5309+
only the installed dependencies from the <code>requirements.txt</code> file.</p>
53115310
</li>
53125311
</ol>
53135312
<h1>Static content</h1>
@@ -5736,7 +5735,7 @@ <h2>Continuous integration example</h2>
57365735
<p>The following picture represents a high level perspective on how continuous
57375736
integration and deployment can work. </p>
57385737
<p><img src="theme/img/continuous-integration.png" width="100%" class="technical-diagram" alt="One potential way for continuous integration to work." /></p>
5739-
<p>In the above diagram, when new code is commited to a source repository
5738+
<p>In the above diagram, when new code is committed to a source repository
57405739
there is a hook that notifies the continuous integration server that new
57415740
code needs to be built (the continuous integration server could also
57425741
poll the source code repository if a notification is not possible).</p>
@@ -5876,7 +5875,7 @@ <h2>Logging aggregators</h2>
58765875
your application to forward your system and application logs to one location
58775876
that provides tools for viewing, searching, and monitoring logging events
58785877
across your cluster. </p>
5879-
<p>Another advantage of log aggregatortion tools is they allow you to set up
5878+
<p>Another advantage of log aggregation tools is they allow you to set up
58805879
custom alerts and alarms so you can get notified when error rates breach a
58815880
certain threshold.</p>
58825881
<h3>Open source log aggregators</h3>

application-dependencies.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ <h2>Application dependency resources</h2>
140140
<a href="http://www.jontourage.com/2011/02/09/virtualenv-pip-basics/">virtualenv and pip basics</a>.</p>
141141
</li>
142142
<li>
143-
<p>"<a href="http://dabapps.com/blog/introduction-to-pip-and-virtualenv-python/">A non-magical introduction to virtualenv and pip</a>
143+
<p><a href="http://dabapps.com/blog/introduction-to-pip-and-virtualenv-python/">A non-magical introduction to virtualenv and pip</a>
144144
breaks down what problems these tools solve and how to use them.</p>
145145
</li>
146146
<li>
@@ -149,7 +149,7 @@ <h2>Application dependency resources</h2>
149149
</li>
150150
<li>
151151
<p>Occasionally arguments about using Python's dependency manager versus
152-
one of Linux's depenency managers comes up. This provides
152+
one of Linux's dependency managers comes up. This provides
153153
<a href="http://notes.pault.ag/debian-python/">one perspective on that debate</a>.</p>
154154
</li>
155155
<li>
@@ -166,8 +166,7 @@ <h2>Application dependency resources</h2>
166166
make life easier when using these tools.</p>
167167
</li>
168168
<li>
169-
<p>Major speed improvements were made in pip 7 over previous versions.
170-
Read
169+
<p>Major speed improvements were made in pip 7 over previous versions. Read
171170
<a href="https://lincolnloop.com/blog/fast-immutable-python-deployments/">this article about the differences</a>
172171
and be sure to upgrade.</p>
173172
</li>
@@ -176,14 +175,14 @@ <h2>Open source app dependency projects</h2>
176175
<ul>
177176
<li>
178177
<p><a href="https://github.com/kennethreitz/autoenv">Autoenv</a> is a tool for activating
179-
environment variables stored in a .env file in your projects' home
178+
environment variables stored in a <code>.env</code> file in your projects' home
180179
directories. Environment variables aren't managed by virtualenv and although
181180
virtualenvwrapper has some hooks for handling them, it's often easiest to
182-
use a shell script or .env file to set them in a development environment.</p>
181+
use a shell script or <code>.env</code> file to set them in a development environment.</p>
183182
</li>
184183
<li>
185184
<p><a href="https://github.com/bndr/pipreqs">Pipreqs</a> searches through a project for
186-
dependencies based on imports. It then generates a requirements.txt file
185+
dependencies based on imports. It then generates a <code>requirements.txt</code> file
187186
based on the libraries necessary to run those dependencies. Note though that
188187
while this could come in handy with a legacy project, the version numbers
189188
for those libraries will not be generated with the output.</p>
@@ -201,12 +200,12 @@ <h2>Application dependencies learning checklist</h2>
201200
</li>
202201
<li>
203202
<p>Create a fresh virtualenv and install the dependencies from your
204-
requirements.txt file by using the <code>pip install -r requirements.txt</code>
203+
<code>requirements.txt</code> file by using the <code>pip install -r requirements.txt</code>
205204
command.</p>
206205
</li>
207206
<li>
208207
<p>Check that your application runs properly with the fresh virtualenv and
209-
only the installed dependencies from the requirements.txt file.</p>
208+
only the installed dependencies from the <code>requirements.txt</code> file.</p>
210209
</li>
211210
</ol>
212211
<h3>What's next after installing app dependencies?</h3>

continuous-integration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ <h2>Continuous integration example</h2>
4747
<p>The following picture represents a high level perspective on how continuous
4848
integration and deployment can work. </p>
4949
<p><img src="theme/img/continuous-integration.png" width="100%" class="technical-diagram" alt="One potential way for continuous integration to work." /></p>
50-
<p>In the above diagram, when new code is commited to a source repository
50+
<p>In the above diagram, when new code is committed to a source repository
5151
there is a hook that notifies the continuous integration server that new
5252
code needs to be built (the continuous integration server could also
5353
poll the source code repository if a notification is not possible).</p>

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>2015-07-24T17:49:05Z</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>2015-07-24T19:51:28Z</updated></feed>

logging.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h2>Logging aggregators</h2>
5858
your application to forward your system and application logs to one location
5959
that provides tools for viewing, searching, and monitoring logging events
6060
across your cluster. </p>
61-
<p>Another advantage of log aggregatortion tools is they allow you to set up
61+
<p>Another advantage of log aggregation tools is they allow you to set up
6262
custom alerts and alarms so you can get notified when error rates breach a
6363
certain threshold.</p>
6464
<h3>Open source log aggregators</h3>

source/content/pages/07-web-app-deployment/09-app-dependencies.markdown

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -120,14 +120,14 @@ further clarification.
120120
* [Jon Chu](https://twitter.com/jonathanchu) wrote a great introduction on
121121
[virtualenv and pip basics](http://www.jontourage.com/2011/02/09/virtualenv-pip-basics/).
122122

123-
* "[A non-magical introduction to virtualenv and pip](http://dabapps.com/blog/introduction-to-pip-and-virtualenv-python/)
123+
* [A non-magical introduction to virtualenv and pip](http://dabapps.com/blog/introduction-to-pip-and-virtualenv-python/)
124124
breaks down what problems these tools solve and how to use them.
125125

126126
* [Tools of the modern Python hacker](http://www.clemesha.org/blog/modern-python-hacker-tools-virtualenv-fabric-pip/)
127127
contains detailed explanations of virtualenv, Fabric, and pip.
128128

129129
* Occasionally arguments about using Python's dependency manager versus
130-
one of Linux's depenency managers comes up. This provides
130+
one of Linux's dependency managers comes up. This provides
131131
[one perspective on that debate](http://notes.pault.ag/debian-python/).
132132

133133
* This Stack Overflow question details how to set up a
@@ -140,21 +140,20 @@ further clarification.
140140
shows how to use shell aliases and postactivate virtualenvwrapper hooks to
141141
make life easier when using these tools.
142142

143-
* Major speed improvements were made in pip 7 over previous versions.
144-
Read
143+
* Major speed improvements were made in pip 7 over previous versions. Read
145144
[this article about the differences](https://lincolnloop.com/blog/fast-immutable-python-deployments/)
146145
and be sure to upgrade.
147146

148147

149148
## Open source app dependency projects
150149
* [Autoenv](https://github.com/kennethreitz/autoenv) is a tool for activating
151-
environment variables stored in a .env file in your projects' home
150+
environment variables stored in a `.env` file in your projects' home
152151
directories. Environment variables aren't managed by virtualenv and although
153152
virtualenvwrapper has some hooks for handling them, it's often easiest to
154-
use a shell script or .env file to set them in a development environment.
153+
use a shell script or `.env` file to set them in a development environment.
155154

156155
* [Pipreqs](https://github.com/bndr/pipreqs) searches through a project for
157-
dependencies based on imports. It then generates a requirements.txt file
156+
dependencies based on imports. It then generates a `requirements.txt` file
158157
based on the libraries necessary to run those dependencies. Note though that
159158
while this could come in handy with a legacy project, the version numbers
160159
for those libraries will not be generated with the output.
@@ -165,12 +164,12 @@ further clarification.
165164
a requirement.txt file with pegged versions.
166165

167166
1. An easy way to capture currently installed dependencies is with the
168-
``pip freeze`` command.
167+
`pip freeze` command.
169168

170169
1. Create a fresh virtualenv and install the dependencies from your
171-
requirements.txt file by using the ``pip install -r requirements.txt``
170+
`requirements.txt` file by using the `pip install -r requirements.txt`
172171
command.
173172

174173
1. Check that your application runs properly with the fresh virtualenv and
175-
only the installed dependencies from the requirements.txt file.
174+
only the installed dependencies from the `requirements.txt` file.
176175

source/content/pages/07-web-app-deployment/13-continuous-integration.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ integration and deployment can work.
2424

2525
<img src="theme/img/continuous-integration.png" width="100%" class="technical-diagram" alt="One potential way for continuous integration to work." />
2626

27-
In the above diagram, when new code is commited to a source repository
27+
In the above diagram, when new code is committed to a source repository
2828
there is a hook that notifies the continuous integration server that new
2929
code needs to be built (the continuous integration server could also
3030
poll the source code repository if a notification is not possible).

source/content/pages/07-web-app-deployment/14-logging.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ your application to forward your system and application logs to one location
3636
that provides tools for viewing, searching, and monitoring logging events
3737
across your cluster.
3838

39-
Another advantage of log aggregatortion tools is they allow you to set up
39+
Another advantage of log aggregation tools is they allow you to set up
4040
custom alerts and alarms so you can get notified when error rates breach a
4141
certain threshold.
4242

0 commit comments

Comments
 (0)