/plugin/asciidocjs/node_modules/esutils/lib/ |
D | keyword.js | 30 function isStrictModeReservedWordES6(id) { argument 31 switch (id) { 46 function isKeywordES5(id, strict) { argument 48 if (!strict && id === 'yield') { 51 return isKeywordES6(id, strict); 54 function isKeywordES6(id, strict) { argument 55 if (strict && isStrictModeReservedWordES6(id)) { 59 switch (id.length) { 61 return (id === 'if') || (id === 'in') || (id === 'do'); 63 return (id === 'var') || (id === 'for') || (id === 'new') || (id === 'try'); [all …]
|
/plugin/btable/ |
D | export.php | 100 $id = trim($raw_id); 101 $id = utf8_strtolower($id); 104 $id = strtr($id,';',':'); 106 $id = strtr($id,'/',':'); 108 $id = strtr($id,'/',$sepchar); 111 if($conf['deaccent'] == 2 || $ascii) $id = utf8_romanize($id); 112 if($conf['deaccent'] || $ascii) $id = utf8_deaccent($id,-1); 115 $id = utf8_stripspecials($id,$sepchar,'\*'); 117 if($ascii) $id = utf8_strip($id); 120 $id = preg_replace($sepcharpat,$sepchar,$id); [all …]
|
/plugin/btable2/ |
D | export.php | 100 $id = trim($raw_id); 101 $id = utf8_strtolower($id); 104 $id = strtr($id,';',':'); 106 $id = strtr($id,'/',':'); 108 $id = strtr($id,'/',$sepchar); 111 if($conf['deaccent'] == 2 || $ascii) $id = utf8_romanize($id); 112 if($conf['deaccent'] || $ascii) $id = utf8_deaccent($id,-1); 115 $id = utf8_stripspecials($id,$sepchar,'\*'); 117 if($ascii) $id = utf8_strip($id); 120 $id = preg_replace($sepcharpat,$sepchar,$id); [all …]
|
/plugin/fedauth/classes/ |
D | fa_providerlist.class.php | 91 foreach ($fa_providers as $id => $data) { 92 $provider = fa_provider::create($id, $data); 93 $this->providers[$id] = $provider; 95 if (!in_array($id, $this->order_large) && !in_array($id, $this->order_small)) { 96 array_push($this->order_small, $id); 107 * @param string $id provider identifier 113 public function addCustom($id, $name, $url, $large, $small) { argument 114 if (array_key_exists($id, $this->providers)) return 0; 115 $provider = fa_provider::createCustom($id, $name, $url, $large, $small); 116 $this->providers[$id] = $provider; [all …]
|
/plugin/bpmnio/data/ |
D | dmn_close.text | 2 <inputData id="dayType_id" name="Type of day"> 3 <variable id="dayType_ii" name="Type of day" typeRef="string" /> 5 <inputData id="temperature_id" name="Weather in Celsius"> 6 <variable id="temperature_ii" name="Weather in Celsius" typeRef="number" /> 8 <knowledgeSource id="host_ks" name="Host" /> 9 <knowledgeSource id="guest_ks" name="Guest Type"> 10 <authorityRequirement id="AuthorityRequirement_0vkhray"> 14 <businessKnowledgeModel id="elMenu" name="El menú" /> 15 <decision id="dish-decision" name="Dish Decision"> 16 <informationRequirement id="InformationRequirement_1d56kg6"> [all …]
|
/plugin/publish/ |
D | helper.php | 21 * @param string $id 25 function in_namespace($namespace_list, $id) { argument 31 $id = trim($id, ':'); 32 $id = explode(':', $id); 44 !isset($id[$current_ns_depth]) || 46 $namespace[$current_ns_depth] != $id[$current_ns_depth] 109 function getRevision($id = null) { argument 114 $meta = $this->getMeta($id); 122 function getApprovals($id = null) { argument 123 $meta = $this->getMeta($id); [all …]
|
/plugin/html2pdf/html2pdf/html2ps/ |
D | ps.image.encoder.simple.inc.php | 18 $id = $this->solid($psdata, 25 return $id; 27 $id = $this->transparent($psdata, 34 return $id; 39 $id = $this->generate_id(); 63 …$psdata->write("/row-{$id}-{$row} { /image-{$id}-data { row-{$id}-{$row_next} } def ({$ps_image_da… 72 …$psdata->write("/row-{$id}-{$row} { /image-{$id}-data { row-{$id}-1 } def ({$ps_image_data}) } de… 75 $psdata->write("/image-{$id}-data { row-{$id}-1 } def\n"); 76 $psdata->write("/image-{$id}-init { } def\n"); 79 $image = "{image-{$id}-data}"; [all …]
|
/plugin/pagetitle/ |
D | helper.php | 29 public function html_youarehere($start_depth = 0, $id = null) argument 33 if (!isset($id)) $id = $ID; 37 $id = ($id == $conf['start']) ? '' : ':'.ltrim($id, ':'); 38 $tiers = explode(':', $id); 70 * @param string $id page id 76 public function tpl_pagelink($id = null, $name = null, $exists = null, $print = true) argument 80 $out = $this->html_pagelink($id, $name, $exists); 87 private function html_pagelink($id = null, $name = null, $exists = null) argument 91 if (!isset($id)) $id = $ID; 93 $title = p_get_metadata($id, 'title'); [all …]
|
/plugin/refnotes/ |
D | admin.php | 103 $id = $action . '-config'; 104 $html .= ' id="' . $id . '"'; 105 $html .= ' name="' . $id . '"'; 116 protected $id; variable in refnotes_config_section 122 public function __construct($id) { argument 123 $this->id = $id; 124 $this->title = 'sec_' . $id; 142 print('<fieldset id="' . $this->id . '">'); 172 foreach ($fieldData as $id => $fd) { 174 $field[] = new $class($id, $fd); [all …]
|
/plugin/dokukiwix/ |
D | common.php | 13 function dokukiwix_ml($id='',$more='',$direct=true,$sep='&'){ argument 24 if(preg_match('#^(https?|ftp)://#i',$id)){ 25 io_download($id, $offlineVersionPath.'images/_extern/'.$_POST['page'].'-'.basename($id)); 26 $xlink .= 'images/_extern/'.$_POST['page'].'-'.basename($id); 30 if(!preg_match('#\/?tag_#i',$id)) { 31 $id = str_replace(":", "/", $id); 32 io_mkdir_p(dirname($offlineVersionPath.'images/'.$id)); 33 copy(DOKU_INC.'data/media/'.$id,$offlineVersionPath.'images/'.$id); 34 $xlink .= 'images/'.$id; 47 function dokukiwix_wl($id='',$more='',$abs=false,$sep='&'){ argument [all …]
|
/plugin/jsonrpc/ |
D | jsonrpc.php | 98 public function rawPage($id,$rev=''){ argument 99 if(auth_quickaclcheck($id) < AUTH_READ){ 102 $text = rawWiki($id,$rev); 104 $data = array($id); 124 public function getAttachment($id){ argument 125 $id = cleanID($id); 126 if (auth_quickaclcheck(getNS($id).':*') < AUTH_READ) 129 $file = mediaFN($id); 138 public function getAttachmentInfo($id){ argument 139 $id = cleanID($id); [all …]
|
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
D | dhtmlxgantt_multiselect.js | 130 setFirstSelected: function(id) { argument 131 this._first_selected_when_shift = id; 151 setLastSelected: function (id) { argument 154 if (id) 155 store.select(id+""); 166 select: function (id, e) { argument 167 …if (id && gantt.callEvent("onBeforeTaskMultiSelect", [id, true, e]) && gantt.callEvent("onBeforeTa… 168 this._selected[id] = true; 169 this.setLastSelected(id); 170 this.afterSelect(id); [all …]
|
/plugin/freesync/ |
D | helper.php | 213 $id = is_array($page['id'])?$page['id'][0]:$page['id']; 214 if($page['llastModified'].','.$page['rlastModified'] == $this->_profile[$id]) { 217 return !strncmp($id, $this->_profile['namespace'], strlen($this->_profile['namespace'])) && 221 function getLocalPage($id, $onlyinfo = false) { argument 222 if(empty($id)) return false; 224 $file = wikiFN($id,''); 230 $info = getRevisionInfo($id, $time, 1024); 233 'name' => $id, 241 $page['text'] = rawWiki($id,''); 243 $data = array($id); [all …]
|
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/ |
D | Context.php | 93 * @param string $id Variable name 97 public function find($id) argument 99 return $this->findVariableInStack($id, $this->stack); 123 * @param string $id Dotted variable selector 127 public function findDot($id) argument 129 $chunks = explode('.', $id); 155 * @param string $id Dotted variable selector 159 public function findAnchoredDot($id) argument 161 $chunks = explode('.', $id); 164 …Mustache_Exception_InvalidArgumentException(sprintf('Unexpected id for findAnchoredDot: %s', $id)); [all …]
|
/plugin/fckg/fckeditor/editor/filemanager/connectors/php/ |
D | check_acl.php | 36 * @param string $id page ID 41 function auth_aclcheck($id,$user,$groups, $_auth=1){ argument 67 $ns = getNS($id); 82 $matches = preg_grep('/^'.preg_quote($id,'/').'\s+('.$regexp.')\s+/'.$ci,$AUTH_ACL); 171 function getNS($id){ argument 172 $pos = strrpos((string)$id,':'); 174 return substr((string)$id,0,$pos); 206 $id = trim((string)$raw_id); 207 $id = utf8_strtolower($id); 210 $id = strtr($id,';',':'); [all …]
|
/plugin/inlineeditor/ |
D | script.js | 13 this.id = null; 33 document.getElementById("load"+pl_si.id+pl_si.page).style.display = 'none'; 34 document.getElementById("quickedit_stop"+pl_si.id+pl_si.page).style.display = 'none'; 35 document.getElementById("quickedit_start"+pl_si.id+pl_si.page).style.display = 'block'; 49 document.getElementById("quickedit_textbox"+pl_si.id+pl_si.page).id = 'wiki__text'; 52 document.getElementById("load"+pl_si.id+pl_si.page).style.display = 'none'; 53 document.getElementById("quickedit_start"+pl_si.id+pl_si.page).style.display= 'none'; 54 document.getElementById("quickedit_stop"+pl_si.id+pl_si.page).style.display = 'block'; 56 initToolbar("quicktoolbar"+pl_si.id+pl_si.page,"wiki__text",toolbar,true); 60 function quickedit_save(id, range, page) argument [all …]
|
/plugin/move/helper/ |
D | rewrite.php | 42 * @param string $id The id of the page the metadata shall be loaded for 45 public function getMoveMeta($id) { argument 46 $all_meta = p_get_metadata($id, '', METADATA_DONT_RENDER); 79 public function unsetMoveMeta($id) { argument 80 p_set_metadata($id, array(self::METAKEY => array()), false, true); 86 * @param string $id affected page 92 public function setMoveMeta($id, $src, $dst, $type) { argument 93 $this->setMoveMetas($id, array($src => $dst), $type); 99 * @param string $id affected page 104 public function setMoveMetas($id, $moves, $type) { argument [all …]
|
/plugin/ckgdoku/fckeditor/editor/filemanager/connectors/php/ |
D | check_acl.php | 42 * @param string $id page ID 47 function auth_aclcheck($id,$user,$groups, $_auth=1){ argument 74 $ns = getNS($id); 87 $matches = preg_grep('/^'.preg_quote($id, '/').'[ \t]+([^ \t]+)[ \t]+/', $AUTH_ACL); 202 function getNS($id){ argument 203 $pos = strrpos((string)$id,':'); 205 return substr((string)$id,0,$pos); 237 $id = trim((string)$raw_id); 238 $id = utf8_strtolower($id); 241 $id = strtr($id,';',':'); [all …]
|
/plugin/multiselect/ |
D | script.js | 13 function multiselectclick(id) { argument 15 var id = multiselect_escapeStr(id); 17 var $myself = jQuery('#multiselect_'+id); 20 …$myself.offset({top:jQuery('#multismiley_'+id).offset().top-7,left:jQuery('#multismiley_'+id).offs… 25 function multiclickclick(pageid,id,count) { argument 27 multiselectclick(id); 29 var id = multiselect_escapeStr(id); 32 var mysmiley=jQuery('#multismiley_'+id)[0]; 33 var myselect=jQuery('#multiclick_'+id+"_"+count)[0]; 47 if(jQuery("#multiselect_"+id).parents('div.sortable').length != 0) { //sortable fix [all …]
|
/plugin/bez/db/ |
D | update0001.sql | 2 id INTEGER NOT NULL PRIMARY KEY, field 33 thread_id INTEGER NOT NULL REFERENCES thread (id), 50 id INTEGER NOT NULL PRIMARY KEY, field 52 thread_id INTEGER NOT NULL REFERENCES thread (id), 71 JOIN thread ON thread_comment.thread_id = thread.id; 77 id INTEGER NOT NULL PRIMARY KEY, field 101 WHERE id = new.label_id; 110 WHERE id = old.label_id; 119 WHERE id = old.label_id; 123 WHERE id = new.label_id; [all …]
|
/plugin/fastwiki/ |
D | pagecache.js | 22 this.add = function(id, data, p1) { argument 24 _addPage(id, m_p1Queue, m_p1Ids, 1, m_maxP1Size); 25 _addPage(id, m_queue, m_pages, data, m_maxSize, m_p1Queue); 27 this.remove = function(id) { argument 28 if (id in m_pages) { 29 m_queue.splice(m_queue.indexOf(id), 1); 30 delete m_pages[id]; 32 var p1Idx = m_p1Queue.indexOf(id); 35 delete m_p1Ids[id]; 39 this.get = function(id) { argument [all …]
|
/plugin/searchtablejs/TableFilter_EN/ |
D | tablefilter.js | 18 function setFilterGrid(id) argument 25 var tbl = grabEBI(id); 49 var ncells = getCellsNb(id,ref_row); 53 if( !hasGrid(id) ) AddGrid(id); 57 function AddGrid(id) argument 62 TblId.push(id); 63 var t = grabEBI(id); 132 var inp = createElm( "input",["id","flt"+i+"_"+id],["type",inptype],["class",inpclass] ); 139 var slc = createElm( "select",["id","flt"+i+"_"+id],["class",inpclass] ); 142 PopulateOptions(id,i); [all …]
|
/plugin/searchtablejs/ |
D | tablefilter.js | 18 function setFilterGrid(id) argument 25 var tbl = grabEBI(id); 49 var ncells = getCellsNb(id,ref_row); 53 if( !hasGrid(id) ) AddGrid(id); 57 function AddGrid(id) argument 62 TblId.push(id); 63 var t = grabEBI(id); 132 var inp = createElm( "input",["id","flt"+i+"_"+id],["type",inptype],["class",inpclass] ); 139 var slc = createElm( "select",["id","flt"+i+"_"+id],["class",inpclass] ); 142 PopulateOptions(id,i); [all …]
|
/plugin/quickedit/ |
D | script.js | 14 this.id = null; 34 document.getElementById("load"+pl_si.id).style.display = 'none'; 35 document.getElementById("quickedit_start"+pl_si.id).style.display = 'block'; 49 document.getElementById("quickedit_textbox"+pl_si.id).value = data; 50 document.getElementById("quickedit_textbox"+pl_si.id).rows = nbRetourChariot; 51 document.getElementById("load"+pl_si.id).style.display = 'none'; 52 document.getElementById("quickedit_start"+pl_si.id).style.display= 'none'; 53 document.getElementById("quickedit_stop"+pl_si.id).style.display = 'block'; 58 function quickedit_save(id, range, page) argument 62 pl_si.id=id; [all …]
|
/plugin/asciidocjs/node_modules/character-parser/ |
D | index.js | 270 function isKeyword(id) { argument 271 …return (id === 'if') || (id === 'in') || (id === 'do') || (id === 'var') || (id === 'for') || (id … 272 … (id === 'try') || (id === 'let') || (id === 'this') || (id === 'else') || (id === 'case') || 273 …(id === 'void') || (id === 'with') || (id === 'enum') || (id === 'while') || (id === 'break') || (… 274 …(id === 'throw') || (id === 'const') || (id === 'yield') || (id === 'class') || (id === 'super') || 275 …(id === 'return') || (id === 'typeof') || (id === 'delete') || (id === 'switch') || (id === 'expor… 276 …(id === 'import') || (id === 'default') || (id === 'finally') || (id === 'extends') || (id === 'fu… 277 …(id === 'continue') || (id === 'debugger') || (id === 'package') || (id === 'private') || (id === … 278 …(id === 'instanceof') || (id === 'implements') || (id === 'protected') || (id === 'public') || (id…
|