]> err.no Git - sope/blob - sope-appserver/NGObjWeb/SoObjects/SoPermissions.m
fixed various warnings
[sope] / sope-appserver / NGObjWeb / SoObjects / SoPermissions.m
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #include "SoPermissions.h"
24 #include "common.h"
25
26 /* roles */
27
28 NSString *SoRole_Manager       = @"Manager";
29 NSString *SoRole_Anonymous     = @"Anonymous";
30 NSString *SoRole_Authenticated = @"Authenticated";
31 NSString *SoRole_Owner         = @"Owner";
32
33 /* permissions */
34
35 NSString *SoPerm_AccessContentsInformation    = @"Access Contents Information";
36 NSString *SoPerm_AddDatabaseMethods           = @"Add Database Methods";
37 NSString *SoPerm_AddDocumentsImagesAndFiles   = @"Add Documents, Images, and Files";
38 NSString *SoPerm_AddExternalMethods           = @"Add External Methods";
39 NSString *SoPerm_AddFolders                   = @"Add Folders";
40 NSString *SoPerm_AddMailHostObjects           = @"Add MailHost Objects";
41 NSString *SoPerm_AddPythonScripts             = @"Add Python Scripts";
42 NSString *SoPerm_AddSiteRoots                 = @"Add Site Roots";
43 NSString *SoPerm_AddUserFolders               = @"Add User Folders";
44 NSString *SoPerm_AddVersions                  = @"Add Versions";
45 NSString *SoPerm_AddVocabularies              = @"Add Vocabularies";
46 NSString *SoPerm_ChangeDatabaseConnections    = @"Change Database Connections";
47 NSString *SoPerm_ChangeExternalMethods        = @"Change External Methods";
48 NSString *SoPerm_ChangeImagesAndFiles         = @"Change Images and Files";
49 NSString *SoPerm_ChangePythonScripts          = @"Change Python Scripts";
50 NSString *SoPerm_ChangeVersions               = @"Change Versions";
51 NSString *SoPerm_ChangeBindings               = @"Change Bindings";
52 NSString *SoPerm_ChangeConfiguration          = @"Change Configuration";
53 NSString *SoPerm_ChangePermissions            = @"Change Permissions";
54 NSString *SoPerm_ChangeProxyRoles             = @"Change Proxy Roles";
55 NSString *SoPerm_DeleteObjects                = @"Delete Objects";
56 NSString *SoPerm_ManageAccessRules            = @"Manage Access Rules";
57 NSString *SoPerm_ManageVocabulary             = @"Manage Vocabulary";
58 NSString *SoPerm_ManageProperties             = @"Manage Properties";
59 NSString *SoPerm_ManageUsers                  = @"Manage Users";
60 NSString *SoPerm_OpenCloseDatabaseConnections = @"Open/Close Database Connections";
61 NSString *SoPerm_QueryVocabulary           = @"Query Vocabulary";
62 NSString *SoPerm_SaveDiscardVersionChanges = @"Save/Discard Version Changes";
63 NSString *SoPerm_TakeOwnership             = @"Take Ownership";
64 NSString *SoPerm_TestDatabaseConnections   = @"Test Database Connections";
65 NSString *SoPerm_UndoChanges               = @"Undo Changes";
66 NSString *SoPerm_UseDatabaseMethods        = @"Use Database Methods";
67 NSString *SoPerm_UseMailHostServices       = @"Use MailHost Services";
68 NSString *SoPerm_View                      = @"View";
69 NSString *SoPerm_ViewHistory               = @"View History";
70 NSString *SoPerm_ViewManagementScreens     = @"View Management Screens";
71 NSString *SoPerm_WebDAVAccess              = @"WebDAV Access";
72 NSString *SoPerm_WebDAVLockItems           = @"WebDAV Lock Items";
73 NSString *SoPerm_WebDAVUnlockItems         = @"WebDAV Unlock Items";