Hi, i'm new to Django, and I'm warming up building a simple job board app. I'm trying to put a feed system to work using the middleware bundled with Django.
- url.py: feeds = { 'ads': AdFeed, } urlpatterns = patterns('', (r'^admin/', include('django.contrib.admin.urls')), (r'^$', index), (r'^jobs/$', list), (r'^jobs/(?P<page>\d*)/$', list), (r'^view/(?P<id>\d*)/$', view), (r'^feeds/(.*)$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), ) - feeds.py file: class AdFeed(Feed): title = "Chicagocrime.org site news" item_link = "http://job4dev.com" description = "Updates on changes and additions to chicagocrime.org." item_author_name='Joe Blow' item_author_email='[EMAIL PROTECTED]' item_author_link=' http://www.example.com' def items(self): return Vaga.objects.all()[0:100] I've read the docs and lots of examples, and It seems to me that it's correct. But each time I try to acess /feeds/ads, I get an Attribute Error, with value "NoneType" object has no attribute startwith. The error is raised by python2.4/site-packages/django/contrib/syndication/feeds.py in get_feed I just can`t figure out where this None is coming from. Any idea? thanks, Miguel -- Miguel Galves - Engenheiro de Computação Já leu meus blogs hoje? Para geeks http://log4dev.com Pra pessoas normais http://miguelcomenta.wordpress.com "Não sabendo que era impossível, ele foi lá e fez..." -- Miguel Galves - Engenheiro de Computação Já leu meus blogs hoje? Para geeks http://log4dev.com Pra pessoas normais http://miguelcomenta.wordpress.com "Não sabendo que era impossível, ele foi lá e fez..." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---