Handbook
Glossary
>entry ( object -- entry )
Furnace framework
»
Furnace presentation layer
»
Furnace Atom syndication support
»
Atom feed entry protocol
Next:
feed-entry-title ( object -- string )
Vocabulary
furnace
.
syndication
Inputs
object
an
object
Outputs
entry
an
entry
Generic word contract
Converts an object into an Atom feed entry. The default implementation constructs an entry by calling
feed-entry-title
,
feed-entry-description
,
feed-entry-date
, and
feed-entry-url
.
Definition
IN:
furnace.syndication
GENERIC:
>entry
( object -- entry )
Methods
USING:
furnace.syndication
syndication
;
M:
entry
>entry
;
USING:
accessors
combinators
furnace.syndication
kernel
syndication
;
M:
object
>entry
<entry>
swap
{
[
feed-entry-title
>>title
]
[
feed-entry-date
>>date
]
[
feed-entry-url
>>url
]
[
feed-entry-description
>>description
]
}
cleave
;