2010-07-25 23:13:27 -04:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
from apps.rss_feeds import views
|
|
|
|
|
|
|
|
urlpatterns = patterns('',
|
2010-12-23 16:02:17 -05:00
|
|
|
url(r'^feed_autocomplete', views.feed_autocomplete, name='feed-autocomplete'),
|
2010-07-25 23:13:27 -04:00
|
|
|
url(r'^statistics', views.load_feed_statistics, name='statistics'),
|
2010-08-25 10:18:08 -04:00
|
|
|
url(r'^exception_retry', views.exception_retry, name='exception-retry'),
|
2010-08-25 20:43:35 -04:00
|
|
|
url(r'^exception_change_feed_address', views.exception_change_feed_address, name='exception-change-feed-address'),
|
|
|
|
url(r'^exception_change_feed_link', views.exception_change_feed_link, name='exception-change-feed-link'),
|
2011-03-01 09:59:06 -05:00
|
|
|
url(r'^status', views.status, name='status'),
|
2010-07-25 23:13:27 -04:00
|
|
|
)
|