Handbook
Glossary
feed-entry-title ( object -- string )
Furnace framework
»
Furnace presentation layer
»
Furnace Atom syndication support
»
Atom feed entry protocol
Prev:
>entry ( object -- entry )
Next:
feed-entry-description ( object -- description )
Vocabulary
furnace
.
syndication
Inputs
object
an
object
Outputs
string
a
string
Generic word contract
Outputs a feed entry title.
Definition
IN:
furnace.syndication
GENERIC:
feed-entry-title
( object -- string )
Methods
USING:
accessors
furnace.syndication
sequences
webapps.blogs
;
M:
comment
feed-entry-title
author>>
"Comment by "
prepend
;
USING:
accessors
furnace.syndication
webapps.pastebin
;
M:
entity
feed-entry-title
summary>>
;
USING:
accessors
furnace.syndication
kernel
sequences
webapps.blogs
;
M:
post-state
feed-entry-title
[
author>>
]
[
title>>
]
bi
": "
glue
;
USING:
accessors
furnace.syndication
kernel
sequences
webapps.wiki
;
M:
revision
feed-entry-title
[
title>>
]
[
drop
" by "
]
[
author>>
]
tri
3append
;