mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-20 19:05:25 +00:00
Monotone-Parent: 2d162935dc98ba2b7bd8d3a9177213df5f71785c
Monotone-Revision: 5f6276bea47c6b71a238a904332963dac3c5dce5 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-12-14T21:18:02 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
2006-12-14 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/SOGoPermissions.[hm]: new module that extends the
|
||||
values from SoPermissions with ones specific to SOGo.
|
||||
|
||||
* SoObjects/SOGo/SOGoAclsFolder.[hm]: new class module that
|
||||
handles the storage for the acls.
|
||||
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/* SOGoPermissions.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 SOGOPERMISSIONS_H
|
||||
#define SOGOPERMISSIONS_H
|
||||
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
#import <NGObjWeb/SoPermissions.h>
|
||||
|
||||
extern NSString *SOGoRole_Assistant;
|
||||
extern NSString *SOGoRole_Delegate;
|
||||
extern NSString *SOGoRole_FreeBusyLookup;
|
||||
extern NSString *SOGoRole_FreeBusy;
|
||||
|
||||
extern NSString *SOGoPerm_ReadAcls;
|
||||
extern NSString *SOGoPerm_CreateAndModifyAcls;
|
||||
extern NSString *SOGoPerm_FreeBusyLookup;
|
||||
|
||||
#endif /* SOGOPERMISSIONS_H */
|
||||
@@ -0,0 +1,42 @@
|
||||
/* SOGoPermissions.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 "SOGoPermissions.h"
|
||||
|
||||
NSString *SOGoRole_Assistant = @"Assistant"; /* a colleague */
|
||||
NSString *SOGoRole_Delegate = @"Delegate"; /* a colleague or person that I
|
||||
trust in adding or modifying my
|
||||
data */
|
||||
NSString *SOGoRole_FreeBusyLookup = @"FreeBusyLookup"; /* for users that have
|
||||
access to the
|
||||
freebusy information
|
||||
from a specific
|
||||
calendar */
|
||||
NSString *SOGoRole_FreeBusy = @"FreeBusy"; /* for the "freebusy" special user
|
||||
*/
|
||||
|
||||
#warning ReadAcls still not used...
|
||||
NSString *SOGoPerm_ReadAcls = @"ReadAcls"; /* the equivalent of "read-acl" in
|
||||
the WebDAV acls spec, which is
|
||||
currently missing from SOPE */
|
||||
NSString *SOGoPerm_CreateAndModifyAcls = @"CreateAndModifyAcls";
|
||||
NSString *SOGoPerm_FreeBusyLookup = @"FreeBusyLookup";
|
||||
Reference in New Issue
Block a user