Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
97c19e37
Commit
97c19e37
authored
Apr 17, 2015
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove no longer needed decorator
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
c5fd0077
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
37 deletions
+0
-37
weblate/trans/decorators.py
weblate/trans/decorators.py
+0
-36
weblate/trans/views/js.py
weblate/trans/views/js.py
+0
-1
No files found.
weblate/trans/decorators.py
deleted
100644 → 0
View file @
c5fd0077
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2015 Michal Čihař <michal@cihar.com>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program 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 3 of the License, or
# (at your option) any later version.
#
# This program 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. If not, see <http://www.gnu.org/licenses/>.
#
from
django.contrib.auth.decorators
import
user_passes_test
def
any_permission_required
(
*
args
):
'''
A decorator which checks user has any of the given permissions.
permission required can not be used in its place as that takes only a
single permission.
'''
def
test_func
(
user
):
for
perm
in
args
:
if
user
.
has_perm
(
perm
):
return
True
return
False
return
user_passes_test
(
test_func
)
weblate/trans/views/js.py
View file @
97c19e37
...
...
@@ -26,7 +26,6 @@ from django.core.exceptions import PermissionDenied
from
weblate.trans.models
import
Unit
,
Check
,
Change
from
weblate.trans.machine
import
MACHINE_TRANSLATION_SERVICES
from
weblate.trans.decorators
import
any_permission_required
from
weblate.trans.views.helper
import
(
get_project
,
get_subproject
,
get_translation
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment