Added changes to remove conservancy hard codes.
This commit is contained in:
parent
fcb41fb09f
commit
d1bf73af67
2 changed files with 1 additions and 7 deletions
|
@ -265,14 +265,8 @@ class OggCastFeed(CastFeed):
|
||||||
return item.ogg_length
|
return item.ogg_length
|
||||||
|
|
||||||
feed_dict = {
|
feed_dict = {
|
||||||
'blog': BlogFeed,
|
|
||||||
'podcast-ogg': OggCastFeed,
|
'podcast-ogg': OggCastFeed,
|
||||||
'podcast-mp3': Mp3CastFeed,
|
'podcast-mp3': Mp3CastFeed,
|
||||||
'techblog': TechBlogFeed,
|
|
||||||
'news': PressReleaseFeed,
|
|
||||||
'future-events': UpcomingEventFeed,
|
|
||||||
'omnibus': OmnibusFeed,
|
|
||||||
# 'event-media': RecentEventMediaFeed,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# make each feed know its canonical url
|
# make each feed know its canonical url
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# "AGPLv3". If not, see <http://www.gnu.org/licenses/>.
|
# "AGPLv3". If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from django.conf.urls.defaults import *
|
from django.conf.urls.defaults import *
|
||||||
from conservancy.feeds import feed_dict
|
from podjango.feeds import feed_dict
|
||||||
|
|
||||||
#handler404 = 'modpythoncustom.view404'
|
#handler404 = 'modpythoncustom.view404'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue