We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2146c42 commit 5f9b0bdCopy full SHA for 5f9b0bd
urls.py
@@ -68,6 +68,12 @@
68
url(r'^planet/$', cache_page(317)(PlanetFeed()), name='planet-feed'),
69
]
70
71
+# Old planet.archlinux.org redirects, to be removed once people have migrated.
72
+urlpatterns.extend([
73
+ url(r'^planet/rss20.xml$', cache_page(317)(PlanetFeed())),
74
+ url(r'^planet/atom.xml$', cache_page(317)(PlanetFeed())),
75
+])
76
+
77
# Includes and other remaining stuff
78
urlpatterns.extend([
79
url(r'^admin/', admin.site.urls),
0 commit comments