diff options
author | Gareth Aye <gaye@mozilla.com> | 2014-04-08 20:39:18 -0400 |
---|---|---|
committer | Gareth Aye <gaye@mozilla.com> | 2014-04-08 20:55:13 -0400 |
commit | b15fe723595219e0e31ec84af246446668d297c8 (patch) | |
tree | 77d5299e63ae923a20457eae50ac1353990d5752 /lib/caldav/sax.js | |
parent | c197deab25d8425bdfa8d8d2feccedbb2776a48e (diff) | |
download | jsCalDAV-b15fe723595219e0e31ec84af246446668d297c8.tar.gz |
Bug 974554 - CalDAV parser should accept ical inside xml comments nested in <calendar-data> elements
Diffstat (limited to 'lib/caldav/sax.js')
-rw-r--r-- | lib/caldav/sax.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/caldav/sax.js b/lib/caldav/sax.js index e0c0a1b..c861eee 100644 --- a/lib/caldav/sax.js +++ b/lib/caldav/sax.js @@ -18,6 +18,7 @@ var events = [ 'ontext', + 'oncdata', 'onopentag', 'onclosetag', 'onerror', @@ -198,6 +199,10 @@ this._fireHandler('ontext', data); }, + oncdata: function(data) { + this._fireHandler('oncdata', data); + }, + onerror: function(data) { //TODO: XXX implement handling of parsing errors. //unlikely but possible if server goes down |