Closed
Bug 579986
Opened 15 years ago
Closed 15 years ago
Enable "popular pages" RSS feed on MDC
Categories
(mozilla.org Graveyard :: Server Operations, task)
mozilla.org Graveyard
Server Operations
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: sheppy, Assigned: oremj)
References
Details
We need to stop blocking the RSS feed for this page:
https://developer.mozilla.org/Special:Popularpages
This will let us enable a sidebar on MDN that shows a random popular page.
Updated•15 years ago
|
Assignee: server-ops → jeremy.orem+bugs
Assignee | ||
Comment 1•15 years ago
|
||
What's the api url I need to unblock?
Reporter | ||
Comment 2•15 years ago
|
||
I have no idea. I thought it was about blocking the RSS feeds themselves, not the API. How are we blocking the other feeds?
Assignee | ||
Comment 3•15 years ago
|
||
This is what we currently have:
# PeteE: redirect feeds to a feeds disabled page
RewriteCond %{REQUEST_URI} ^/Special:Article$ [NC]
RewriteCond %{QUERY_STRING} type=feed [NC]
RewriteRule (.*) https://developer.mozilla.org/deki/feeds_disabled.php? [L,R]
RewriteCond %{REQUEST_URI} ^/index.php$ [NC]
RewriteCond %{QUERY_STRING} title=Special:Article [NC]
RewriteCond %{QUERY_STRING} type=feed [NC]
RewriteRule (.*) https://developer.mozilla.org/deki/feeds_disabled.php? [L,R]
RewriteCond %{REQUEST_URI} ^/Special:Watchlist$ [NC]
RewriteCond %{QUERY_STRING} type=feed [NC]
RewriteRule (.*) https://developer.mozilla.org/deki/feeds_disabled.php? [L,R]
RewriteCond %{REQUEST_URI} ^/index.php$ [NC]
RewriteCond %{QUERY_STRING} title=Special:Watchlist [NC]
RewriteCond %{QUERY_STRING} type=feed [NC]
RewriteRule (.*) https://developer.mozilla.org/deki/feeds_disabled.php? [L,R]
RewriteCond %{REQUEST_URI} ^/@api/deki/pages/[0-9]+/feed(/)?$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/@api/deki/pages/[0-9]+/feed/new(/)?$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/@api/deki/users/[0-9]+/feed(/)?$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/@api/deki/users/[0-9]+/feed/new(/)?$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/@api/deki/users/[0-9]+/favorites/feed(/)?$ [NC]
RewriteRule (.*) https://developer.mozilla.org/deki/feeds_disabled.php? [L,R]
# END FEEDS DISABLED
Reporter | ||
Comment 4•15 years ago
|
||
Ignore me. Turns out there isn't an RSS feed for this. :)
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → INVALID
Updated•10 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•