Searched refs:args (Results 1 - 25 of 35) sorted by relevance

12

/ec/ECQuiz/Products/ECQuiz/
H A DECQFolder.py65 def moveObjectsByDelta(self, *args, **kwargs):
70 retVal = ATFolder.moveObjectsByDelta(self, *args, **kwargs)
75 def manage_afterAdd(self, *args, **kwargs):
80 #retVal = OrderedBaseFolder.manage_afterAdd(self, *args, **kwargs)
81 retVal = ATFolder.manage_afterAdd(self, *args, **kwargs)
86 def manage_beforeDelete(self, *args, **kwargs):
91 retVal = ATFolder.manage_beforeDelete(self, *args, **kwargs)
H A Dwikitool.py60 args = parse_tree[0]
61 if atoms(args) % 2 == 0: # every keyword needs an argument
62 while args: # do as long as there are arguments left
63 key,arg = str(args[0]),str(args[1]); del args[0],args[0]
117 args = elem[0]
118 if atoms(args) % 2 == 0: # Every keyword needs an argument
119 while args
[all...]
H A DListValidator.py41 def __call__(self, value, *args, **kwargs):
H A Dvalidators.py41 def __call__(self, value, *args, **kwargs):
77 def __call__(self, value, *args, **kwargs):
94 def __call__(self, value, *args, **kwargs):
128 def __call__(self, value, *args, **kwargs):
147 def __call__(self, value, *args, **kwargs):
164 def __call__(self, value, *args, **kwargs):
H A DECQTool.py150 def parseQueryString(self, *args, **kwargs):
151 return cgi.parse_qs(*args, **kwargs)
154 def urlencode(self, *args, **kwargs):
155 return urllib.urlencode(*args, **kwargs)
H A Dtools.py91 def registerValidatorLogged(klass, *args, **kwargs):
96 validation.register(klass(*args, **kwargs))
98 % (klassName, repr(args), repr(kwargs)))
101 %(klassName, repr(args), repr(kwargs), str(e)))
H A DECQReference.py87 def getAllowedRefTypes(self, *args, **kwargs):
H A Dl2.py468 options, args = getopt(sys.argv[1:], o_short, o_long)
483 if len(args) > 1:
486 if args:
487 string = open(args[0], 'r').read()
/ec/ECQuiz/Products/ECQuiz/AnswerTypes/
H A DECQCorrectAnswer.py91 def isCorrect(self, *args, **kwargs):
94 return self.isCorrectPrivate(*args, **kwargs)
97 def getComment(self, *args, **kwargs):
100 return self.getCommentPrivate(*args, **kwargs)
H A DECQScaleAnswer.py134 def getScore(self, *args, **kwargs):
137 return self.getScorePrivate(*args, **kwargs)
/ec/ECSpooler/tests/
H A Druntests35 opts, args = getopt.getopt(sys.argv[1:], '')
41 if len(args) == 0:
48 test = args[0]
/ec/ECSpooler/lib/util/
H A Dauth.py57 def test(self, args, level):
59 @param: args A dictionary with keys and values for username and encrypted password
64 assert type(args) == DictionaryType, \
65 "Invalid data structure (%s)" % str(type(args))
67 username = args.get("username")
68 password = args.get("password")
H A DBackendSchema.py37 keyword args to __dict__.
364 def __init__(self, *args, **kwargs):
379 if len(args):
380 if type(args[0]) in [ListType, TupleType]:
381 for field in args[0]:
396 for field in args:
397 self.addField(args[0])
447 # args = (default,)
454 # mapply(mutator, *args, **kw)
521 def __init__(self, *args, **kwarg
[all...]
H A Dutils.py99 def uuid(*args):
113 data = str(t) + ' ' + str(r) + ' ' + str(a) + ' ' + str(args)
/ec/ECAssignmentBox/Products/ECAssignmentBox/content/
H A Dvalidators.py32 def __call__(self, value, *args, **kwargs):
/ec/ECLecture/Products/ECLecture/content/
H A Dvalidators.py34 def __call__(self, value, *args, **kwargs):
/ec/ECLecture/Products/ECLecture/portlets/
H A Dportlet.py66 def __init__(self, *args):
69 base.Renderer.__init__(self, *args)
/ec/ECQuiz/Products/ECQuiz/QuestionTypes/
H A DECQPointsQuestion.py81 def getPoints(self, *args, **kwargs):
82 return self.getPointsPrivate(*args, **kwargs)
H A DECQScaleQuestion.py89 def isAllowMultipleSelection(self, *args, **kwargs):
95 def isTutorGraded(self, *args, **kwargs):
H A DECQExtendedTextQuestion.py105 def isTutorGraded(self, *args, **kwargs):
/ec/ECAutoAssessmentBox/Products/ECAutoAssessmentBox/content/
H A DDynamicDataField.py99 args = []
102 value = mapply(method, *args, **kw)
/ec/ECAssignmentBox/Products/ECAssignmentBox/tool/
H A DECABTool.py386 def urlencode(self, *args, **kwargs):
389 return urllib.urlencode(*args, **kwargs)
393 def parseQueryString(self, *args, **kwargs):
396 return cgi.parse_qs(*args, **kwargs)
/ec/ECSpooler/bin/
H A Dbackendctl209 opts, args = getopt.getopt(sys.argv[1:], "S:B:P:u:p:h",
218 if len(args) != 2:
257 backend_id, cmd = args
H A Dspoolerctl171 opts, args = getopt(sys.argv[1:], "P:u:p:h",
178 if len(args) == 0:
209 cmd = args[0]
/ec/ECSpooler/lib/
H A DProgrammingBackend.py313 def _runInterpreter(self, command, dir, fName, options=(), args=()):
322 @param: args command line arguments that fName will be called with
331 #LOG.debug('args: %s' % repr(args))
334 for arg in args:

Completed in 28 milliseconds

12