Home
last modified time | relevance | path

Searched refs:doc (Results 501 – 525 of 1496) sorted by path

1...<<21222324252627282930>>...60

/plugin/ebnf/
H A Dsyntax.php51 $renderer->doc .= "<img src='".DOKU_URL."lib/plugins/ebnf/ebnf.php?syntax=$text' alt='$text'/>"; // ptype = 'normal'
53 $renderer->doc .= "<pre>".htmlentities($text)."\n".$e."</pre>";
/plugin/ebookexport/
H A Daction.php47 $doc = file_get_contents($mypath);
49 $instructions = p_get_instructions($doc);
57 $pages = $Renderer->doc;
/plugin/eclipseupdateurl/
H A Dsyntax.php120 $renderer->doc .= "<p>$PLUGINDESC</p>";
127 $renderer->doc .= '<tr>';
128 $renderer->doc .= '<th>Version</th>';
130 $renderer->doc .= '<th>Size</th>';
131 $renderer->doc .= '</tr>';
138 $renderer->doc .= '<tr>';
140 $renderer->doc .= '<td>';
148 $renderer->doc .= '</td><td>';
151 $renderer->doc .= '</td>';
154 $renderer->doc .= '</tr>';
[all …]
/plugin/editor/
H A Dsyntax.php87 $renderer->doc .= $pagelist->finishList();
/plugin/editsections2/
H A Daction.php103 $doc =& $event->data[1];
108 if (preg_match_all($marker_regexp, $doc, $matches)) {
150 $doc = str_replace($markers_search, $markers_replace, $doc);
/plugin/edittable/renderer/
H A Dinverse.php15 public $doc = ''; variable in renderer_plugin_edittable_inverse
40 $this->doc = rtrim($this->doc);
79 $this->doc .= $text;
85 $this->doc = rtrim($this->doc, DOKU_LF).DOKU_LF.DOKU_LF;
91 if(strlen($this->doc) > 0 && substr($this->doc, 1, -1) !== DOKU_LF) {
124 $this->doc .= '**';
129 $this->doc .= '**';
134 $this->doc .= '//';
139 $this->doc .= '//';
144 $this->doc .= '__';
[all …]
H A Djson.php109 $this->doc = '';
120 …$this->tdata[$row][$col] = trim(str_replace("\n", ' ', $this->doc)); // no newlines in table cells!
/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/
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/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'];
H A Dsearch-operations.asciidoc125 $doc = $results['hits']['hits'][0]['_source'];
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D015294a400986295039e52ebc62033be.asciidoc9 'doc' => [
H A D033778305d52746f5ce0a2a922c8e521.asciidoc11 'source' => 'doc[\'genre\'].value',
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/react/promise/
H A DREADME.md847 [New to Composer?](https://getcomposer.org/doc/00-intro.md)
/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)
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DDocument.php252 $doc = $this->getParams();
253 $doc['_source'] = $this->getData();
255 return $doc;
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...]

1...<<21222324252627282930>>...60