/plugin/txt2tags/ |
H A D | txt2tags.class.php | 93 var $snippets = array( variable in T2T 266 $snippets = $this->snippets; 343 else $fmt = $snippets['tablecell']; 415 $snippets = $this->snippets; 439 $lines2[] = $snippets['paraclose']; 457 $lines2[] = $snippets['paraclose']; 517 … $listcontent .= $this->sp($plevel+1)."{$snippets["paraopen"]}{$snippets["paraclose"]}\n"; 534 … $listcontent .= $this->sp($plevel+1)."{$snippets["paraopen"]}{$snippets["paraclose"]}\n"; 564 $lines2[] = $snippets['paraopen']; 585 $lines2[] = $snippets['paraclose']; [all …]
|
/plugin/combo/ComboStrap/ |
H A D | SnippetSystem.php | 29 * * `ForSlot` are snippets for a bar (ie page, sidebar, ...) - cached 30 * * `ForRequests` are snippets added for the HTTP request - not cached. Example of request component: message, anchor 67 * @param Snippet[] $snippets 70 public static function toHtmlFromSnippetArray(array $snippets): string 73 foreach ($snippets as $snippet) { 88 * Returns all snippets (request and slot scoped) 98 * @return Snippet[] - the slot snippets (not the request snippet) 102 $snippets = Snippet::getSnippets(); 104 foreach ($snippets as $snippet) { 135 $snippets 69 toHtmlFromSnippetArray(array $snippets) global() argument [all...] |
H A D | Bootstrap.php | 228 * @return Snippet[] the js snippets in order 236 $snippets = []; 238 $snippets[] = $this->getJquerySnippet(); 244 $snippets[] = $this->getPopperSnippet(); 249 $snippets[] = $this->getBootstrapJsSnippet(); 253 return $snippets; 345 $snippets = []; 347 $snippets[] = $this->getCssSnippet(); 355 return array_merge($snippets, $this->getJsSnippets());
|
H A D | FetcherMarkup.php | 27 * * manage the dependencies (snippets, cache) 209 * Why ? Because the snippets advertised during this run, need to be stored 435 $snippets = $this->getSnippets(); 436 $jsonDecodeSnippets = SnippetSystem::toJsonArrayFromSlotSnippets($snippets); 457 * This functon loads the snippets in the global array 494 * @return CacheParser - the cache where the snippets are stored 633 * Storage of snippets or dependencies 653 * the cache of the HTML page may be stored but not the cache of the snippets 654 * leading to a bad page because the next rendering will see then no snippets. 867 $snippets [all...] |
/plugin/snippets/ |
H A D | script.js | 7 snippets = { class 34 snippets.keepopen = true; 37 snippets.togglekeepopen(this); } 59 snippets.update = true; 62 snippets.toggleupdate(this); } 180 snippets.keepopen = true; 183 snippets.keepopen = false; 190 snippets.update = true; 193 snippets.update = false; 225 if(!snippets.keepopen) { [all …]
|
H A D | README | 2 http://dokuwiki.org/plugin:snippets 7 This version of the snippets plugin enables user to choose have files with embedded snippets automa…
|
H A D | plugin.info.txt | 2 base snippets 8 url http://www.dokuwiki.org/plugin:snippets
|
H A D | helper.php | 134 $snippets = $snip_data['doc'][$page_id]; 137 foreach ($snippets as $snip) {
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/ |
H A D | GoogleCloudDialogflowV2beta1ArticleAnswer.php | 34 public $snippets; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2beta1ArticleAnswer 75 public function setSnippets($snippets) argument 77 $this->snippets = $snippets; 84 return $this->snippets;
|
H A D | GoogleCloudDialogflowV2ArticleAnswer.php | 38 public $snippets; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowV2ArticleAnswer 93 public function setSnippets($snippets) argument 95 $this->snippets = $snippets; 102 return $this->snippets;
|
/plugin/snippets/lang/en/ |
H A D | info.txt | 2 It compares the snippets found in the page files against the snippets logged in their metafiles, an… 4 - pages which have snippets and which snippets 5 - snippets and the pages they are embedded in
|
/plugin/asiansearch/ |
H A D | action.php | 136 $snippets = array(); 179 $snippets = array($text); 190 $snippets[count($snippets)-1] .= utf8_substr($text,$append,$end-$append); 192 $snippets[] = utf8_substr($text,$start,$end-$start); 206 $snippets = preg_replace('/'.$re1.'/iu',$m.'$1'.$m,$snippets); 207 ….$m.'([^'.$m.']*?)'.$m.'/iu','<strong class="search_hit">$1</strong>',hsc(join('... ',$snippets)));
|
/plugin/snippets/exe/ |
H A D | update.php | 37 $snippets = $snip_data['doc'][$id]; variable 38 foreach($snippets as $snip) { 54 $snippets = array_keys($data['snippets']); 58 $intersect = array_intersect($matches[1],$snippets);
|
H A D | snippets.php | 26 $snippets =& plugin_load('syntax', 'snippets'); variable 33 <title><?php print $snippets->getLang('popup_title') . ' [' . $conf['title'] . ']' ?></title>
|
/plugin/combo/action/ |
H A D | snippets.php | 30 const CANONICAL = "snippets"; 44 * To add the snippets in the header 49 * To add the snippets in the content 69 * Add the snippets in the head 81 * the snippets should be added into the content 89 * For each processed slot in the execution, retrieve the snippets 114 $snippets = $snippetSystem->getSnippets(); 115 foreach ($snippets as $snippet) { 139 * This function store the snippets in the HTML content when needed 214 $snippets [all...] |
/plugin/codehighlight/cp/engines/ |
H A D | opera.js | 49 CodePress.snippets(evt); 132 snippets : function(evt) { method in CodePress 133 var snippets = Language.snippets; 135 for (var i=0; i<snippets.length; i++) { 136 if(snippets[i].input == trigger) { 137 var content = snippets[i].output.replace(/</g,'<');
|
H A D | gecko.js | 54 CodePress.snippets(evt); 132 snippets : function(evt) { method in CodePress 133 var snippets = Language.snippets; 135 for (var i=0; i<snippets.length; i++) { 136 if(snippets[i].input == trigger) { 137 var content = snippets[i].output.replace(/</g,'<');
|
H A D | msie.js | 56 CodePress.snippets(); 141 snippets : function(evt) { method in CodePress 142 var snippets = Language.snippets; 144 for (var i=0; i<snippets.length; i++) { 145 if(snippets[i].input == trigger) { 146 var content = snippets[i].output.replace(/</g,'<');
|
/plugin/snippeter/ |
H A D | README.md | 5 Add document snippets into a page. 39 configure the namespace you want to use for your snippets. 43 Create snippets 56 {{ :snippets:phone16.png |}} 71 icon open up an overview of you snippets. While choose one of them with a klick on
|
H A D | plugin.info.txt | 6 desc Add document snippets into a page.
|
/plugin/codeprettify/ |
H A D | README.md | 4 syntax highlighting of source code snippets in wiki page, using [Javascript code prettifier](https://github.com/googlearchive/code-prettify) (former google-code-prettify). 29 The [Javascript code prettifier](https://github.com/googlearchive/code-prettify), which was once known as "google-code-prettify", is a javascript module and CSS file that allows syntax highlighting of source code snippets in an html page. They are separetely licenced under the Apache License, Version 2.0
|
/plugin/codehighlight/cp/languages/ |
H A D | text.js | 7 Language.snippets = []
|
H A D | css.js | 13 Language.snippets = []
|
H A D | java.js | 14 Language.snippets = []
|
H A D | sql.js | 15 Language.snippets = [
|