Fix sort by email with LDAP sources

pull/222/merge
Francis Lachapelle 2016-10-05 15:23:18 -04:00
parent cc77f5aa16
commit 64434bbfad
5 changed files with 74 additions and 1 deletions

View File

@ -21,6 +21,7 @@ Contacts_OBJC_FILES = \
SOGoUserFolder+Contacts.m \
SOGoContactEntryPhoto.m \
\
NSArray+Contacts.m \
NSDictionary+LDIF.m \
NSString+LDIF.m

View File

@ -0,0 +1,34 @@
/* NSArray+Contacts.h - this file is part of SOGo
*
* Copyright (C) 2016 Inverse inc
*
* Author: Inverse <info@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 NSARRAY_CONTACTS_H
#define NSARRAY_CONTACTS_H
#import <Foundation/NSArray.h>
@interface NSArray (SOGoContacts)
- (NSComparisonResult) compareCaseInsensitiveAscending: (id) otherRecord;
@end
#endif /* NSARRAY_CONTACTS_H */

View File

@ -0,0 +1,37 @@
/* NSArray+Contacts.m - this file is part of SOGo
*
* Copyright (C) 2016 Inverse inc
*
* Author: Inverse <info@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 "NSArray+Contacts.h"
@implementation NSArray (SOGoContacts)
- (NSComparisonResult) compareCaseInsensitiveAscending: (id) otherRecord
{
id firstObject, otherFirstObject;
firstObject = [self objectAtIndex: 0];
otherFirstObject = [otherRecord objectAtIndex: 0];
return [firstObject compareCaseInsensitiveAscending: otherFirstObject];
}
@end

View File

@ -38,6 +38,7 @@
#import <SOGo/WORequest+SOGo.h>
#import <SOGo/WOResponse+SOGo.h>
#import "NSArray+Contacts.h"
#import "SOGoContactFolders.h"
#import "SOGoContactGCSFolder.h"
#import "SOGoContactLDIFEntry.h"

View File

@ -231,7 +231,7 @@
<md-icon>search</md-icon>
</md-button>
<a href="javascript:void(0)" class="sg-folder-name"
ng-click="addressbook.mode.search = true">{{addressbook.selectedFolder.name}}</a>
ng-click="addressbook.searchMode()">{{addressbook.selectedFolder.name}}</a>
<md-menu>
<md-button class="sg-icon-button" label:aria-label="Sort"
ng-click="$mdOpenMenu()">