cco.work: do not use cco.storage; remove obsolete licence comments

This commit is contained in:
Helmut Merz 2026-01-23 09:28:23 +01:00
parent f46ae59f19
commit f6fd7cafbd
3 changed files with 7 additions and 42 deletions

View file

@ -1,23 +1,6 @@
# # cco.work.browser
# Copyright (c) 2017 Helmut Merz helmutm@cy55.de
#
# 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
#
""" """ View class(es) for the cco.work package.
View class(es) for the cco.work package.
""" """
from loops.expert.browser.report import ReportConceptView from loops.expert.browser.report import ReportConceptView

View file

@ -1,23 +1,6 @@
# # cco.work.report
# Copyright (c) 2017 Helmut Merz helmutm@cy55.de
#
# 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
#
""" """ Report class(es) for the cco.work package.
Report class(es) for the cco.work package.
""" """
from cybertools.util.jeep import Jeep from cybertools.util.jeep import Jeep

View file

@ -7,19 +7,18 @@ from zope.cachedescriptors.property import Lazy
from zope.interface import implementer from zope.interface import implementer
from cybertools.organize.interfaces import IWorkItems from cybertools.organize.interfaces import IWorkItems
from loops.common import AdapterBase, adapted, baseObject #from cco.storage.loops.common import AdapterBase
from loops.common import AdapterBase
from loops.common import adapted, baseObject
#from loops.organize.task import Task #from loops.organize.task import Task
from loops.type import TypeInterfaceSourceList from loops.type import TypeInterfaceSourceList
from loops import util from loops import util
from cco.work.interfaces import IProject, ITask from cco.work.interfaces import IProject, ITask
#from cco.storage.loops import common
TypeInterfaceSourceList.typeInterfaces += (IProject, ITask) TypeInterfaceSourceList.typeInterfaces += (IProject, ITask)
#class TaskBase(common.AdapterBase):
class TaskBase(AdapterBase): class TaskBase(AdapterBase):
_contextAttributes = list(ITask) _contextAttributes = list(ITask)