Searched defs:schema (Results 1 - 25 of 47) sorted by relevance

12

/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 DECQBaseAnswer.py43 schema = BaseSchema.copy() + Schema(( variable in class:ECQBaseAnswer
H A DECQCorrectAnswer.py38 schema = ECQSelectionAnswer.schema.copy() + Schema(( variable in class:ECQCorrectAnswer
H A DECQScaleAnswer.py43 schema = ECQMCAnswer.schema.copy() + Schema(( variable in class:ECQScaleAnswer
65 schema.delField('correct')
/ec/ECQuiz/Products/ECQuiz/
H A DECQFolder.py37 schema = ATFolderSchema.copy() variable in class:ECQFolder
H A DECQGroup.py41 # of the function of a schema, therein defined properties (fields) and
43 schema = ECQAbstractGroup.schema + Schema(( variable in class:ECQGroup
/ec/ECSpooler/backends/echo/
H A DEcho.py14 # input schema
41 schema = inputSchema variable in class:Echo
/ec/ECQuiz/Products/ECQuiz/QuestionTypes/
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 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 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 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')
/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/erlang/
H A DErlang.py57 # input schema
127 schema = inputSchema variable in class:Erlang
186 # test for defined repeat fields in the schema definition
187 repeatFields = self.schema.filterFields(type='RepeatField')
277 # 4.2. get values for all other input fields from schema which are
279 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/backends/python/
H A DPython.py57 # input schema
125 schema = inputSchema variable in class:Python
158 # test for defined repeat fields in the schema definition
159 repeatFields = self.schema.filterFields(type='RepeatField')
208 # 4.2. get values for all other input fields from schema which are
210 for field in self.schema.filterFields(type='InputField'):
/ec/ECSpooler/backends/pyunit/
H A DPyUnit.py49 # input schema
100 schema = inputSchema variable in class:PyUnit
/ec/ECSpooler/backends/scheme/
H A DScheme.py83 # input schema
155 schema = inputSchema variable in class:Scheme
226 # test for defined repeat fields in the schema definition
227 repeatFields = self.schema.filterFields(type='RepeatField')
280 # get values for all other input fields from schema which are
282 for field in self.schema.filterFields(type='InputField'):
/ec/ECSpooler/backends/sql/
H A DSQL.py31 # input schema
130 schema = inputSchema variable in class:SQL
/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/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
/ec/ECAssignmentBox/Products/ECAssignmentBox/tool/
H A DECABTool.py41 schema = Schema(( variable
45 ECABTool_schema = BaseSchema.copy() + schema.copy()
56 schema = ECABTool_schema variable in class:ECABTool
/ec/ECAutoAssessmentBox/Products/ECAutoAssessmentBox/content/
H A DECAutoAssessmentBox.py47 schema = Schema(( variable
132 schema.copy()
146 schema = ECAutoAssessmentBox_schema variable in class:ECAutoAssessmentBox

Completed in 30 milliseconds

12