Home
last modified time | relevance | path

Searched full:question (Results 1 – 25 of 400) sorted by relevance

12345678910>>...16

/plugin/quizlib/scripts/
Dquizlib.js17 * - **QUESTION**: 'quizlib-question'
18 * - used to identify a question element
19 * - **QUESTION_TITLE**: 'quizlib-question-title'
20 * - used to identify the question title element
21 * - **QUESTION_WARNING**: 'quizlib-question-answers'
22 * - used to identify the element containing question answers
23 * - **QUESTION_ANSWERS**: 'quizlib-question-warning'
24 …* - used by the 'unanswered question warning' element. Removed by {{#crossLink "Quiz/clearHighli…
26 * - added to question titles to highlight correctly answered questions.
29 * - added to question titles to highlight incorrectly answered questions.
[all …]
/plugin/flashcards/
Dscript.js18 const questionCountInput = document.getElementById('question-count-input');
56 const question = filteredQuestions[currentQuestionIndex];
57 document.getElementById('question-text').innerText = question.question;
62 question.answers.forEach((answer, index) => {
74 const question = filteredQuestions[currentQuestionIndex];
80 if (index === question.correct) {
90 question: question.question, property
91 answers: question.answers,
92 correct: question.correct,
94 isCorrect: selectedIndex === question.correct,
[all …]
Dsyntax.php68 $question = array_shift($lines);
70 if (empty($question)) {
71 continue; // Skip empty question blocks
93 'question' => trim($question),
124 …<input type='number' id='question-count-input' placeholder='Enter number of questions' min='1' val…
128 <div class='question'>
129 <p id='question-text'></p>
/plugin/aichat/
Dhelper.php163 * Ask a question with a chat history
165 * @param string $question
167 * @return array ['question' => $question, 'answer' => $answer, 'sources' => $sources]
170 public function askChatQuestion($question, $history = [], $sourcePage = '') argument
173 $contextQuestion = $this->rephraseChatQuestion($question, $history);
175 // Only use the rephrased question if it has more history than the chat history provides
177 $question = $contextQuestion;
180 $contextQuestion = $question;
182 return $this->askQuestion($question, $history, $contextQuestion, $sourcePage);
186 * Ask a single standalone question
[all …]
Daction.php43 $question = $INPUT->post->str('question');
50 'question' => $question,
58 $result = $helper->askChatQuestion($question, $history, $pagecontext);
74 'question' => $result['question'],
81 $question,
83 'interpretation' => $result['question'],
95 'question' => $question,
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessQA/Resource/
DLocationsQuestions.php22 use Google\Service\MyBusinessQA\Question; alias
35 * Adds a question for the specified location. (questions.create)
37 * @param string $parent Required. The name of the location to write a question
39 * @param Question $postBody
41 * @return Question
43 public function create($parent, Question $postBody, $optParams = [])
47 return $this->call('create', [$params], Question::class);
50 * Deletes a specific question written by the current user. (questions.delete)
52 * @param string $name Required. The name of the question to delete.
72 * question. The default and maximum `answers_per_question` values are 10.
[all …]
DLocationsQuestionsAnswers.php36 * Deletes the answer written by the current user to a question.
39 * @param string $name Required. The name of the question to delete an answer
51 * Returns the paginated list of answers for a specified question.
54 * @param string $parent Required. The name of the question to fetch answers
76 * specified question. A user can only create one answer per question.
79 * @param string $parent Required. The name of the question to write an answer
/plugin/quizlib/
DREADME.md15 There a three kinds of question formats you can use:
23 …e child elements of the quizlib-tag. Each "question" has an attribute "title" with the content of …
32 …<question title="1. What is the answer to life, the universe and everything?" type="text"></questi…
33 …<question title="2. Your enemy's father..." type="radio">is a hamster|smells of elderberries</ques…
34question title="3. Which factors will contribute to the end of humanity as we know it?" type="chec…
46 <!-- Question 1 -->
47 <div class="quizlib-card quizlib-question">
48 …<div class="quizlib-question-title">1. What is the answer to life, the universe and everything?</d…
49 <div class="quizlib-question-answers">
53 <!-- Question 2 -->
[all …]
Dsyntax.php85 foreach ($xml->children() as $question){
86 … $renderer->doc .= '<div class="quizlib-card quizlib-question">' . PHP_EOL;
87 foreach ($question->attributes() as $attribute=>$attributevalue){
90 … $renderer->doc .= '<div class="quizlib-question-title">' . $attributevalue . '</div>' . PHP_EOL;
95 …$renderer->doc .= '<div class="quizlib-question-answers"><input type="text" name="q'.$questioncoun…
98 … $renderer->doc .= '<div class="quizlib-question-answers"><ul>' . PHP_EOL;
99 $answers = explode('|', $question);
108 … $renderer->doc .= '<div class="quizlib-question-answers"><ul>' . PHP_EOL;
109 $answers = explode('|', $question);
Dstyle.css6 .quizlib-question {
10 .quizlib-question-title {}
12 .quizlib-question-answers ul {
16 .quizlib-question-warning {
/plugin/aichat/lang/en/
Drephrase.prompt1question, rephrase the user's follow-up question to be a standalone question that is understandabl…
3 User Follow-up question: {{QUESTION}}
5 Standalone question:
Dnoanswer.prompt1question, tell them that you can't answer it because you couldn't find any matching wiki pages, wh…
4 User Question: {{QUESTION}}
Dquestion.prompt1 Your Task: Use the following documents as context to answer the users question. If you don't know t…
7 User Question: {{QUESTION}}
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/
DQuestionItem.php24 protected $questionType = Question::class;
42 * @param Question
44 public function setQuestion(Question $question) argument
46 $this->question = $question;
49 * @return Question
53 return $this->question;
/plugin/questionnaire/
Dsyntax.php116 foreach ($data as $question => $q) {
117 $form->addTagOpen('div')->addClass('question');
125 … $form->addCheckbox('questionnaire[' . $question . '][' . $num . ']', $answer)->val($answer);
130 … $form->addRadioButton('questionnaire[' . $question . ']', $answer)->val($answer);
135 $form->addTextarea('questionnaire[' . $question . ']');
216 foreach (array_keys($data) as $question) {
217 if (!isset($input[$question])) {
221 if (is_array($input[$question])) {
222 if (array_filter(array_map('trim', $input[$question])) === []) {
225 } elseif (trim($input[$question]) === '') {
[all …]
/plugin/aichat/RemoteResponse/
DLlmReply.php10 /** @var string The question as asked */
11 public $question; variable in dokuwiki\\plugin\\aichat\\RemoteResponse\\LlmReply
19 $this->question = $data['question'];
29 return $this->question;
/plugin/captcha/lang/en/
Dsettings.php12 $lang['mode_o_question'] = "Fixed Question";
23 $lang['question'] = "Question for fixed question mode";
24 $lang['answer'] = "Answer for fixed question mode";
/plugin/qna/syntax/
Dblock.php57 $question = trim(substr($match, 4));
59 if ($question != '') {
60 $identifier = $this->questionToIdentifier($question);
62 $data = array('open_question', $question, $identifier);
89 if ($style == 'question') {
106 $meta['class'] = 'question';
118 * Convert a question title to unique identifier
/plugin/captcha/lang/fr/
Dsettings.php17 $lang['mode_o_question'] = 'Question fixe';
27 $lang['question'] = 'Question pour le mode \'question fixe\'';
28 $lang['answer'] = 'Réponse pour le mode \'question fixe\'';
/plugin/bootswrapper/exe/help/
Dcallout.txt5 <callout type="question" icon="true">
101 <callout type="question" icon="true">
102 === Question Callout ===
103 This is a question callout (alias of ''important'').
112 <callout type="question" icon="true"> [...] </callout>
146 …' ''success'' ''info'' ''warning'' ''danger'' (''question'' ''tip'') | Type of callout \\ \\ ''qu…
/plugin/mikioplugin/syntax/
H A Dquizitem.php27 'question' => array('type' => 'text', 'default' => ''),
38 $data['question'] = $this->applyMarkdownEffects($data['question']);
41 …. ' ' . $this->classPrefix . 'quiz-item' . $classes . '" data-question="' . $data['question'] . '"…
42 …lass="' . $this->elemClass . ' ' . $this->classPrefix . 'quiz-question">' . $data['question'] . '<…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
DGoogleCloudDialogflowV2beta1FaqAnswer.php41 public $question; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1FaqAnswer
106 public function setQuestion($question) argument
108 $this->question = $question;
115 return $this->question;
DGoogleCloudDialogflowV2FaqAnswer.php41 public $question; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2FaqAnswer
106 public function setQuestion($question) argument
108 $this->question = $question;
115 return $this->question;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
DGoogleCloudContactcenterinsightsV1FaqAnswerData.php41 public $question; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1FaqAnswerData
106 public function setQuestion($question) argument
108 $this->question = $question;
115 return $this->question;
/plugin/aichat/cli/
Dsimulate.php29 …$options->registerArgument('input', 'A file with the chat questions. Each question separated by tw…
85 $history[] = [$result['question'], $result['answer']];
86 $this->colors->ptln($result['question'], Colors::C_LIGHTBLUE);
90 … $result = ['question' => $q, 'answer' => "ERROR\n" . $e->getMessage(), 'sources' => []];
94 'question' => $q,
116 'question' => ['question', 'stats.embedding.cost', 'stats.embedding.time'],

12345678910>>...16