Sha256: 85119ea97cd54e6cd4ded19f8cd5655e4a43a16d246bf4edb53d071ce4e265e9

Contents?: true

Size: 1.28 KB

Versions: 26

Compression:

Stored size: 1.28 KB

Contents

#
# xml parser
#

class XHTMLParser

rule
  target        : /* none */
                | xml_doc

  xml_doc       : xml_header  extra  xml_body
                | xml_header  xml_body
                | xml_body

  xml_header    : xtag_in  element  attributes  xtag_out

  xml_body      : tag_from  contents  tag_to

  tag_from      : tag_in  element  attributes  tag_out

  tag_empty     : tag_in  element  attributes  etag_out

  tag_to        : etag_in  element  tag_out

  attributes    : /* none */
                | attributes  attribute

  attribute     : attr  equal  quoted

  quoted        : quote1  value  quote1
                | quote2  value  quote2

  contents      : /* none */
                | contents  content

  content       : text
                | extra
                | tag_from  contents  tag_to
                | tag_empty

  extra         : tag_in  ext  extra_texts  tag_out

  extra_texts   : /* none */
                | extra_texts  rem_in  remtexts  rem_out
                | extra_texts  exttext

  remtexts      : remtext
                | remtexts  remtext

end

---- header ----
#
# generated by racc
#
require 'xhtmlparser.rex'
---- inner ----

---- footer ----

exit  if ARGV.size == 0
filename = ARGV.shift

htmlparser = XHTMLParser.new
htmlparser.scan_file  filename

Version data entries

26 entries across 26 versions & 5 rubygems

Version Path
oedipus_lex-2.6.2 sample/xhtmlparser.racc
oedipus_lex-2.6.1 sample/xhtmlparser.racc
oedipus_lex-2.6.0 sample/xhtmlparser.racc
oedipus_lex-2.5.3 sample/xhtmlparser.racc
oedipus_lex-2.5.2 sample/xhtmlparser.racc
rexical-1.0.7 sample/xhtmlparser.racc
oedipus_lex-2.5.1 sample/xhtmlparser.racc
oedipus_lex-2.5.0 sample/xhtmlparser.racc
oedipus_lex-2.4.1 sample/xhtmlparser.racc
oedipus_lex-2.4.0 sample/xhtmlparser.racc
aaronp-frex-1.0.0 sample/xhtmlparser.racc
aaronp-frex-1.0.1 sample/xhtmlparser.racc
tenderlove-frex-1.0.1.20090313144615 sample/xhtmlparser.racc
oedipus_lex-2.3.2 sample/xhtmlparser.racc
oedipus_lex-2.3.1 sample/xhtmlparser.racc
oedipus_lex-2.3.0 sample/xhtmlparser.racc
oedipus_lex-2.2.1 sample/xhtmlparser.racc
oedipus_lex-2.2.0 sample/xhtmlparser.racc
oedipus_lex-2.1.0 sample/xhtmlparser.racc
oedipus_lex-2.0.0 sample/xhtmlparser.racc