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 | |
parent | a6c747412c0960331e4055eee97d8328ff88d584 (diff) | |
download | jsCalDAV-f1ae9e6f2a4503b9c5ab55abb13d95cbd9ee753c.tar.gz |
Rename lib to webcals
Diffstat (limited to 'lib')
-rw-r--r-- | lib/webcals/ics.js (renamed from lib/caldav/ics.js) | 2 | ||||
-rw-r--r-- | lib/webcals/responder.js (renamed from lib/caldav/responder.js) | 2 | ||||
-rw-r--r-- | lib/webcals/sax.js (renamed from lib/caldav/sax.js) | 3 | ||||
-rw-r--r-- | lib/webcals/sax/propstat.js (renamed from lib/caldav/sax/propstat.js) | 2 | ||||
-rw-r--r-- | lib/webcals/webcals.js (renamed from lib/caldav/caldav.js) | 0 | ||||
-rw-r--r-- | lib/webcals/xhr.js (renamed from lib/caldav/xhr.js) | 2 |
6 files changed, 5 insertions, 6 deletions
diff --git a/lib/caldav/ics.js b/lib/webcals/ics.js index 47d9151..2397239 100644 --- a/lib/caldav/ics.js +++ b/lib/webcals/ics.js @@ -136,5 +136,5 @@ this, (this.CalDav) ? [CalDav('ics'), CalDav] : - [module, require('./caldav')] + [module, require('./webcals')] )); diff --git a/lib/caldav/responder.js b/lib/webcals/responder.js index b4abd21..9fd7ed9 100644 --- a/lib/caldav/responder.js +++ b/lib/webcals/responder.js @@ -205,5 +205,5 @@ this, (this.CalDav) ? [CalDav('responder'), CalDav] : - [module, require('./caldav')] + [module, require('./webcals')] )); diff --git a/lib/caldav/sax.js b/lib/webcals/sax.js index 28fa716..1e169fd 100644 --- a/lib/caldav/sax.js +++ b/lib/webcals/sax.js @@ -24,7 +24,6 @@ this.parse.onend = this.onend.bind(this); - this.depth = 0; this.handles = {}; this.stack = []; @@ -154,5 +153,5 @@ this, (this.CalDav) ? [CalDav('xml_parser'), CalDav] : - [module, require('./caldav')] + [module, require('./webcals')] )); diff --git a/lib/caldav/sax/propstat.js b/lib/webcals/sax/propstat.js index 0339f92..03bedaa 100644 --- a/lib/caldav/sax/propstat.js +++ b/lib/webcals/sax/propstat.js @@ -26,5 +26,5 @@ this, (this.CalDav) ? [CalDav('sax/propstat'), CalDav] : - [module, require('../caldav')] + [module, require('../webcals')] )); diff --git a/lib/caldav/caldav.js b/lib/webcals/webcals.js index cf81358..cf81358 100644 --- a/lib/caldav/caldav.js +++ b/lib/webcals/webcals.js diff --git a/lib/caldav/xhr.js b/lib/webcals/xhr.js index bfc3eeb..adec5a6 100644 --- a/lib/caldav/xhr.js +++ b/lib/webcals/xhr.js @@ -107,5 +107,5 @@ this, (this.CalDav) ? [CalDav('xhr'), CalDav] : - [module, require('./caldav')] + [module, require('./webcals')] )); |