Top stories for django

Buzz | Video | Top stories | My News


added 2008 Mon May 12 7:00:00 by unknown user
Saved By: Stefan | View Details | Give Thanks
added 2008 Sun Apr 27 7:00:00 by unknown user
Malcolm's Queryset Refactor branch landed on Django's trunk tonight. To mark the occasion I'm bookmarking a link to the page that describes in detail the changes. Saved By: Rob Hudson | View Details | Give Thanks
added 2008 Sat Apr 26 7:00:00 by unknown user
Deploying and tuning Django Saved By: jason.yosinski | View Details | Give Thanks
added 2008 Thu Apr 24 7:00:00 by unknown user
Digital Web Magazine - Introduction to Django: Helping Perfectionists With Deadlines Saved By: webponce | View Details | Give Thanks
added 2008 Mon Apr 14 7:00:00 by unknown user
Saved By: Colin Scroggins | View Details | Give Thanks
added 2008 Sat Apr 12 7:00:00 by unknown user
Rosetta is a Django application that eases the translation process of your Django projects. Because it doesn't export any models, Rosetta doesn't create any tables in your project's database. Rosetta can be installed and uninstalled by simply adding and removing a single entry in your project's INSTALLED_APPS and a single line in your main urls.py file. Features * Database independent * Reads and writes your project's gettext catalogs (po and mo files) * Installed and uninstalled in under a minute * Uses Django's admin interface CSS Saved By: ggl | View Details | Give Thanks
added 2008 Thu Apr 10 7:00:00 by unknown user
Yet another one of [Bryan](http://avalonstar.com/)'s astoundingly cool sites that "brings all of Django's pluggable applications under one roof". [django-geo is on there too](http://djangoplugables.com/projects/django-geo/) (as well as [on github](http://github.com/obeattie/django-geo/) as of today, too) :D Saved By: obeattie | View Details | Give Thanks
added 2008 Mon Mar 31 7:00:00 by unknown user
Tutorial for providing iCalendar Feeds with a Django app by Christian Joergensen. Saved By: ichigo600 | View Details | Give Thanks
added 2008 Thu Mar 27 7:00:00 by unknown user
Web hosts suitable for hosting the Django web framework. Saved By: Justin Driscoll | View Details | Give Thanks

Sponsors

 
added 2008 Fri Jan 25 7:00:00 by unknown user
Good friend and co-worker, Tom Watson, has launched a new site. All on Django as well. Very nice, very nice indeed Saved By: Kevin Tamura | View Details | Give Thanks
added 2008 Thu Jan 24 7:00:00 by unknown user
Only good things can come about because of this. Saved By: Adam Spooner | View Details | Give Thanks
added 2008 Wed Jan 23 7:00:00 by unknown user
Saved By: SmileyChris | View Details | Give Thanks
added 2008 Thu Jan 17 7:00:00 by unknown user
A Django management command plugin to concatenate and minify Javascript files to reduce HTTP requests and file size. I love how it ties into Django and the DEBUG state. Saved By: Rob Hudson | View Details | Give Thanks
added 2008 Tue Jan 8 7:00:00 by unknown user
Great alternative to caching for Django Saved By: baumer1122 | View Details | Give Thanks
added 2008 Wed Jan 2 7:00:00 by unknown user
This is an excellent interview with Adrian Holovaty, covering his work with Django, Python, and how he got involved in this dual-discipline of computer science/journalism. Saved By: Daniel Andrlik | View Details | Give Thanks
added 2007 Sun Dec 30 7:00:00 by unknown user
A Django library for tree traversal of models. Could be useful for pedigree traversals... Saved By: ramin | View Details | Give Thanks
added 2007 Wed Dec 26 7:00:00 by unknown user
Saved By: Kyle Johnston | View Details | Give Thanks
added 2007 Mon Dec 17 7:00:00 by unknown user
DjangoBook.com, the online location where you can get the entire text of Jacob and Adrian's new book *The Definitive Guide to Django*, has been updated to reflect the final copy used in the print edition (published by Apress -- you can get it from Amazon). I've just received my print edition and it looks really, really great, so far. Congrats, guys. Saved By: Jeff Croft | View Details | Give Thanks
added 2007 Mon Dec 17 7:00:00 by unknown user
Via [Simon Willison](http://simonwillison.net "Simon Willison's site") Will Larson has prepared a really excellent tutorial on building a Django application that will have both a web app and a Facebook app component to its interface. Saved By: Daniel Andrlik | View Details | Give Thanks
added 2007 Tue Dec 4 7:00:00 by unknown user
The apps I'll be introducing today include Basic Blog, Basic Places, Basic People, Basic Library, and Basic Profiles. Before you run off keep in mind these are basic apps. You won't see anything earth shattering. The idea is to be simple and pluggable so when it comes time to add a blog or user profiles to your project you've got a jumping off point. Saved By: Jeff Smith | View Details | Give Thanks
added 2007 Sun Nov 25 7:00:00 by unknown user
If it works for [SmileyChris](http://smileychris.tactful.co.nz/) than it works me (hopefully). The amount of google code projects dealing with schema evolution for django is daunting, hopefully this recommendation will work for me. Saved By: sandro turriate | View Details | Give Thanks
added 2007 Mon Oct 15 15:00:00 by unknown user
A Rails peep trys out Django for a few weeks and goes back to Rails. Flame On! Saved By: Erik Mallinson | View Details | Give Thanks
added 2007 Tue Oct 9 7:00:00 by unknown user
Leah has posted her slides from the recent Future of Web Apps conference in London, detailing her lessons learned in developing Pownce, the popular Django-based social web app. Saved By: Jeff Croft | View Details | Give Thanks
added 2007 Mon Sep 10 7:00:00 by unknown user
One hour tutorial at PyCon UK 2007. Material from OSCON, with an extra section on newforms. Saved By: kylefox | View Details | Give Thanks
added 2007 Sat Aug 25 7:00:00 by unknown user
Memcached
added 2007 Sun Aug 19 7:00:00 by unknown user
Jacob Kaplan-Moss installed Django (and Python, obviously) on his iPhone. Then, he used Django's database introspection tool to build Django models for the iPhone's built-in call database. Then, he used DJango's built-in admin tool to view/edit said call database. Then, he took a [screenshot of it](http://www.flickr.com/photos/jacobian/1161717658/). Saved By: Jeff Croft | View Details | Give Thanks
added 2007 Mon Aug 13 7:00:00 by unknown user
The Django ORM is quite flexible and provides a lot of ways to get at the data you need without having to write raw SQL, although that option is always available. Every once in a while someone on the #django IRC channel will ask about LEFT JOIN functionality. Although, the ORM doesn?t support LEFT JOINs ?out of the box? (as best as I can tell), there are creative approaches to the problem. Saved By: Waylan Limberg | View Details | Give Thanks
added 2007 Wed Aug 1 7:00:00 by unknown user
For one of our Django applications at work we received a request to add iCal feeds to accompany the RSS feeds available for each candidate?s page (example here). I first thought about doing this using a hard-coded template, the way described in March on boomby.com. So I did and it worked - the directions are great. Since I happened to be at OSCON, I showed it to Jacob, who immediately recommended that I check out vObject, a Python library for generating iCal files. Saved By: Waylan Limberg | View Details | Give Thanks
added 2007 Mon Jul 30 7:00:00 by unknown user
In case I ever get the urge. Saved By: Adam Spooner | View Details | Give Thanks
added 2007 Tue Jul 17 7:00:00 by unknown user
blog, articles, projects and code by Will Larson Saved By: tonyskyday | View Details | Give Thanks