1RSS.FeedItem(3kaya) Kaya module reference RSS.FeedItem(3kaya)
2
3
4
6 RSS::FeedItem - An item for an RSS feed
7
9 RSS::FeedItem< >
10
11
12 = FeedItem(String title,String url,String description,String
13 author,[String] categories,String commentsurl,Prelude::Maybe<Time::Time>
14 pubdate,String guid,Bool guidpermalink)
15
17 This data type represents an item in an RSS feed. All of these fields
18 may be empty strings (or empty lists, or nothing , as appropriate) and
19 will be omitted from the feed if they are.
20
21
22 - title : The title of the item
23
24
25 - url : The URL of the item
26
27
28 - description : The description of the item (often the full text of the
29 item)
30
31
32 - author : The email address of the item author
33
34
35 - categories : A list of the categories this item has
36
37
38 - commentsurl : A URL to submit comments on this item
39
40
41 - pubdate : The date this item was published
42
43
44 - guid : A unique identifier to the item
45
46
47 - guidpermalink : If this is true , then the guid field must be a URL at
48 which the contents of this item will be permanently available.
49
51 Kaya standard library by Edwin Brady, Chris Morris and others
52 (kaya@kayalang.org). For further information see http://kayalang.org/
53
55 The Kaya standard library is free software; you can redistribute it
56 and/or modify it under the terms of the GNU Lesser General Public
57 License (version 2.1 or any later version) as published by the Free
58 Software Foundation.
59
60
61
62Kaya December 2010 RSS.FeedItem(3kaya)