2020-09-26 16:19:37 +02:00
|
|
|
# -*- mode: python -*-
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Gestion scolarite IUT
|
|
|
|
#
|
2021-01-01 17:51:08 +01:00
|
|
|
# Copyright (c) 1999 - 2021 Emmanuel Viennet. All rights reserved.
|
2020-09-26 16:19:37 +02:00
|
|
|
#
|
|
|
|
# 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, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# Emmanuel Viennet emmanuel.viennet@gmail.com
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
"""Imports et configuration des composants Zope
|
|
|
|
"""
|
|
|
|
|
2020-12-15 08:35:44 +01:00
|
|
|
# Allows code linting on platforms without Zope:
|
|
|
|
# pylint: disable=import-error
|
2020-09-26 16:19:37 +02:00
|
|
|
from OFS.SimpleItem import Item # Basic zope object
|
|
|
|
from OFS.PropertyManager import PropertyManager # provide the 'Properties' tab with the
|
|
|
|
|
|
|
|
# 'manage_propertiesForm' method
|
|
|
|
from OFS.ObjectManager import ObjectManager
|
|
|
|
from AccessControl.Role import RoleManager # provide the 'Ownership' tab with
|
|
|
|
|
|
|
|
# the 'manage_owner' method
|
2021-01-10 11:43:17 +01:00
|
|
|
from AccessControl import ClassSecurityInfo as ZopeClassSecurityInfo
|
2020-09-26 16:19:37 +02:00
|
|
|
import Globals
|
|
|
|
from Globals import DTMLFile # can use DTML files
|
|
|
|
from Globals import Persistent
|
|
|
|
from Globals import INSTANCE_HOME
|
|
|
|
from Acquisition import Implicit
|
|
|
|
|
|
|
|
# where we exist on the file system
|
|
|
|
file_path = Globals.package_home(globals())
|
2021-01-10 11:43:17 +01:00
|
|
|
|
|
|
|
# Collect all security declarations (Zope2Flask)
|
|
|
|
|
|
|
|
import inspect
|
|
|
|
|
2021-01-16 19:33:35 +01:00
|
|
|
LOG_SECURITY = False # use for dev
|
|
|
|
|
2021-01-10 11:43:17 +01:00
|
|
|
|
|
|
|
class ClassSecurityInfo(ZopeClassSecurityInfo):
|
|
|
|
def declareProtected(self, perm, funcname):
|
|
|
|
if LOG_SECURITY:
|
|
|
|
frame = inspect.currentframe()
|
2021-01-16 19:33:35 +01:00
|
|
|
module = str(frame.f_back.f_locals["__module__"])
|
|
|
|
assert module.startswith("Products.ScoDoc.")
|
|
|
|
module = module[len("Products.ScoDoc.") :]
|
2021-01-10 11:43:17 +01:00
|
|
|
with open("/tmp/protected_methods.txt", "a") as f:
|
|
|
|
f.write("%s\t%s\n" % (module, funcname))
|
|
|
|
super(ClassSecurityInfo, self).declareProtected(perm, funcname)
|