factor/basis/xml/entities/entities.factor

43 lines
1.1 KiB
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
! Copyright (C) 2005, 2006 Daniel Ehrenberg
! See http://factorcode.org/license.txt for BSD license.
2009-01-15 23:20:24 -05:00
USING: namespaces make kernel assocs sequences fry values
io.files io.encodings.binary xml.state ;
2007-09-20 18:09:08 -04:00
IN: xml.entities
CONSTANT: entities-out
2008-01-30 16:03:02 -05:00
H{
{ CHAR: < "&lt;" }
{ CHAR: > "&gt;" }
{ CHAR: & "&amp;" }
}
2008-01-30 16:03:02 -05:00
CONSTANT: quoted-entities-out
2008-01-30 16:03:02 -05:00
H{
{ CHAR: & "&amp;" }
{ CHAR: ' "&apos;" }
{ CHAR: " "&quot;" }
{ CHAR: < "&lt;" }
}
2008-01-30 16:03:02 -05:00
: escape-string-by ( str table -- escaped )
#! Convert <, >, &, ' and " to HTML entities.
[ '[ dup _ at [ % ] [ , ] ?if ] each ] "" make ;
2008-01-30 16:03:02 -05:00
: escape-string ( str -- newstr )
entities-out escape-string-by ;
: escape-quoted-string ( str -- newstr )
quoted-entities-out escape-string-by ;
CONSTANT: entities
2007-09-20 18:09:08 -04:00
H{
{ "lt" CHAR: < }
{ "gt" CHAR: > }
{ "amp" CHAR: & }
{ "apos" CHAR: ' }
{ "quot" CHAR: " }
}
2007-09-20 18:09:08 -04:00
: with-entities ( entities quot -- )
[ swap extra-entities set call ] with-scope ; inline