EduploneExam/interfaces IExamAnswer.py,1.9,1.10 IExamContext.py,1.3,1.4 IExamNotifier.py,1.9,1.10 IExamNotifyable.py,1.9,1.10 IExamQuestion.py,1.9,1.10 IExamResponse.py,1.3,1.4
Jens Klein <[email protected]>
| Newsgroups | gmane.comp.web.zope.eduplone.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/eduplone/EduploneExam/interfaces
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27907/interfaces
Modified Files:
IExamAnswer.py IExamContext.py IExamNotifier.py
IExamNotifyable.py IExamQuestion.py IExamResponse.py
Log Message:
fixed code and tests
Index: IExamAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/interfaces/IExamAnswer.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** IExamAnswer.py 15 Dec 2004 10:29:06 -0000 1.9
--- IExamAnswer.py 15 Dec 2004 11:22:37 -0000 1.10
***************
*** 8,12 ****
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:25:16 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
--- 8,12 ----
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:51:20 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
Index: IExamResponse.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/interfaces/IExamResponse.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** IExamResponse.py 15 Dec 2004 10:29:06 -0000 1.3
--- IExamResponse.py 15 Dec 2004 11:22:37 -0000 1.4
***************
*** 8,16 ****
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:25:16 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
# GNU General Public Licence (GPL)
! #
# 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
--- 8,16 ----
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:51:20 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
# GNU General Public Licence (GPL)
! #
# 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
***************
*** 33,46 ****
class IExamResponse(Base):
'''
!
'''
#Methods
! def setQuestion():
'''
!
'''
!
pass
--- 33,46 ----
class IExamResponse(Base):
'''
!
'''
#Methods
! def setQuestion(questionobject):
'''
!
'''
!
pass
***************
*** 48,54 ****
def getQuestion():
'''
!
'''
!
pass
--- 48,54 ----
def getQuestion():
'''
!
'''
!
pass
***************
*** 56,62 ****
def getQuestionTitle():
'''
!
'''
!
pass
--- 56,62 ----
def getQuestionTitle():
'''
!
'''
!
pass
***************
*** 64,78 ****
def getQuestionType():
'''
!
'''
!
pass
! def setResponseValues():
'''
!
'''
!
pass
--- 64,79 ----
def getQuestionType():
'''
!
'''
!
pass
! def setResponseValues(**kwargs):
'''
! kwargs is a dictionary where key is AnswerUID and value is what a
! user said.
'''
!
pass
***************
*** 80,94 ****
def getResponseValues():
'''
!
'''
!
pass
! def setScore():
'''
!
'''
!
pass
--- 81,95 ----
def getResponseValues():
'''
!
'''
!
pass
! def setScore(score):
'''
!
'''
!
pass
***************
*** 96,102 ****
def getScore():
'''
!
'''
!
pass
--- 97,103 ----
def getScore():
'''
!
'''
!
pass
***************
*** 104,112 ****
def getMaxScore():
'''
!
'''
!
pass
# end of class IExamResponse
-
--- 105,112 ----
def getMaxScore():
'''
!
'''
!
pass
# end of class IExamResponse
Index: IExamContext.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/interfaces/IExamContext.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** IExamContext.py 15 Dec 2004 10:29:06 -0000 1.3
--- IExamContext.py 15 Dec 2004 11:22:37 -0000 1.4
***************
*** 8,12 ****
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:25:16 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
--- 8,12 ----
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:51:20 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
Index: IExamNotifyable.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/interfaces/IExamNotifyable.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** IExamNotifyable.py 15 Dec 2004 10:29:06 -0000 1.9
--- IExamNotifyable.py 15 Dec 2004 11:22:37 -0000 1.10
***************
*** 8,12 ****
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:25:16 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
--- 8,12 ----
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:51:20 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
Index: IExamQuestion.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/interfaces/IExamQuestion.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** IExamQuestion.py 15 Dec 2004 10:29:06 -0000 1.9
--- IExamQuestion.py 15 Dec 2004 11:22:37 -0000 1.10
***************
*** 8,12 ****
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:25:16 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
--- 8,12 ----
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:51:20 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
Index: IExamNotifier.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/interfaces/IExamNotifier.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** IExamNotifier.py 15 Dec 2004 10:29:06 -0000 1.9
--- IExamNotifier.py 15 Dec 2004 11:22:37 -0000 1.10
***************
*** 8,12 ****
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:25:16 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
--- 8,12 ----
# by FH-Aargau, Switzerland
#
! # Generated: Wed Dec 15 11:51:20 2004
# Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
#
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/