Skip to content

Commit 17143ea

Browse files
committed
updating django 1.7 section with Andrew Pinkman's awesome guide
1 parent 5900374 commit 17143ea

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

all.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,13 +266,22 @@ <h2>Django 1.7-specific resources</h2>
266266
</li>
267267
<li>
268268
<p><a href="http://pyvideo.org/video/2630/designing-djangos-migrations">Designing Django's Migrations</a>
269-
covers Django 1.7's new migrations from the main programmer Andrew Godwin.</p>
269+
covers Django 1.7's new migrations from the main programmer
270+
of South and now Django's built-in migrations, Andrew Godwin.</p>
270271
</li>
271272
<li>
272273
<p>Real Python's <a href="https://realpython.com/blog/python/django-migrations-a-primer/">migrations primer</a>
273274
explores the difference between South's migrations and the built-in
274275
Django 1.7 migrations as well as how you use them.</p>
275276
</li>
277+
<li>
278+
<p>Andrew Pinkman's "Upgrading to Django 1.7" series is great learning
279+
material for understanding what's changed in this major released and
280+
how to adapt your Django project.
281+
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-1-introduction-and-django-releases/">Part 1</a>
282+
and <a href="http://andrewsforge.com/article/upgrading-django-to-17/part-2-migrations-in-django-16-and-17/">part 2</a>
283+
are available with further parts coming in the future.</p>
284+
</li>
276285
</ul>
277286
<h2>Django ORM resources</h2>
278287
<p>The <a href="https://docs.djangoproject.com/en/dev/topics/db/">Django ORM</a> works well

django.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,22 @@ <h2>Django 1.7-specific resources</h2>
178178
</li>
179179
<li>
180180
<p><a href="http://pyvideo.org/video/2630/designing-djangos-migrations">Designing Django's Migrations</a>
181-
covers Django 1.7's new migrations from the main programmer Andrew Godwin.</p>
181+
covers Django 1.7's new migrations from the main programmer
182+
of South and now Django's built-in migrations, Andrew Godwin.</p>
182183
</li>
183184
<li>
184185
<p>Real Python's <a href="https://realpython.com/blog/python/django-migrations-a-primer/">migrations primer</a>
185186
explores the difference between South's migrations and the built-in
186187
Django 1.7 migrations as well as how you use them.</p>
187188
</li>
189+
<li>
190+
<p>Andrew Pinkman's "Upgrading to Django 1.7" series is great learning
191+
material for understanding what's changed in this major released and
192+
how to adapt your Django project.
193+
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-1-introduction-and-django-releases/">Part 1</a>
194+
and <a href="http://andrewsforge.com/article/upgrading-django-to-17/part-2-migrations-in-django-16-and-17/">part 2</a>
195+
are available with further parts coming in the future.</p>
196+
</li>
188197
</ul>
189198
<h2>Django ORM resources</h2>
190199
<p>The <a href="https://docs.djangoproject.com/en/dev/topics/db/">Django ORM</a> works well

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-10-01T14:51:04Z</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-10-02T06:18:32Z</updated></feed>

source/content/pages/02-web-frameworks/0202-django.markdown

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,20 @@ syntax and language semantics first before diving into web development.
144144
package.
145145

146146
* [Designing Django's Migrations](http://pyvideo.org/video/2630/designing-djangos-migrations)
147-
covers Django 1.7's new migrations from the main programmer Andrew Godwin.
147+
covers Django 1.7's new migrations from the main programmer
148+
of South and now Django's built-in migrations, Andrew Godwin.
148149

149150
* Real Python's [migrations primer](https://realpython.com/blog/python/django-migrations-a-primer/)
150151
explores the difference between South's migrations and the built-in
151152
Django 1.7 migrations as well as how you use them.
152153

154+
* Andrew Pinkman's "Upgrading to Django 1.7" series is great learning
155+
material for understanding what's changed in this major released and
156+
how to adapt your Django project.
157+
[Part 1](http://andrewsforge.com/article/upgrading-django-to-17/part-1-introduction-and-django-releases/)
158+
and [part 2](http://andrewsforge.com/article/upgrading-django-to-17/part-2-migrations-in-django-16-and-17/)
159+
are available with further parts coming in the future.
160+
153161

154162
## Django ORM resources
155163
The [Django ORM](https://docs.djangoproject.com/en/dev/topics/db/) works well

0 commit comments

Comments
 (0)