]> err.no Git - sope/blob - sope-appserver/NGObjWeb/SoObjects/SoPermissions.m
improved query string handling
[sope] / sope-appserver / NGObjWeb / SoObjects / SoPermissions.m
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE 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   SOPE 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 SOPE; 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
22 #include "SoPermissions.h"
23 #include "common.h"
24
25 /* roles */
26
27 NSString *SoRole_Manager       = @"Manager";
28 NSString *SoRole_Anonymous     = @"Anonymous";
29 NSString *SoRole_Authenticated = @"Authenticated";
30 NSString *SoRole_Owner         = @"Owner";
31
32 /* permissions */
33
34 NSString *SoPerm_AccessContentsInformation    = @"Access Contents Information";
35 NSString *SoPerm_AddDatabaseMethods           = @"Add Database Methods";
36 NSString *SoPerm_AddDocumentsImagesAndFiles   = @"Add Documents, Images, and Files";
37 NSString *SoPerm_AddExternalMethods           = @"Add External Methods";
38 NSString *SoPerm_AddFolders                   = @"Add Folders";
39 NSString *SoPerm_AddMailHostObjects           = @"Add MailHost Objects";
40 NSString *SoPerm_AddPythonScripts             = @"Add Python Scripts";
41 NSString *SoPerm_AddSiteRoots                 = @"Add Site Roots";
42 NSString *SoPerm_AddUserFolders               = @"Add User Folders";
43 NSString *SoPerm_AddVersions                  = @"Add Versions";
44 NSString *SoPerm_AddVocabularies              = @"Add Vocabularies";
45 NSString *SoPerm_ChangeDatabaseConnections    = @"Change Database Connections";
46 NSString *SoPerm_ChangeExternalMethods        = @"Change External Methods";
47 NSString *SoPerm_ChangeImagesAndFiles         = @"Change Images and Files";
48 NSString *SoPerm_ChangePythonScripts          = @"Change Python Scripts";
49 NSString *SoPerm_ChangeVersions               = @"Change Versions";
50 NSString *SoPerm_ChangeBindings               = @"Change Bindings";
51 NSString *SoPerm_ChangeConfiguration          = @"Change Configuration";
52 NSString *SoPerm_ChangePermissions            = @"Change Permissions";
53 NSString *SoPerm_ChangeProxyRoles             = @"Change Proxy Roles";
54 NSString *SoPerm_DeleteObjects                = @"Delete Objects";
55 NSString *SoPerm_ManageAccessRules            = @"Manage Access Rules";
56 NSString *SoPerm_ManageVocabulary             = @"Manage Vocabulary";
57 NSString *SoPerm_ManageProperties             = @"Manage Properties";
58 NSString *SoPerm_ManageUsers                  = @"Manage Users";
59 NSString *SoPerm_OpenCloseDatabaseConnections = @"Open/Close Database Connections";
60 NSString *SoPerm_QueryVocabulary           = @"Query Vocabulary";
61 NSString *SoPerm_SaveDiscardVersionChanges = @"Save/Discard Version Changes";
62 NSString *SoPerm_TakeOwnership             = @"Take Ownership";
63 NSString *SoPerm_TestDatabaseConnections   = @"Test Database Connections";
64 NSString *SoPerm_UndoChanges               = @"Undo Changes";
65 NSString *SoPerm_UseDatabaseMethods        = @"Use Database Methods";
66 NSString *SoPerm_UseMailHostServices       = @"Use MailHost Services";
67 NSString *SoPerm_View                      = @"View";
68 NSString *SoPerm_ViewHistory               = @"View History";
69 NSString *SoPerm_ViewManagementScreens     = @"View Management Screens";
70 NSString *SoPerm_WebDAVAccess              = @"WebDAV Access";
71 NSString *SoPerm_WebDAVLockItems           = @"WebDAV Lock Items";
72 NSString *SoPerm_WebDAVUnlockItems         = @"WebDAV Unlock Items";