Searched refs:schema (Results 1 - 25 of 52) sorted by relevance

123

/ec/ECQuiz/Products/ECQuiz/AnswerTypes/
H A DECQMCAnswer.py34 schema = ECQCorrectAnswer.schema.copy() variable in class:ECQMCAnswer
36 schema['id'].read_permission = permissions.PERMISSION_STUDENT
37 schema['answer'].read_permission = permissions.PERMISSION_STUDENT
H A DECQSelectionAnswer.py38 schema = ECQBaseAnswer.schema.copy() + Schema(( variable in class:ECQSelectionAnswer
H A DECQScaleAnswer.py43 schema = ECQMCAnswer.schema.copy() + Schema(( variable in class:ECQScaleAnswer
65 schema.delField('correct')
H A DECQCorrectAnswer.py38 schema = ECQSelectionAnswer.schema.copy() + Schema(( variable in class:ECQCorrectAnswer
H A DECQBaseAnswer.py43 schema = BaseSchema.copy() + Schema(( variable in class:ECQBaseAnswer
/ec/ECQuiz/Products/ECQuiz/QuestionTypes/
H A DECQExtendedTextQuestion.py37 schema = ECQPointsQuestion.schema.copy() + Schema(( variable in class:ECQExtendedTextQuestion
77 schema.delField('tutorGraded')
79 schema.moveField('points', 1)
80 schema.moveField('points', 1)
H A DECQScaleQuestion.py50 schema = ECQSelectionQuestion.schema.copy() + \
51 ECQPointsQuestion.schema.copy() + Schema(( variable in class:ECQScaleQuestion
78 schema.moveField('choiceLayout', -1)
87 schema.delField('allowMultipleSelection')
93 schema.delField('tutorGraded')
H A DECQRatingQuestion.py52 schema = ECQSelectionQuestion.schema.copy() + \
53 ECQPointsQuestion.schema.copy() variable in class:ECQRatingQuestion
H A DECQBaseQuestion.py49 schema = ECQFolder.schema.copy() + Schema(( variable in class:ECQBaseQuestion
H A DECQMCQuestion.py53 schema = ECQSelectionQuestion.schema.copy() + ECQPointsQuestion.schema.copy() variable in class:ECQMCQuestion
H A DECQPointsQuestion.py46 schema = ECQBaseQuestion.schema.copy() + Schema(( variable in class:ECQPointsQuestion
H A DECQSelectionQuestion.py48 schema = ECQBaseQuestion.schema + Schema(( variable in class:ECQSelectionQuestion
/ec/ECAutoAssessmentBox/Products/ECAutoAssessmentBox/browser/
H A Dvocabularies.py16 from zope.schema.interfaces import IVocabularyFactory
18 from zope.schema.vocabulary import SimpleVocabulary
19 from zope.schema.vocabulary import SimpleTerm
H A Decaabsettings.py20 #from zope.schema import Text
21 from zope.schema import TextLine
22 from zope.schema import List
23 from zope.schema import Int
24 from zope.schema import Password
25 #from zope.schema import Tuple
26 #from zope.schema import Choice
33 from Products.CMFDefault.formlib.schema import SchemaAdapterBase
45 Spooler fieldset schema
78 Backends fieldset schema
[all...]
/ec/ECQuiz/Products/ECQuiz/
H A DECQGroup.py41 # of the function of a schema, therein defined properties (fields) and
43 schema = ECQAbstractGroup.schema + Schema(( variable in class:ECQGroup
H A Dtools.py206 def hideIdField(schema):
214 schema.replaceField('id', hiddenIdField)
215 return schema
H A DECQFolder.py37 schema = ATFolderSchema.copy() variable in class:ECQFolder
/ec/ECAssignmentBox/Products/ECAssignmentBox/browser/
H A Decabsettings.py20 #from zope.schema import Text
21 from zope.schema import TextLine
22 from zope.schema import List
23 from zope.schema import Int
24 from zope.schema import Password
25 #from zope.schema import Tuple
26 #from zope.schema import Choice
33 from Products.CMFDefault.formlib.schema import SchemaAdapterBase
45 Spooler fieldset schema
/ec/ECSpooler/backends/echo/
H A DEcho.py14 # input schema
41 schema = inputSchema variable in class:Echo
/ec/ECSpooler/backends/haskellext/
H A DHaskellExt.py87 schema = inputSchema variable in class:HaskellExt
110 # test for defined repeat fields in the schema definition
111 repeatFields = self.schema.filterFields(type='RepeatField')
169 # schema - unless the according data are available in the job object
170 for field in self.schema.filterFields(type='InputField'):
/ec/ECSpooler/backends/keywords/
H A DKeywords.py26 # input schema
76 schema = inputSchema variable in class:Keywords
125 # test for defined repeat fields in the schema definition
126 repeatFields = self.schema.filterFields(type='RepeatField')
156 # run selected tests (e.g., "simple", cf. schema definition)
/ec/ECSpooler/lib/
H A DBackend.py32 the _process_execute method and defining their own input and test schema.
40 schema = None variable in class:Backend
67 assert self.schema != None, \
68 'A input schema is required for this backend'
70 'A test schema is required for this backend'
221 Return the input schema defined for this backend.
223 @return: the input schema as string
226 return str(self.schema)
231 Return the test schema defined for this backend.
233 @return: the test schema a
[all...]
/ec/ECAutoAssessmentBox/Products/ECAutoAssessmentBox/content/
H A DECAutoAssignment.py47 schema = Schema(( variable
95 ECAutoAssignment_schema = ECAssignment.schema.copy() + \
96 schema.copy()
108 schema = ECAutoAssignment_schema variable in class:ECAutoAssignment
/ec/ECSpooler/backends/xml/
H A DXML.py57 # input schema
125 schema = inputSchema variable in class:XML
176 # We ensure that we defined our schema correctly:
177 inputFields = self.schema.filterFields(type='InputField')
182 repeatFields = self.schema.filterFields(type='RepeatField')
349 repeatField = self.schema.filterFields(type='RepeatField')[0]
/ec/ECAssignmentBox/Products/ECAssignmentBox/content/
H A DECFolder.py32 schema = Schema(( variable
82 ECFolder_schema = ATFolderSchema.copy() + schema.copy()
94 schema = ECFolder_schema variable in class:ECFolder

Completed in 68 milliseconds

123