Home
last modified time | relevance | path

Searched refs:id (Results 1 – 25 of 123) sorted by last modified time

12345

/dokuwiki/lib/images/fileicons/svg/
H A Dconf.svg1 <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#999}</style>< (…)
H A Djava.svg1 <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st2,.st3{fill:#c00;stro (…)
H A Dswf.svg1 <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#d10407}</styl (…)
/dokuwiki/lib/plugins/acl/lang/cs/
H A Dhelp.txt
/dokuwiki/lib/plugins/config/
H A Dadmin.php85 echo '<div id="config__manager">';
94 echo '<form id="dw__configform" action="' . script() . '" method="post">';
95 echo '<div class="no"><input type="hidden" name="id" value="' . $ID . '" /></div>';
121 echo '<fieldset id="' . $setting->getKey() . '">';
271 * @param string $id
274 protected function printH1($id, $text)
276 echo '<h1 id="' . $id . '">' . $text . '</h1>';
266 printH1($id, $text) global() argument
/dokuwiki/inc/
H A Dpageutils.php26 * For $param='id' $conf['start'] is returned if no id was found.
31 * @param string $param the $_REQUEST variable name, default 'id'
35 function getID($param = 'id', $clean = true)
42 $id = $INPUT->str($param);
44 //construct page id from request URI
45 if (empty($id) && $conf['userewrite'] == 2) {
52 if ($param != 'id') {
74 //remove script URL and Querystring to gain the id
76 $id
174 getNS($id) global() argument
191 noNS($id) global() argument
209 curNS($id) global() argument
222 noNSorNS($id) global() argument
281 page_exists($id, $rev = '', $clean = true, $date_at = false) global() argument
303 media_exists($id, $rev = '', $clean = true, $date_at = false) global() argument
376 wikiLockFN($id) global() argument
392 metaFN($id, $ext) global() argument
410 mediaMetaFN($id, $ext) global() argument
428 metaFiles($id) global() argument
450 mediaFN($id, $rev = '', $clean = true) global() argument
475 localeFN($id, $ext = 'txt') global() argument
504 resolve_id($ns, $id, $clean = true) global() argument
618 isHiddenPage($id) global() argument
655 isVisiblePage($id) global() argument
671 prettyprint_id($id) global() argument
[all...]
H A Dparserutils.php65 * Returns the parsed Wikitext in XHTML for the given id and revision.
70 * @param string $id page id
79 function p_wiki_xhtml($id, $rev = '', $excuse = true, $date_at = '')
81 $file = wikiFN($id, $rev);
84 //ensure $id is in global $ID (needed for parsing)
87 $ID = $id;
92 $ret = p_render('xhtml', p_get_instructions(io_readWikiPage($file, $id, $rev)), $info, $date_at);
97 $ret = p_cached_output($file, 'xhtml', $id);
100 $changelog = new PageChangeLog($id);
77 p_wiki_xhtml($id, $rev = '', $excuse = true, $date_at = '') global() argument
122 p_locale_xhtml($id) global() argument
147 p_cached_output($file, $format = 'xhtml', $id = '') global() argument
187 p_cached_instructions($file, $cacheonly = false, $id = '') global() argument
252 p_get_metadata($id, $key = '', $render = METADATA_RENDER_USING_CACHE) global() argument
340 p_set_metadata($id, $data, $render = false, $persistent = true) global() argument
429 p_purge_metadata($id) global() argument
455 p_read_metadata($id, $cache = false) global() argument
481 p_save_metadata($id, $meta) global() argument
503 p_render_metadata($id, $orig) global() argument
779 p_get_first_heading($id, $render = METADATA_RENDER_USING_SIMPLE_CACHE) global() argument
[all...]
H A Dsearch.php177 * $opts['showmsg'] shows message if invalid media id is used
205 $info['id'] = pathID($file, true);
206 if ($info['id'] !== cleanID($info['id'])) {
208 msg(hsc($info['id']) . ' is not a valid file name for DokuWiki - skipped', -1);
213 $info['perm'] = auth_quickaclcheck(getNS($info['id']) . ':*');
219 if (!empty($opts['pattern']) && !@preg_match($opts['pattern'], $info['id'])) {
234 $info['hash'] = md5(io_readFile(mediaFN($info['id']), false));
245 * $opts['showmsg'] shows message if invalid media id is used
272 $id
[all...]
H A Dtemplate.php495 * @param string $id page id
502 function tpl_pagelink($id, $name = null, $return = false)
504 $out = '<bdi>' . html_wikilink($id, $name) . '</bdi>';
516 * @param string $id page id
521 function tpl_getparent($id)
525 $parent = getNS($id) . ':';
527 if ($parent == $id) {
528 $pos = strrpos(getNS($id), '
442 tpl_pagelink($id, $name = null, $return = false) global() argument
460 tpl_getparent($id) global() argument
922 tpl_pagetitle($id = null, $ret = false) global() argument
1207 tpl_getConf($id, $notset = false) global() argument
1261 tpl_getLang($id) global() argument
1298 tpl_locale_xhtml($id) global() argument
1308 tpl_localeFN($id) global() argument
[all...]
H A Dio.php22 * @param string $id - a pageid, the namespace of that id will be tried to deleted
29 function io_sweepNS($id, $basedir = 'datadir')
38 while (($id = getNS($id)) !== false) {
39 $dir = $conf[$basedir] . '/' . utf8_encodeFN(str_replace(':', '/', $id));
44 $data = [$id, $ns_type];
69 * @param string $id page id
75 function io_readWikiPage($file, $id,
27 io_sweepNS($id, $basedir = 'datadir') global() argument
70 io_readWikiPage($file, $id, $rev = false) global() argument
189 io_writeWikiPage($file, $content, $id, $rev = false) global() argument
448 io_createNamespace($id, $ns_type = 'pages') global() argument
[all...]
/dokuwiki/inc/parser/
H A Dxhtml.php26 /** @var int last section edit id, used by startSectionEdit */
57 * Key 'hid': header id
154 foreach ($this->footnotes as $id => $footnote) {
159 $this->doc .= '<sup><a href="#fnt__' . $id . '" id="fn__' . $id . '" class="fn_bot">';
160 $this->doc .= $id . ')</a></sup> ' . DOKU_LF;
163 $alt = array_keys($this->footnotes, "@@FNT$id");
167 $this->doc .= ', <sup><a href="#fnt__' . ($ref) . '" id="fn__' . ($ref) . '" class="fn_bot">';
197 * @param string $id th
195 toc_additem($id, $text, $level) global() argument
818 internallink($id, $name = null, $search = null, $returnonly = false, $linktype = 'content') global() argument
1704 _getLinkTitle($title, $default, & $isImage, $id = null, $linktype = 'content') global() argument
[all...]
/dokuwiki/lib/scripts/jquery/
H A Djquery.min.js2 !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.4",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=y.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:v}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,y,s,c,v,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",$=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.cssHas=ce(function(){try{return C.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))
[all...]
/dokuwiki/lib/styles/
H A Dfeed.css12 generator, content, created, issued, modified, subject, id, format, creator, selector
17 item link, entry id {
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php33 /** @var string the page id this action links to */
34 protected $id = ''; variable in dokuwiki\\Menu\\Item\\AbstractItem
64 $this->id = $ID;
111 * Basically runs wl() on $id and $params. However if the ID is a hash it is used directly
121 if ($this->id && $this->id[0] == '#') {
122 return $this->id;
124 return wl($this->id, $this->params, false, '&');
183 $this->id,
257 'id'
[all...]
H A DBack.php24 $this->id = $parent;
/dokuwiki/lib/plugins/usermanager/lang/en/
H A Dimport.txt4 The columns must contain, in order: user-id, full name, email address and groups.
/dokuwiki/lib/plugins/usermanager/lang/eo/
H A Dimport.txt4 La kolumnoj devas enhavi, laŭorde: uzant-id, kompleta nomo, retadreso kaj grupoj.
7 Duobligitaj uzant-id estos preteratentataj.
/dokuwiki/lib/scripts/
H A Ddelay.js18 execDispatch: function (id) { argument
19 timer._handlers[id]();
23 var id = ++timer._cur_id;
24 timer._handlers[id] = func;
25 return window.setTimeout('timer.execDispatch(' + id + ')', timeout);
H A Dedit.js17 * @param {string} id id of button, and '<id>_ico' of icon
23 function createToolButton(icon,label,key,id,classname){ argument
40 if(id){
41 $btn.attr('id', id);
42 $ico.attr('id', id+'_ico');
67 * @param {string} id th
73 createPicker(id,props,edid) global() argument
[all...]
H A Deditor.js101 * @link https://bugzilla.mozilla.org/show_bug.cgi?id=41464
160 insertAtCarret(this.id,match[1]);
H A Dfileuploaderextended.js17 onProgress: function(id, fileName, loaded, total){ argument
18 self._onProgress(id, fileName, loaded, total);
19 self._options.onProgress(id, fileName, loaded, total);
21 onComplete: function(id, fileName, result){ argument
22 self._onComplete(id, fileName, result);
23 self._options.onComplete(id, fileName, result);
25 onCancel: function(id, fileName){ argument
26 self._onCancel(id, fileName);
27 self._options.onCancel(id, fileName);
42 var id
50 AnonymousFunction4548af6a0800(id, fileName) global() argument
157 AnonymousFunction4548af6a0c00(id, fileName, result) global() argument
204 AnonymousFunction4548af6a0e00(id) global() argument
229 AnonymousFunction4548af6a1100(id, params) global() argument
278 AnonymousFunction4548af6a1500(id) global() argument
293 AnonymousFunction4548af6a1600(id) global() argument
299 AnonymousFunction4548af6a1700(id, params) global() argument
[all...]
/dokuwiki/lib/plugins/usermanager/lang/cs/
H A Dimport.txt4 Sloupce obsahují (v daném pořadí): user-id, celé jméno, emailovou adresu, seznam skupin.
7 Záznamy s duplicitním user-id budou ignorovány.
/dokuwiki/lib/plugins/usermanager/lang/nl/
H A Dimport.txt3 Hiervoor is een CSV-bestand nodig van de gebruikers met minstens vier kolommen. De kolommen moeten bevatten, in deze volgorde: gebruikers-id, complete naam, e-mailadres en groepen.
6 Dubbele gebruikers-id's zullen worden genegeerd.
/dokuwiki/
H A D.htaccess.dist27 #RewriteRule ^_export/([^/]+)/(.*) doku.php?do=export_$1&id=$2 [QSA,L]
31 #RewriteRule (.*) doku.php?id=$1 [QSA,L]
/dokuwiki/inc/Search/
H A DIndexer.php219 $id = array_search($val, $metawords, true);
220 if ($id === false) {
222 $id = count($metawords);
223 $metawords[$id] = $val;
224 $metaidx[$id] = '';
228 if (isset($val_idx[$id]) && $val_idx[$id] <= 0) {
229 $val_idx[$id] = 0;
231 $val_idx[$id] = 1;
240 foreach ($val_idx as $id
1019 getIndexKey($idx, $suffix, $id) global() argument
1044 saveIndexKey($idx, $suffix, $id, $line) global() argument
1156 updateTuple($line, $id, $count) global() argument
[all...]

12345