Skip to content

Commit 30346ff

Browse files
committed
updating django resources
1 parent 0c4f306 commit 30346ff

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

all.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h1>Django</h1>
150150
<a href="https://docs.djangoproject.com/en/dev/topics/templates/">templating system</a>,
151151
an <a href="https://docs.djangoproject.com/en/dev/topics/db/">object-relational mapper</a>,
152152
and <a href="https://docs.djangoproject.com/en/dev/topics/migrations/">database schema migrations</a>
153-
(as of version 1.7) are all included with the <a href="https://pypi.python.org/pypi/Django/1.6.2">Django framework</a>.
153+
(as of version 1.7) are all included with the <a href="https://pypi.python.org/pypi/Django/">Django framework</a>.
154154
Compare that included functionality to the Flask framework which requires a
155155
separate library such as
156156
<a href="https://flask-login.readthedocs.org/en/latest/">Flask-Login</a>
@@ -247,7 +247,7 @@ <h2>Django tutorials</h2>
247247
list of Django libraries and resources.</p>
248248
</li>
249249
<li>
250-
<p><a href="https://realpython.com/learn/start-django/">Starting a Django Project</a> answers the question, “How do I set up a Django (1.5, 1.6, or 1.7) project from scratch?”</p>
250+
<p><a href="https://realpython.com/learn/start-django/">Starting a Django Project</a> answers the question, “How do I set up a Django (1.5, 1.6, or /1.7) project from scratch?”</p>
251251
</li>
252252
<li>
253253
<p>The <a href="http://irisbeta.com/article/245366784/the-django-request-response-cycle/">Django Request-Response Cycle</a>
@@ -310,7 +310,9 @@ <h2>Django 1.7-specific resources</h2>
310310
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-1-introduction-and-django-releases/">Part 1</a>,
311311
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-2-migrations-in-django-16-and-17/">part 2</a> and
312312
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-3-django-17-new-features/">part 3</a>
313-
are currently available with further parts coming in the future.</p>
313+
and
314+
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-4-upgrade-strategies/">part 4</a>
315+
are now all available to read.</p>
314316
</li>
315317
</ul>
316318
<h2>Django ORM resources</h2>

django.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h1>Django</h1>
5151
<a href="https://docs.djangoproject.com/en/dev/topics/templates/">templating system</a>,
5252
an <a href="https://docs.djangoproject.com/en/dev/topics/db/">object-relational mapper</a>,
5353
and <a href="https://docs.djangoproject.com/en/dev/topics/migrations/">database schema migrations</a>
54-
(as of version 1.7) are all included with the <a href="https://pypi.python.org/pypi/Django/1.6.2">Django framework</a>.
54+
(as of version 1.7) are all included with the <a href="https://pypi.python.org/pypi/Django/">Django framework</a>.
5555
Compare that included functionality to the Flask framework which requires a
5656
separate library such as
5757
<a href="https://flask-login.readthedocs.org/en/latest/">Flask-Login</a>
@@ -148,7 +148,7 @@ <h2>Django tutorials</h2>
148148
list of Django libraries and resources.</p>
149149
</li>
150150
<li>
151-
<p><a href="https://realpython.com/learn/start-django/">Starting a Django Project</a> answers the question, “How do I set up a Django (1.5, 1.6, or 1.7) project from scratch?”</p>
151+
<p><a href="https://realpython.com/learn/start-django/">Starting a Django Project</a> answers the question, “How do I set up a Django (1.5, 1.6, or /1.7) project from scratch?”</p>
152152
</li>
153153
<li>
154154
<p>The <a href="http://irisbeta.com/article/245366784/the-django-request-response-cycle/">Django Request-Response Cycle</a>
@@ -211,7 +211,9 @@ <h2>Django 1.7-specific resources</h2>
211211
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-1-introduction-and-django-releases/">Part 1</a>,
212212
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-2-migrations-in-django-16-and-17/">part 2</a> and
213213
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-3-django-17-new-features/">part 3</a>
214-
are currently available with further parts coming in the future.</p>
214+
and
215+
<a href="http://andrewsforge.com/article/upgrading-django-to-17/part-4-upgrade-strategies/">part 4</a>
216+
are now all available to read.</p>
215217
</li>
216218
</ul>
217219
<h2>Django ORM resources</h2>

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-11-26T11:20:03Z</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-11-27T09:30:53Z</updated></feed>

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ For example,
3333
[templating system](https://docs.djangoproject.com/en/dev/topics/templates/),
3434
an [object-relational mapper](https://docs.djangoproject.com/en/dev/topics/db/),
3535
and [database schema migrations](https://docs.djangoproject.com/en/dev/topics/migrations/)
36-
(as of version 1.7) are all included with the [Django framework](https://pypi.python.org/pypi/Django/1.6.2).
36+
(as of version 1.7) are all included with the [Django framework](https://pypi.python.org/pypi/Django/).
3737
Compare that included functionality to the Flask framework which requires a
3838
separate library such as
3939
[Flask-Login](https://flask-login.readthedocs.org/en/latest/)
@@ -121,7 +121,7 @@ syntax and language semantics first before diving into web development.
121121
* [django-awesome](https://github.com/rosarior/awesome-django) is a curated
122122
list of Django libraries and resources.
123123

124-
* [Starting a Django Project](https://realpython.com/learn/start-django/) answers the question, “How do I set up a Django (1.5, 1.6, or 1.7) project from scratch?”
124+
* [Starting a Django Project](https://realpython.com/learn/start-django/) answers the question, “How do I set up a Django (1.5, 1.6, or /1.7) project from scratch?”
125125

126126
* The [Django Request-Response Cycle](http://irisbeta.com/article/245366784/the-django-request-response-cycle/)
127127
explains what happens when you visit a webpage generated by Django.
@@ -172,7 +172,9 @@ syntax and language semantics first before diving into web development.
172172
[Part 1](http://andrewsforge.com/article/upgrading-django-to-17/part-1-introduction-and-django-releases/),
173173
[part 2](http://andrewsforge.com/article/upgrading-django-to-17/part-2-migrations-in-django-16-and-17/) and
174174
[part 3](http://andrewsforge.com/article/upgrading-django-to-17/part-3-django-17-new-features/)
175-
are currently available with further parts coming in the future.
175+
and
176+
[part 4](http://andrewsforge.com/article/upgrading-django-to-17/part-4-upgrade-strategies/)
177+
are now all available to read.
176178

177179

178180
## Django ORM resources

0 commit comments

Comments
 (0)