source: main/waeup.kofa/branches/henrik-transcript-workflow/src/waeup/kofa/documents/permissions.py @ 15159

Last change on this file since 15159 was 12438, checked in by Henrik Bettermann, 10 years ago

Propset svn:keywords "Id"

  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1## $Id: permissions.py 12438 2015-01-11 08:27:37Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18import grok
19
20# Permissions
21
22class ViewDocuments(grok.Permission):
23    grok.name('waeup.viewDocuments')
24
25
26class ManageDocuments(grok.Permission):
27    grok.name('waeup.manageDocuments')
28
29
30# Local Roles
31
32class DocumentManager(grok.Role):
33    grok.name('waeup.local.DocumentManager')
34    grok.title(u'Document Manager')
35    grok.permissions('waeup.manageDocuments',
36                     'waeup.viewDocuments',
37                     'waeup.exportData')
38
39
40# Site Roles
41class DocumentsOfficer(grok.Role):
42    grok.name('waeup.DocumentsOfficer')
43    grok.title(u'Documents Officer (view only)')
44    grok.permissions('waeup.viewDocuments')
45
46
47class DocumentsManager(grok.Role):
48    grok.name('waeup.DocumentsManager')
49    grok.title(u'Documents Manager')
50    grok.permissions('waeup.viewDocuments',
51                     'waeup.manageDocuments')
Note: See TracBrowser for help on using the repository browser.