diff options
author | James Lal <james@lightsofapollo.com> | 2012-06-18 20:59:35 -0700 |
---|---|---|
committer | James Lal <james@lightsofapollo.com> | 2012-06-18 20:59:35 -0700 |
commit | f1ae9e6f2a4503b9c5ab55abb13d95cbd9ee753c (patch) | |
tree | d628e71dc77c8fa422e91ef453c809b0dc3a2dac /lib/caldav/sax | |
parent | a6c747412c0960331e4055eee97d8328ff88d584 (diff) | |
download | jsCalDAV-f1ae9e6f2a4503b9c5ab55abb13d95cbd9ee753c.tar.gz |
Rename lib to webcals
Diffstat (limited to 'lib/caldav/sax')
-rw-r--r-- | lib/caldav/sax/propstat.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/caldav/sax/propstat.js b/lib/caldav/sax/propstat.js deleted file mode 100644 index 0339f92..0000000 --- a/lib/caldav/sax/propstat.js +++ /dev/null @@ -1,30 +0,0 @@ -(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')] -)); |