Skip to content

Commit 84721d5

Browse files
committed
new django resource
1 parent f3e823b commit 84721d5

File tree

6 files changed

+35
-1
lines changed

6 files changed

+35
-1
lines changed

all.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,6 +1025,13 @@ <h2>Django ORM resources</h2>
10251025
explains the difficulty of supporting Django 1.7 and maintaining South
10261026
migrations for Django 1.6 then goes into how it can be done.</p>
10271027
</li>
1028+
<li>
1029+
<p><a href="https://www.calazan.com/adding-basic-search-to-your-django-site/">Adding basic search to your Django site</a>
1030+
shows how to write generic queries that'll allow you to provide site
1031+
search via the Django ORM without relying on another tool like
1032+
ElasticSearch. This is great for small sites before you scale them up with
1033+
a more robust search engine.</p>
1034+
</li>
10281035
</ul>
10291036
<h2>Static and media files</h2>
10301037
<p>Deploying and handling static and media files can be confusing for new
@@ -5094,6 +5101,11 @@ <h1>Change Log</h1>
50945101
the
50955102
<a href="https://github.com/makaimc/fullstackpython.github.com/commits/gh-pages">source repository's commit log</a> on GitHub.</p>
50965103
<h2>2015</h2>
5104+
<h3>March</h3>
5105+
<ul>
5106+
<li>Beefing up the Django resources and will soon break them further down
5107+
into subcategories so they are easier to find by topic.</li>
5108+
</ul>
50975109
<h3>February</h3>
50985110
<ul>
50995111
<li>Cleaned up the sidebar and <a href="/email.html">email</a> subscribe messaging.</li>

change-log.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ <h1>Change Log</h1>
4343
the
4444
<a href="https://github.com/makaimc/fullstackpython.github.com/commits/gh-pages">source repository's commit log</a> on GitHub.</p>
4545
<h2>2015</h2>
46+
<h3>March</h3>
47+
<ul>
48+
<li>Beefing up the Django resources and will soon break them further down
49+
into subcategories so they are easier to find by topic.</li>
50+
</ul>
4651
<h3>February</h3>
4752
<ul>
4853
<li>Cleaned up the sidebar and <a href="/email.html">email</a> subscribe messaging.</li>

django.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,13 @@ <h2>Django ORM resources</h2>
322322
explains the difficulty of supporting Django 1.7 and maintaining South
323323
migrations for Django 1.6 then goes into how it can be done.</p>
324324
</li>
325+
<li>
326+
<p><a href="https://www.calazan.com/adding-basic-search-to-your-django-site/">Adding basic search to your Django site</a>
327+
shows how to write generic queries that'll allow you to provide site
328+
search via the Django ORM without relying on another tool like
329+
ElasticSearch. This is great for small sites before you scale them up with
330+
a more robust search engine.</p>
331+
</li>
325332
</ul>
326333
<h2>Static and media files</h2>
327334
<p>Deploying and handling static and media files can be confusing for new

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>2015-03-01T12:50: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>2015-03-02T06:55:16Z</updated></feed>

source/content/pages/04-web-development/02-django.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,12 @@ existing framework.
270270
explains the difficulty of supporting Django 1.7 and maintaining South
271271
migrations for Django 1.6 then goes into how it can be done.
272272

273+
* [Adding basic search to your Django site](https://www.calazan.com/adding-basic-search-to-your-django-site/)
274+
shows how to write generic queries that'll allow you to provide site
275+
search via the Django ORM without relying on another tool like
276+
ElasticSearch. This is great for small sites before you scale them up with
277+
a more robust search engine.
278+
273279

274280
## Static and media files
275281
Deploying and handling static and media files can be confusing for new

source/content/pages/13-meta/02-change-log.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ the
2424

2525

2626
## 2015
27+
### March
28+
* Beefing up the Django resources and will soon break them further down
29+
into subcategories so they are easier to find by topic.
30+
2731
### February
2832
* Cleaned up the sidebar and [email](/email.html) subscribe messaging.
2933
* Added new [monitoring](/monitoring.html), [websockets](/websockets.html) and

0 commit comments

Comments
 (0)