Home
last modified time | relevance | path

Searched +full:index -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 164) sorted by relevance

1234567

/dokuwiki/bin/
H A Dindexer.php13 * Update the Search Index from command line
30 'given the index is cleared first.'
35 'clear the index before updating',
69 * Update the index
80 $this->index($val['id']);
85 * Index the given page
89 protected function index($id) function in IndexerCLI
96 $this->info("$id index not updated.");
106 * Clear all index files
110 $this->notice('Clearing index...');
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DRaw.php52 foreach (['e', 'exponent', 'publicexponent', 0, 'privateexponent', 'd'] as $index) {
53 if (isset($key[$index])) {
54 $components['publicExponent'] = $key[$index];
59 foreach (['n', 'modulo', 'modulus', 1] as $index) {
60 if (isset($key[$index])) {
61 $components['modulus'] = $key[$index];
77 foreach ($indices as $index) {
78 list($i0, $i1) = $index;
92 foreach ($indices as $index) {
93 list($i0, $i1) = $index;
[all …]
/dokuwiki/inc/Ui/
H A DIndex.php6 * DokuWiki Index Interface
10 class Index extends Ui class
15 * Index Ui constructor
26 * Display page index
35 echo p_locale_xhtml('index');
65 * Index item formatter
85 // FS#2766, no need for search bots to follow namespace links in the index
98 * Index List item
101 * <li> tags for namespaces when displaying the page index
119 if (isset($INFO) && $item['id'] == $INFO['id'] && $ACT == 'index') {
H A DPageDiff.php362 if (($index = array_search($rev1, $revs1)) !== false) {
363 $rev1Prev = ($index + 1 < count($revs1)) ? $revs1[$index + 1] : false;
364 $rev1Next = ($index > 0) ? $revs1[$index - 1] : false;
369 if (($index = array_search($rev2, $revs2)) !== false) {
370 $rev2Prev = ($index + 1 < count($revs2)) ? $revs2[$index + 1] : false;
371 $rev2Next = ($index > 0) ? $revs2[$index - 1] : false;
/dokuwiki/inc/Search/
H A DIndexer.php23 * Adds the contents of a page to the fulltext index
57 $index = $this->getIndex('i', $wlen);
59 $idx = ($wid < count($index)) ? $index[$wid] : '';
60 $index[$wid] = $this->updateTuple($idx, $pid, $freq);
63 if (!$this->saveIndex('i', $wlen, $index)) {
70 // Remove obsolete index entries
84 $index = $this->getIndex('i', $wlen);
86 $index[$wid] = $this->updateTuple($index[$wid], $pid, 0);
88 $this->saveIndex('i', $wlen, $index);
91 // Save the reverse index
[all …]
/dokuwiki/inc/Action/
H A DIndex.php8 * Class Index
14 class Index extends AbstractAction class
26 (new Ui\Index($IDX))->show();
H A DSitemap.php12 * Generate an XML sitemap for search engines. Do not confuse with Index
/dokuwiki/inc/
H A Dindexer.php4 * Functions to create the fulltext search index
18 // set the minimum token length to use in the index (note, this doesn't apply to numeric tokens)
113 * Adds/updates the search index for the given page
117 * @param string $page name of the page to index
119 * @param boolean $force force reindexing even when the index is up to date
127 // check if page was deleted but is still in the index
148 if ($verbose) echo "Indexer: index for $page up to date" . DOKU_LF;
154 $indexenabled = p_get_metadata($page, 'internal index', METADATA_RENDER_UNLIMITED);
166 if ($verbose) echo "Indexer: index disabled for $page" . DOKU_LF;
218 * Find tokens in the fulltext index
[all …]
H A Dinfoutils.php361 // Check for corrupted search index
371 foreach (idx_getIndex('metadata', '') as $index) {
372 if (count(idx_getIndex($index . '_w', '')) !== count(idx_getIndex($index . '_i', ''))) {
380 'The search index is corrupted. It might produce wrong results and most
383 for ways to rebuild the search index.',
387 msg('The search index seems to be working', 1);
390 'The search index is empty. See
392 for help on how to fix the search index. If the default indexer
/dokuwiki/lib/plugins/authpdo/_test/pgsql/
H A Ddjango.sql1077 -- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: postgres
1080 CREATE INDEX auth_group_name_a6ea08ec_like ON auth_group USING btree (name varchar_pattern_ops);
1084 -- Name: auth_group_permissions_0e939a4f; Type: INDEX; Schema: public; Owner: postgres
1087 CREATE INDEX auth_group_permissions_0e939a4f ON auth_group_permissions USING btree (group_id);
1091 -- Name: auth_group_permissions_8373b171; Type: INDEX; Schema: public; Owner: postgres
1094 CREATE INDEX auth_group_permissions_8373b171 ON auth_group_permissions USING btree (permission_id);
1098 -- Name: auth_permission_417f1b1c; Type: INDEX; Schema: public; Owner: postgres
1101 CREATE INDEX auth_permission_417f1b1c ON auth_permission USING btree (content_type_id);
1105 -- Name: auth_user_groups_0e939a4f; Type: INDEX; Schema: public; Owner: postgres
1108 CREATE INDEX auth_user_groups_0e939a4f ON auth_user_groups USING btree (group_id);
[all …]
/dokuwiki/inc/Menu/Item/
H A DIndex.php6 * Class Index
10 class Index extends AbstractItem class
/dokuwiki/lib/scripts/
H A Dlinkwiz.test.js24 testCases.forEach(({ ref, id, expected }, index) => {
27 console.log(`Test ${index + 1} passed`);
29 console.log(`Test ${index + 1} failed: expected ${expected}, got ${result}`);
H A Dindex.js5 $clicky[0].search.substr(1) + '&call=index',
/dokuwiki/
H A Dindex.php12 * php -S localhost:8000 index.php
45 $_SERVER['SCRIPT_NAME'] !== '/index.php' &&
72 } elseif ($request_path != '/' && $request_path != '/index.php') {
H A D.gitignore34 /data/index/*
46 !/lib/tpl/index.php
68 !/lib/plugins/index.html
/dokuwiki/inc/Menu/
H A DSiteMenu.php14 protected $types = ['Recent', 'Media', 'Index'];
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_tabs.css46 z-index: 0;
82 z-index: 2;
/dokuwiki/_test/tests/inc/
H A Dtemplate_tpl_get_action.php228 'type' => 'index',
232 'do' => 'index',
237 $this->assertEquals($expect, tpl_get_action('index'));
244 'type' => 'index',
248 'do' => 'index',
253 $this->assertEquals($expect, tpl_get_action('index'));
H A Dcommon_blank.test.php48 $this->assertTrue(blank($undef['nope']), "using undefined array index");
/dokuwiki/lib/tpl/dokuwiki/
H A Dscript.js14 // the z-index in mobile.css is (mis-)used purely for detecting the screen mode here
15 var screen_mode = jQuery('#screen__mode').css('z-index') + '';
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dprovidex.php56 '*retry', '*return', '*same', 'accept', 'add index', 'addr',
67 'h_scrollbar', 'hide', 'if', 'index', 'indexed', 'input',
258 1 => 'http://www.allbasic.info./wiki/index.php/PX:Directive_{FNAME}',
259 2 => 'http://www.allbasic.info./wiki/index.php/PX:System_function_{FNAME}',
260 3 => 'http://www.allbasic.info./wiki/index.php/PX:System_variable_{FNAME}',
261 4 => 'http://www.allbasic.info./wiki/index.php/PX:Nomads_{FNAME}',
262 5 => 'http://www.allbasic.info./wiki/index.php/PX:Mnemonic_{FNAMEU}'
H A Dbash.php182 'git check-attr', 'git checkout', 'git checkout-index',
186 'git diff', 'git diff-files', 'git diff-index', 'git difftool',
193 'git imap-send', 'git index-pack', 'git init', 'git init-db',
196 'git merge', 'git merge-base', 'git merge-file', 'git merge-index',
210 'git shortlog', 'git show', 'git show-branch', 'git show-index',
214 'git update-index', 'git update-ref', 'git update-server-info',
223 'git-checkout-index', 'git-check-ref-format', 'git-cherry',
226 'git-describe', 'git-diff', 'git-diff-files', 'git-diff-index',
233 'git-http-push', 'git-imap-send', 'git-index-pack', 'git-init',
237 'git-merge-file', 'git-merge-index', 'git-merge-octopus',
[all …]
H A Dprogress.php128 'ADD-HEADER-ENTRY','ADD-INDEX-FIELD','ADD-LAST','ADD-LIKE-COLUMN',
129 'ADD-LIKE-FIELD','ADD-LIKE-INDEX','ADD-NEW-FIELD','ADD-NEW-INDEX',
157 'GET-GREEN-VALUE','GET-HEADER-ENTRY','GET-INDEX-BY-NAMESPACE-NAME','GET-INDEX-BY-QNAME',
158 'GET-ITERATION','GET-LAST','GET-LOCALNAME-BY-INDEX','GET-MESSAGE',
160 'GET-PREV','GET-PRINTERS','GET-property','GET-QNAME-BY-INDEX',
164 'GET-TEXT-WIDTH-CHARS','GET-TEXT-WIDTH-PIXELS','GET-TOP-BUFFER','GET-TYPE-BY-INDEX',
165 … 'GET-TYPE-BY-NAMESPACE-NAME','GET-TYPE-BY-QNAME','GET-URI-BY-INDEX','GET-VALUE-BY-INDEX',
198 'VALIDATE','VALIDATE-SEAL','WRITE','WRITE-CDATA','USE-INDEX',
217 'FRAME-FIELD','FRAME-FILE','FRAME-INDEX','FRAME-LINE',
224 'GUID','HEX-DECODE','INDEX',
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php35 * @param int $index
38 public static function shift(&$string, $index = 1) argument
40 $substr = substr($string, 0, $index);
41 $string = substr($string, $index);
51 * @param int $index
54 public static function pop(&$string, $index = 1) argument
56 $substr = substr($string, -$index);
57 $string = substr($string, 0, -$index);
/dokuwiki/inc/Utf8/
H A DClean.php178 * adjust a byte index into a utf8 string to a utf8 character boundary
183 * @param int $i byte index into $str
185 * @return int byte index into $str now pointing to a utf8 character boundary

1234567