Home
last modified time | relevance | path

Searched refs:reply (Results 1 – 25 of 133) sorted by relevance

123456

/plugin/phpipam/
Dsyntax.php401 $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/
DGoogleCloudDialogflowV2beta1SmartReplyAnswer.php33 public $reply; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1SmartReplyAnswer
66 public function setReply($reply) argument
68 $this->reply = $reply;
75 return $this->reply;
DGoogleCloudDialogflowV2SmartReplyAnswer.php33 public $reply; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2SmartReplyAnswer
66 public function setReply($reply) argument
68 $this->reply = $reply;
75 return $this->reply;
DGoogleCloudDialogflowV2beta1IntentMessageRbmSuggestion.php44 public function setReply(GoogleCloudDialogflowV2beta1IntentMessageRbmSuggestedReply $reply) argument
46 $this->reply = $reply;
53 return $this->reply;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
DGoogleCloudContactcenterinsightsV1SmartReplyData.php34 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/
DcConf-comments.js128 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/
DDrawioComment.js29 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
DDriveComment.js10 DriveComment.prototype.addReply = function(reply, success, error, doResolve, doReopen) argument
12 var body = {'content': reply.content};
/plugin/annotations/_test/
H A DHelperTest.php52 $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 Daction.php278 $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 Daction.php480 $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 Dhelper.php368 $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 DREADME.md6 ![Open annotation thread with threaded reply](images/annotations-screen2.png)
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 DDESIGN.md18 - **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 Dscript.js974 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/
Delectron.js466 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 DAbstractModelTest.php75 $reply = $model->getAnswer([
86 $this->assertStringContainsString('hello world', strtolower($reply));
/plugin/mikioplugin/icons/bootstrap-icons/svg/
H A Dreply-fill.svg1 <svg class="bi bi-reply-fill" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmln…
H A Dreply-all-fill.svg1 <svg class="bi bi-reply-all-fill" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" …
H A Dreply.svg1 <svg class="bi bi-reply" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="ht…
H A Dreply-all.svg1 <svg class="bi bi-reply-all" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns…
/plugin/blogtng/lang/en/
Dsubscribermail.txt10 You can read reply to the comment at
Dnotifymail.txt10 You can read reply to the comment at
/plugin/aichat/lang/en/
H A Drephrase.prompt1 …on that is understandable without the previous context. {{LANGUAGE}} Only reply with the rephrased…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidPublisher/Resource/
DReviews.php80 public function reply($packageName, $reviewId, ReviewsReplyRequest $postBody, $optParams = []) function in Google\\Service\\AndroidPublisher\\Resource\\Reviews

123456