aboutsummaryrefslogtreecommitdiffstats
path: root/lib/caldav/sax/propstat.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/caldav/sax/propstat.js')
-rw-r--r--lib/caldav/sax/propstat.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/caldav/sax/propstat.js b/lib/caldav/sax/propstat.js
new file mode 100644
index 0000000..0339f92
--- /dev/null
+++ b/lib/caldav/sax/propstat.js
@@ -0,0 +1,30 @@
+(function(module, ns) {
+ var Responder = ns.require('responder');
+
+ function Propstat(sax, complete) {
+
+ function onopen() {
+
+ }
+
+ function onclose() {
+
+ }
+
+ function ontext() {
+
+ }
+
+ sax.on('tagopen', onopen);
+ sax.on('tagclose', ontext);
+ sax.on('text', ontext);
+ }
+
+ module.exports = Propstat;
+
+}.apply(
+ this,
+ (this.CalDav) ?
+ [CalDav('sax/propstat'), CalDav] :
+ [module, require('../caldav')]
+));