Home
last modified time | relevance | path

Searched refs:rid (Results 26 – 50 of 90) sorted by path

1234

/plugin/markdowku/
H A Dimagesreference.php44 $rid = $matches[1];
46 $rid = $matches[2];
48 $rid = preg_replace("/ /", ".", $rid);
49 $target = p_get_metadata($ID, 'markdowku_references_'.$rid, METADATA_RENDER_USING_CACHE);
/plugin/notification/
H A DREADME16 Copyright (C) Szymon Olewniczak <it@rid.pl>
H A Dplugin.info.txt3 email it@rid.pl
/plugin/ol3/
H A Dscript.js8rid=e,r}return UE(e,t),e}(HS),VE=function(){var t=function(e,r){return(t=Object.setPrototypeOf||{_…
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/openlayersmap/
H A Dprint.less31 h ~ div ~ .olStaticMap { /*?? page-break-inside: auto | avoid | inherit */ /* http://david.latapie.name/blog/page-break-in-css-print-how-to-get-rid-of-accidental-blank-pages/ */ /* http://www.w3.org/TR/CSS21/page.html */ page-break-before: always; /* page-break-after: always;*/ }
/plugin/passpolicy/
H A Dwords.txt2955 rid
/plugin/pdfjs/
H A Dplugin.info.txt3 email it@rid.pl
/plugin/prettyprint/
H A Dplugin.info.txt3 email solewniczak@rid.pl
/plugin/randompage2/
H A DREADME16 Copyright (C) Szymon Olewniczak <solewniczak@rid.pl>
H A Dplugin.info.txt3 email solewniczak@rid.pl
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js25964 var rid = ssid + ":" + i;
26006 CSSRuleMap[rid] =
26046 ElementCSSRulesMap[eid].push(rid);
/plugin/sequencediagram/bower_components/snap.svg/
H A Dhistory.md39 * Get rid of internal SVG parser in favor of the browser
/plugin/sql2wiki/
H A DREADME16 Copyright (C) Szymon Olewniczak <it@rid.pl>
H A Dplugin.info.txt3 email it@rid.pl
/plugin/struct/action/
H A Daggregationeditor.php36 protected $rid = 0;
105 $this->rid = $INPUT->int('rid');
137 $this->rid = $access->getRid();
229 return AccessTable::getSerialAccess($tablename, $this->pid, $this->rid);
231 return AccessTable::getGlobalAccess($tablename, $this->rid);
242 $config['filter'][] = ['%rowid%', '=', $this->rid, 'AND'];
254 if (!$this->rid) {
33 protected $rid = 0; global() variable in action_plugin_struct_aggregationeditor
H A Dbureaucracy.php115 // lookups can reference pages or global data, so check both pid and rid
120 $rid = json_decode($originalPid, null, 512)[1] ?? null;
121 if (($pid && $pids[$i] === $pid) || ($rid && $rids[$i] === $rid)) {
H A Dinline.php37 protected $rid = 0;
213 $rid = $INPUT->int('rid');
217 if (blank($pid) && blank($rid)) return false;
226 $this->schemadata = AccessTable::getSerialAccess($table, $pid, $rid);
228 $this->schemadata = AccessTable::getGlobalAccess($table, $rid);
34 protected $rid = 0; global() variable in action_plugin_struct_inline
H A Dmigration.php106 // add rid and new primary key to regular tables
108 $sql = preg_replace('/(PRIMARY KEY ?\([^\)]+?)(\))/', ' rid INTEGER, $1, rid $2', $sql, -1, $cnt);
109 // add rid and new primary key to lookup tables
111 $sql = str_replace(')', ', rid INTEGER, PRIMARY KEY(pid,rid) )', $sql);
134 // transfer pid to rid
232 * was always ["", <previous-pid-aka-new-rid>]. For page references it is ["<previous-pid>", 0]
257 $s = 'SELECT pid, rid, rev, ' . implode(', ', $colnames) . " FROM data_$name";
262 [$pid, $rid,
[all...]
/plugin/struct/meta/
H A DAccessTable.php20 protected $rid; variable in dokuwiki\\plugin\\struct\\meta\\AccessTable
63 public static function getSerialAccess($tablename, $pid, $rid = 0) argument
66 return new AccessTableSerial($schema, $pid, 0, $rid);
69 public static function getGlobalAccess($tablename, $rid = 0) argument
72 return new AccessTableGlobal($schema, '', 0, $rid);
81 * @param int $rid Row id, 0 for page type data, otherwise autoincrement
85 public static function bySchema(Schema $schema, $pid, $ts = 0, $rid = 0) argument
88 return new AccessTablePage($schema, $pid, $ts, $rid);
90 return new AccessTableGlobal($schema, $pid, $ts, $rid);
99 * @param int $rid Ro
104 byTableName($tablename, $pid, $ts = 0, $rid = 0) global() argument
124 __construct($schema, $pid, $ts = 0, $rid = 0) global() argument
624 handleEmptyMulti($pid, $rid, $colref) global() argument
[all...]
H A DAccessTableGlobal.php14 public function __construct($table, $pid, $ts = 0, $rid = 0) argument
16 parent::__construct($table, $pid, $ts, $rid);
24 if (!$this->rid) return; // no data
27 $sql = 'DELETE FROM data_' . $this->schema->getTable() . ' WHERE rid = ?';
28 $this->sqlite->query($sql, $this->rid);
29 $sql = 'DELETE FROM multi_' . $this->schema->getTable() . ' WHERE rid = ?';
30 $this->sqlite->query($sql, $this->rid);
44 protected function buildGetDataSQL($idColumn = 'rid')
58 $rid = $this->getRid() ?: "(SELECT (COALESCE(MAX(rid),
134 handleEmptyMulti($pid, $rid, $colref) global() argument
[all...]
H A DAccessTablePage.php16 public function __construct($schema, $pid, $ts = 0, $rid = 0) argument
19 parent::__construct($schema, $pid, $ts, $rid);
83 "UPDATE $this->stable SET latest = 0 WHERE latest = 1 AND pid = ? AND rid = 0",
88 "UPDATE $this->mtable SET latest = 0 WHERE latest = 1 AND pid = ? AND rid = 0",
100 return ['rid, pid, rev, latest'];
117 return "INSERT INTO $this->mtable (latest, rev, pid, rid, colref, row, value) VALUES (?,?,?,?,?,?,?)";
H A DAccessTableSerial.php14 public function __construct($table, $pid, $ts = 0, $rid = 0) argument
19 parent::__construct($table, $pid, $ts, $rid);
H A DAggregationTable.php351 $rid = $this->searchConfig->getRids()[$rownum];
354 $this->renderer->doc .= ' data-pid="' . hsc($pid) . '" data-rev="' . $rev . '" data-rid="' . $rid . '">';
/plugin/struct/script/
H A DAggregationEditor.js28 const rid = $me.data('rid');
33 if (!rid) {
40 if (rid === '') return; // skip button addition for page data
42 if (rid && pid && disableDeleteSerial) {
58 rid: rid,

1234