Monotone-Parent: 312de3bcf962de38449a5bb31b6868790bad9cb7

Monotone-Revision: 00c7db6a04b837e2c03bee73c5699a0bafaf4684

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-05-08T14:27:01
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-05-08 14:27:01 +00:00
parent 4c19628e4f
commit 8ddf75dbbf
3 changed files with 5 additions and 122 deletions

View File

@@ -1,3 +1,8 @@
2007-05-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Contacts/NGLdapEntry+Contact.[hm]: removed class
module, obsoleted by code in SOGo/LDAPSource.[hm].
2007-05-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Common/UIxAclEditor.m ([UIxAclEditor -currentUserIsOwner]):

View File

@@ -1,41 +0,0 @@
/* NGLdapEntry+Contact.h - this file is part of SOGo
*
* Copyright (C) 2006 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 NGLDAPENTRY_CONTACT_H
#define NGLDAPENTRY_CONTACT_H
#import <NGLdap/NGLdapEntry.h>
@class NSArray;
@class NSDictionary;
@class NSString;
@interface NGLdapEntry (SOGoContactExtension)
- (NSString *) singleAttributeWithName: (NSString *) key;
- (NSDictionary *) asDictionaryWithAttributeNames: (NSArray *) attributes
withUID: (NSString *) uid
andCName: (NSString *) cName;
@end
#endif /* NGLDAPENTRY_CONTACT_H */

View File

@@ -1,81 +0,0 @@
/* NGLdapEntry+Contact.m - this file is part of SOGo
*
* Copyright (C) 2006 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.
*/
#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSString.h>
#import <NGLdap/NGLdapAttribute.h>
#import "NGLdapEntry+Contact.h"
@implementation NGLdapEntry (SOGoContactExtension)
- (NSString *) singleAttributeWithName: (NSString *) key
{
return [[self attributeWithName: key]
stringValueAtIndex: 0];
}
- (NSDictionary *) asDictionaryWithAttributeNames: (NSArray *) attributeNames
withUID: (NSString *) uid
andCName: (NSString *) cName
{
NSMutableDictionary *valuesDict;
NSEnumerator *attrEnum;
NSString *attribute, *value;
if (!attributeNames)
attributeNames = [self attributeNames];
valuesDict = [NSMutableDictionary dictionaryWithCapacity: [attributeNames count]];
attrEnum = [attributeNames objectEnumerator];
attribute = [attrEnum nextObject];
while (attribute)
{
[valuesDict setObject: [self singleAttributeWithName: attribute]
forKey: attribute];
attribute = [attrEnum nextObject];
}
if (cName)
{
value = [self singleAttributeWithName: cName];
if (!value)
value = @"";
NSLog (@"value for '%@' = '%@'", cName, value);
[valuesDict setObject: value
forKey: @"c_name"];
}
if (uid)
{
value = [self singleAttributeWithName: uid];
if (!value)
value = @"";
NSLog (@"value for '%@' = '%@'", uid, value);
[valuesDict setObject: value
forKey: @"c_uid"];
}
return valuesDict;
}
@end