Skip to content

Commit d56d266

Browse files
committed
new static content resource
1 parent 4262fad commit d56d266

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-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-04-12T09:51:45Z</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-12T20:59:14Z</updated></feed>

source/content/pages/12-static-content/1201-static-content.markdown

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,15 @@ CDNs send content responses from data centers with the closest proximity to the
3333

3434

3535
## Static Content Resources
36-
[Using Amazon S3 to host your Django static files](http://blog.doismellburning.co.uk/2012/07/14/using-amazon-s3-to-host-your-django-static-files/)
36+
* [The super stupid idiot's guide to getting started with Django, Pipeline, and S3](http://blog.iambob.me/the-super-stupid-idiots-guide-to-getting-started-with-django-pipeline-and-s3/)
37+
shows how to host static content on S3 and use those files with Django.
3738

38-
[CDNs fail, but your scripts don't have to](http://www.hanselman.com/blog/CDNsFailButYourScriptsDontHaveToFallbackFromCDNToLocalJQuery.aspx)
39+
* [Using Amazon S3 to host your Django static files](http://blog.doismellburning.co.uk/2012/07/14/using-amazon-s3-to-host-your-django-static-files/)
3940

40-
[django-storages](http://django-storages.readthedocs.org/en/latest/) is
41+
* [CDNs fail, but your scripts don't have to](http://www.hanselman.com/blog/CDNsFailButYourScriptsDontHaveToFallbackFromCDNToLocalJQuery.aspx)
42+
43+
* [django-storages](http://django-storages.readthedocs.org/en/latest/) is
4144
a Django library for managing static and media files on services such as
4245
Amazon S3 and other content delivery networks.
4346

47+

static-content.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,23 @@ <h2>Content delivery networks</h2>
9696
requests to the Green Unicorn WSGI server.</p>
9797
<p>CDNs send content responses from data centers with the closest proximity to the requester.</p>
9898
<h2>Static Content Resources</h2>
99+
<ul>
100+
<li>
101+
<p><a href="http://blog.iambob.me/the-super-stupid-idiots-guide-to-getting-started-with-django-pipeline-and-s3/">The super stupid idiot's guide to getting started with Django, Pipeline, and S3</a>
102+
shows how to host static content on S3 and use those files with Django.</p>
103+
</li>
104+
<li>
99105
<p><a href="http://blog.doismellburning.co.uk/2012/07/14/using-amazon-s3-to-host-your-django-static-files/">Using Amazon S3 to host your Django static files</a></p>
106+
</li>
107+
<li>
100108
<p><a href="http://www.hanselman.com/blog/CDNsFailButYourScriptsDontHaveToFallbackFromCDNToLocalJQuery.aspx">CDNs fail, but your scripts don't have to</a></p>
109+
</li>
110+
<li>
101111
<p><a href="http://django-storages.readthedocs.org/en/latest/">django-storages</a> is
102112
a Django library for managing static and media files on services such as
103113
Amazon S3 and other content delivery networks.</p>
114+
</li>
115+
</ul>
104116
<br/>
105117
Next read the
106118
<a href="/source-control.html">source control</a> section.

0 commit comments

Comments
 (0)