]> err.no Git - sope/blobdiff - sope-ical/versitSaxDriver/VSvCardSaxDriver.m
improved error handling
[sope] / sope-ical / versitSaxDriver / VSvCardSaxDriver.m
index 39431e4e6d6568cabde481a54fdccb53afd4e8ae..1492811738bf119abdf77a859c1924a329c409af 100644 (file)
@@ -1,25 +1,25 @@
 /*
- Copyright (C) 2003-2004 Max Berger
Copyright (C) 2004 OpenGroupware.org
- This file is part of versitSaxDriver, written for the OpenGroupware.org
- project (OGo).
- SOPE is free software; you can redistribute it and/or modify it under
- the terms of the GNU Lesser General Public License as published by the
- Free Software Foundation; either version 2, or (at your option) any
- later version.
- SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
- License for more details.
- You should have received a copy of the GNU Lesser General Public
- License along with SOPE; see the file COPYING.  If not, write to the
- Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA.
- */
 Copyright (C) 2003-2004 Max Berger
 Copyright (C) 2004-2005 OpenGroupware.org
+  
 This file is part of versitSaxDriver, written for the OpenGroupware.org
 project (OGo).
+  
 SOPE is free software; you can redistribute it and/or modify it under
 the terms of the GNU Lesser General Public License as published by the
 Free Software Foundation; either version 2, or (at your option) any
 later version.
+  
 SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
 WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 License for more details.
+  
 You should have received a copy of the GNU Lesser General Public
 License along with SOPE; see the file COPYING.  If not, write to the
 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
+*/
 
 #include "VSvCardSaxDriver.h"
 #include "common.h"
@@ -39,12 +39,7 @@ static NSSet *defElementNames = nil;
   didInit = YES;
   
   defElementNames = [[NSSet alloc] initWithObjects:
-    @"class",
-    @"prodid",
-    @"rev",
-    @"uid",
-    @"version",
-    nil];
+    @"class", @"prodid", @"rev", @"uid", @"version", nil];
 }
 
 + (NSDictionary *)xcardMapping  {
@@ -68,10 +63,10 @@ static NSSet *defElementNames = nil;
      | VERSION        | version    | CDATA      | IMPLIED        |
      +----------------+------------+------------+----------------+
      */
-    [xcard setObject:@"class" forKey:@"CLASS"];
-    [xcard setObject:@"prodid" forKey:@"PRODID"];
-    [xcard setObject:@"rev" forKey:@"REV"];
-    [xcard setObject:@"uid" forKey:@"UID"];
+    [xcard setObject:@"class"   forKey:@"CLASS"];
+    [xcard setObject:@"prodid"  forKey:@"PRODID"];
+    [xcard setObject:@"rev"     forKey:@"REV"];
+    [xcard setObject:@"uid"     forKey:@"UID"];
     [xcard setObject:@"version" forKey:@"VERSION"];
     
     
@@ -96,11 +91,11 @@ static NSSet *defElementNames = nil;
      | BDAY           | bday       | PCDATA                      |
      +----------------+------------+-----------------------------+
      */
-    [xcard setObject:@"fn" forKey:@"FN"];
-    [xcard setObject:@"n" forKey:@"N"];
+    [xcard setObject:@"fn"       forKey:@"FN"];
+    [xcard setObject:@"n"        forKey:@"N"];
     [xcard setObject:@"nickname" forKey:@"NICKNAME"];
-    [xcard setObject:@"photo" forKey:@"PHOTO"];
-    [xcard setObject:@"bday" forKey:@"BDAY"];
+    [xcard setObject:@"photo"    forKey:@"PHOTO"];
+    [xcard setObject:@"bday"     forKey:@"BDAY"];
     
     
     /*