Handbook
Glossary
<feed-action> ( -- action )
Furnace framework
»
Furnace presentation layer
»
Furnace Atom syndication support
Next:
Configuring Atom feed actions
Vocabulary
furnace
.
syndication
Inputs
None
Outputs
action
a
feed-action
Word description
Creates a new Atom feed action.
Definition
USING:
accessors
furnace.actions
furnace.utilities
kernel
syndication
;
IN:
furnace.syndication
:
<feed-action>
( -- action )
feed-action
new-action
dup
[
[
feed
new
]
]
dip
[
[
title>>
call
>>title
]
[
url>>
call
adjust-url
>>url
]
[
entries>>
call
process-entries
>>entries
]
tri
<feed-content>
]
curry
compose
>>display
;