cybertools/knowledge/interfaces.py
helmutm 6e3514c4be provide 'knowledge' attribute for person
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@4156 fd906abe-77d9-0310-91a1-e0d9ade77398
2011-01-26 14:10:52 +00:00

141 lines
4.2 KiB
Python

#
# Copyright (c) 2011 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
#
"""
Interfaces for knowledge management and e-learning.
$Id$
"""
from zope.interface import Interface, Attribute
from zope import schema
from zope.i18nmessageid import MessageFactory
_ = MessageFactory('cybertools.knowledge')
class IKnowledgeElement(Interface):
""" An entity denoting some sort of knowledge.
"""
parent = Attribute('An optional parent element (sort of parent topic)')
def getDependencies():
""" Return a collection of knowledge elements this object depends on.
"""
def dependsOn(element):
""" Add an element to the collection of elements this object
depends on.
"""
def removeDependency(element):
""" Remove the element given from the collection of elements
this object depends on.
"""
def getDependents():
""" Return a collection of knowledge elements that are depending
on this object.
"""
def getKnowers():
""" Return a collection of Knowing objects that have this object
in their knowledge portfolio.
"""
def getProviders():
""" Return a collection of knowledge providers that provide this
object.
"""
class IKnowing(Interface):
""" Someone who knows something.
"""
knowledge = Attribute('A set of knowledge elements that this object '
'knows about.')
def getKnowledge():
""" Return the collection of elements that constitute the
knowledge of this object.
"""
def knows(self, element):
""" Add an element to the collection of elementsthat constitute the
knowledge of this object.
"""
def removeKnowledge(element):
""" Remove the element given from the collection of elements
that constitute the knowledge of this object.
"""
def getMissingKnowledge(profile):
""" Return a tuple of knowledge elements that this object
is missing for fulfilling the requirement profile given.
"""
def getProvidersNeeded(profile):
""" Return a tuple of tuples: Each tuple has as its first element
a requirement of the profile, the second element is a tuple
of the knowledge providers providing this knowledge
((requirement, (provider, ...,)), ...).
"""
class IRequirementProfile(Interface):
""" A collection of certain knowledge e.g. needed to work on certain
position or for a certain task.
"""
def getRequirements():
""" Return the collection of knowledge elements this object requires.
"""
def requires(element):
""" Add a knowledge element to the collection of elements this
object requires.
"""
def removeRequirement(element):
""" Remove the element given from the collection of elements
this object requires.
"""
class IKnowledgeProvider(Interface):
""" An object that is able to provide a certain knowledge - that may
be a document or some sort of elearning content, ...
"""
def getProvidedKnowledge():
""" Return a collection of knowledge elements this object provides.
"""
def provides(element):
""" Add a knowledge element to the collection of elements this
object provides.
"""
def removeProvidedKnowledge(element):
""" Remove the element given from the collection of elements
this object provides.
"""