Django community
By far the coolest part of releasing Django has been the formation of the community. Although Django has only been available for about a month, there's already a number of people writing about Django. To prevent all this great knowledge from being lost in the noise of the Internet, I've added an aggregator of Django information on our community page.
If you write about Django and you'd like to get your weblog added to the aggregator, just drop me a note and I'd be happy to add you.
The aggregator is, of course, written in Django itself (with the aid of Mark Pilgrim's Universal Feed Parser).
Update: There's now an RSS feed of the community page.
Posted by Jacob Kaplan-Moss on August 6, 2005
Comments
Jacob August 6, 2005 at 11:26 p.m.
Andrew: working on it; I should have it up tomorrow.
alang August 7, 2005 at 12:06 a.m.
Yeah,I also think so.
Matt Brubeck August 7, 2005 at 9:47 a.m.
An OPML feed of the subscription list would also be cool.
Philippe Normand August 8, 2005 at 1 a.m.
Why reinvent the wheel once more ? Wasn't PlanetPlanet (for instance) a good challenger ? Anyway, thanks for this :)
Vincent D Murphy August 8, 2005 at 2:03 a.m.
Jacob-
Will you please leave a comment on the main weblog when the feed is enabled, so we know to subscribe without checking here.
Thanks.
Garth T Kidd August 8, 2005 at 4:52 a.m.
What, you're not subscribed to the comment feed? :)
Rob T August 8, 2005 at 6:14 a.m.
An aggregated feed is a great idea - I'm subscribing to del.icio.us/tag/django at the moment, but there's a lot of repetition.
(I was going to mention the community page link - but Sam got there first)
Simon Willison August 8, 2005 at 2:13 p.m.
Great job Jacob. One small thing: the RSS feed should include the name of the source of each item somewhere in the description.
Garth T Kidd August 8, 2005 at 4:15 p.m.
Also, shove the source in a <dc:author> in the <item>; ShapReader and other aggregators will display it under the Author column.
Planet Python seems fairly well done in this respect:
Garth T Kidd August 8, 2005 at 5:35 p.m.
Ow. Ow. Ow. You're not escaping the description in the RSS output. Bad.
Adrian Holovaty August 8, 2005 at 5:47 p.m.
Garth T Kidd August 8, 2005 at 10:09 p.m.
Actually, I was talking about the comment feed, but I'm still wrong: it *is* escaped. For whatever reason, SharpReader is double-decoding it. :|
mark brand August 8, 2005 at 10:55 p.m.
hi:
i think there is a typo in the article "Run your app and Django's admin interface, too" from mr kidd.
MIDDLEWARE_CLASSES = ( 'appname.middleware.AdminUserRequiredForAdmin', 'django.middleware.common.CommonMiddleware',
)
should be ...
MIDDLEWARE_CLASSES = (
'projectname.settings.middleware.AdminUserRequiredForAdmin', 'django.middleware.common.CommonMiddleware',
)
but i am pretty new to this so am prepared to be wrong, also this was the only place also i could find to comment on the article - again apologies if i should have put somewhere else.
great article and very useful, it was such a pain the other way.
cheers
mark
mark brand August 8, 2005 at 11:06 p.m.
hi:
i just had another look where in the article says appname should be projectname - anyway i think that was the intent.
thanks again
mark
Garth T Kidd August 9, 2005 at 5:20 a.m.
Thanks for pointing that out! I've corrected the article.
Robin August 12, 2005 at 12:43 p.m.
Nice.
Comments are closed
To prevent spam, comments are no longer allowed after sixty days.


Andrew Brehaut August 6, 2005 at 9:36 p.m.
Any chance of providing an RSS or Atom feed of that aggregator? (or if there is already, making it clearer for how to get it).