xml updates

microdan 2006-11-12 00:27:30 +00:00
parent 8ffa366c86
commit 739971284f
2 changed files with 51 additions and 0 deletions

View File

@ -175,6 +175,7 @@ TUPLE: entity name ;
: name-start-char? ( ch -- ? ) : name-start-char? ( ch -- ? )
{ {
{ CHAR: : CHAR: : }
{ CHAR: _ CHAR: _ } { CHAR: _ CHAR: _ }
{ CHAR: A CHAR: Z } { CHAR: A CHAR: Z }
{ CHAR: a CHAR: z } { CHAR: a CHAR: z }

View File

@ -0,0 +1,50 @@
! Copyright (C) 2005, 2006 Daniel Ehrenberg
! See http://factorcode.org/license.txt for BSD license.
IN: xml
USING: kernel namespaces sequences words io errors hashtables parser arrays ;
! * Easy XML generation for more literal things
! should this be rewritten?
: text ( string -- )
chars>entities add-child ;
: tag ( string attr-quot contents-quot -- )
>r swap >r make-hash r> swap r>
-rot dupd <opener> process
slip
<closer> process ; inline
: comment ( string -- )
<comment> add-child ;
: make-xml ( quot -- vector )
#! Produces a tree of XML from a quotation to generate it
[ init-xml call xml-stack get first second ] with-scope ; inline
! * System for words specialized on tag names
TUPLE: process-missing process tag ;
M: process-missing error.
"Tag <" write
process-missing-tag tag-name write
"> not implemented on process process " write
dup process-missing-process word-name print ;
: run-process ( tag word -- )
2dup "xtable" word-prop
>r dup tag-name r> hash* [ 2nip call ] [
drop <process-missing> throw
] if ;
: PROCESS:
CREATE
dup H{ } clone "xtable" set-word-prop
dup literalize \ run-process 2array >quotation define-compound ; parsing
: TAG:
scan scan-word [
swap "xtable" word-prop
rot "/" split [ >r 2dup r> swap set-hash ] each 2drop
] f ; parsing