Skip to content

Commit e207761

Browse files
committed
working on djnago explanation
1 parent c39e863 commit e207761

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

django.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,13 @@ <h1>Django</h1>
5757
an <a href="https://docs.djangoproject.com/en/dev/topics/db/">object-relational mapper</a>,
5858
and <a href="https://docs.djangoproject.com/en/dev/topics/migrations/">database schema migrations</a>
5959
(as of version 1.7) are all included with the <a href="https://pypi.python.org/pypi/Django/1.6.2">Django framework</a>.
60-
Compare that functionality to the Flask framework which requires a separate
61-
library such as <a href="https://flask-login.readthedocs.org/en/latest/">Flask-Login</a>
62-
to perform user authentication. The batteries-includes and extensibility
63-
philosophies are simply two different ways to tackle framework building.
64-
Neither philosophy is inherently better than the other.</p>
60+
Compare that included functionality to the Flask framework which requires a
61+
separate library such as
62+
<a href="https://flask-login.readthedocs.org/en/latest/">Flask-Login</a>
63+
to perform user authentication. </p>
64+
<p>The batteries-includes and extensibility philosophies are simply two different
65+
ways to tackle framework building. Neither philosophy is inherently better
66+
than the other.</p>
6567
<h2>Why is Django a good web framework choice?</h2>
6668
<p>The Django project's stability, performance and community have grown
6769
tremendously over the past decade since the framework's creation. Detailed

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-05-02T17:07:54Z</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-05-02T17:25:18Z</updated></feed>

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,14 @@ For example,
3030
an [object-relational mapper](https://docs.djangoproject.com/en/dev/topics/db/),
3131
and [database schema migrations](https://docs.djangoproject.com/en/dev/topics/migrations/)
3232
(as of version 1.7) are all included with the [Django framework](https://pypi.python.org/pypi/Django/1.6.2).
33-
Compare that functionality to the Flask framework which requires a separate
34-
library such as [Flask-Login](https://flask-login.readthedocs.org/en/latest/)
35-
to perform user authentication. The batteries-includes and extensibility
36-
philosophies are simply two different ways to tackle framework building.
37-
Neither philosophy is inherently better than the other.
33+
Compare that included functionality to the Flask framework which requires a
34+
separate library such as
35+
[Flask-Login](https://flask-login.readthedocs.org/en/latest/)
36+
to perform user authentication.
37+
38+
The batteries-includes and extensibility philosophies are simply two different
39+
ways to tackle framework building. Neither philosophy is inherently better
40+
than the other.
3841

3942

4043
## Why is Django a good web framework choice?

0 commit comments

Comments
 (0)