diff backends/directory.js @ 28:7cfcd7d5796c

Replace Paul Sowden’s ISO8601 functions by my own, since their licence is possibly incompatible with AGPL.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Mon, 01 Nov 2010 03:01:40 +0100
parents a36a514e8be8
children e007a6364bf0
line wrap: on
line diff
--- a/backends/directory.js
+++ b/backends/directory.js
@@ -36,7 +36,7 @@ backend.save = function(dir) {
 			function sanitize(o) {
 				var n = {};
 				for (var i in o) {
-					if (i == 'content' || o[i].setISO8601)
+					if (i == 'content' || o[i].setFromISO8601)
 						n[i] = o[i].toString();
 					else if (o[i] instanceof Array)
 						n[i] = o[i];
@@ -109,7 +109,7 @@ backend.load = function(dir) {
 						parseStanza(o, i);
 					else if (typeof o[i] == 'string' && regexp(o[i])) {
 						var today = new Date();
-						today.setISO8601(o[i]);
+						today.setFromISO8601(o[i]);
 						o[i] = today;
 					} else if (typeof o[i] == 'object')
 						endParsing(o[i]);