50 lines
1.8 KiB
Python
50 lines
1.8 KiB
Python
# -*- mode: python -*-
|
|
# -*- coding: utf-8 -*-
|
|
|
|
##############################################################################
|
|
#
|
|
# Gestion scolarite IUT
|
|
#
|
|
# Copyright (c) 1999 - 2021 Emmanuel Viennet. All rights reserved.
|
|
#
|
|
# 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
|
|
"""
|
|
# Avoid pylint warnings when linting without Zope
|
|
# pylint: skip-file
|
|
|
|
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
|
|
from AccessControl import ClassSecurityInfo
|
|
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())
|