EduploneExam/answers BlindGapAnswer.py,1.16,1.17 BooleanAnswer.py,1.15,1.16 ChoiceGapAnswer.py,1.16,1.17 FreeTextAnswer.py,1.17,1.18 MatchingAnswer.py,1.17,1.18 MathAnswer.py,1.18,1.19 MultipleChoiceAnswer.py,1.15,1.16 SingleChoiceAnswer.py,1.15,1.16 TextLineAnswer.py,1.10,1.11 TextTaskAnswer.py,1.16,1.17 TrueFalseAnswer.py,1.15,1.16

Nils Haagen <[email protected]>
Newsgroups gmane.comp.web.zope.eduplone.cvs
Message-ID <[email protected]>
Update of /cvsroot/eduplone/EduploneExam/answers
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29746/answers

Modified Files:
	BlindGapAnswer.py BooleanAnswer.py ChoiceGapAnswer.py 
	FreeTextAnswer.py MatchingAnswer.py MathAnswer.py 
	MultipleChoiceAnswer.py SingleChoiceAnswer.py 
	TextLineAnswer.py TextTaskAnswer.py TrueFalseAnswer.py 
Log Message:
added truefalse and singlechoice

Index: TrueFalseAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/TrueFalseAnswer.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** TrueFalseAnswer.py	15 Dec 2004 13:56:02 -0000	1.15
--- TrueFalseAnswer.py	16 Dec 2004 13:28:18 -0000	1.16
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: TextLineAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/TextLineAnswer.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** TextLineAnswer.py	15 Dec 2004 13:56:02 -0000	1.10
--- TextLineAnswer.py	16 Dec 2004 13:28:18 -0000	1.11
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: MultipleChoiceAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/MultipleChoiceAnswer.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** MultipleChoiceAnswer.py	15 Dec 2004 13:56:02 -0000	1.15
--- MultipleChoiceAnswer.py	16 Dec 2004 13:28:18 -0000	1.16
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: FreeTextAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/FreeTextAnswer.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** FreeTextAnswer.py	16 Dec 2004 11:14:49 -0000	1.17
--- FreeTextAnswer.py	16 Dec 2004 13:28:18 -0000	1.18
***************
*** 8,16 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 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: Thu Dec 16 14:21:01 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
***************
*** 45,51 ****
      '''
      security = ClassSecurityInfo()
!     portal_type = meta_type = 'FreeTextAnswer'
!     archetype_name = 'FreeTextAnswer'   #this name appears in the 'add' box
!     allowed_content_types = []
  
      __implements__ = getattr(BaseContent,'__implements__',()) + (IExamAnswer,)
--- 45,51 ----
      '''
      security = ClassSecurityInfo()
!     portal_type = meta_type = 'FreeTextAnswer' 
!     archetype_name = 'FreeTextAnswer'   #this name appears in the 'add' box 
!     allowed_content_types = [] 
  
      __implements__ = getattr(BaseContent,'__implements__',()) + (IExamAnswer,)
***************
*** 63,67 ****
              ),
          ),
! 
          StringField('title',
              accessor='''Title''',
--- 63,67 ----
              ),
          ),
!         
          StringField('title',
              accessor='''Title''',
***************
*** 74,78 ****
              ),
          ),
! 
          LinesField('correct',
              widget=LinesWidget(description='Enter a value for correct.',
--- 74,78 ----
              ),
          ),
!         
          LinesField('correct',
              widget=LinesWidget(description='Enter a value for correct.',
***************
*** 83,87 ****
              ),
          ),
! 
          TextField('exemplar',
              widget=TextAreaWidget(description='Enter a value for exemplar.',
--- 83,87 ----
              ),
          ),
!         
          TextField('exemplar',
              widget=TextAreaWidget(description='Enter a value for exemplar.',
***************
*** 92,96 ****
              ),
          ),
! 
      ),
      )
--- 92,96 ----
              ),
          ),
!         
      ),
      )
***************
*** 111,114 ****
--- 111,115 ----
  
  
+ 
      # uncomment lines below when you need
      factory_type_information={
***************
*** 121,130 ****
          }
  
! 
      actions=  (
! 
  
            )
! 
  
  registerType(FreeTextAnswer)
--- 122,131 ----
          }
  
!         
      actions=  (
!         
  
            )
!         
  
  registerType(FreeTextAnswer)
***************
*** 134,135 ****
--- 135,138 ----
  registerAnswerType(FreeTextAnswer)
  ##/code-section module-footer
+ 
+ 

Index: ChoiceGapAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/ChoiceGapAnswer.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** ChoiceGapAnswer.py	15 Dec 2004 13:56:02 -0000	1.16
--- ChoiceGapAnswer.py	16 Dec 2004 13:28:18 -0000	1.17
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: TextTaskAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/TextTaskAnswer.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** TextTaskAnswer.py	15 Dec 2004 13:56:02 -0000	1.16
--- TextTaskAnswer.py	16 Dec 2004 13:28:18 -0000	1.17
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: MathAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/MathAnswer.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** MathAnswer.py	15 Dec 2004 13:56:02 -0000	1.18
--- MathAnswer.py	16 Dec 2004 13:28:18 -0000	1.19
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: MatchingAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/MatchingAnswer.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** MatchingAnswer.py	15 Dec 2004 13:56:02 -0000	1.17
--- MatchingAnswer.py	16 Dec 2004 13:28:18 -0000	1.18
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: BooleanAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/BooleanAnswer.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** BooleanAnswer.py	15 Dec 2004 13:56:02 -0000	1.15
--- BooleanAnswer.py	16 Dec 2004 13:28:18 -0000	1.16
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: SingleChoiceAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/SingleChoiceAnswer.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** SingleChoiceAnswer.py	15 Dec 2004 13:56:02 -0000	1.15
--- SingleChoiceAnswer.py	16 Dec 2004 13:28:18 -0000	1.16
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #

Index: BlindGapAnswer.py
===================================================================
RCS file: /cvsroot/eduplone/EduploneExam/answers/BlindGapAnswer.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** BlindGapAnswer.py	15 Dec 2004 13:56:02 -0000	1.16
--- BlindGapAnswer.py	16 Dec 2004 13:28:18 -0000	1.17
***************
*** 8,12 ****
  # by FH-Aargau, Switzerland
  #
! # Generated: Wed Dec 15 14:24:36 2004
  # Generator: ArchGenXML Version 1.2 devel 3 http://sf.net/projects/archetypes/
  #
--- 8,12 ----
  # by FH-Aargau, Switzerland
  #
! # Generated: Thu Dec 16 14:21:01 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/
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.