Closed
Bug 247339
Opened 21 years ago
Closed 21 years ago
Pages with RSS feed should contain an autodiscovery header link tag.
Categories
(addons.mozilla.org Graveyard :: Public Pages, enhancement, P5)
addons.mozilla.org Graveyard
Public Pages
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: aquarion, Assigned: wolf)
References
Details
(Whiteboard: fixed-development)
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040614 Firefox/0.9
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040614 Firefox/0.9
The pages with RSS pages (Newest/Most popular etc.) should contain the
Autodiscovery metatag as defined here:
http://diveintomark.org/archives/2002/05/30/rss_autodiscovery
They should also at the very least contain a link to the RSS feed, instead of
being buried in the FAQ.
Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Status: UNCONFIRMED → NEW
Ever confirmed: true
Summary: pages should contain RSS Autodiscovery Tags → pages should contain an RSS link in the head
Assignee | ||
Updated•21 years ago
|
Assignee: nobody → psychoticwolf
Assignee | ||
Updated•21 years ago
|
Severity: normal → enhancement
Ok, it will go something like
switch ($category) {
case "Newest":
$rsslist = "newest";
break;
case "Popular":
$rsslist = "popular";
break;
case "Top Rated":
$rsslist = "rated";
break;
}
$rssfeed = "/rss/?application=" . $application . "&type=" . $type . "&list=" .
$rsslist
however, showlist has the page header above the detection of $application. So I
recomment the browser detection is moved before the html header, and then the
RSS url added to the header.
Assignee | ||
Comment 2•21 years ago
|
||
OK, so this would go on showlist.php...
<link rel="alternate" type="application/rss+xml" title="RSS”
href="http://$HTTP_HOST/$rssfeed"> for listings for newest, most popular, top
rated, etc.
--> Taking bug.
Assignee | ||
Updated•21 years ago
|
Whiteboard: fixed-development
Assignee | ||
Comment 4•21 years ago
|
||
Added an autodiscovery link tag at the top of the pages.
fixed on the development server.
Priority: -- → P5
Assignee | ||
Comment 5•21 years ago
|
||
Fixed.
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Assignee | ||
Updated•20 years ago
|
Component: Update → Web Site
Product: mozilla.org → Update
Version: other → unspecified
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•