Feedback fixes
This commit is contained in:
parent
a0d35dfe4c
commit
3a7bff1537
@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.7
|
||||||
|
|
||||||
|
* Add support for Feed Categories
|
||||||
|
* RSS: http://www.rssboard.org/rss-specification#ltcategorygtSubelementOfLtitemgt
|
||||||
|
* Atom: https://tools.ietf.org/html/rfc4287#section-4.2.2
|
||||||
|
* Create the `EntryCategory` datatype
|
||||||
|
|
||||||
## 1.6.1
|
## 1.6.1
|
||||||
|
|
||||||
* Upgrade to yesod-core 1.6.0
|
* Upgrade to yesod-core 1.6.0
|
||||||
|
|||||||
@ -42,7 +42,9 @@ data EntryEnclosure url = EntryEnclosure
|
|||||||
}
|
}
|
||||||
|
|
||||||
-- | RSS 2.0 and Atom allow category in a feed entry.
|
-- | RSS 2.0 and Atom allow category in a feed entry.
|
||||||
-- See http://www.rssboard.org/rss-specification#ltcategorygtSubelementOfLtitemgt
|
--
|
||||||
|
-- * [RSS category](http://www.rssboard.org/rss-specification#ltcategorygtSubelementOfLtitemgt)
|
||||||
|
-- * [Atom category](https://tools.ietf.org/html/rfc4287#section-4.2.2)
|
||||||
--
|
--
|
||||||
-- RSS feeds ignore 'categoryLabel'
|
-- RSS feeds ignore 'categoryLabel'
|
||||||
--
|
--
|
||||||
@ -65,4 +67,8 @@ data FeedEntry url = FeedEntry
|
|||||||
--
|
--
|
||||||
-- @since 1.5
|
-- @since 1.5
|
||||||
, feedEntryCategories :: [EntryCategory]
|
, feedEntryCategories :: [EntryCategory]
|
||||||
|
-- ^ Allows categories data: RSS \<category>
|
||||||
|
-- or Atom \<link term=category>
|
||||||
|
--
|
||||||
|
-- @since 1.7
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user