xml-sax-machines 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/lib/xml-sax-machines/filter.rb +1 -13
- data/xml-sax-machines.gemspec +1 -1
- metadata +2 -2
data/VERSION.yml
CHANGED
@@ -46,10 +46,6 @@ module XML
|
|
46
46
|
@filter.end_element(name) if @filter
|
47
47
|
end
|
48
48
|
|
49
|
-
def end_element_namespace(name, prefix = nil, uri = nil) #:nodoc:
|
50
|
-
@filter.end_element_namespace(name, attributes, prefix, uri, ns) if @filter
|
51
|
-
end
|
52
|
-
|
53
49
|
def error(string) #:nodoc:
|
54
50
|
@filter.error(string) if @filter
|
55
51
|
end
|
@@ -59,21 +55,13 @@ module XML
|
|
59
55
|
end
|
60
56
|
|
61
57
|
def start_element(name, attributes = []) #:nodoc:
|
62
|
-
@filter.start_element(name, attributes) if @filter
|
63
|
-
end
|
64
|
-
|
65
|
-
def start_element_namespace(name, attributes = [], prefix = nil, uri = nil, ns = []) #:nodoc:
|
66
|
-
@filter.start_element_namespace(name, attributes, prefix, uri, ns) if @filter
|
58
|
+
@filter.start_element(name, attributes = []) if @filter
|
67
59
|
end
|
68
60
|
|
69
61
|
def warning(string) #:nodoc:
|
70
62
|
@filter.warning(string) if @filter
|
71
63
|
end
|
72
64
|
|
73
|
-
def xmldecl(version, encoding, standalone)
|
74
|
-
@filter.xmldecl(version, encoding, standalone) if @filter
|
75
|
-
end
|
76
|
-
|
77
65
|
end # Filter
|
78
66
|
end # SAX
|
79
67
|
end # XML
|
data/xml-sax-machines.gemspec
CHANGED