1 | ## $Id: permissions.py 12206 2014-12-13 07:28:59Z 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 | ## |
---|
18 | import grok |
---|
19 | |
---|
20 | # Permissions |
---|
21 | |
---|
22 | class ViewDocuments(grok.Permission): |
---|
23 | grok.name('waeup.viewDocuments') |
---|
24 | |
---|
25 | |
---|
26 | class ManageDocuments(grok.Permission): |
---|
27 | grok.name('waeup.manageDocuments') |
---|
28 | |
---|
29 | |
---|
30 | # Local Roles |
---|
31 | |
---|
32 | class 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 |
---|
41 | class DocumentsOfficer(grok.Role): |
---|
42 | grok.name('waeup.DocumentsOfficer') |
---|
43 | grok.title(u'Documents Officer (view only)') |
---|
44 | grok.permissions('waeup.viewDocuments') |
---|
45 | |
---|
46 | |
---|
47 | class DocumentsManager(grok.Role): |
---|
48 | grok.name('waeup.DocumentsManager') |
---|
49 | grok.title(u'Documents Manager') |
---|
50 | grok.permissions('waeup.viewDocuments', |
---|
51 | 'waeup.manageDocuments') |
---|