| /plugin/phpipam/ |
| D | syntax.php | 401 $reply = $rest_api->get_result() ; 402 if ($reply['data']) { 403 $renderer->doc .= $this->showSub((array)$reply['data'], $opts['fmt']) ; 405 $renderer->doc .= $this->showErr($reply, $opts) ; 410 $reply = $rest_api->get_result() ; 411 if ($reply['data']) { 412 foreach ($reply['data'] as $subnet) { 416 $renderer->doc .= $this->showErr($reply, $opts) ; 421 $reply = $rest_api->get_result() ; 422 if ($reply['data']) { [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/ |
| D | GoogleCloudDialogflowV2beta1SmartReplyAnswer.php | 33 public $reply; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1SmartReplyAnswer 66 public function setReply($reply) argument 68 $this->reply = $reply; 75 return $this->reply;
|
| D | GoogleCloudDialogflowV2SmartReplyAnswer.php | 33 public $reply; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2SmartReplyAnswer 66 public function setReply($reply) argument 68 $this->reply = $reply; 75 return $this->reply;
|
| D | GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.php | 44 public function setReply(GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply $reply) argument 46 $this->reply = $reply; 53 return $this->reply;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/ |
| D | GoogleCloudContactcenterinsightsV1SmartReplyData.php | 34 public $reply; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1SmartReplyData 75 public function setReply($reply) argument 77 $this->reply = $reply; 84 return $this->reply;
|
| /plugin/diagramsnet/lib/plugins/ |
| D | cConf-comments.js | 128 var reply = confCommentToDrawio(replies[i], atlasComment.id, siteUrl); 129 comment.addReplyDirect(reply); 131 var isResolvedReply = reply.content.indexOf(RESOLVED_MARKER) == 0; 135 reply.content = reply.content.substr(RESOLVED_MARKER.length); 212 oldVerReplies.push({parentId: parentId, reply: comments[i]}); property 232 pComment.children.comment.results.push(oldVerReplies[i].reply); 289 DrawioComment.prototype.addReply = function(reply, success, error, doResolve, doReopen) argument 291 if (commentsVer == null || !reply.content) 297 …ui.remoteInvoke('addCommentReply', [this.id, this.file.attVer, reply.content, doResolve], null, fu… 299 reply.version = version; [all …]
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | DrawioComment.js | 29 DrawioComment.prototype.addReplyDirect = function(reply) argument 31 if (reply != null) 32 this.replies.push(reply); 35 DrawioComment.prototype.addReply = function(reply, success, error, doResolve, doReopen) argument
|
| D | DriveComment.js | 10 DriveComment.prototype.addReply = function(reply, success, error, doResolve, doReopen) argument 12 var body = {'content': reply.content};
|
| /plugin/annotations/_test/ |
| H A D | HelperTest.php | 52 $reply = ['author' => 'alice']; 53 $this->assertTrue($h->canEditReply($reply, 'alice', false)); 54 $this->assertFalse($h->canEditReply($reply, 'bob', false)); 55 $this->assertTrue($h->canEditReply($reply, 'bob', true)); 161 $reply = $h->addReply($id, $ann['id'], 'bob', 'a reply'); 162 $this->assertIsArray($reply); 163 $this->assertNotEmpty($reply['id']); 166 $this->assertTrue($h->updateReply($id, $ann['id'], $reply['id'], 'edited reply')); 169 $this->assertTrue($h->deleteReply($id, $ann['id'], $reply['id']));
|
| /plugin/discussion/ |
| H A D | action.php | 278 $reply = $INPUT->str('reply'); 284 $this->add($comment, $reply); 393 * @param null|string $reply comment id on which the user requested a reply 396 protected function showDiscussionSection($reply = null, $edit = null) argument 458 $this->showCommentWithReplies($cid, $data, '', $reply); 464 if ($data['status'] == 1 && (!$reply || !$this->getConf('usethreading')) && !$edit) { 771 * @param string $reply comment id on which the user requested a reply 774 …protected function showCommentWithReplies($cid, &$data, $parent = '', $reply = '', $isVisible = tr… argument 798 $this->showComment($cid, $data, $reply, $isVisible); 800 $this->showReplies($cid, $data, $reply, $isVisible); [all …]
|
| /plugin/annotations/ |
| H A D | action.php | 480 $reply = null; 483 $reply = $r; 487 if ($reply === null) { 491 if (!$helper->canEditReply($reply, $user, $isAdmin)) { 564 $reply = null; 567 $reply = $r; 571 if ($reply === null) { 575 if (!$helper->canEditReply($reply, $user, $isAdmin)) {
|
| H A D | helper.php | 368 $reply = [ 377 return $this->mutate($id, function (array &$annotations) use ($annId, $reply) { 380 $annotations[$i]['replies'][] = $reply; 381 return $reply; 754 * @param array $reply 759 public function canEditReply(array $reply, $user, $isAdmin) argument 764 return $isAdmin || (($reply['author'] ?? '') === $user);
|
| H A D | README.md | 6  14 - **Threaded replies** — any logged-in reader can reply to an annotation, or reply to another reply… 46 | `body_cap` | `10000` | Maximum length (characters) of an annotation or reply body; longer input i… 69 …he bottom. Each individual reply also has its own **Reply** button, so conversations can nest. Any…
|
| H A D | DESIGN.md | 18 - **Threaded.** Annotations carry replies, and a reply may itself reply to 19 another reply (each records a `parentId`), so a discussion nests into a tree. 74 Replies are stored as a **flat** list; `parentId` (empty for a top-level reply, 75 otherwise the id of the reply being answered) lets the client rebuild the nested 76 thread (`buildReplyTree`). The `reply`, `edit_reply` and `delete_reply` actions 206 | Create annotation / reply / resolve / reopen | logged in **and** `AUTH_READ` on the page — *not* … 208 | Edit / delete own reply | author (`canEditReply`) | 209 | Edit / delete **any** annotation or reply | admin (`canEditAnnotation` / `canEditReply`) | 238 | `reply` | POST | ✓ | `annId`, `body` |
|
| H A D | script.js | 974 function buildReplyEntry(ann, reply, depth, readOnly) { argument 977 entry.dataset.replyId = reply.id; 984 entry.appendChild(buildMeta(reply.author, reply.created, null)); 988 bodyEl.textContent = reply.body; 1013 var form = buildInlineReplyForm(ann, reply.id, depth + 1); 1021 var canEdit = _isAdmin || reply.author === currentUser(); 1028 showEditForm(entry, {annId: ann.id, replyId: reply.id, body: reply.body}, 'reply'); 1038 doDeleteReply(ann.id, reply.id, delBtn); 1060 map[r.id] = {reply: r, children: []}; property 1084 panel.appendChild(buildReplyEntry(ann, node.reply, depth, readOnly));
|
| /plugin/diagramsnet/lib/ |
| D | electron.js | 466 reply: function(msg, data) method 1132 event.reply('export-error'); 1136 event.reply('export-success', data); 1293 event.reply('export-error'); 1344 event.reply('export-success', data); 1366 event.reply('export-success', {}); 1387 event.reply('export-success', data); 1392 event.reply('export-error', error); 1402 event.reply('export-success', data); 1407 event.reply('export-error', 'Error: Unsupported format'); [all …]
|
| /plugin/aichat/_test/ |
| H A D | AbstractModelTest.php | 75 $reply = $model->getAnswer([ 86 $this->assertStringContainsString('hello world', strtolower($reply));
|
| /plugin/mikioplugin/icons/bootstrap-icons/svg/ |
| H A D | reply-fill.svg | 1 <svg class="bi bi-reply-fill" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmln…
|
| H A D | reply-all-fill.svg | 1 <svg class="bi bi-reply-all-fill" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" …
|
| H A D | reply.svg | 1 <svg class="bi bi-reply" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="ht…
|
| H A D | reply-all.svg | 1 <svg class="bi bi-reply-all" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns…
|
| /plugin/blogtng/lang/en/ |
| D | subscribermail.txt | 10 You can read reply to the comment at
|
| D | notifymail.txt | 10 You can read reply to the comment at
|
| /plugin/aichat/lang/en/ |
| H A D | rephrase.prompt | 1 …on that is understandable without the previous context. {{LANGUAGE}} Only reply with the rephrased…
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidPublisher/Resource/ |
| D | Reviews.php | 80 public function reply($packageName, $reviewId, ReviewsReplyRequest $postBody, $optParams = []) function in Google\\Service\\AndroidPublisher\\Resource\\Reviews
|