This file is indexed.

/usr/lib/python2.7/dist-packages/schooltool/requirement/security.py is in python-schooltool.gradebook 2.6.3-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
#
# SchoolTool - common information systems platform for school administration
# Copyright (c) 2005 Shuttleworth Foundation
#
# 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 2 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/>.
#
"""Requirement Security
"""
from zope.component import adapts
from zope.interface import implements

from schooltool.course.interfaces import ISection
from schooltool.course.section import LearnersCrowd
from schooltool.course.section import InstructorsCrowd
from schooltool.course.section import SectionCalendarSettingCrowd
from schooltool.requirement.interfaces import IRequirement
from schooltool.securitypolicy.crowds import ParentCrowd
from schooltool.securitypolicy.crowds import AggregateCrowd
from schooltool.app.security import LeaderCrowd
from schooltool.securitypolicy.crowds import EverybodyCrowd
from schooltool.securitypolicy.crowds import ParentCrowdTemplate
from schooltool.securitypolicy.interfaces import ICrowd
from schooltool.course.interfaces import ICourse


class IRequirementParentCrowd(ICrowd):
    """A crowd object that is used on a requirement's parent.

    This is just a marker interface.
    """


RequirementViewersCrowd = ParentCrowd(
    IRequirementParentCrowd, 'schooltool.view')


RequirementEditorsCrowd = ParentCrowd(
    IRequirementParentCrowd, 'schooltool.edit')


class RequirementRequirementEditorsCrowd(ParentCrowdTemplate):
    """People who can view subrequirements of a requirement.

    Requirement editors crowd depends on the parent object, but if
    that parent is a requirement we are retrieving permissions of it's
    parent.
    """
    adapts(IRequirement)
    implements(IRequirementParentCrowd)

    permission = 'schooltool.edit'
    interface = IRequirementParentCrowd


class RequirementRequirementViewersCrowd(ParentCrowdTemplate):
    """People who can view subrequirements of a requirement.

    Requirement viewers crowd depends on the parent object, but if
    that parent is a requirement we are retrieving permissions of it's
    parent.
    """
    adapts(IRequirement)
    implements(IRequirementParentCrowd)

    permission = 'schooltool.view'
    interface = IRequirementParentCrowd


class CourseRequirementEditorsCrowd(LeaderCrowd):
    """People who can edit requirements of a course"""
    adapts(ICourse)
    implements(IRequirementParentCrowd)


class CourseRequirementViewersCrowd(EverybodyCrowd):
    """People who can view requirements of a course"""
    adapts(ICourse)
    implements(IRequirementParentCrowd)


class SectionRequirementEditorsCrowd(InstructorsCrowd):
    """People who can edit requirements of a section"""
    adapts(ISection)
    implements(IRequirementParentCrowd)


class SectionRequirementViewersCrowd(AggregateCrowd):
    """People who can view requirements of a course"""
    adapts(ISection)
    implements(IRequirementParentCrowd)

    def crowdFactories(self):
        return [SectionCalendarSettingCrowd, InstructorsCrowd, LearnersCrowd]