Skip to content

Commit 8f627cd

Browse files
committed
modifying references of images to /img instead of /theme
1 parent f8230db commit 8f627cd

File tree

135 files changed

+86
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+86
-85
lines changed

all.html

Lines changed: 28 additions & 28 deletions
Large diffs are not rendered by default.

application-dependencies.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h2>Isolating dependencies</h2>
8282
application then relies only on that virtualenv instance which has a separate
8383
copy of the Python interpreter and site-packages directory. A high level of
8484
how a server configured with virtualenv can look is shown in the picture below.</p>
85-
<p><img src="theme/img/server-setup.png" alt="How the virtualenv separates dependencies on the server." width="100%" class="technical-diagram" /></p>
85+
<p><img src="/img/server-setup.png" alt="How the virtualenv separates dependencies on the server." width="100%" class="technical-diagram" /></p>
8686
<h2>Installing Python dependencies</h2>
8787
<p>The recommended way to install Python library dependencies is with the
8888
<a href="http://www.pip-installer.org/en/latest/">pip</a> command when a virtualenv

application-programming-interfaces.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ <h2>Webhooks</h2>
6969
message is sent to a Twilio phone number Twilio sends an HTTP POST request
7070
webhook to the URL specified by the user. The URL is defined in a text box
7171
on the number's page on Twilio as shown below.</p>
72-
<p><img src="theme/img/twilio-webhook-definition.jpg" width="100%" alt="Webhook definition in the Twilio API." class="technical-diagram" /></p>
72+
<p><img src="/img/twilio-webhook-definition.jpg" width="100%" alt="Webhook definition in the Twilio API." class="technical-diagram" /></p>
7373
<h2>API open source projects</h2>
7474
<ul>
7575
<li><a href="https://github.com/wordnik/swagger-core">Swagger</a> is an open source project

cascading-style-sheets.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ <h2>How is CSS retrieved from a web server?</h2>
4545
needed to render the content. The web browser requests the CSS file after the
4646
HTML file as shown below in a screenshot captured of the Chrome Web Developer
4747
Tools network traffic.</p>
48-
<p><img src="theme/img/css-chrome-dev-tools.jpg" width="100%" alt="Google Chrome Web Developer Tools shows how CSS is separate from the HTML content." class="technical-diagram" /></p>
48+
<p><img src="/img/css-chrome-dev-tools.jpg" width="100%" alt="Google Chrome Web Developer Tools shows how CSS is separate from the HTML content." class="technical-diagram" /></p>
4949
<p>That request for the fsp.css file is made because the HTML file for Full
5050
Stack Python contains a reference to <code>theme/css/fsp.css</code> which is shown
5151
in the view source screenshot below.</p>
52-
<p><img src="theme/img/fsp-css-source.jpg" width="100%" alt="View source screenshot for the fsp.css file in index.html." class="technical-diagram" /></p>
52+
<p><img src="/img/fsp-css-source.jpg" width="100%" alt="View source screenshot for the fsp.css file in index.html." class="technical-diagram" /></p>
5353
<h2>CSS preprocessors</h2>
5454
<p>A CSS preprocessor compiles a processed language into plain CSS code. CSS
5555
preprocessing languages add syntax such as variables, mixins and functions

change-log.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ <h3>March</h3>
192192
icons with SVG elements that mimic the font awesome icons.</li>
193193
<li>Pushed the <a href="https://github.com/makaimc/fullstackpython.github.com/commit/2fc711b44ffed89c9855f4f999d4c1df076bc44d">1000th commit</a>
194194
to Full Stack Python!
195-
<img src="theme/img/1000th-commit.jpg" width="100%" alt="Screenshot of 1000th commit to Full Stack Python." class="technical-diagram" /></li>
195+
<img src="/img/1000th-commit.jpg" width="100%" alt="Screenshot of 1000th commit to Full Stack Python." class="technical-diagram" /></li>
196196
<li>Major update to <a href="/vim.html">Vim</a> page to add screenshots, a better example
197197
.vimrc configuration and many more resources.</li>
198198
<li>Updated the <a href="/web-analytics.html">web analytics</a> page with a new
@@ -379,7 +379,7 @@ <h3>April</h3>
379379
<li>
380380
<p>New logo! This one's way more Python software stack, way less boring
381381
folder-thingy. Here's how the old one looked in comparison:
382-
<img src="theme/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" /></p>
382+
<img src="/img/old-logo.png" width="100%" alt="Old Full Stack Python logo" class="technical-diagram" /></p>
383383
</li>
384384
<li>
385385
<p>Added a <a href="../future-directions.html">future direction</a> section to explain

continuous-integration.html

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

deployment.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h2>Deployment topics map</h2>
4343
be individually configured. Here is a map that visually depicts how each
4444
deployment topic relates to each other. Click the image to pull up a PDF
4545
version.</p>
46-
<p><a href="/full-stack-python-map.pdf" target="_blank" style="border: none;"><img src="theme/img/full-stack-python-map.png" width="100%" alt="Full Stack Python site map." class="technical-diagram" /></a></p>
46+
<p><a href="/full-stack-python-map.pdf" target="_blank" style="border: none;"><img src="/img/full-stack-python-map.png" width="100%" alt="Full Stack Python site map." class="technical-diagram" /></a></p>
4747
<h2>Deployment hosting options</h2>
4848
<p>There are four options for deploying and hosting a web application:</p>
4949
<ol>

django.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h1>Django</h1>
3737
behind batteries-included is that the common functionality for building
3838
web applications should come with the framework instead of as separate
3939
libraries.</p>
40-
<p><a href="http://www.djangoproject.com/" style="border: none;"><img src="theme/img/django-logo-positive.png" width="100%" alt="Official Django logo. Trademark Django Software Foundation." class="technical-diagram" /></a></p>
40+
<p><a href="http://www.djangoproject.com/" style="border: none;"><img src="/img/django-logo-positive.png" width="100%" alt="Official Django logo. Trademark Django Software Foundation." class="technical-diagram" /></a></p>
4141
<p>For example,
4242
<a href="https://docs.djangoproject.com/en/dev/topics/auth/">authentication</a>,
4343
<a href="https://docs.djangoproject.com/en/dev/topics/http/urls/">URL routing</a>, a

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>2016-01-18T08:58:06Z</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>2016-01-19T09:00:54Z</updated></feed>

flask.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<h1>Flask</h1>
3535
<p><a href="http://flask.pocoo.org/">Flask</a> is a Python web framework built with a
3636
<a href="http://flask.pocoo.org/docs/design/">small core and easy-to-extend philosophy</a>.
37-
<a href="http://flask.pocoo.org/" style="border: none;"><img src="theme/img/flask.jpg" width="100%" alt="Official Flask logo. Flask Artwork License." class="technical-diagram"></a></p>
37+
<a href="http://flask.pocoo.org/" style="border: none;"><img src="/img/flask.jpg" width="100%" alt="Official Flask logo. Flask Artwork License." class="technical-diagram"></a></p>
3838
<h2>Why is Flask a good web framework choice?</h2>
3939
<p>Flask is considered more
4040
<a href="http://blog.startifact.com/posts/older/what-is-pythonic.html">Pythonic</a>

0 commit comments

Comments
 (0)