Atom Feed Publication Time Question

2010-05-03 Thread Mike Bader
Site from django.contrib.syndication.feeds import Feed from coltrane.models import Category, Entry current_site = Site.objects.get_current() class LatestEntriesFeed(Feed): author_name = "Mike Bader" copyright = "http://%s/about/"; % current_site.domain description = "Latest ent

Re: Atom Feed Publication Time Question

2010-05-03 Thread Mike Bader
contrib.comments.models import Comment > from django.contrib.sites.models import Site > from django.contrib.syndication.feeds import Feed > from coltrane.models import Category, Entry > > current_site = Site.objects.get_current() > > class LatestEntriesFeed(Feed): >