summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/lib/rexml/dtd/elementdecl.rb
blob: c4e620f3892538ce86c99b1443b6114fcfb89ef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "rexml/child"
module REXML
	module DTD
		class ElementDecl < Child
			START = "<!ELEMENT"
			START_RE = /^\s*#{START}/um
			PATTERN_RE = /^\s*(#{START}.*?)>/um
			PATTERN_RE = /^\s*#{START}\s+((?:[:\w_][-\.\w_]*:)?[-!\*\.\w_]*)(.*?)>/
			#\s*((((["']).*?\5)|[^\/'">]*)*?)(\/)?>/um, true)

			def initialize match
				@name = match[1]
				@rest = match[2]
			end
		end
	end
end