Hello Jeremy,
Wednesday, July 2, 2003, 10:34:40 AM, you wrote:
JD> There's been a bunch of flaming bits being hurled regarding a
JD> "clarification" of the RSS specs:
JD> http://www.intertwingly.net/blog/1494.html
JD> Anyway, some folks are using <GUID> instead of <LINK> for permalinks
JD> now.
JD> I haven't updated my codebase in a while... Is anyone working on
JD> supporting <GUID>?
Note that Syndirella has supported using GUIDs as permalinks for a
very long time (unless someone already broke that, of course). Note
the following code in NewsItem.cs:
public string PermaLink
{
get {
if (fGUID != null && fGUID.Length > 0 && fGUIDIsPermalink)
return fGUID;
else if (fLink != null && fLink.Length > 0)
return fLink;
else
return "";
}
}
...and the related parsing code in RSSFeed.cs.
--
Best regards,
Dmitry mailto:yole@...