Skip to content

Commit e471bb6

Browse files
committed
changing location of wsgi server picture
1 parent 337ffde commit e471bb6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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-15T10:34:48Z</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-15T10:36:58Z</updated></feed>

source/content/pages/07-wsgi-servers/0701-wsgi-servers.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ Why use WSGI and not just point a web server directly at an application?
5151
The segregation of responsibilities is important for efficiently scaling
5252
web traffic.
5353

54+
<img src="theme/img/web-browser-server-wsgi.png" alt="WSGI Server <-> Web server <-> Browser" width="100%" class="technical-diagram" />
55+
5456
WSGI is by design a simple standard interface for running Python code. As
5557
a web developer you won't need to know much more than
5658

@@ -82,8 +84,6 @@ WSGI v1.0 is superseded by
8284
[PEP 3333](http://www.python.org/dev/peps/pep-3333/), which defines the
8385
v1.0.1 WSGI standard.
8486

85-
<img src="theme/img/web-browser-server-wsgi.png" alt="WSGI Server <-> Web server <-> Browser" width="100%" class="technical-diagram" />
86-
8787

8888
## Example configuration
8989
A web server's configuration specifies what requests should be passed to

wsgi-servers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ <h2>WSGI's Purpose</h2>
116116
web traffic.</p>
117117
</li>
118118
</ul>
119+
<p><img src="theme/img/web-browser-server-wsgi.png" alt="WSGI Server <-> Web server &lt;-&gt; Browser" width="100%" class="technical-diagram" /&gt;</p>
119120
<p>WSGI is by design a simple standard interface for running Python code. As
120121
a web developer you won't need to know much more than</p>
121122
<ul>
@@ -147,7 +148,6 @@ <h2>Official WSGI specifications</h2>
147148
WSGI v1.0 is superseded by
148149
<a href="http://www.python.org/dev/peps/pep-3333/">PEP 3333</a>, which defines the
149150
v1.0.1 WSGI standard.</p>
150-
<p><img src="theme/img/web-browser-server-wsgi.png" alt="WSGI Server <-> Web server &lt;-&gt; Browser" width="100%" class="technical-diagram" /&gt;</p>
151151
<h2>Example configuration</h2>
152152
<p>A web server's configuration specifies what requests should be passed to
153153
the WSGI server to process. Once a request is processed and generated by the

0 commit comments

Comments
 (0)