Home
last modified time | relevance | path

Searched refs:pid (Results 26 – 50 of 117) sorted by last modified time

12345

/plugin/struct/db/
H A Dupdate0006.sql5 pid NOT NULL, field
8 PRIMARY KEY(pid, tbl)
/plugin/structstatus/
H A Dscript.js15 pid: $self.parent().data('page'), property in AnonymousFunctione2c426950200.data
/plugin/starred/db/
H A Dupdate0001.sql2 pid, field
7 CREATE UNIQUE INDEX idx_stars_pid_login ON stars(pid, login);
/plugin/starred/
H A Dsyntax.php73 foreach ($starred as $pid => $time) {
76 $R->internallink(':' . $pid, null, null, false, 'navigation');
81 $R->doc .= $hlp->starHtml($ID, $pid, false);
/plugin/aichat/
H A DEmbeddings.php134 foreach ($pages as $pid => $page) {
135 $chunkID = $pid * 100; // chunk IDs start at page ID * 100
/plugin/tagging/
H A Dhelper.php127 $queries = array(array('DELETE FROM taggings WHERE pid = ? AND tagger = ?', $id, $user));
129 $queries[] = array('INSERT INTO taggings (pid, tagger, tag, lang) VALUES(?, ?, ?, ?)', $id, $user, $tag, $lang);
147 * @param string $type What field to return 'tag'|'pid'
165 if (isset($filter['pid'])) $queryBuilder->setPid($filter['pid']);
327 $filter = array('pid' => $INFO['id']);
354 'pid' => $INFO['id'],
383 $order_fields = array('pid', 'tid', 'taggers', 'ns', 'count');
393 $query = 'SELECT "pid",
396 GROUP_SORT(GROUP_CONCAT(GET_NS("pid")), \', \') A
517 modifyPageTag($pid, $formerTagName, $newTagName) global() argument
[all...]
/plugin/tagging/db/
H A Dupdate0002.sql5 CREATE TABLE taggings_tmp (pid, tag, tagger, PRIMARY KEY(pid, tag, tagger)); field
6 INSERT INTO taggings_tmp SELECT pid, tag, tagger FROM taggings;
10 CREATE TABLE taggings (pid, tag, tagger, lang, PRIMARY KEY(pid, tag, tagger)); field
11 INSERT INTO taggings SELECT pid, tag, tagger, '' FROM taggings_tmp;
14 CREATE INDEX idx_taggings_pid ON taggings(pid);
H A Dupdate0001.sql1 CREATE TABLE taggings (pid, tag, tagger, PRIMARY KEY(pid, tag, tagger)); field
2 CREATE INDEX idx_pid ON taggings(pid);
/plugin/tagging/action/
H A Dmain.php105 $pages = $hlp->findItems($filter, 'pid', 1);
144 $tags = $hlp->findItems(array('pid' => $id), 'tag');
193 $pid = $INPUT->str('id');
201 list($err, $msg) = $hlp->modifyPageTag($pid, $INPUT->str('oldValue'), $INPUT->str('newValue'));
207 $tags = $hlp->findItems(array('pid' => $pid), 'tag');
208 $userTags = $hlp->findItems(array('pid' => $pid, 'tagger' => $hlp->getUser()), 'tag');
229 $pids = $hlp->findItems(['tag' => $data['tid'][0]], 'pid');
231 foreach (array_keys($pids) as $pid) {
[all...]
/plugin/tagging/helper/
H A Dquerybuilder.php18 protected $pid; variable in helper_plugin_tagging_querybuilder
21 * FIXME consolidate pid (current page query) and pids (global search query)
49 return ($this->field === 'pid') ? $this->getPages() : $this->getTags();
61 $this->groupby = 'pid';
62 $this->orderby = "cnt DESC, pid";
139 * @param string $pid
141 public function setPid($pid) argument
143 $this->pid = $pid;
195 if ($this->pid) {
[all...]
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js81965 var pid = process.pid;
81969 console.error('%s %d: %s', set, pid, msg);
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs5818 var pid = 1;
5819 keys(cp).forEach(function custprop(k) { ++pid;
5822 'pid': pid,
6007 var pid = blob.read_shift(4); variable
6009 …dict[pid] = blob.read_shift(len, (CodePage === 0x4B0 ?'utf16le':'utf8')).replace(chr0,'').replace(…
/plugin/dw2pdf/
H A Drenderer.php44 $pid = sectionID($ID, $check);
46 $this->doc .= "<a name=\"{$pid}__\">";
87 $pid = sectionID($ID, $check);
88 $hid = $pid . '__' . $hid;
185 $pid = sectionID($ID, $check);
187 $this->doc .= '<a href="#' . $pid . '__' . $hash . '" title="' . $title . '" class="wikilink1">';
252 $pid = sectionID($link['title'], $check);
253 $link['url'] = "#" . $pid . '__' . $hash;
/plugin/combo/vendor/symfony/process/
H A DProcess.php334 $commandline .= 'pid=$!; echo $pid >&3; wait $pid; code=$?; echo $code >&3; exit $code';
360 $this->fallbackStatus['pid'] = (int) fgets($this->processPipes->pipes[3]);
500 return $this->isRunning() ? $this->processInformation['pid'] : null;
935 if (isset($this->fallbackStatus['pid'])) {
936 unset($this->fallbackStatus['pid']);
1500 if (null === $pid = $this->getPid()) {
1509 exec(sprintf('taskkill /F /T /PID %d 2>&1', $pid), $output, $exitCode);
1521 $ok = @posix_kill($pid,
[all...]
/plugin/structodt/
H A Dscript.js33 const pid = $me.data('pid');
51 url.searchParams.append('pid', pid);
H A Daction.php171 $pid = $INPUT->str('pid');
177 $row = $helper->getRow($schema, $pid, $rev, $rid);
179 throw new \Exception("Row with id: $pid doesn't exists");
183 $filename = empty($pid) ? $rid : noNS($pid);
H A Dhelper.php44 * @param $pid
99 * @param $pid
224 * Get rows data, optionally filtered by pid
245 * Get single row by pid
248 * @param $pid
251 public function getRow($table, $pid, $rev, $rid) { argument
255 if (AccessTable::isTypePage($pid, $rev)) {
256 $search->addFilter('%pageid%', $pid, '=');
257 } elseif (AccessTable::isTypeSerial($pid, $rev)) {
258 $search->addFilter('%pageid%', $pid, '
[all...]
/plugin/data/
H A Daction.php62 $pid = (int) $sqlite->queryValue('SELECT pid FROM pages WHERE page = ?', $id);
63 if (!$pid) return; // we have no data for this page
65 $sqlite->exec('DELETE FROM data WHERE pid = ?', $pid);
66 $sqlite->exec('DELETE FROM pages WHERE pid = ?', $pid);
/plugin/data/syntax/
H A Dentry.php261 $res = $this->replaceQuery("SELECT pid FROM pages WHERE page = ?", $id);
264 $pid = (int)$all[0]['pid'];
265 if (!$pid) {
270 $sqlite->query("DELETE FROM DATA WHERE pid = ?", $pid);
276 "INSERT INTO DATA (pid, KEY, VALUE) VALUES (?, ?, ?)",
277 $pid,
283 "INSERT INTO DATA (pid, KEY, VALUE) VALUES (?, ?, ?)",
284 $pid,
[all...]
/plugin/data/db/
H A Dupdate0006.sql2 CREATE INDEX idx_pid ON data (pid);
H A Dupdate0001.sql4 pid INTEGER,
11 pid INTEGER PRIMARY KEY,
1 CREATE TABLE data (eid INTEGER PRIMARY KEY, pid INTEGER, key, value); global() field
3 CREATE TABLE pages (pid INTEGER PRIMARY KEY, page, title); global() field
/plugin/data/_test/
H A Daction_handle.test.php
/plugin/blogtng/action/
H A Dedit.php59 $pid = md5($ID);
60 $this->entryhelper->load_by_pid($pid);
74 $this->taghelper->load($pid);
162 $pid = md5($ID);
163 $this->entryhelper->load_by_pid($pid);
183 $this->taghelper->load($pid);
303 $pid = md5($ID);
305 $this->entryhelper->load_by_pid($pid);
344 $this->taghelper->load($pid);
H A Dentry.php44 $pid = md5($ID);
45 $this->entryhelper->load_by_pid($pid);
51 $this->commenthelper->setPid($pid);
70 $pid = md5($ID);
71 $this->entryhelper->load_by_pid($pid);
/plugin/blogtng/db/
H A Dupdate0005.sql3 pid PRIMARY KEY, field
15 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail
21 pid PRIMARY KEY, field
33 CREATE UNIQUE INDEX idx_entries_pid ON entries(pid);
39 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail, 'enabled'

12345