factor/basis/html/templates/chloe/syntax/syntax.factor

34 lines
933 B
Factor
Raw Normal View History

! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
IN: html.templates.chloe.syntax
USING: accessors kernel sequences combinators kernel namespaces
2008-06-25 04:25:08 -04:00
classes.tuple assocs splitting words arrays memoize parser lexer
io io.files io.encodings.utf8 io.streams.string
2008-09-05 21:39:45 -04:00
unicode.case mirrors fry math urls
2009-02-05 22:17:03 -05:00
multiline xml xml.data xml.writer xml.syntax
html.components
html.templates ;
SYMBOL: tags
tags [ H{ } clone ] initialize
2008-06-02 16:00:03 -04:00
: define-chloe-tag ( name quot -- ) swap tags get set-at ;
: CHLOE:
2008-06-02 16:00:03 -04:00
scan parse-definition define-chloe-tag ; parsing
CONSTANT: chloe-ns "http://factorcode.org/chloe/1.0"
2009-01-28 18:49:21 -05:00
: chloe-name? ( name -- ? )
url>> chloe-ns = ;
XML-NS: chloe-name http://factorcode.org/chloe/1.0
: required-attr ( tag name -- value )
[ nip ] [ chloe-name attr ] 2bi
[ ] [ " attribute is required" append throw ] ?if ;
: optional-attr ( tag name -- value )
2009-01-28 18:49:21 -05:00
chloe-name attr ;