aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xmerl/src/xmerl_sax_parser.hrl
diff options
context:
space:
mode:
authorMagnus Lidén <[email protected]>2014-01-21 16:41:02 +0100
committerMagnus Lidén <[email protected]>2014-01-21 16:41:02 +0100
commit811c3040a2a6f7ee2b8f19e07ef0795f2bab754c (patch)
tree1504890a11d461f15f099f896d6b8090f8a702f5 /lib/xmerl/src/xmerl_sax_parser.hrl
parentf836096cb383c6a3c5c91956ded5bd4e2772bcd2 (diff)
parent7042cc483b7e48eeacc99a47676e8593f288285b (diff)
downloadotp-811c3040a2a6f7ee2b8f19e07ef0795f2bab754c.tar.gz
otp-811c3040a2a6f7ee2b8f19e07ef0795f2bab754c.tar.bz2
otp-811c3040a2a6f7ee2b8f19e07ef0795f2bab754c.zip
Merge branch 'maint'
Diffstat (limited to 'lib/xmerl/src/xmerl_sax_parser.hrl')
-rw-r--r--lib/xmerl/src/xmerl_sax_parser.hrl10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/xmerl/src/xmerl_sax_parser.hrl b/lib/xmerl/src/xmerl_sax_parser.hrl
index 736316e069..b433dd6cf9 100644
--- a/lib/xmerl/src/xmerl_sax_parser.hrl
+++ b/lib/xmerl/src/xmerl_sax_parser.hrl
@@ -86,7 +86,15 @@
file_type = normal, % Can be normal, dtd and entity
current_location, % Location of the currently parsed XML entity
entity, % Parsed XML entity
- skip_external_dtd = false % If true the external DTD is skipped during parsing
+ skip_external_dtd = false,% If true the external DTD is skipped during parsing
+ input_type % Source type: file | stream.
+ % This field is a preparation for an fix in R17 of a bug in
+ % the conformance against the standard.
+ % Today a file which contains two XML documents will be considered
+ % well-formed and the second is placed in the rest part of the
+ % return tuple, according to the conformance tests this should fail.
+ % In the future this will fail if xmerl_sax_aprser:file/2 is used but
+ % left to the user in the xmerl_sax_aprser:stream/2 case.
}).