]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1081 d1b88da0-ebda-0310...
authorwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 13 Jun 2007 01:10:05 +0000 (01:10 +0000)
committerwolfgang <wolfgang@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 13 Jun 2007 01:10:05 +0000 (01:10 +0000)
SoObjects/SOGo/NSNull+Utilities.h [new file with mode: 0644]
SoObjects/SOGo/NSNull+Utilities.m [new file with mode: 0644]
SoObjects/SOGo/NSNumber+Utilities.h [new file with mode: 0644]
SoObjects/SOGo/NSNumber+Utilities.m [new file with mode: 0644]

diff --git a/SoObjects/SOGo/NSNull+Utilities.h b/SoObjects/SOGo/NSNull+Utilities.h
new file mode 100644 (file)
index 0000000..736c0cf
--- /dev/null
@@ -0,0 +1,36 @@
+/* NSNull+Utilities.h - this file is part of SOGo
+ *
+ * Copyright (C) 2007 Inverse groupe conseil
+ *
+ * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
+ *
+ * This file is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This file 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef NSNUMBER_URL_H
+#define NSNUMBER_URL_H
+
+#import <Foundation/NSNull.h>
+
+@class NSString;
+
+@interface NSNull (SOGoURLExtension)
+
+- (NSString *) jsonRepresentation;
+
+@end
+
+#endif /* NSNUMBER_URL_H */
diff --git a/SoObjects/SOGo/NSNull+Utilities.m b/SoObjects/SOGo/NSNull+Utilities.m
new file mode 100644 (file)
index 0000000..68401db
--- /dev/null
@@ -0,0 +1,34 @@
+/* NSNull+Utilities.m - this file is part of SOGo
+ *
+ * Copyright (C) 2007 Inverse group conseil
+ *
+ * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
+ *
+ * This file is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This file 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#import <Foundation/NSString.h>
+
+#import "NSNull+Utilities.h"
+
+@implementation NSNull (SOGoURLExtension)
+
+- (NSString *) jsonRepresentation
+{
+  return @"null";
+}
+
+@end
diff --git a/SoObjects/SOGo/NSNumber+Utilities.h b/SoObjects/SOGo/NSNumber+Utilities.h
new file mode 100644 (file)
index 0000000..d63f1e4
--- /dev/null
@@ -0,0 +1,36 @@
+/* NSNumber+Utilities.h - this file is part of SOGo
+ *
+ * Copyright (C) 2007 Inverse groupe conseil
+ *
+ * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
+ *
+ * This file is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This file 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef NSNUMBER_URL_H
+#define NSNUMBER_URL_H
+
+#import <Foundation/NSValue.h>
+
+@class NSString;
+
+@interface NSNumber (SOGoURLExtension)
+
+- (NSString *) jsonRepresentation;
+
+@end
+
+#endif /* NSNUMBER_URL_H */
diff --git a/SoObjects/SOGo/NSNumber+Utilities.m b/SoObjects/SOGo/NSNumber+Utilities.m
new file mode 100644 (file)
index 0000000..d78d365
--- /dev/null
@@ -0,0 +1,35 @@
+/* NSNumber+Utilities.m - this file is part of SOGo
+ *
+ * Copyright (C) 2007  Inverse group conseil
+ *
+ * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
+ *
+ * This file is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This file 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING.  If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#import <Foundation/NSString.h>
+
+#import "NSNumber+Utilities.h"
+
+@implementation NSNumber (SOGoURLExtension)
+
+- (NSString *) jsonRepresentation
+{
+
+  return [NSString stringWithFormat: @"%@", self];
+}
+
+@end