| /plugin/quizlib/scripts/ |
| D | quizlib.js | 17 * - **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/ |
| D | script.js | 18 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 …]
|
| D | syntax.php | 68 $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/ |
| D | helper.php | 163 * 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 …]
|
| D | action.php | 43 $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/ |
| D | LocationsQuestions.php | 22 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 …]
|
| D | LocationsQuestionsAnswers.php | 36 * 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/ |
| D | README.md | 15 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… 34 …question 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 …]
|
| D | syntax.php | 85 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);
|
| D | style.css | 6 .quizlib-question { 10 .quizlib-question-title {} 12 .quizlib-question-answers ul { 16 .quizlib-question-warning {
|
| /plugin/aichat/lang/en/ |
| D | rephrase.prompt | 1 …question, rephrase the user's follow-up question to be a standalone question that is understandabl… 3 User Follow-up question: {{QUESTION}} 5 Standalone question:
|
| D | noanswer.prompt | 1 …question, tell them that you can't answer it because you couldn't find any matching wiki pages, wh… 4 User Question: {{QUESTION}}
|
| D | question.prompt | 1 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/ |
| D | QuestionItem.php | 24 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/ |
| D | syntax.php | 116 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/ |
| D | LlmReply.php | 10 /** @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/ |
| D | settings.php | 12 $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/ |
| D | block.php | 57 $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/ |
| D | settings.php | 17 $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/ |
| D | callout.txt | 5 <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 D | quizitem.php | 27 '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/ |
| D | GoogleCloudDialogflowV2beta1FaqAnswer.php | 41 public $question; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1FaqAnswer 106 public function setQuestion($question) argument 108 $this->question = $question; 115 return $this->question;
|
| D | GoogleCloudDialogflowV2FaqAnswer.php | 41 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/ |
| D | GoogleCloudContactcenterinsightsV1FaqAnswerData.php | 41 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/ |
| D | simulate.php | 29 …$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'],
|