Home
last modified time | relevance | path

Searched refs:doc (Results 326 – 350 of 1496) sorted by last modified time

1...<<11121314151617181920>>...60

/plugin/simplenavi/
H A Dsyntax.php76 $renderer->doc .= '<div class="' . $class . '">';
77 $renderer->doc .= html_buildlist($items, 'idx', [$this, 'cbList'], [$this, 'cbListItem']);
78 $renderer->doc .= '</div>';
/plugin/mathpublish/
H A Dsyntax.php179 $R->doc .= '<img '. buildAttributes([
/plugin/statdisplay/
H A Dsyntax.php82 $renderer->doc .= '<img ' . buildAttributes($img) . '/>';
/plugin/statdisplay/helper/
H A Dtable.php73 …$this->R->doc .= '<div class="statdisplay-progress" title="' . $pct . '%"><span style="width: ' . …
/plugin/firenews/
H A Dsyntax.php113 $renderer->doc .= $formView;
158 $renderer->doc .= $formView;
229 $renderer->doc .= $formView;
280 $renderer->doc .= $outputRender;
/plugin/s5/
H A Drenderer.php65 $this->doc = '
111 $this->doc = preg_replace('#<p>\s*</p>#','',$this->doc);
116 $this->doc .= '</div>
144 $this->doc .= '<h'.($level-1).'>';
145 $this->doc .= $this->_xmlEntities($text);
146 $this->doc .= '</h'.($level-1).'>'.DOKU_LF;
156 $this->doc .= '<div>'.DOKU_LF;
166 $footnote = $this->doc;
167 $this->doc = $this->store;
175 $this->doc .= $this->_xmlEntities($acronym);
[all …]
H A Dsyntax.php65 …$renderer->doc .= '<a href="'.exportlink($ID, 's5',sizeof($data)?array('s5theme'=>$data[0]):null).…
66 …$renderer->doc .= '<img src="'.DOKU_BASE.'lib/plugins/s5/screen.gif" align="right" alt="'.$this->g…
67 $renderer->doc .= '</a>';
/plugin/gh/
H A Dsyntax.php159 $renderer->doc .= '<dl class="file">' . DOKU_LF;
160 $renderer->doc .= '<dt><a href="' . $url . '" class="' . $class . '">';
161 $renderer->doc .= hsc($data['file']);
162 $renderer->doc .= '</a></dt>' . DOKU_LF . '<dd>';
171 $renderer->doc .= '</dd>';
172 $renderer->doc .= '</dl>';
/plugin/pageredirect/
H A Dsyntax.php121 $renderer->doc .= $this->redirect_message($data);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D38c1d0f6668e9563c0827f839f9fa505.asciidoc9 'doc' => [
H A D7cac05cb589f1614fd5b8589153bef06.asciidoc9 'doc' => [
H A D8cd00a3aba7c3c158277bc032aac2830.asciidoc15 'doc' => [
46 'doc' => [
59 'doc' => [
70 'doc' => [
H A Dae9ccfaa146731ab9176df90670db1c2.asciidoc38 'doc' => [
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndex.php171 foreach ($docs as $doc) {
172 $doc->setIndex($this->getName());
215 public function addDocument(Document $doc): Response
219 if (null !== $doc->getId() && '' !== $doc->getId()) {
220 $endpoint->setId($doc->getId());
223 $options = $doc->getOptions(
238 $endpoint->setBody($doc->getData());
246 $doc->isAutoPopulate() || $this->getClient()->getConfigValue(['document', 'autoPopulate'], false)
248 if (isset($data['_id']) && !$doc
194 addDocument(Document $doc) global() argument
[all...]
H A DResult.php237 $doc = new Document();
238 $doc->setData($this->getSource());
242 $doc->setParams($hit);
244 return $doc;
H A DResultSet.php73 foreach ($this->_results as $doc) {
74 $documents[] = $doc->getDocument();
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DMoreLikeThis.php168 $doc = $array['more_like_this']['like'];
169 $doc = \array_intersect_key($doc, ['_index' => 1, '_id' => 1]);
170 $array['more_like_this']['like'] = $doc;
172 $doc = $array['more_like_this']['like'];
173 $doc['doc'] = $array['more_like_this']['like']['_source'];
174 unset($doc['_id'], $doc['_source'], $doc['if_seq_n
[all...]
/plugin/elasticsearch/action/
H A Dsearch.php401 $doc = $row->getSource();
402 $page = $doc['uri'];
412 if (!$title) $title = hsc($doc['title']);
423 if (!$snippet) $snippet = hsc($doc['abstract']); // always fall back to abstract
426 $isPage = empty($doc['doctype']) || $doc['doctype'] === \action_plugin_elasticsearch_indexing::DOCTYPE_PAGE;
430 if (!$isPage && is_file(DOKU_INC . 'lib/images/fileicons/'. $doc['ext'] .'.png')) {
433 DOKU_BASE . 'lib/images/fileicons/'. $doc['ext'] .'.png',
434 $doc['ext']
444 if (!empty($doc['namespac
[all...]
/plugin/elasticsearch/
H A Dcomposer.lock4 "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dcrud.asciidoc154 // Get doc at /my_index/_doc/my_id
170 field or add a new one) you can do so by specifying the `doc` in the `body`
171 parameter. This merges the fields in `doc` with the existing document.
180 'doc' => [
186 // Update doc at /my_index/_doc/my_id
258 // Delete doc at /my_index/_doc_/my_id
H A Dfutures.asciidoc77 $doc = $future['_source']; // This call blocks and forces the future to resolve
248 $doc = $futures['getRequest']['_source'];
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A DCHANGELOG.md283 - [DOCS] Fix doc links in README [[5a1782d]](https://github.com/elastic/elasticsearch-php/pull/884/commits/5a1782d)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc820 $params['id'] = (string) The id of the document, when not specified a doc param should be supplied.
848 $params['body'] = (array) The request definition requires either `script` or partial `doc` (Required)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DRollupNamespace.asciidoc127 $params['type'] = DEPRECATED (string) The doc type inside the index
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md484 - Fix [#1435](https://github.com/ruflin/Elastica/issues/1435) forcing `doc_as_upsert` to be boolean, acording [Elastic doc-update documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html#_literal_doc_as_upsert_literal)

1...<<11121314151617181920>>...60