2004-10-16 Marcus Mueller <znek@mulle-kybernetik.com>
+ * v1.0.4
+
+ * VSStringFormatter.m: properly unescape '\N'
+
+ * README: updated, need to fix _parseLine:
+
* v1.0.3
* VSStringFormatter.[hm]: new singleton to perform unescaping on
ToDo
====
+- REWRITE _parseLine:! It doesn't properly deal with escaped characters
+ as it SHOULD, thus properly corrupting content
- improve error handling (SaxExceptions !)
- make the driver fully xCal compliant
/* test edge case */
if(NSMaxRange(escRange) < length) {
unichar c = [_s characterAtIndex:escRange.location + 1];
- if(c == 'n') {
+ if(c == 'n' || c == 'N') {
[safeString appendString:@"\n"];
escRange.length += 1; /* skip the 'n' */
}
MAJOR_VERSION=1
MINOR_VERSION=0
-SUBMINOR_VERSION:=3
+SUBMINOR_VERSION:=4